@charset "UTF-8";
:root {
  --innerHeight: 100vh;
}

/* ==========================================================================

デフォルト

========================================================================== */
/* 基本 */
[data-area=content] strong {
  font-weight: 700;
}

[data-area=content] em {
  font-style: italic;
}

[data-area=content] sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

[data-area=content] sub {
  font-size: 70%;
  vertical-align: bottom;
  position: relative;
  bottom: -0.1em;
}

[data-area=content] ul {
  list-style: disc;
  margin-left: 25px;
}

[data-area=content] ol {
  list-style: decimal;
  margin-left: 25px;
}

[data-area=content] .lead1 {
  font-size: 27px;
}

[data-area=content] .lead2 {
  font-size: 24px;
}

[data-area=content] .lead3 {
  font-size: 21px;
}

[data-area=content] .button1,
[data-area=content] .button2,
[data-area=content] .button3 {
  display: flex;
  width: 100%;
}

[data-area=content] .button1 {
  justify-content: flex-start;
}

[data-area=content] .button2 {
  justify-content: center;
}

[data-area=content] .button3 {
  justify-content: flex-end;
}

[data-area=content] .button1 .button-inner,
[data-area=content] .button2 .button-inner,
[data-area=content] .button3 .button-inner {
  min-width: calc(20% - 16px);
}

[data-area=content] .button1 a,
[data-area=content] .button2 a,
[data-area=content] .button3 a {
  position: relative;
  display: block;
  text-align: inherit;
  padding: 10px 5px;
  border: 1px solid #333;
  background-color: #333;
  word-break: break-all;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

[data-area=content] .button1 a:hover,
[data-area=content] .button2 a:hover,
[data-area=content] .button3 a:hover {
  opacity: 0.7;
}

[data-area=content] .FF-1 {
  font-family: "Noto Sans JP", sans-serif;
}

[data-area=content] .FF-2 {
  font-family: "Noto Serif JP", serif;
}

[data-area=content] .FF-3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

[data-area=content] .FF-4 {
  font-family: "Yusei Magic", sans-serif;
}

[data-area=content] .FF-5 {
  font-family: "Shippori Mincho B1", serif;
}

/* 基本ブロック全て */
.cp-all {
  position: relative;
  margin: 40px 0;
  line-height: 2;
  z-index: 0;
}

.cp-all a {
  text-decoration: underline;
}

.cp-all::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -20px;
  left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% + 40px);
  pointer-events: none;
}

/* 見出し */
.cp-h1-text {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4;
}

.cp-h2-text {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 1.6;
}

.cp-h3-text {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.7;
}

.cp-h4-text {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}

.cp-h5-text {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}

.cp-all .cp-inner .cp-h1-text:first-child,
.cp-all .cp-inner .cp-h2-text:first-child,
.cp-all .cp-inner .cp-h3-text:first-child,
.cp-all .cp-inner .cp-h4-text:first-child,
.cp-all .cp-inner .cp-h5-text:first-child {
  margin-top: 0;
}

.cp-h1-text hr,
.cp-h2-text hr,
.cp-h3-text hr,
.cp-h4-text hr,
.cp-h5-text hr {
  display: none;
}

.cp-hr-100 {
  border-width: 0;
  border-style: solid;
  border-top: 1px solid #ccc;
}

.cp-hr-400 {
  border-width: 0;
  border-style: solid;
  border-top: 4px solid #ccc;
}

.cp-hr-800 {
  border-width: 0;
  border-style: solid;
  border-top: 8px solid #ccc;
}

.cp-hr-dashed {
  border-width: 0;
  border-top: 1px dashed #ccc;
}

hr.is-inner.is-w960 {
  max-width: 960px;
  margin-left: calc((100% - 1160px) / 2);
}

@media screen and (max-width: 1270px) {
  hr.is-inner.is-w960 {
    margin-left: 10px;
  }
}
/* ブロック内ボタン */
.cp-link-btn {
  display: table;
  margin: 20px 0;
  padding: 4px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.cp-link-btn:hover {
  opacity: 0.7;
}

/* 囲み */
.cp-wp {
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f4f4f4;
}

.cp-wp::before {
  top: -21px;
  height: calc(100% + 42px);
}

@media screen and (max-width: 959px) {
  .cp-wp {
    padding-left: 4%;
    padding-right: 4%;
  }
}
/* テーブル */
[data-area=content] table {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-spacing: 0;
}

[data-area=content] .cp-text-item table,
[data-area=content] .cp-it-text table:first-child,
[data-area=content] .cp-ti-text table:first-child {
  margin-top: 0;
}

[data-area=content] .cp-text-item table:last-child,
[data-area=content] .cp-it-text table:last-child,
[data-area=content] .cp-ti-text table:last-child {
  margin-bottom: 0;
}

[data-area=content] table th {
  padding: 10px 15px;
  border: 1px solid #999;
  background: #e6e6e6;
}

[data-area=content] table td {
  padding: 10px 15px;
  border: 1px solid #999;
}

[data-area=content] table.fr-dashed-borders {
  border-style: dashed !important;
  border-width: inherit !important;
}

[data-area=content] table.fr-dashed-borders td,
[data-area=content] table.fr-dashed-borders th {
  border-style: dashed !important;
}

[data-area=content] table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}

[data-area=content] table.fr-table-border-vertical {
  border: none !important;
}

[data-area=content] table.fr-table-border-vertical th,
[data-area=content] table.fr-table-border-vertical td {
  border-top: 0px !important;
  border-bottom: 0px !important;
}

[data-area=content] table.fr-table-border-horizontal {
  border: none !important;
}

[data-area=content] table.fr-table-border-horizontal th,
[data-area=content] table.fr-table-border-horizontal td {
  border-left: 0px !important;
  border-right: 0px !important;
}

[data-area=content] table.fr-table-border-none {
  border: none !important;
}

[data-area=content] table.fr-table-border-none th,
[data-area=content] table.fr-table-border-none td {
  border: none !important;
}

[data-area=content] table.fr-table-border-1px th,
[data-area=content] table.fr-table-border-1px td {
  border-width: 1px !important;
}

[data-area=content] table.fr-table-border-2px th,
[data-area=content] table.fr-table-border-2px td {
  border-width: 2px !important;
}

[data-area=content] table.fr-table-border-3px th,
[data-area=content] table.fr-table-border-3px td {
  border-width: 3px !important;
}

[data-area=content] table.fr-table-cellPadding-10 th,
[data-area=content] table.fr-table-cellPadding-10 td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

[data-area=content] table.fr-table-cellPadding-20 th,
[data-area=content] table.fr-table-cellPadding-20 td {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

[data-area=content] table.fr-table-cellPadding-30 th,
[data-area=content] table.fr-table-cellPadding-30 td {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

[data-area=content] table.fr-table-cellPadding-40 th,
[data-area=content] table.fr-table-cellPadding-40 td {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

[data-area=content] table.fr-table-cellPadding-50 th,
[data-area=content] table.fr-table-cellPadding-50 td {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

[data-area=content] table.fr-table-cellPadding-60 th,
[data-area=content] table.fr-table-cellPadding-60 td {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

[data-area=content] table.fr-table-cellPadding-70 th,
[data-area=content] table.fr-table-cellPadding-70 td {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

[data-area=content] table.fr-table-cellPadding-80 th,
[data-area=content] table.fr-table-cellPadding-80 td {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

[data-area=content] table.fr-table-cellPadding-90 th,
[data-area=content] table.fr-table-cellPadding-90 td {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

[data-area=content] table.fr-table-cellPadding-100 th,
[data-area=content] table.fr-table-cellPadding-100 td {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

[data-area=content] table td.fr-highlighted,
[data-area=content] table th.fr-highlighted {
  border: 1px double red;
}

[data-area=content] table td.fr-thick,
[data-area=content] table th.fr-thick {
  border-width: 2px;
}

/* テキスト */
[data-area=content] .cp-text {
  display: -ms-flex;
  display: flex;
}

[data-area=content] .cp-text .cp-text-item {
  width: 100%;
}

[data-area=content] .cp-text .cp-text-l {
  margin-right: 20px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-text {
    flex-direction: column;
  }
  [data-area=content] .cp-text .cp-text-l {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* 画像 */
[data-area=content] span.fr-img-caption {
  position: relative;
  display: block;
  max-width: 100%;
  margin: 5px auto;
  text-align: center;
}

[data-area=content] span.fr-img-caption.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

[data-area=content] span.fr-img-caption.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

[data-area=content] span.fr-img-caption .fr-img-wrap {
  position: relative;
  display: block;
  max-width: 100%;
  width: auto;
  margin: 5px auto;
  text-align: center;
}

[data-area=content] span.fr-img-caption .fr-img-wrap span.fr-inner {
  display: block;
}

[data-area=content] span.fr-img-caption .fr-img-wrap img {
  max-width: 100%;
  overflow: hidden;
}

[data-area=content] .cp-img {
  display: -ms-flex;
  display: flex;
}

[data-area=content] .cp-img img {
  max-width: 100%;
  height: auto;
}

[data-area=content] .cp-img-item {
  width: 100%;
  text-align: center;
}

[data-area=content] .cp-img .cp-img-l {
  margin-right: 20px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-img {
    flex-direction: column;
  }
  [data-area=content] .cp-img .cp-img-l {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* 画像（縦） */
[data-area=content] .cp-vertical {
  display: -ms-flex;
  display: flex;
}

[data-area=content] .cp-vertical img {
  max-width: 100%;
  height: auto;
}

[data-area=content] .cp-vertical .cp-vertical-item {
  width: 100%;
  text-align: center;
}

[data-area=content] .cp-vertical .cp-vertical-text {
  text-align: justify;
}

[data-area=content] .cp-vertical .cp-vertical-l {
  margin-right: 20px;
}

[data-area=content] .cp-ti.cp-vertical .cp-vertical-text {
  margin-bottom: 10px;
}

[data-area=content] .cp-it.cp-vertical .cp-vertical-text {
  margin-top: 10px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-vertical {
    flex-direction: column;
  }
  [data-area=content] .cp-vertical .cp-vertical-l {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* 画像（横） */
[data-area=content] .cp-horizontal {
  display: -ms-flex;
  display: flex;
}

[data-area=content] .cp-horizontal img {
  max-width: 100%;
  height: auto;
}

[data-area=content] .cp-horizontal .cp-horizontal-item {
  display: -ms-flex;
  display: flex;
  width: 100%;
  text-align: center;
}

[data-area=content] .cp-horizontal .cp-horizontal-l {
  margin-right: 20px;
}

[data-area=content] .cp-horizontal .cp-horizontal-text {
  text-align: justify;
}

[data-area=content] .cp-horizontal .cp-horizontal-img,
[data-area=content] .cp-horizontal .cp-horizontal-text {
  width: calc(50% - 5px);
}

[data-area=content] .cp-ti.cp-horizontal .cp-horizontal-text {
  margin-right: 10px;
}

[data-area=content] .cp-it.cp-horizontal .cp-horizontal-text {
  margin-left: 10px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-horizontal {
    flex-direction: column;
  }
  [data-area=content] .cp-horizontal .cp-horizontal-item {
    flex-direction: column;
  }
  [data-area=content] .cp-horizontal .cp-horizontal-img,
  [data-area=content] .cp-horizontal .cp-horizontal-text {
    width: 100%;
  }
  [data-area=content] .cp-horizontal .cp-horizontal-l {
    margin-right: 0;
    margin-bottom: 20px;
  }
  [data-area=content] .cp-ti.cp-horizontal .cp-horizontal-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
  [data-area=content] .cp-it.cp-horizontal .cp-horizontal-text {
    margin-left: 0;
    margin-top: 10px;
  }
}
/* 画像（PC/SP切替） */
[data-area=content] .cp-img-change img {
  max-width: 100%;
  height: auto;
}

[data-area=content] .cp-img-change .cp-img-item > *:last-child {
  display: none;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-img-change .cp-img-item > *:first-child {
    display: none;
  }
  [data-area=content] .cp-img-change .cp-img-item > *:last-child {
    display: inline-block;
  }
}
/* 線 */
.cp-border {
  border-top: 1px solid #ccc;
}

.cp-border hr {
  display: none;
}

/* 余白 */
.cp-space {
  height: 80px;
}

/* アンカーリンクメニュー */
[data-area=content] .cp-anchor-menu ul,
[data-area=content] .cp-anchor-menu ol {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -5px 0;
  padding: 0;
  list-style: none;
}

[data-area=content] .cp-anchor-menu li {
  position: relative;
  margin-right: 15px;
  margin-bottom: 5px;
  padding-left: 20px;
}

[data-area=content] .cp-anchor-menu li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #333;
  border-radius: 50%;
}

[data-area=content] .cp-anchor-menu li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg) skew(8deg, 8deg);
}

/* 別ページリンクメニュー */
[data-area=content] .cp-blank-menu ul,
[data-area=content] .cp-blank-menu ol {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -5px 0;
  padding: 0;
  list-style: none;
}

[data-area=content] .cp-blank-menu li {
  position: relative;
  margin-right: 15px;
  margin-bottom: 5px;
  padding-left: 20px;
}

[data-area=content] .cp-blank-menu li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #333;
  border-radius: 50%;
  background: #333;
}

[data-area=content] .cp-blank-menu li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg) skew(8deg, 8deg);
}

/* ボタン */
.cp-btn + .cp-btn {
  margin-top: -20px;
}

.cp-btn ul,
.cp-btn ol {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cp-btn li {
  margin-left: 20px;
  margin-bottom: 20px;
}

.cp-btn.cp-btn-01 li {
  width: 100%;
}

.cp-btn.cp-btn-02 li {
  width: calc(50% - 10px);
}

.cp-btn.cp-btn-03 li {
  width: calc((100% - 41px) / 3);
}

.cp-btn.cp-btn-04 li {
  width: calc(25% - 15px);
}

.cp-btn.cp-btn-05 li {
  width: calc(20% - 16px);
}

.cp-btn.cp-btn-01 li,
.cp-btn.cp-btn-02 li:nth-child(2n+1),
.cp-btn.cp-btn-03 li:nth-child(3n+1),
.cp-btn.cp-btn-04 li:nth-child(4n+1),
.cp-btn.cp-btn-05 li:nth-child(5n+1) {
  margin-left: 0;
}

.cp-btn li a {
  display: -ms-flex;
  display: flex;
  -ms-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-grow: 1;
  flex-grow: 1;
  text-align: center;
  padding: 10px 5px;
  border: 1px solid #333;
  background-color: #333;
  word-break: break-all;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.cp-btn li a:hover {
  opacity: 0.7;
}

.cp-btn.cp-btn-column ul,
.cp-btn.cp-btn-column ol {
  flex-direction: column;
}

.cp-btn.cp-btn-column ul li,
.cp-btn.cp-btn-column ol li {
  margin-left: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .cp-btn li {
    margin-left: 4%;
  }
  .cp-btn.cp-btn-02 li {
    width: 48%;
  }
  .cp-btn.cp-btn-03 li {
    width: 30.3333333333%;
  }
  .cp-btn.cp-btn-04 li {
    width: 22%;
  }
  .cp-btn.cp-btn-05 li {
    width: 16.8%;
  }
}
/* タブ */
.cp-tab-menu {
  margin-bottom: 10px;
}

.cp-tab-menu ul,
.cp-tab-menu ol {
  display: -ms-flex;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cp-tab-menu li {
  display: -ms-flex;
  display: flex;
  -ms-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-grow: 1;
  flex-grow: 1;
  text-align: center;
  padding: 10px 5px;
  border: 1px solid #333;
  border-left: none;
  word-break: break-all;
  cursor: pointer;
}

.cp-tab-menu li:first-child {
  border-left: 1px solid #333;
}

.cp-tab-menu li:hover,
.cp-tab-menu li.active {
  background-color: #333;
  color: #fff;
}

.cp-tab-content > div {
  display: none;
}

.cp-tab-content > div.active {
  display: block;
}

@media screen and (max-width: 959px) {
  .cp-tab-menu ul,
  .cp-tab-menu ol {
    flex-wrap: wrap;
  }
  .cp-tab-menu li {
    width: 50%;
    border-top: none;
  }
  .cp-tab-menu li:nth-child(1),
  .cp-tab-menu li:nth-child(2) {
    border-top: 1px solid #333;
  }
  .cp-tab-menu li:nth-child(2n+1) {
    border-left: 1px solid #333;
  }
}
.cp-tab-content > div:before,
.cp-tab-content > div:after {
  content: "";
  display: table;
}

.cp-tab-content > div:after {
  clear: both;
}

.cp-accordion-content > div:before,
.cp-accordion-content > div:after {
  content: "";
  display: table;
}

.cp-accordion-content > div:after {
  clear: both;
}

/* 開閉式 */
.cp-accordion {
  margin: 0;
}

.cp-accordion-title {
  position: relative;
  margin-bottom: 1px;
  padding: 10px 37px 10px 20px;
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
  cursor: pointer;
}

.cp-accordion-title::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 21px;
  width: 1px;
  height: 11px;
  background-color: #fff;
}

.cp-accordion.active .cp-accordion-title::before {
  opacity: 0;
}

.cp-accordion-title::after {
  content: "";
  position: absolute;
  top: 21px;
  right: 16px;
  width: 11px;
  height: 1px;
  background-color: #fff;
}

.cp-accordion-content {
  margin-top: 10px;
  margin-bottom: 40px;
}

.cp-accordion-content {
  display: none;
}

/* フォトアルバム */
.cp-photos {
  display: -ms-flex;
  display: flex;
}

.cp-photos + .cp-photos {
  margin-top: -20px;
}

.cp-photos-item {
  width: 100%;
}

.cp-photos-item img {
  max-width: 100%;
  height: auto;
}

.cp-photos-item p {
  margin: 10px 0 0 0;
}

.cp-photos-item p:empty {
  display: none;
}

.cp-photos .cp-photos-l {
  margin-right: 20px;
}

@media screen and (max-width: 959px) {
  .cp-photos {
    flex-direction: column;
  }
  .cp-photos .cp-photos-l {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* テーブル横スクロールの処理 */
table.table-scroll {
  margin: 0;
  border-top: 1px solid #c6c6c6;
}

@media screen and (max-width: 959px) {
  .table-scroll-wrap {
    overflow: auto;
    white-space: nowrap;
  }
  .table-scroll-wrap::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll-wrap::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .table-scroll-wrap::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
/* 動画アルバム */
.cp-videos {
  display: -ms-flex;
  display: flex;
}

.cp-videos .code {
  display: none;
}

.fr-editor .cp-videos .code {
  display: block;
}

.cp-videos + .cp-videos {
  margin-top: -20px;
}

.cp-videos-item {
  width: 100%;
}

.cp-videos-item .cp-videos-thumb {
  position: relative;
  /*padding-top: 56.25%;*/
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cp-videos-item .cp-videos-thumb::before {
  content: "";
  position: absolute;
  top: calc(50% - 19px);
  left: calc(50% - 30px);
  display: block;
  height: 38px;
  width: 60px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSIzNy41IiB2aWV3Qm94PSIwIDAgNjAgMzcuNSI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6I2M5MDAwMDt9LmJ7ZmlsbDojZmZmO308L3N0eWxlPjwvZGVmcz48dGl0bGU+44Ki44K744OD44OIIDczPC90aXRsZT48cmVjdCBjbGFzcz0iYSIgd2lkdGg9IjYwIiBoZWlnaHQ9IjM3LjUiIHJ4PSI2IiByeT0iNiIvPjxwb2x5Z29uIGNsYXNzPSJiIiBwb2ludHM9IjIxLjk2IDkuNzUgMzcuOTYgMTguNzUgMjEuOTYgMjcuNzUgMjEuOTYgOS43NSIvPjwvc3ZnPg==) no-repeat center center;
}

.fr-block .cp-videos-item .cp-videos-thumb iframe {
  visibility: visible;
}

.cp-videos-item .cp-videos-thumb iframe {
  visibility: hidden;
}

.cp-videos-item p {
  margin: 10px 0 0 0;
}

.cp-videos-item p:empty {
  display: none;
}

.cp-videos .cp-videos-l {
  margin-right: 20px;
}

@media screen and (max-width: 959px) {
  .cp-videos {
    flex-direction: column;
  }
  .cp-videos .cp-videos-l {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* 外部サービスコード */
.cp-external iframe {
  margin: 0 auto;
  display: block;
}

.cp-external-text-area {
  display: none;
}

@media screen and (max-width: 959px) {
  .cp-external {
    position: relative;
  }
  .cp-external::after {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  .cp-external.cypochiform-wrap::after {
    display: none;
  }
  .cp-external iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}
/* テキスト装飾 */
.fr-text-gray {
  color: #aaa !important;
}

.fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}

li.fr-text-bordered + li.fr-text-bordered {
  border-top: 0px;
}

.fr-text-spaced {
  letter-spacing: 1px;
}

.fr-text-uppercase {
  text-transform: uppercase;
}

.fr-class-highlighted {
  background-color: #ffff00;
}

.fr-class-code {
  border-color: #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f5f5f5;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
}

.fr-class-transparency {
  opacity: 0.5;
}

span.fr-emoticon {
  font-weight: normal;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
  display: inline;
  line-height: 0;
}

span.fr-emoticon.fr-emoticon-img {
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.1em 0.1em 0.1em;
  line-height: 1;
  vertical-align: middle;
}

/* 画像の角を丸くする */
img.fr-rounded,
.fr-img-caption.fr-rounded img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* 画像に境界線を追加 */
img.fr-bordered,
.fr-img-caption.fr-bordered img {
  border: solid 5px #CCC;
}

img.fr-bordered {
  box-sizing: content-box;
}

.fr-img-caption.fr-bordered img {
  box-sizing: border-box;
}

/* 画像にドロップシャドウ */
img.fr-shadow,
.fr-img-caption.fr-shadow img {
  box-shadow: 10px 10px 5px 0px #cccccc;
}

/* ==========================================================================

slick.css

========================================================================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ==========================================================================

ベース

========================================================================== */
body {
  line-height: 2;
  font-family: "Noto Sans JP", Helvetica, Arial, メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #222;
  font-size: 1.5rem;
  overflow-x: hidden;
  opacity: 0;
}

body.is-fix {
  width: 100%;
  height: 100%;
  position: fixed;
}

body.cms {
  opacity: 1;
}

[data-area=content] {
  overflow: hidden;
  background-color: #EBF4F5;
}

.cms [data-area=content] {
  background-color: transparent;
}

.top [data-area=content],
.page-index.faculty2 [data-area=content],
.page-index.education2 [data-area=content],
.page-index.research2 [data-area=content] {
  background-color: #fff;
}

[data-area=content] > *:last-child {
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  [data-area=content] > *:last-child {
    margin-bottom: 40px;
  }
}
.top [data-area=content] > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  .top [data-area=content] > *:last-child {
    margin-bottom: 0;
  }
}
.is-inner {
  width: 100%;
  margin: 0 auto;
}

.is-inner.is-w1260 {
  max-width: 1180px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 959px) {
  .is-inner.is-w1260 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.is-inner.is-w960 {
  max-width: 1180px;
  padding-right: 310px;
  padding-left: 10px;
}

@media screen and (max-width: 959px) {
  .is-inner.is-w960 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
span.is-inner,
strong.is-inner {
  display: block;
}

/* アンカー */
a {
  color: #4864FF;
}

.cms a {
  color: #2688bc;
}

.cp-all a {
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  .cp-all a:hover {
    text-decoration: underline;
  }
}
/* //アンカー */
/* 各種リンクアイコン */
a[target=_blank]::after {
  content: "";
  position: relative;
  top: 2px;
  bottom: 0;
  margin: 0 6px 0 6px;
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-size: contain;
  background: url('/albums/css/basic-blocks/abm00005661.svg') center center no-repeat;
}

a.img-wrap-link[href*=".pdf"] .fr-inner::after,
a.img-wrap-link[download*=".pdf"] .fr-inner::after,
a[href*=".pdf"]::after,
a[download*=".pdf"]::after {
  margin: 0 6px 0 6px;
  top: 2px;
  width: 16px !important;
  max-width: 16px !important;
  height: 18px !important;
  background: url('/albums/css/basic-blocks/abm00005644.svg') center center no-repeat !important;
}

a[href*=".doc"]::after,
a[download*=".doc"]::after {
  margin: 0 6px 0 6px;
  top: 2px;
  width: 16px !important;
  max-width: 16px !important;
  height: 18px !important;
  background: url('/albums/css/basic-blocks/abm00005647.svg') center center no-repeat !important;
}

a.img-wrap-link[href*=".xls"] .fr-inner::after,
a.img-wrap-link[download*=".xls"] .fr-inner::after,
a[href*=".xlsx"]::after,
a[download*=".xlsx"]::after,
a[href*=".xls"]::after,
a[download*=".xls"]::after {
  margin: 0 6px 0 6px;
  top: 2px;
  width: 16px !important;
  max-width: 16px !important;
  height: 18px !important;
  background: url('/albums/css/basic-blocks/abm00005675.svg') center center no-repeat !important;
}

a[href*=".zip"]::after,
a[download*=".zip"]::after {
  margin: 0 6px 0 6px;
  top: 2px;
  width: 16px !important;
  max-width: 16px !important;
  height: 18px !important;
  background: url('/albums/css/basic-blocks/abm00005649.svg') center center no-repeat !important;
}

/* //各種リンクアイコン */
._mod-air-window__btn-item [type=button] {
  color: #fff;
}

/* ==========================================================================

基本ブロック

========================================================================== */
.cp-all {
  margin-top: 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .cp-all {
    margin-bottom: 24px;
  }
}
/* 見出し */
.cp-h1-text {
  font-size: 4.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .cp-h1-text {
    font-size: 3rem;
  }
}
.cp-h2-text {
  font-size: 5.6rem;
  font-weight: normal;
  font-family: YuMincho, "Yu Mincho", serif;
  line-height: 1.333;
  padding-bottom: 48px;
  position: relative;
  margin-top: 120px;
  margin-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .cp-h2-text {
    font-size: 3rem;
    padding-bottom: 27px;
    padding-left: 0 !important;
    margin-left: 10px;
    margin-top: 48px;
    margin-bottom: 28px;
  }
}
.cp-h2-text:first-child {
  margin-top: 0;
}

.cp-h2-text::after {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 10px;
  background-color: #ccc;
}

@media screen and (max-width: 959px) {
  .cp-h2-text::after {
    left: 0;
  }
}
.ob-bgBox .cp-h2-text::after {
  left: 0;
}

.cp-h3-text {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 46px;
}

@media screen and (max-width: 959px) {
  .cp-h3-text {
    font-size: 2.3rem;
    margin-top: 24px;
    margin-bottom: 15px;
  }
}
.cp-h4-text {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.666;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media screen and (max-width: 959px) {
  .cp-h4-text {
    margin-bottom: 24px;
    font-size: 2rem;
    line-height: 1.65;
  }
}
.cp-h5-text {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.875;
  margin-top: 0;
  margin-bottom: 16px;
}

/* //見出し */
/* リード文 */
[data-area=content] .lead1 {
  font-size: 2.2rem;
  line-height: 1.666;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .lead1 {
    font-size: 2rem;
    line-height: 1.75;
    margin-bottom: 26px;
  }
}
[data-area=content] .lead2 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .lead2 {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 24px;
  }
}
[data-area=content] .lead3 {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  [data-area=content] .lead3 {
    line-height: 1.875;
    margin-bottom: 32px;
  }
}
/* //リード文 */
/* テキストブロック */
[data-area=content] .cp-text {
  gap: 60px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-text {
    gap: 24px;
    flex-direction: column;
  }
}
[data-area=content] .cp-text-col3.is-inner.is-w960,
[data-area=content] .cp-text-col4.is-inner.is-w960 {
  gap: 30px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-text-col3.is-inner.is-w960,
  [data-area=content] .cp-text-col4.is-inner.is-w960 {
    gap: 24px;
  }
}
[data-area=content] .cp-text .cp-text-l {
  margin-right: 0;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-text .cp-text-l {
    margin-bottom: 0;
  }
}
/* //テキストブロック */
/* 画像ブロック */
[data-area=content] .cp-img {
  gap: 60px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-img {
    gap: 24px;
  }
}
[data-area=content] .cp-img-col3.is-inner.is-w960,
[data-area=content] .cp-img-col4.is-inner.is-w960 {
  gap: 30px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-img-col3.is-inner.is-w960,
  [data-area=content] .cp-img-col4.is-inner.is-w960 {
    gap: 24px;
  }
}
[data-area=content] .cp-img .cp-img-l {
  margin-right: 0;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-img .cp-img-l {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 959px) {
  [data-area=content] .cp-img img {
    width: 100%;
  }
}
/* //画像ブロック */
.cp-wp {
  border: none;
  background: none;
  padding: 0;
}

.cp-wp .cp-text-item,
.cp-wp .cp-img-item {
  max-width: 100%;
  background-color: #fff;
  padding: 24px;
}

.is-inner.is-w960 .cp-wp .cp-text-item,
.is-inner.is-w960 .cp-wp .cp-img-item {
  width: 960px !important;
}

.is-inner.is-w1260 .cp-wp .cp-text-item,
.is-inner.is-w1260 .cp-wp .cp-img-item {
  width: 1160px !important;
}

@media screen and (max-width: 959px) {
  .cp-wp .cp-text-item,
  .cp-wp .cp-img-item {
    width: 100%;
  }
}
.ob-bgBox .cp-wp .cp-text-item,
.ob-bgBox .cp-wp .cp-img-item {
  background-color: #fff;
}

.cp-wp .cp-horizontal-item,
.cp-wp .cp-vertical-item {
  max-width: 100%;
  background-color: #fff;
  gap: 40px;
  padding: 60px 40px 73px;
}

.is-inner.is-w960 .cp-wp .cp-horizontal-item,
.is-inner.is-w960 .cp-wp .cp-vertical-item {
  width: 960px !important;
}

.is-inner.is-w1260 .cp-wp .cp-horizontal-item,
.is-inner.is-w1260 .cp-wp .cp-vertical-item {
  width: 1160px !important;
}

@media screen and (max-width: 959px) {
  .cp-wp .cp-horizontal-item,
  .cp-wp .cp-vertical-item {
    width: 100%;
    padding: 24px;
  }
}
/* 画像テキスト横 */
[data-area=content] .cp-horizontal .cp-horizontal-item {
  gap: 60px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-horizontal .cp-horizontal-item {
    gap: 24px;
  }
}
[data-area=content] .cp-horizontal .cp-horizontal-item img {
  width: 100%;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-horizontal .cp-horizontal-item.cp-ti-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 959px) {
  [data-area=content] .cp-horizontal .cp-horizontal-item.cp-it-item {
    flex-direction: column;
  }
}
[data-area=content] .cp-horizontal.is-inner .cp-horizontal-img,
[data-area=content] .cp-horizontal.is-inner .cp-horizontal-text {
  max-width: 600px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-horizontal.is-inner .cp-horizontal-img,
  [data-area=content] .cp-horizontal.is-inner .cp-horizontal-text {
    max-width: 100%;
  }
}
[data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-img,
[data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-text {
  max-width: 450px;
  width: 100%;
}

[data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-img .cp-inner,
[data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-text .cp-inner {
  width: 100%;
}

[data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-img .cp-inner img,
[data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-text .cp-inner img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-img,
  [data-area=content] .cp-horizontal.is-inner.is-w960 .cp-horizontal-text {
    max-width: 100%;
  }
}
[data-area=content] .cp-ti.cp-horizontal .cp-horizontal-text {
  margin-right: 0;
}

/* 画像テキスト縦 */
[data-area=content] .cp-vertical {
  gap: 60px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-vertical {
    gap: 32px;
  }
}
[data-area=content] .cp-vertical img {
  width: 100%;
}

[data-area=content] .cp-it-vertical-col3.is-inner.is-w960,
[data-area=content] .cp-it-vertical-col4.is-inner.is-w960,
[data-area=content] .cp-ti-vertical-col3.is-inner.is-w960,
[data-area=content] .cp-ti-vertical-col4.is-inner.is-w960 {
  gap: 30px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-it-vertical-col3.is-inner.is-w960,
  [data-area=content] .cp-it-vertical-col4.is-inner.is-w960,
  [data-area=content] .cp-ti-vertical-col3.is-inner.is-w960,
  [data-area=content] .cp-ti-vertical-col4.is-inner.is-w960 {
    gap: 24px;
  }
}
[data-area=content] .cp-vertical .cp-vertical-l {
  margin-right: 0;
}

@media screen and (max-width: 959px) {
  [data-area=content] .cp-vertical .cp-vertical-l {
    margin-bottom: 0;
  }
}
/* //画像テキスト縦 */
/* 3段組み */
[data-area=content] .cp-text-col3,
[data-area=content] .cp-img-col3,
[data-area=content] .cp-ti-vertical-col3,
[data-area=content] .cp-it-vertical-col3 {
  gap: 31px;
}

/* //3段組み */
/* ボタン挿入 */
[data-area=content] .button1,
[data-area=content] .button2,
[data-area=content] .button3 {
  margin-bottom: 10px;
}

[data-area=content] .button1 a,
[data-area=content] .button2 a,
[data-area=content] .button3 a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #222;
  background-color: transparent;
  border: none;
  padding: 0;
}

[data-area=content] .button1 a::before,
[data-area=content] .button2 a::before,
[data-area=content] .button3 a::before {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url('/albums/css/basic-blocks/abm00005671.svg');
}

@media screen and (min-width: 960px) {
  [data-area=content] .button1 a:hover::before,
  [data-area=content] .button2 a:hover::before,
  [data-area=content] .button3 a:hover::before {
    background-image: url('/albums/css/basic-blocks/abm00005670.svg');
  }
}
[data-area=content] .button1:last-child,
[data-area=content] .button2:last-child,
[data-area=content] .button3:last-child {
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  [data-area=content] .button1:last-child,
  [data-area=content] .button2:last-child,
  [data-area=content] .button3:last-child {
    margin-bottom: 24px;
  }
}
/* //ボタン挿入 */
/* ボタンブロック */
.cp-btn li a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #222;
  background-color: transparent;
  border: none;
  padding: 0;
  justify-content: flex-start;
}

.cp-btn li a::before {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url('/albums/css/basic-blocks/abm00005671.svg');
}

@media screen and (min-width: 960px) {
  .cp-btn li a:hover::before {
    background-image: url('/albums/css/basic-blocks/abm00005670.svg');
  }
}
/* ボタンブロック */
/* テーブル */
@media screen and (max-width: 959px) {
  [data-area=content] > table {
    max-width: calc(100% - 20px) !important;
  }
}
[data-area=content] table {
  line-height: 2;
  margin-bottom: 30px;
}

[data-area=content] table tr {
  background-color: #fff;
}

[data-area=content] table td {
  padding: 14px 20px;
  border-color: #ccc;
  line-height: 1.8666;
}

@media screen and (max-width: 959px) {
  [data-area=content] table td {
    font-size: 1.4rem;
    padding: 10px;
  }
}
[data-area=content] table.fr-alternate-rows tbody tr:nth-child(odd) {
  background-color: #EBF4F5;
}

[data-area=content] table.fr-alternate-rows tbody tr:nth-child(even) {
  background-color: inherit;
}

/* //テーブル */
/* テーブルスマホスクロール */
.tableHiddenBox {
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 959px) {
  .tableHiddenBox {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 959px) {
  .tableHiddenBox table {
    margin-bottom: 0;
  }
}
.tableHiddenBox .swipe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}

.tableHiddenBox .swipe > .swipe-inner {
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 50px 0 0;
}

.tableHiddenBox .swipe > .swipe-inner .imgs {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0px auto -10px;
  background-size: 40px 40px;
  background: url('/albums/css/basic-blocks/abm00005651.svg') center center no-repeat;
}

.tableHiddenBox .swipe > .swipe-inner .imgs::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -2px;
  right: 0;
  margin: -31px auto 0;
  z-index: 2;
  width: 26px;
  height: 31px;
  background-size: 30px 12px;
  background: url('/albums/css/basic-blocks/abm00005650.svg') center center no-repeat;
}

.tableHiddenBox .swipe.touched {
  opacity: 0;
  pointer-events: none;
}

/* //テーブルスマホスクロール */
/* 罫線 */
[data-area=content] > span,
[data-area=content] > strong {
  margin-bottom: 8px;
}

hr {
  margin-bottom: 20px !important;
}

/* //罫線 */
/* アンカーリンクメニュー */
.cp-anchor-menu {
  margin-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .cp-anchor-menu {
    margin-bottom: 40px;
  }
}
.cp-anchor-menu > div {
  display: flex;
}

.cp-anchor-menu > div::before {
  content: "INDEX";
  display: block;
  font-size: 1.4rem;
  font-family: "Libre Bodoni", serif;
  font-weight: bold;
  padding-right: 16px;
  border-right: 1px solid #ccc;
  margin-top: 3px;
  height: -moz-max-content;
  height: max-content;
}

.cp-anchor-menu ul {
  position: relative;
  padding-left: 16px !important;
  margin-right: 0 !important;
  gap: 4px 30px;
}

@media screen and (max-width: 959px) {
  .cp-anchor-menu ul {
    flex-direction: column;
    gap: 0;
  }
}
.cp-anchor-menu li {
  padding-left: 0 !important;
  margin-right: 0 !important;
  font-size: 1.4rem;
  line-height: 2;
}

.cp-anchor-menu li::before, .cp-anchor-menu li::after {
  content: none !important;
}

.cp-anchor-menu a {
  color: #222;
}

/* //アンカーリンクメニュー */
/* ==========================================================================

オリブロ

========================================================================== */
/* タブ */
.ob-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ob-tab.is-tab2 .ob-tab__label {
  width: calc((100% - 20px) / 2);
}

.ob-tab.is-tab3 .ob-tab__label {
  width: calc((100% - 40px) / 3);
}

.ob-tab.is-tab4 .ob-tab__label {
  width: calc((100% - 60px) / 4);
}

.ob-tab.is-tab5 .ob-tab__label {
  width: calc((100% - 80px) / 5);
}

@media screen and (max-width: 959px) {
  .ob-tab.is-tab2 .ob-tab__label {
    width: calc((100% - 8px) / 2);
  }
  .ob-tab.is-tab3 .ob-tab__label {
    width: calc((100% - 16px) / 3);
  }
  .ob-tab.is-tab4 .ob-tab__label {
    width: calc((100% - 24px) / 4);
  }
  .ob-tab.is-tab5 .ob-tab__label {
    width: calc((100% - 32px) / 5);
  }
}
.ob-tab__label {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  line-height: 1.5;
  font-size: 1.8rem;
  text-align: center;
  order: 1;
  flex-grow: 1;
  text-align: center;
  border-left: none;
  word-break: break-all;
  transition: ease 0.2s;
  box-sizing: border-box;
  background: #F8F8F8;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 1px solid #247789;
}

@media screen and (max-width: 959px) {
  .ob-tab__label {
    font-size: 1.2rem;
    line-height: 1.3;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
  }
}
.ob-tab__label:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.ob-tab__label:hover {
  color: #fff;
  background: #247789;
}

.ob-tab__label:hover a {
  color: #fff;
}

.ob-tab__label > .cp-inner {
  padding: 16px 24px;
}

@media screen and (max-width: 959px) {
  .ob-tab__label > .cp-inner {
    padding: 12px 20px;
  }
}
.ob-tab__label a {
  color: #222;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}

@media screen and (max-width: 959px) {
  .ob-tab__label a {
    padding: 12px 20px;
  }
}
.ob-tab__switch {
  display: none;
}

.ob-tab__switch:checked + .ob-tab__label {
  color: #fff;
  background: #247789;
}

.ob-tab .ob-tab__content {
  position: relative;
  width: 100%;
  order: 2;
}

.ob-tab .ob-tab__content > div {
  display: none;
  width: 100%;
  padding: 50px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 959px) {
  .ob-tab .ob-tab__content > div {
    padding: 50px 0 20px;
  }
}
.ob-tab__switch:checked + .ob-tab__label + .ob-tab__content > div {
  display: block;
}

/* //タブ */
/* 開閉式 */
.ob-acdUnit__head {
  position: relative;
  text-align: right;
}

.ob-acdUnit__headInner {
  position: relative;
  z-index: 2;
  display: inline-block;
  cursor: pointer;
  background-color: #555;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.ob-acdUnit.cp-all {
  margin-top: 0;
  margin-bottom: 0;
}

.ob-acdUnit__dt {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-image: url('/albums/css/basic-blocks/abm00005658.svg');
}

@media screen and (max-width: 959px) {
  .ob-acdUnit__dt {
    background-size: 16px;
  }
}
.ob-acdUnit__dt.is-active {
  background-color: #247789;
  background-image: url('/albums/css/basic-blocks/abm00005659.svg');
  transform: scale(1, -1);
}

@media screen and (min-width: 960px) {
  .ob-acdUnit__dt:hover {
    background-color: #247789;
    background-image: url('/albums/css/basic-blocks/abm00005659.svg');
  }
}
.ob-acdUnit__dtInner {
  display: block;
  padding: 28px 53px 28px 14px;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  line-height: 1.5;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit__dtInner {
    font-size: 1.5rem;
    padding: 20px 40px 20px 14px;
  }
}
.ob-acdUnit__dt.is-active .ob-acdUnit__dtInner {
  transform: scale(1, -1);
  color: #fff;
}

@media screen and (min-width: 960px) {
  .ob-acdUnit__dt:hover .ob-acdUnit__dtInner {
    color: #fff;
  }
}
.ob-acdUnit__dd {
  display: none;
  padding-top: 30px;
  margin-bottom: 40px;
}

/* //開閉式 */
/* 縦書き見出し */
.ob-ttlVertical {
  position: absolute;
  top: 390px;
  right: 11%;
  writing-mode: vertical-rl;
  font-family: "Libre Bodoni", serif;
  font-size: 6rem;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  height: -moz-max-content;
  height: max-content;
  z-index: 1;
}

@media screen and (max-width: 1520px) {
  .ob-ttlVertical {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1280px) {
  .ob-ttlVertical {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 959px) {
  .ob-ttlVertical {
    position: static;
    writing-mode: horizontal-tb;
    font-size: 3rem;
    padding: 0 10px;
    margin-bottom: 32px;
  }
}
.ob-ttlVertical.is-mv680 {
  top: 720px;
}

.cms .ob-ttlVertical {
  position: static;
  font-size: 3rem;
  writing-mode: horizontal-tb;
  padding: 12px 0;
}

.ob-ttlVerticalWrap {
  position: relative;
  padding: 0 10px;
}

.ob-ttlVerticalWrap .ob-ttlVertical {
  top: 0;
  left: -100px;
  right: auto;
}

@media screen and (max-width: 959px) {
  .ob-ttlVerticalWrap .ob-ttlVertical {
    padding-left: 0;
  }
}
.ob-ttlVerticalWrap.is-reverse .ob-ttlVertical {
  left: auto;
  right: -100px;
}

@media screen and (max-width: 959px) {
  .ob-ttlVerticalWrap.is-reverse .ob-ttlVertical {
    padding-right: 0;
  }
}
.ob-ttlVerticalWrap__inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* //縦書き見出し */
/* クエスチョン */
.ob-question {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 80px;
}

@media screen and (max-width: 959px) {
  .ob-question {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.ob-question.is-br {
  align-items: flex-start;
}

.ob-question__left {
  background-color: #247789;
  color: #fff;
  width: 69px;
  height: 69px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  .ob-question__left {
    width: 56px;
    height: 56px;
  }
}
.ob-question__leftTxtMain {
  font-size: 3.8rem;
  font-family: "Libre Bodoni", serif;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .ob-question__leftTxtMain {
    font-size: 3rem;
  }
}
.ob-question__leftTxtSub {
  font-size: 1.2rem;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .ob-question__leftTxtSub {
    font-size: 1.1rem;
  }
}
.ob-question__right {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  width: calc(100% - 94px);
}

@media screen and (max-width: 959px) {
  .ob-question__right {
    font-size: 2rem;
    width: calc(100% - 72px);
  }
}
.is-br .ob-question__right {
  margin-top: 8px;
}

/* //クエスチョン */
/* MV共通 */
.ob-mvCommon {
  width: 100%;
  height: 680px;
  position: relative;
  margin-bottom: 90px;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon {
    height: 240px;
    margin-bottom: 48px;
  }
}
.cms .ob-mvCommon {
  height: auto;
}

.ob-mvCommon__img {
  width: 100%;
  height: 100%;
}

.ob-mvCommon__img .cp-inner {
  height: 100%;
}

.ob-mvCommon__img .cp-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob-mvCommon__txt {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 148px;
  padding-left: 330px;
  font-size: 6rem;
  line-height: 148px;
  font-family: YuMincho, "Yu Mincho", serif;
  color: #fff;
  z-index: 10;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon__txt {
    font-size: 3rem;
    height: 80px;
    line-height: 80px;
    padding-left: 10px;
  }
}
.cms .ob-mvCommon__txt {
  color: inherit;
}

.ob-mvCommon__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 148px;
  background: #247789;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon__bg {
    height: 80px;
  }
}
.cms .ob-mvCommon__bg {
  display: none;
}

.ob-mvCommon.is-big {
  height: calc(var(--innerHeight, 1vh) * 100);
}

.cms .ob-mvCommon.is-big {
  height: auto;
}

.ob-mvCommon__txtWrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 280px;
  padding-left: 180px;
  font-family: YuMincho, "Yu Mincho", serif;
  color: #fff;
  z-index: 1;
  line-height: 1;
}

@media screen and (max-width: 1480px) {
  .ob-mvCommon__txtWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 90px;
  }
}
@media screen and (max-width: 959px) {
  .ob-mvCommon__txtWrap {
    padding-left: 30px;
    height: 160px;
  }
}
.page-index.business3 .ob-mvCommon__txtWrap {
  color: #222;
}

.cms .ob-mvCommon__txtWrap {
  position: static;
  height: auto;
  color: #222;
  padding-left: 0;
}

@media screen and (max-width: 959px) {
  .is-vertical .ob-mvCommon__txtWrap {
    margin-bottom: 24px;
  }
}
.ob-mvCommon__txtSub {
  font-size: 3.2rem;
  margin-top: 42px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon__txtSub {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
.cms .ob-mvCommon__txtSub {
  margin-left: 0;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.ob-mvCommon__txtMain {
  font-size: 6.8rem;
  margin-top: 17px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1480px) {
  .ob-mvCommon__txtMain {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 959px) {
  .ob-mvCommon__txtMain {
    font-size: 3.2rem;
    margin-top: 12px;
  }
}
.cms .ob-mvCommon__txtMain {
  margin-top: 0 !important;
  margin-left: 0;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.ob-mvCommon__txtEn {
  color: #fff;
  font-size: 2.8rem;
  font-family: "Libre Bodoni", serif;
  margin-top: 32px;
  letter-spacing: 0.008em;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon__txtEn {
    margin-top: 12px;
  }
}
@media screen and (max-width: 750px) {
  .ob-mvCommon__txtEn {
    font-size: 2.4rem;
  }
}
.page-index.business3 .ob-mvCommon__txtEn {
  color: #dedede;
}

.cms .ob-mvCommon__txtEn {
  margin-top: 0 !important;
  margin-left: 0;
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: #222;
}

.ob-mvCommon.is-big .ob-mvCommon__bg {
  height: 280px;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon.is-big .ob-mvCommon__bg {
    height: 160px;
  }
}
.ob-mvCommon.is-vertical {
  margin-bottom: 160px;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon.is-vertical {
    margin-bottom: 40px;
  }
}
.page-index.administration3 .ob-mvCommon.is-vertical, .page-index.business3 .ob-mvCommon.is-vertical, .page-index.accounting3 .ob-mvCommon.is-vertical {
  margin-bottom: 0;
}

.ob-mvCommon__vertical {
  position: absolute;
  top: 14.1%;
  right: 18.2%;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon__vertical {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    text-orientation: upright;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
  }
}
.ob-mvCommon__vertical span {
  background-color: #fff;
  height: -moz-max-content;
  height: max-content;
  padding: 8px 4px;
}

.ob-mvCommon__vertical .cp-inner {
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon__vertical .cp-inner {
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .ob-mvCommon__vertical .cp-inner {
    font-size: 1.6rem;
  }
}
.cms .ob-mvCommon__vertical .cp-inner {
  writing-mode: horizontal-tb;
}

.cms .ob-mvCommon__vertical {
  position: static;
  display: block;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon.is-vertical .ob-mvCommon__txtWrap {
    height: auto;
  }
}
@media screen and (max-width: 750px) {
  .ob-mvCommon.is-vertical .ob-mvCommon__txtWrap {
    padding-left: 10px;
  }
}
.cms .ob-mvCommon.is-vertical .ob-mvCommon__txtWrap {
  margin-left: 0;
  font-size: 2.4rem;
}

.ob-mvCommon.is-vertical .ob-mvCommon__txtSub {
  margin-top: 0;
}

.ob-mvCommon.is-vertical .ob-mvCommon__txtMain {
  margin-top: 33px;
}

@media screen and (max-width: 959px) {
  .ob-mvCommon.is-vertical .ob-mvCommon__txtMain {
    margin-top: 12px;
  }
}
.ob-mvCommon.is-vertical .ob-mvCommon__txtEn {
  letter-spacing: 0.006em;
}

/* //MV共通 */
/* 縦書き見出しエリア */
.ob-verticalArea {
  position: relative;
}

.ob-verticalArea__vertical {
  position: absolute;
  left: -144px;
  writing-mode: vertical-rl;
  font-family: "Libre Bodoni", serif;
  font-size: 6rem;
  height: -moz-max-content;
  height: max-content;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .ob-verticalArea__vertical {
    position: static;
    writing-mode: horizontal-tb;
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
    display: none;
  }
}
.cms .ob-verticalArea__vertical {
  position: static;
}

/* //縦書き見出しエリア */
/* 2段ボックス */
.ob-nidanBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 60px;
}

@media screen and (max-width: 959px) {
  .ob-nidanBox {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.ob-nidanBox__left, .ob-nidanBox__right {
  border-top: 1px solid #ccc;
  padding: 50px 0;
}

/* //2段ボックス */
/* H2 英語有 */
.ob-headEn {
  position: relative;
}

@media screen and (max-width: 959px) {
  .ob-headEn {
    padding: 0 !important;
  }
}
.ob-headEn__sub {
  position: absolute;
  bottom: 0;
  left: 12px;
  font-size: 1.3rem;
  font-family: "Libre Bodoni", serif;
  display: none;
}

@media screen and (max-width: 959px) {
  .ob-headEn__sub {
    display: block;
  }
}
.cms .ob-headEn__sub {
  display: block;
}

.ob-bgBox .ob-headEn .cp-h2-text {
  margin-left: 0;
}

.ob-bgBox .ob-headEn__sub {
  left: 0;
}

/* //H2 英語有 */
/* 回り込み */
.ob-floatBox__img {
  float: right;
  max-width: 50%;
  width: 100%;
  margin: 0px 0 40px 40px;
}

@media screen and (max-width: 959px) {
  .ob-floatBox__img {
    float: none;
    margin: 0 auto 16px;
  }
}
.ob-floatBox__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.is-reverse .ob-floatBox__img {
  float: left;
  margin: 0px 40px 40px 0;
}

@media screen and (max-width: 959px) {
  .is-reverse .ob-floatBox__img {
    float: none;
    margin: 0 auto 16px;
  }
}
/* //回り込み */
/* 2段リスト */
.ob-2colList__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background-color: #EBF4F5;
  padding: 24px;
}

@media screen and (max-width: 959px) {
  .ob-2colList__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.ob-2colList ul {
  list-style: none;
  margin-left: 0;
}

.ob-2colList li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ob-2colList li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #247789;
}

/* //2段リスト */
/* 背景色有りエリア */
.ob-bgBox {
  background-color: #EBF4F5;
  padding: 80px 0;
}

.ob-bgBox__inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

/* //背景色有りエリア */
/* 画像テキスト（1対1） */
.ob-1to1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .ob-1to1 {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    margin-bottom: 32px;
    gap: 0;
  }
}
.ob-1to1__left {
  grid-column: 1/2;
}

.is-reverse .ob-1to1__left {
  grid-column: 2/3;
}

@media screen and (max-width: 959px) {
  .is-reverse .ob-1to1__left {
    grid-column: 1/2;
  }
}
.ob-1to1__left .cp-inner {
  width: 100%;
  height: 100%;
}

.ob-1to1__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob-1to1__right {
  grid-column: 2/3;
  background-color: #247789;
  color: #fff;
  padding: 48px 60px;
}

@media screen and (max-width: 959px) {
  .ob-1to1__right {
    grid-column: 1/2;
  }
}
.is-reverse .ob-1to1__right {
  grid-row: 1/2;
  grid-column: 1/2;
}

/* //画像テキスト（1対1） */
/* 画像テキスト（1対2） */
.ob-1to2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .ob-1to2 {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
}
.ob-1to2__left .cp-inner {
  width: 100%;
  height: 100%;
}

.ob-1to2__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob-1to2__right {
  background-color: #247789;
  color: #fff;
  padding: 48px 40px;
}

/* //画像テキスト（1対2） */
/* 見出し（アクセント） */
.ob-headAccent {
  font-family: "Edu TAS Beginner", cursive;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .ob-headAccent {
    font-size: 4.8rem;
    line-height: 1.1;
  }
}
/* //フォント（アクセント） */
/* 囲みエリア */
.ob-wpArea {
  background-color: #fff;
  padding: 60px 50px !important;
}

@media screen and (max-width: 959px) {
  .ob-wpArea {
    padding: 24px !important;
  }
}
/* //囲みエリア */
/* ==========================================================================

ヘッダー

========================================================================== */
.cp-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 191;
  transition: height 0.3s;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .cp-header {
    height: 60px;
    overflow: hidden;
  }
}
.cp-header__left {
  width: 960px;
  display: flex;
  background-color: transparent;
  transition: 0.3s;
}

@media screen and (max-width: 959px) {
  .cp-header__left {
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 960px) {
  .cp-header__left.is-active {
    background-color: #fff;
  }
}
@media screen and (max-width: 959px) {
  .is-scrolled .cp-header__left {
    opacity: 0;
    pointer-events: none;
  }
}
.cp-header__logoWrap {
  width: 444px;
  position: relative;
  transition: 0.3s;
  left: 0;
  display: flex;
  background-color: #fff;
}

@media screen and (max-width: 959px) {
  .cp-header__logoWrap {
    width: 100%;
  }
}
.cp-header__logoMain {
  display: flex;
  align-items: center;
  width: 206px;
  height: 100%;
}

@media screen and (max-width: 959px) {
  .cp-header__logoMain {
    width: 132px;
  }
}
.cp-header__logoMain a {
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 959px) {
  .cp-header__logoMain a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cp-header__logoMain a::after {
  content: none !important;
}

.cp-header__logoSub {
  display: flex;
  align-items: center;
  width: calc(100% - 206px);
  height: 100%;
}

@media screen and (max-width: 959px) {
  .cp-header__logoSub {
    width: calc(100% - 132px);
  }
}
.cp-header__logoSub a {
  padding-left: 30px;
}

@media screen and (max-width: 959px) {
  .cp-header__logoSub a {
    padding-left: 15px;
    padding-right: 10px;
    height: 26px;
  }
  .cp-header__logoSub a img {
    height: 100%;
  }
}
.cp-header__left.is-active .cp-header__logoSub {
  background-color: #F0F0F0;
}

.cp-header__logoBtn {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #CCCCCC;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  bottom: calc(50% - 10px);
  border-radius: 100%;
  pointer-events: none;
}

@media screen and (max-width: 959px) {
  .cp-header__logoBtn {
    display: none;
  }
}
.cp-header__logoBtn svg {
  transform: rotate(180deg);
  transition: 0.3s;
}

.cp-header__left.is-active .cp-header__logoBtn {
  background-color: #E95704;
}

.cp-header__left.is-active .cp-header__logoBtn svg {
  transform: rotate(0);
  transition: 0.3s;
}

.cp-header__linkWrap {
  top: 80px;
  opacity: 0;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: top 0.5s, opacity 0.2s;
  width: 960px;
  height: 180px;
  background-color: #F0F0F0;
  padding: 18px 94px 20px 120px;
  pointer-events: none;
}

.cp-header__left.is-active .cp-header__linkWrap {
  top: 100px;
  opacity: 1;
  pointer-events: auto;
  transition: top 0.5s, opacity 0.2s;
}

.cp-header__iconWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

.cp-header__iconLeft > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
}

.cp-header__iconLeft > a::after {
  content: none;
}

.cp-header__left.is-active .cp-header__iconLeft > a {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.3s;
  position: relative;
}

@media screen and (min-width: 960px) {
  .cp-header__left.is-active .cp-header__iconLeft > a:hover {
    opacity: 0.7;
  }
}
.cp-header__left.is-active .cp-header__iconLeft:nth-child(1) > a {
  transition-delay: 0.05s;
}

.cp-header__left.is-active .cp-header__iconLeft:nth-child(2) > a {
  transition-delay: 0.1s;
}

.cp-header__left.is-active .cp-header__iconLeft:nth-child(3) > a {
  transition-delay: 0.15s;
}

.cp-header__left.is-active .cp-header__iconLeft:nth-child(4) > a {
  transition-delay: 0.2s;
}

.cp-header__left.is-active .cp-header__iconLeft:nth-child(5) > a {
  transition-delay: 0.25s;
}

.cp-header__left.is-active .cp-header__iconLeft:nth-child(6) > a {
  transition-delay: 0.3s;
}

.cp-header__iconTmbLeft {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.16);
}

.cp-header__iconTxtLeft {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
  color: #222;
  position: absolute;
  bottom: -20px;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: -0.08em;
}

.cp-header__snsWrap {
  display: flex;
  justify-content: space-between;
  width: 174px;
}

.cp-header__snsWrap > a {
  display: block;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.cp-header__snsWrap > a::after {
  content: none;
}

.cp-header__left.is-active .cp-header__snsWrap > a {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.3s;
}

@media screen and (min-width: 960px) {
  .cp-header__left.is-active .cp-header__snsWrap > a:hover {
    opacity: 0.7;
  }
}
.cp-header__left.is-active .cp-header__snsWrap > a:nth-child(1) {
  transition-delay: 0.05s;
}

.cp-header__left.is-active .cp-header__snsWrap > a:nth-child(2) {
  transition-delay: 0.1s;
}

.cp-header__left.is-active .cp-header__snsWrap > a:nth-child(3) {
  transition-delay: 0.15s;
}

.cp-header__left.is-active .cp-header__snsWrap > a:nth-child(4) {
  transition-delay: 0.2s;
}

.cp-header__right {
  display: flex;
  justify-content: space-between;
  width: 320px;
}

@media screen and (max-width: 959px) {
  .cp-header__right {
    width: 60px;
  }
}
.cp-header__iconRight {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .cp-header__iconRight {
    display: none;
  }
}
.cp-header__iconRight a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #3F3D3A;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cp-header__iconRight a::after {
  content: none;
}

@media screen and (min-width: 960px) {
  .cp-header__iconRight a:hover {
    background-color: #E95704;
  }
}
.cp-header__iconTmbRight {
  padding-top: 3px;
}

.cp-header__iconTxtRight {
  font-size: 1.2rem;
  line-height: 1;
  padding-top: 3px;
}

.cp-header__iconRight:first-child {
  position: relative;
  z-index: 1;
}

.cp-header__search {
  position: absolute;
  left: 0;
  top: 0;
  height: 80px;
  width: 320px;
  background-color: #3F3D3A;
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.cp-header__search.is-active {
  opacity: 1;
  left: -320px;
  z-index: 10;
}

.cp-header__search form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

.cp-header__search input[type=text] {
  width: 280px;
  height: 40px;
  padding: 5px;
  background-color: #fff;
}

.cp-header__search input[type=submit] {
  width: 80px;
  height: 100%;
  position: absolute;
  right: -80px;
}

.cp-header__hamburger {
  width: 80px;
  height: 80px;
  background-color: #E95704;
  position: relative;
  transition: width 0.3s;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.cp-header__hamburger span {
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: #fff;
  left: calc(50% - 16px);
  transition: transform 0.3s;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger span {
    width: 20px;
    left: calc(50% - 10px);
  }
}
.cp-header__hamburger span:first-child {
  top: 22px;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger span:first-child {
    top: 17px;
  }
}
.cp-header__hamburger span:nth-child(2) {
  top: 32px;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger span:nth-child(2) {
    top: 25px;
  }
}
.cp-header__hamburger span:nth-child(3) {
  top: 42px;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger span:nth-child(3) {
    top: 33px;
  }
}
.cp-header__hamburger.is-active span:first-child {
  transform: rotate(45deg);
  top: 32px;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger.is-active span:first-child {
    top: 25px;
  }
}
.cp-header__hamburger.is-active span:nth-child(2) {
  display: none;
}

.cp-header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 32px;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburger.is-active span:nth-child(3) {
    top: 25px;
  }
}
.cp-header__hamburgerTxt {
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  font-size: 1.2rem;
  bottom: 10px;
}

@media screen and (max-width: 959px) {
  .cp-header__hamburgerTxt {
    bottom: 5px;
  }
}
/* ==========================================================================

グローバルナビゲーション

========================================================================== */
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: auto;
  background-color: #247789;
  z-index: 189;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, top 0.3s;
}

@media screen and (max-width: 959px) {
  .gnav {
    right: 0;
    bottom: 0;
  }
}
.gnav__wrap {
  padding: 182px 10px 80px;
  opacity: 0;
  background-color: #247789;
}

@media screen and (max-width: 959px) {
  .gnav__wrap {
    padding: 92px 0 55px;
  }
}
.is-active .gnav__wrap {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  top: 0;
  transition: opacity 0.3s, top 0.3s;
}

@media screen and (max-width: 959px) {
  .is-active .gnav__wrap {
    overflow-y: scroll !important;
    position: relative;
    z-index: 1;
  }
}
.gnav__inner {
  max-width: 1160px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .gnav__inner {
    padding: 0 25px;
    overflow: auto;
  }
}
.gnav__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 959px) {
  .gnav__contents {
    flex-direction: column;
    margin: 0 -25px 27px;
    border-bottom: 1px solid #006371;
    gap: 0;
  }
}
.gnav__contents > .categoryList {
  width: calc((100% - 90px) / 4);
  margin-bottom: 30px;
}

@media screen and (max-width: 959px) {
  .gnav__contents > .categoryList {
    width: 100%;
    margin-bottom: 0;
  }
}
.gnav__contents > .categoryList:first-child {
  display: none;
}

.gnav__contents > .categoryList:nth-child(8) {
  display: none;
}

@media screen and (max-width: 959px) {
  .gnav__contents > .categoryList:nth-child(8) {
    display: block;
  }
}
.gnav__contents > .categoryList.is-active {
  background-color: #006371;
}

.gnav .lv2-link {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 17px;
  border-bottom: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .gnav .lv2-link {
    font-size: 1.8rem;
    border-top: 1px solid #006371;
    border-bottom: none;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    position: relative;
    pointer-events: none;
  }
}
.gnav .lv2-folder {
  margin-top: 24px;
}

@media screen and (max-width: 959px) {
  .gnav .lv2-folder {
    margin-top: 0;
    display: none;
  }
}
.gnav .lv3-link {
  font-size: 1.5rem;
  line-height: 2;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .gnav .lv3-link {
    font-size: 1.6rem;
    border-top: 1px solid #006371;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 25px 0 calc(25px + 1em);
    position: relative;
    pointer-events: auto;
  }
}
.gnav .lv3-folder {
  display: none;
}

.gnav .lv4-link {
  color: #fff;
  font-size: 1.6rem;
  border-top: 1px solid #006371;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 25px 0 calc(25px + 2em);
}

.gnav .lv5-link {
  color: #fff;
  font-size: 1.6rem;
  border-top: 1px solid #006371;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 25px 0 calc(25px + 3em);
}

.gnav .categoryList.lv4-item.seminars4 {
  position: relative;
}

.gnav .categoryList.lv4-item.seminars4 .lv4-folder {
  display: none;
}

.gnav .categoryList.lv4-item.seminars4 .lv4-folder base-header0-nest-list:first-child {
  display: none;
}

.gnav .categoryList.course2 .lv2-folder > base-header0-nest-list:last-child {
  display: none;
}

.gnav .lnav-link::after {
  background-image: url('/albums/css/basic-blocks/abm00005660.svg');
}

.gnav .categoryList.lv2-item, .gnav .categoryList.lv3-item {
  position: relative;
}

.gnav__btnWrap {
  position: absolute;
  top: 18px;
  right: 25px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 959px) {
  .gnav__btnWrap {
    display: block;
    top: 0;
    right: 0;
  }
}
.gnav__btn {
  position: relative;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 959px) {
  .gnav__btn {
    width: 60px;
    height: 50px;
  }
}
.gnav__btn > span:first-child {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 959px) {
  .gnav__btn > span:first-child {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.gnav__btn > span:last-child {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.2s;
}

@media screen and (max-width: 959px) {
  .gnav__btn > span:last-child {
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}
.gnav__btnWrap.is-active .gnav__btn > span:last-child {
  transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 959px) {
  .gnav__btnWrap.is-active .gnav__btn > span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.gnav__menuSp {
  display: none;
  margin-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .gnav__menuSp {
    display: block;
  }
}
.gnav__menuSp a::after {
  content: none;
}

.gnav__search {
  display: none;
  height: 50px;
  background-color: #333;
  margin-bottom: 5px;
}

@media screen and (max-width: 959px) {
  .gnav__search {
    display: block;
  }
}
.gnav__search form {
  height: 100%;
  position: relative;
}

.gnav__search input[type=text] {
  width: calc(100% - 50px);
  height: 100%;
  color: #fff;
  padding: 8px;
}

.gnav__search input[type=submit] {
  position: absolute;
  width: 50px;
  height: 50px;
  background-size: 20px;
  background-position: center;
  background-image: url('/albums/css/basic-blocks/abm00005663.svg');
}

.gnav__surpport {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 5px;
  margin-bottom: 5px;
}

.gnav__surpportItem > a {
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  height: 50px;
}

.gnav__language {
  display: none;
  background-color: #333;
  color: #fff;
  padding: 17px 14px;
  font-size: 1.4rem;
  margin-bottom: 3px;
}

.gnav__languageTxt {
  margin-bottom: 10px;
}

.gnav__languageList {
  list-style: none;
}

.gnav__languageItem {
  position: relative;
  padding-left: 20px;
}

.gnav__languageItem::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.gnav__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 5px;
}

.gnav__link > a {
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3rem;
  height: 50px;
}

.gnav__relatedLinkWrap {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 8px 5px;
  display: none;
}

@media screen and (max-width: 959px) {
  .gnav__relatedLinkWrap {
    display: grid;
  }
}
@media screen and (max-width: 959px) {
  .gnav__relatedLinkWrap a::after {
    content: none;
  }
}
.gnav__relatedLinkItem > a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.3rem;
  line-height: 1.23;
  color: #fff;
}

.gnav__relatedLinkTmb {
  width: 54px;
  height: 54px;
}

/* ==========================================================================

トップへ戻るボタン

========================================================================== */
.cp-backToTop > a {
  position: fixed;
  width: 54px;
  height: 54px;
  background-color: #4b4b4b;
  bottom: 0;
  right: 10px;
  z-index: 100;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005654.svg');
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.is-scrolled .cp-backToTop > a {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 960px) {
  .cp-backToTop > a:hover {
    background-color: #247789;
  }
}
/* ==========================================================================

フッター

========================================================================== */
.cp-footer {
  background-color: #F8F8F8;
  padding: 46px 0 0;
  width: 100%;
  height: 340px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 959px) {
  .cp-footer {
    height: 100%;
    position: relative;
    padding-top: 15px;
  }
}
.top .cp-footer {
  position: fixed;
}

@media screen and (max-width: 959px) {
  .top .cp-footer {
    position: relative;
  }
}
.is-scrolled .cp-footer {
  z-index: 1;
}

.cp-footer__inner {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .cp-footer__inner {
    flex-direction: column;
    padding: 25px 25px 0;
  }
}
.cp-footer__left {
  width: 780px;
}

@media screen and (max-width: 959px) {
  .cp-footer__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.cp-footer__linkWrap {
  display: flex;
}

@media screen and (max-width: 959px) {
  .cp-footer__linkWrap {
    width: 100%;
    margin-bottom: 17px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px 9px;
  }
}
.cp-footer__link {
  width: 120px;
  height: 100px;
  margin-right: 10px;
}
@media screen and (max-width: 959px) {
  .cp-footer__link {
    width: 100%;
    margin-right: 0;
  }
}
.cp-footer__link > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  padding-top: 10px;
  text-decoration: none;
  transition: 0.1s;
}

@media screen and (min-width: 960px) {
  .cp-footer__link > a:hover {
    border-color: #247789;
    border-width: 2px;
  }
}
@media screen and (max-width: 959px) {
  .cp-footer__linkIcon {
    height: 30px;
  }
}
.cp-footer__linkTxt {
  font-size: 1.3rem;
  font-weight: 400;
  color: #3F3D3A;
  line-height: 1.25;
  padding: 8px 0 8px;
  display: flex;
  align-items: center;
  min-height: 32px;
}
@media screen and (max-width: 959px) {
  .cp-footer__linkTxt {
    padding: 12px 0;
  }
}.cp-footer__linkTxt {
  font-size: 1.3rem;
  font-weight: 400;
  color: #3F3D3A;
  line-height: 1.25;
  padding: 8px 0 8px;
  display: flex;
  align-items: center;
  min-height: 32px;
}
@media screen and (max-width: 959px) {
  .cp-footer__linkTxt {
    padding: 12px 0;
  }
}

.cp-footer__right {
  width: calc(100% - 780px);
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .cp-footer__right {
    width: 100%;
    padding-right: 0;
  }
}
.cp-footer__linkRight {
  width: calc(50% - 10px);
  height: 90px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  padding: 7px 8px 12px;
}

@media screen and (max-width: 959px) {
  .cp-footer__linkRight {
    height: 60px;
  }
}
.cp-footer__linkTtlRight {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1.5rem;
  color: #3F3D3A;
  margin-bottom: 5px;
}

@media screen and (max-width: 959px) {
  .cp-footer__linkTtlRight {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.cp-footer__linkRight > a {
  color: #fff;
  height: 36px;
  background-color: #247789;
  border: 1px solid #247789;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  .cp-footer__linkRight > a:hover {
    background-color: #fff;
    color: #247789;
  }
}
@media screen and (max-width: 959px) {
  .cp-footer__linkRight > a {
    height: 24px;
    font-size: 0.85rem;
  }
}
.cp-footer__bottom {
  width: 100%;
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  padding-bottom: 55px;
}

@media screen and (max-width: 959px) {
  .cp-footer__bottom {
    flex-direction: column;
    padding: 0;
    margin-top: 31px;
  }
}
.cp-footer__logoWrap {
  padding-right: 54px;
  border-right: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 29px;
}

@media screen and (max-width: 959px) {
  .cp-footer__logoWrap {
    padding-right: 0;
    border: none;
    margin-bottom: 20px;
    padding: 30px 50px 0;
    gap: 25px;
  }
}
.cp-footer__info {
  padding-left: 23px;
  font-size: 1.4rem;
}

@media screen and (max-width: 959px) {
  .cp-footer__info {
    text-align: center;
    padding-left: 0;
    line-height: 1.6;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 959px) {
  .cp-footer__info .sp-br {
    font-size: 0;
    display: block;
  }
}
.cp-footer__copy {
  text-align: center;
  background-color: #247789;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 959px) {
  .cp-footer__copy {
    height: 30px;
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 959px) {
  .cp-footer__copyLinkWrap {
    display: none;
  }
}
.cp-footer__copyLinkWrap > a {
  font-size: 1.3rem;
  color: #fff;
}

.cp-footer__copyLinkWrap > a:nth-of-type(1) {
  margin-right: 13px;
}

@media screen and (max-width: 959px) {
  .cp-footer__copyLinkWrap > a:nth-of-type(1) {
    margin: 0;
  }
}
.cp-footer__copyLinkWrap > a:nth-of-type(2) {
  margin-right: 14px;
  margin-left: 13px;
}

@media screen and (max-width: 959px) {
  .cp-footer__copyLinkWrap > a:nth-of-type(2) {
    margin: 0;
  }
}
.cp-footer__copyLinkWrap > a:nth-of-type(3) {
  margin-left: 14px;
}

@media screen and (max-width: 959px) {
  .cp-footer__copyLinkWrap > a:nth-of-type(3) {
    margin: 0;
  }
}
.cp-footer__copyInner {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .cp-footer__copyInner {
    justify-content: center;
  }
}
.cp-footer__copyInner a::after {
  content: "" !important;
  background: url('/albums/css/basic-blocks/abm00005660.svg') center center no-repeat;
  top: 3px;
}

.cp-footer__snsWrapSp {
  display: none;
}

@media screen and (max-width: 959px) {
  .cp-footer__snsWrapSp {
    display: flex;
    justify-content: space-between;
    width: 226px;
    margin-top: 17px;
    padding-bottom: 20px;
  }
}
.cp-footer__snsWrapSp img {
  width: 40px;
  height: 40px;
}

.cp-footer__copyLinksSp {
  display: none;
}

@media screen and (max-width: 959px) {
  .cp-footer__copyLinksSp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 35px;
  }
  .cp-footer__copyLinksSp > a {
    font-size: 1.1rem;
    color: #222;
  }
  .cp-footer__copyLinksSp > a::after {
    content: "" !important;
    background: url('/albums/css/basic-blocks/abm00005661.svg') center center no-repeat;
    background-size: cover;
    top: 2px;
    width: 10px;
    min-width: 10px;
    height: 10px;
  }
}
.cp-footer a::after {
  content: none;
}

/* ==========================================================================

レイアウト

========================================================================== */
.lo-aside {
  position: fixed;
  width: 100px;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 190;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Work Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: 0.3s;
}

@media screen and (max-width: 1580px) {
  .lo-aside {
    display: none;
  }
}
.is-scrolled .lo-aside {
  background-color: transparent;
}

.lo-breads {
  position: absolute;
  max-width: 100%;
  width: 100%;
  top: 280px;
  background-color: #fff;
  padding: 8px 10px;
}

@media screen and (max-width: 959px) {
  .lo-breads {
    top: 210px;
  }
}
.lo-breads__list {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  list-style: none;
  gap: 0 1em;
  flex-wrap: wrap;
}

@media screen and (max-width: 959px) {
  .lo-breads__list {
    display: inline;
  }
}
.lo-breads li {
  display: flex;
  gap: 1em;
}

@media screen and (max-width: 959px) {
  .lo-breads li {
    display: inline;
  }
}
.lo-breads li::after {
  content: "＞";
  display: block;
}

@media screen and (max-width: 959px) {
  .lo-breads li::after {
    display: inline;
    margin: 0 1em;
  }
}
.lo-breads li:last-child::after {
  content: none;
}

.lo-breads li:first-child a {
  font-size: 0;
}

.lo-breads li:first-child a::before {
  content: "HOME";
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  font-size: 1.5rem;
}

.lo-breads a {
  color: #247789;
}

.top .lo-breads,
.page-index.faculty2 .lo-breads,
.page-index.education2 .lo-breads,
.page-index.abroad2 .lo-breads,
.page-index.career2 .lo-breads,
.page-index.research2 .lo-breads {
  display: none;
}

.lo-lnav {
  position: fixed;
  top: 140px;
  right: 0;
  z-index: 10;
  background-color: #247789;
  width: 220px;
  line-height: 1.5;
}

@media screen and (max-width: 959px) {
  .lo-lnav {
    display: none;
  }
}
.lo-lnav__ttl {
  writing-mode: vertical-rl;
  height: 225px;
  width: 70px;
  position: absolute;
  pointer-events: auto;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 25px;
  background-color: #247789;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: width 0.2s, height 0.2s, top 0.2s, right 0.2s, opacity 0.2s;
}

.lo-lnav.is-active .lo-lnav__ttl {
  color: transparent;
  opacity: 0;
}

.lo-lnav__ttl::before {
  content: "";
  width: 18px;
  height: 15px;
  margin-bottom: 13px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005655.svg');
}

.lo-lnav.is-active .lo-lnav__ttl::before {
  background-image: none;
}

.lo-lnav__linkWrap {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  width: 70px;
  height: 225px;
  white-space: nowrap;
  pointer-events: none;
  transition: 0.2s;
}

.lo-lnav.is-active .lo-lnav__linkWrap {
  width: 100%;
  height: 100%;
  pointer-events: auto;
  opacity: 1;
}

.lo-lnav .lv2-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  background-color: #247789;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
}

.lv2-link + .lo-lnav__btnWrap {
  display: none;
}

.lo-lnav .lv3-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  background-color: #247789;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
  position: relative;
  padding-right: 20px;
  white-space: pre-wrap;
}

@media screen and (min-width: 960px) {
  .lo-lnav .lv3-link:hover {
    background-color: #006371;
  }
}
.lo-lnav .lv3-link.is-active {
  background-color: #006371;
}

.lo-lnav .lnav-link.is-folder {
  background-image: none;
}

.lo-lnav .lv3-folder {
  position: fixed;
  top: 140px;
  right: 0;
  width: 220px;
  padding: 17px 20px;
  background-color: #006371;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.lo-lnav__btnWrap.is-active + .lv3-folder {
  opacity: 1;
  pointer-events: auto;
  right: 220px;
}

.lo-lnav .lv4-link {
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  line-height: 1.5;
  height: 50px;
  white-space: break-spaces;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .lo-lnav .lv4-link:hover {
    text-decoration: underline;
  }
}
.lo-lnav .lv4-folder {
  position: fixed;
  top: 140px;
  right: 0;
  width: 220px;
  padding: 17px 20px;
  background-color: #006371;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.lo-lnav__btnWrap.is-active + .lv4-folder {
  right: 440px;
  pointer-events: auto;
  opacity: 1;
}

.lo-lnav .lv5-link {
  color: #fff;
  font-size: 1.4rem;
  white-space: break-spaces;
  display: flex;
  align-items: center;
  line-height: 2;
  white-space: break-spaces;
  min-height: 50px;
}

@media screen and (min-width: 960px) {
  .lo-lnav .lv5-link:hover {
    text-decoration: underline;
  }
}
.lo-lnav .categoryList {
  position: relative;
}

.lo-lnav__btnWrap {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  display: block;
  width: 60px;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.lo-lnav__btn {
  position: relative;
  width: 15px;
  height: 15px;
  top: 22px;
  right: 12px;
  margin-left: auto;
}

.lo-lnav__btn > span:first-child {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.lo-lnav__btn > span:last-child {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.2s;
}

.lo-lnav__btnWrap.is-active .lo-lnav__btn > span:last-child {
  transform: translateY(-50%) rotate(0deg);
}

.lo-lnav__examLink > a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  background-color: #fff;
  color: #247789;
  font-size: 1.5rem;
  text-decoration: none;
  border: 1px solid #ccc;
  transition: 0.3s;
}

@media screen and (min-width: 960px) {
  .lo-lnav__examLink > a:hover {
    background-color: #247789;
    color: #fff;
  }
  .lo-lnav__examLink > a:hover::after {
    background-image: url('/albums/css/basic-blocks/abm00005660.svg');
  }
}
.administration3 .lo-lnav .index3 {
  display: none;
}

.lo-lnav .lnav-link::after {
  background-image: url('/albums/css/basic-blocks/abm00005660.svg');
}

.lo-ttl {
  width: 100%;
  height: 280px;
  background-color: #EBF4F5;
  padding-top: 160px;
  margin-bottom: 100px;
}

@media screen and (max-width: 959px) {
  .lo-ttl {
    height: auto;
    min-height: 200px;
    padding: 110px 10px 24px;
    margin-bottom: 96px;
  }
}
.lo-ttl__txt {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.lo-container {
  width: 100%;
  overflow: hidden;
  background-color: #EBF4F5;
}

.lo-container.w1260 {
  max-width: 1160px;
  margin: 0 auto;
}

.top .lo-container,
.page-index.faculty2 .lo-container,
.page-index.education2 .lo-container,
.page-index.abroad2 .lo-container,
.page-index.research2 .lo-container {
  background-color: #fff;
}

.lo-footerGhost {
  height: 340px;
  background-color: transparent;
}

@media screen and (max-width: 959px) {
  .lo-footerGhost {
    display: none;
  }
}
.lo-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 188;
  background-color: transparent;
  opacity: 0;
  transition: 0.3s;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.lo-overlay.is-active {
  pointer-events: auto;
  opacity: 0.5;
  transition: 0.3s;
}

/* ==========================================================================

トップページ

========================================================================== */
.top .cp-videos-03 {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px) minmax(0, 380px);
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (max-width: 959px) {
  .top .cp-videos-03 {
    grid-template-columns: 1fr;
  }
}
.top .cp-videos-item .cp-videos-thumb {
  padding-top: 225px;
  margin-bottom: 12px;
}

@media screen and (max-width: 959px) {
  .top .cp-videos-item .cp-videos-thumb {
    padding-top: 280px;
  }
}
.top .cp-videos-item .cp-videos-thumb::after {
  content: "";
}

.top .cp-videos-item .cp-inner {
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.top .cp-videos-03 + .button1 {
  max-width: 1160px;
  width: 100%;
  margin: 40px auto 24px;
}

@media screen and (max-width: 959px) {
  .top .cp-videos-03 + .button1 {
    width: calc(100% - 60px);
  }
}
.ob-topMv {
  margin-bottom: 86px;
  position: fixed;
  top: 0;
  z-index: 0;
}

.ob-topMv__inner {
  position: relative;
}

.ob-topMv__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  z-index: 1000;
  overflow: hidden;
  bottom: 120px;
  left: 200px;
  font-family: YuMincho, "Yu Mincho", serif;
}

@media screen and (max-width: 959px) {
  .ob-topMv__copy {
    left: 15px;
    bottom: 48px;
  }
}
.cms .ob-topMv__copy {
  position: static;
  align-items: flex-start;
}

.ob-topMv__copyTxtWrap {
  line-height: 2.3;
  overflow: hidden;
  transform: translateX(-100%);
  animation: maincatch 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}

.cms .ob-topMv__copyTxtWrap {
  transform: none;
  animation: none;
}

.ob-topMv__copyTxt {
  display: inline;
  color: #3F3D3A;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-size: 4.4rem;
  padding-left: 28px;
  padding: 10px 18px;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 959px) {
  .ob-topMv__copyTxt {
    font-size: 2rem;
    padding: 4px 14px;
    letter-spacing: 0.05em;
  }
}
.cms .ob-topMv__copyTxt {
  position: static;
  font-size: 2rem;
}

.ob-topMv__copyTxt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
  animation: maincatch3 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1.5s;
}

.cms .ob-topMv__copyTxt::after {
  content: none;
}

@keyframes maincatch {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes maincatch2 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes maincatch3 {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes maincatchoff {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-150%);
  }
}
@keyframes maincatch2off {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
.ob-topMv__slideWrap {
  width: 100vw;
}

.ob-topMv__slideItem {
  width: 100%;
}

.ob-topMv__slideImg img {
  -o-object-fit: cover;
  object-fit: cover;
  animation: imgScaleOff 3s linear forwards;
  width: 100vw;
  height: 100vh;
}

@media screen and (max-width: 959px) {
  .ob-topMv__slideImg img {
    height: 75vh;
  }
}
.cms .ob-topMv__slideImg img {
  width: 640px;
  height: 360px;
  animation: none;
}

.ob-topMv .slick-active .ob-topMv__slideImg img {
  animation: imgScale 7.3s linear forwards;
}

.cms .ob-topMv .slick-active .ob-topMv__slideImg img {
  animation: none;
}

@keyframes imgScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes imgScaleOff {
  0% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.ob-contentWrap {
  margin-top: 100vh;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 959px) {
  .ob-contentWrap {
    margin-top: 75vh;
  }
}
.ob-bannerTop {
  position: relative;
  background-color: #fff;
  padding-top: 86px;
  margin-bottom: 40px;
  transition: 0.3s;
}

@media screen and (min-width: 960px) {
  .ob-bannerTop:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 959px) {
  .ob-bannerTop {
    padding: 26px 10px 0;
    margin-bottom: 30px;
  }
}
.ob-bannerTop__inner {
  max-width: 1160px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  background-position: center;
  background-size: cover;
  position: relative;
  justify-content: space-between;
  background-image: url('/albums/css/basic-blocks/abm00005751.jpg');
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__inner {
    height: 163px;
    overflow: hidden;
    background-image: url('/albums/css/basic-blocks/abm00005752.jpg');
  }
}
.ob-bannerTop__left, .ob-bannerTop__right {
  width: calc(50% - 203px);
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__left, .ob-bannerTop__right {
    width: 119px;
  }
}
.ob-bannerTop__leftTxt, .ob-bannerTop__rightTxt {
  width: 100%;
  height: 100%;
}

.ob-bannerTop__leftTxt > .cp-inner, .ob-bannerTop__rightTxt > .cp-inner {
  height: 100%;
}

.ob-bannerTop__left a, .ob-bannerTop__right a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 100px;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__left a, .ob-bannerTop__right a {
    font-size: 1.45rem;
    padding-top: 72px;
  }
}
@media screen and (max-width: 750px) {
  .ob-bannerTop__right {
    padding-right: 15px;
  }
}
.ob-bannerTop__right a span:first-child {
  font-size: 1.4rem !important;
  line-height: 1;
  margin-bottom: 8px;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__right a span:first-child {
    display: none;
  }
}
.ob-bannerTop__right a span:nth-child(2) {
  font-size: 3rem !important;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__right a span:nth-child(2) {
    display: none;
  }
}
.ob-bannerTop__rightSvg {
  display: none;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__rightSvg {
    display: block;
    max-width: 106px;
  }
}
.ob-bannerTop__middle {
  width: 406px;
  position: absolute;
  left: calc(50% - 203px);
  height: 157px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__middle {
    height: 80px;
  }
}
.ob-bannerTop__middleTxtSub {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  padding-top: 5px;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__middleTxtSub {
    font-size: 0.8rem;
  }
}
.ob-bannerTop__middleTxtMain {
  font-size: 3.6rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__middleTxtMain {
    font-size: 1.9rem;
    line-height: 1.8;
    margin-bottom: 2px;
  }
}
.ob-bannerTop__middleTxtBtn a {
  display: flex;
  width: 220px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background-color: #E95704;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .ob-bannerTop__middleTxtBtn a {
    width: 171px;
    height: 26px;
    font-size: 0.7rem;
    transform: scale(0.7);
  }
}
@media screen and (min-width: 960px) {
  .ob-bannerTop__middleTxtBtn a:hover {
    background-color: #3F3D3A;
  }
}
.ob-bannerTop a {
  text-decoration: none;
}

.ob-bannerTop a::after {
  content: none;
}

.top .ob-bannerTop + .cp-img-col2 {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .top .ob-bannerTop + .cp-img-col2 {
    margin-bottom: 40px;
  }
}
.top .ob-bannerTop + .cp-img-col2 a {
  transition: 0.3s;
}

@media screen and (min-width: 960px) {
  .top .ob-bannerTop + .cp-img-col2 a:hover {
    opacity: 0.7;
  }
}
.top .ob-bannerTop + .cp-img-col2 a::after {
  content: none;
}

.ob-headTop {
  position: relative;
  padding-bottom: 61px;
  max-width: 1180px;
  margin: 0 auto 48px;
  padding-left: 10px;
}

@media screen and (max-width: 959px) {
  .ob-headTop {
    margin-left: 10px;
    padding-bottom: 30px;
    padding-left: 0;
  }
}
.ob-headTop::after {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 10px;
  background-color: #ccc;
}

@media screen and (max-width: 959px) {
  .ob-headTop::after {
    left: 0;
  }
}
.ob-headTop__ttlEn {
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  color: #DB9F4C;
  line-height: 1;
  padding-left: 237px;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 959px) {
  .ob-headTop__ttlEn {
    font-size: 3rem;
    padding-left: 144px;
  }
}
.ob-headTop__ttlJp {
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  color: #3F3D3A;
  font-size: 6rem;
  line-height: 1;
  margin-top: 5px;
}

@media screen and (max-width: 959px) {
  .ob-headTop__ttlJp {
    font-size: 3rem;
  }
}
.ob-featureTop {
  max-width: 1180px;
  padding: 0 10px;
  margin: 0 auto 100px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-featureTop {
    padding: 0;
    margin-bottom: 64px;
  }
}
.ob-featureTop__desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.222;
  margin-bottom: 200px;
  margin-top: 40px;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__desc {
    padding: 0 10px;
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: 18px;
    margin-bottom: 180px;
  }
}
.ob-featureTop__contents {
  padding-top: 200px;
  padding-left: 98px;
  position: relative;
  height: 840px;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__contents {
    height: auto;
    padding: 200px 10px 39px;
  }
}
.ob-featureTop__contents::after {
  content: "";
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #EBF4F5;
  z-index: 0;
}

.ob-featureTop__vertical {
  position: absolute;
  left: 98px;
  top: -114px;
  z-index: 1;
  display: flex;
  writing-mode: vertical-rl;
  flex-direction: column;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__vertical {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 97px;
  }
}
.ob-featureTop__vertical .cp-inner {
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}

.cms .ob-featureTop__vertical {
  position: static;
}

.ob-featureTop__slideWrap {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1496px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  padding-bottom: 132px;
  max-width: calc((100vw - 1160px) / 2 + 1166px);
  gap: 28px;
}

.ob-featureTop__slideWrap.slick-slider {
  max-width: 1496px;
  gap: 0;
}

@media screen and (max-width: 1260px) {
  .ob-featureTop__slideWrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .ob-featureTop__slideWrap {
    flex-direction: column;
    gap: 28px;
    width: 100%;
    padding-bottom: 80px;
  }
}
.ob-featureTop__item.slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__item.slick-slide {
    margin: 0 8px;
  }
}
@media screen and (max-width: 639px) {
  .ob-featureTop__item.slick-slide {
    margin: 0;
  }
}
.ob-featureTop__item.slick-slide.slick-active {
  opacity: 1;
}

.ob-featureTop__itemImg {
  margin-bottom: 4px;
  overflow: hidden;
}

.ob-featureTop__itemImg .cp-inner {
  width: 480px;
  height: 320px;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__itemImg .cp-inner {
    width: auto;
    height: auto;
    overflow: auto;
  }
}
.ob-featureTop__itemImg img {
  transform: scale(1);
  transition: 0.3s;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__itemImg img {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .ob-featureTop__itemImg:hover img {
    transform: scale(1.15);
  }
}
.ob-featureTop__itemTxt {
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__itemTxt {
    font-size: 1.8rem;
    height: 74px;
    padding: 0 10px;
  }
}
.ob-featureTop__itemTxt a {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  line-height: 1.454;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__itemTxt a {
    font-size: 1.8rem;
  }
}
.ob-featureTop .slick-arrow {
  position: absolute;
  bottom: 47px;
  width: 50px;
  height: 50px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px;
  background-image: url('/albums/css/basic-blocks/abm00005653.svg');
}

@media screen and (min-width: 960px) {
  .ob-featureTop .slick-arrow:hover {
    background-image: url('/albums/css/basic-blocks/abm00005652.svg');
  }
}
@media screen and (max-width: 959px) {
  .ob-featureTop .slick-arrow {
    bottom: 40px;
  }
}
.ob-featureTop .slick-prev {
  left: 0;
  transform: rotate(180deg);
}

.ob-featureTop .slick-next {
  left: 60px;
}

.ob-featureTop__underTtl {
  position: relative;
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  color: #3F3D3A;
  font-size: 4rem;
  line-height: 1.5;
  z-index: 1;
  padding-top: 14px;
}

@media screen and (max-width: 959px) {
  .ob-featureTop__underTtl {
    font-size: 3rem;
    padding-top: 20px;
    letter-spacing: 0.005em;
    border-top: 1px solid #ccc;
    margin-right: -10px;
  }
}
.ob-featureTop__underTtl::before {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #555;
}

.ob-newsTop {
  padding: 56px 0 56px;
  position: relative;
  background-color: #EBF4F5;
  margin-bottom: 108px;
}

@media screen and (max-width: 959px) {
  .ob-newsTop {
    padding: 34px 0 32px;
    margin-bottom: 64px;
  }
}
.ob-newsTop__ttlWrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 0;
}

@media screen and (max-width: 959px) {
  .ob-newsTop__ttlWrap {
    flex-direction: column-reverse;
    gap: 0;
    margin-bottom: 35px;
  }
}
.ob-newsTop__ttlEn {
  font-size: 7rem;
  font-weight: bold;
  font-family: "Edu TAS Beginner", cursive;
}

@media screen and (max-width: 959px) {
  .ob-newsTop__ttlEn {
    font-size: 5.1rem;
    line-height: 1.1;
  }
}
.ob-newsTop__ttlJp {
  font-size: 2rem;
  font-weight: bold;
  transform: translateY(10px);
}

@media screen and (max-width: 959px) {
  .ob-newsTop__ttlJp {
    font-size: 1.45rem;
    transform: none;
  }
}
.ob-newsTop .button1 {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .ob-newsTop .button1 {
    width: calc(100% - 60px);
  }
}
/* Webマガジン */
.ob-magazin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(220px, 1fr);
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .ob-magazin {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    margin-bottom: 32px;
    gap: 0;
  }
}
.ob-magazin__left a::after {
  content: none;
}

.ob-magazin__right {
  background-color: #fff;
  padding: 40px;
}

.ob-magazin a,
.ob-magazin .cp-inner {
  width: 100%;
  height: 100%;
  display: block;
}

.ob-magazin img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 100% 100%;
  object-position: 100% 100%;
}

/* //Webマガジン */
.top .newsContents {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 34px;
  overflow-x: visible;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 2161px) {
  .top .newsContents {
    max-width: 2160px;
  }
}
@media screen and (max-width: 639px) {
  .top .newsContents {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.top .newsContents .slick-list {
  overflow: visible;
}

.top .newsContents .slick-prev,
.top .newsContents .slick-next {
  position: absolute;
  width: calc(50vw - 50%);
  height: 100%;
  font-size: 0;
  background-color: transparent;
  opacity: 0.4;
  left: calc(-50vw + 50%);
  top: 0;
  z-index: 2;
}

.top .newsContents .slick-next {
  left: auto;
  right: calc(-50vw + 50%);
}

.top .newsContents__item {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.top .newsContents__item:last-child {
  display: none;
}

.top .newsContents__item.slick-active {
  opacity: 1;
}

.top .newsContents__item a {
  text-decoration: none;
}

.top .newsContents__item a::after {
  content: none;
}

.top .newsContents__tmb {
  margin-bottom: 2px;
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 959px) {
  .top .newsContents__tmb {
    height: 200px;
  }
}
.top .newsContents__tmb.is-default::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005640.png');
  transition: 0.3s;
}

.top .newsContents__tmb img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (max-width: 639px) {
  .top .newsContents__tmb img {
    height: 200px;
  }
}
.top .newsContents__item:hover img {
  transform: scale(1.15);
}

@media screen and (min-width: 960px) {
  .top .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.top .newsContents__txtWrap {
  border-left: 1px solid #ccc;
  padding: 8px 10px;
  height: 124px;
}

@media screen and (max-width: 959px) {
  .top .newsContents__txtWrap {
    padding: 4px 10px 0;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  .top .newsContents__txtWrap {
    border-left: none;
  }
  .top .newsContents .slick-active .newsContents__txtWrap {
    border-width: 0 1px 0 1px;
    border-color: #ccc;
    border-style: solid;
  }
}
.top .newsContents__ttl {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.55;
}

.top .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/* 学科バナー */
.ob-gakkaBanner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto 140px;
  font-weight: 500;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 959px) {
  .ob-gakkaBanner {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    margin-bottom: 32px;
    gap: 0;
  }
}
@media screen and (min-width: 960px) {
  .ob-gakkaBanner:hover {
    text-decoration: none;
  }
}
.ob-gakkaBanner__left {
  padding: 48px 60px;
  background-color: #247789;
}

@media screen and (max-width: 959px) {
  .ob-gakkaBanner__left {
    padding: 24px;
  }
}
.ob-gakkaBanner__ttl {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 48px;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
}

@media screen and (max-width: 959px) {
  .ob-gakkaBanner__ttl {
    font-size: 2.8rem;
    margin-bottom: 48px;
  }
}
.ob-gakkaBanner__txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ob-gakkaBanner__txt::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005830.svg');
}

.ob-gakkaBanner__right {
  overflow: hidden;
}

.ob-gakkaBanner__right .cp-inner,
.ob-gakkaBanner__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.2s;
}

@media screen and (min-width: 960px) {
  .ob-gakkaBanner:hover .ob-gakkaBanner__right img {
    transform: scale(1.15);
  }
}
/* //学科バナー */
/* ==========================================================================

学部紹介

========================================================================== */
.page-index.faculty2 .lo-ttl {
  display: none;
}

.page-index.faculty2 .ob-mvGakubu__copyTxt:first-child {
  opacity: 0;
}

.page-index.faculty2 .ob-process + .ob-bgBox {
  padding-top: 193px;
  padding-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-process + .ob-bgBox {
    padding-top: 48px;
  }
}
.page-index.faculty2 .ob-process + .ob-bgBox .ob-headTop {
  margin-bottom: 0;
}

.page-index.faculty2 .ob-bgBox + .ob-catch {
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-bgBox + .ob-catch {
    padding-top: 140px;
  }
}
.page-index.faculty2 .ob-bgBox + .ob-catch::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 669px;
  top: 0;
  left: calc((100vw - 100%) / -2);
  background-color: #EBF4F5;
  z-index: 0;
}

.page-index.faculty2 .ob-bgBox + .ob-catch .ob-catch__inner {
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-bgBox + .ob-catch .ob-catch__txtWrap {
    background-color: transparent;
  }
}
@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-bgBox + .ob-catch .ob-catch__vertical {
    top: -80px;
  }
}
.page-index.faculty2 .ob-catch:nth-last-child(2) {
  padding: 54px 10px 64px;
}

@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-catch:nth-last-child(2) {
    padding: 54px 0 10px;
  }
}
@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-catch:nth-last-child(2) .ob-catch__bg {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-catch:nth-last-child(2) .ob-catch__txtWrap {
    padding: 0 10px;
  }
}
/* 学部紹介 MV */
.ob-mvGakubu {
  width: 100%;
  height: calc(var(--innerHeight, 1vh) * 100);
}

.cms .ob-mvGakubu {
  width: auto;
  height: auto;
}

.ob-mvGakubu__src {
  display: none;
}

.cms .ob-mvGakubu__src {
  display: block;
}

.ob-mvGakubu video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob-mvGakubu__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  overflow: hidden;
  bottom: 94px;
  left: 211px;
  font-family: YuMincho, "Yu Mincho", serif;
}

@media screen and (max-width: 959px) {
  .ob-mvGakubu__copy {
    left: 15px;
    bottom: 97px;
  }
}
.cms .ob-mvGakubu__copy {
  position: static;
  align-items: flex-start;
}

.ob-mvGakubu__copyTxtWrap {
  line-height: 2.3;
  overflow: hidden;
  transform: translateX(-100%);
  animation: maincatch 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}

.cms .ob-mvGakubu__copyTxtWrap {
  transform: none;
  animation: none;
}

.ob-mvGakubu__copyTxt {
  display: inline;
  color: #3F3D3A;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-size: 4.4rem;
  padding-left: 28px;
  padding: 10px 18px;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 959px) {
  .ob-mvGakubu__copyTxt {
    font-size: 2rem;
    padding: 4px 14px;
    letter-spacing: 0em;
  }
}
.cms .ob-mvGakubu__copyTxt {
  position: static;
  font-size: 2rem;
}

.ob-mvGakubu__copyTxt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
  animation: maincatch3 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1.5s;
}

.cms .ob-mvGakubu__copyTxt::after {
  content: none;
}

/* //学部紹介 MV */
/* 学部紹介 情報 */
.ob-gakubuInfo {
  margin: 100px auto;
}

@media screen and (max-width: 959px) {
  .ob-gakubuInfo {
    margin: 64px auto;
  }
}
.ob-gakubuInfo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

@media screen and (max-width: 959px) {
  .ob-gakubuInfo__inner {
    grid-template-columns: 1fr;
  }
}
.ob-gakubuInfo__itemTop {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 36px;
  margin-bottom: 36px;
}

@media screen and (max-width: 959px) {
  .ob-gakubuInfo__itemTop {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.ob-gakubuInfo__itemTxt {
  color: #247789;
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 959px) {
  .ob-gakubuInfo__itemTxt {
    font-size: 1.8rem;
  }
}
.ob-gakubuInfo__itemNum {
  color: #247789;
  font-family: "Libre Bodoni", serif;
  font-size: 8.6rem;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .ob-gakubuInfo__itemNum {
    font-size: 6.4rem;
  }
}
/* //学部紹介 情報 */
/* 6つのコース制 */
.ob-6course {
  max-width: 1180px;
  margin: 0 auto 155px;
}

@media screen and (max-width: 959px) {
  .ob-6course {
    margin: 0;
  }
}
.ob-6course__inner {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 16px;
  max-width: 1160px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-6course__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }
}
.ob-6course__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 287px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .ob-6course__item {
    height: 320px;
  }
}
.ob-6course__item::after {
  content: "";
  width: 100%;
  height: 80px;
  background-color: #247789;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 959px) {
  .ob-6course__item::after {
    height: 64px;
  }
}
.ob-6course__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 27px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: center right 30px;
  background-image: url('/albums/css/basic-blocks/abm00005670.svg');
  z-index: 2;
  pointer-events: none;
}

@media screen and (max-width: 959px) {
  .ob-6course__txt {
    height: 64px;
    font-size: 1.8rem;
    padding-left: 14px;
    background-size: 25px auto;
    background-position: center right 15px;
  }
}
.cms .ob-6course__txt {
  pointer-events: auto;
}

@media screen and (min-width: 960px) {
  .ob-6course__item:hover .ob-6course__txt {
    background-image: url('/albums/css/basic-blocks/abm00005671.svg');
  }
}
.ob-6course__img {
  height: 100%;
  transition: 0.3s;
  pointer-events: auto;
}

@media screen and (max-width: 959px) {
  .ob-6course__img {
    max-height: 400px;
  }
}
.ob-6course__img .cp-inner, .ob-6course__img a {
  display: block;
  height: 100%;
}

.ob-6course__img a {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .ob-6course__img a {
    padding-top: 56.25%;
  }
}
.ob-6course__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
}

@media screen and (min-width: 960px) {
  .ob-6course__item:hover .ob-6course__img {
    transform: scale(1.15);
  }
}
/* //6つのコース制 */
/* ==========================================================================

世界を知る教員たち

========================================================================== */
.ob-whoKnow {
  background-color: #fff;
  padding: 50px !important;
}

@media screen and (max-width: 959px) {
  .ob-whoKnow {
    padding: 24px !important;
  }
}
.ob-whoKnow:not(:nth-last-child(2)) {
  margin-bottom: 20px;
}

.ob-whoKnow:nth-last-child(2) {
  margin-bottom: 40px;
}

.ob-whoKnow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .ob-whoKnow__inner {
    grid-template-columns: 1fr;
  }
}
.ob-whoKnow__head {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 74px;
}

@media screen and (max-width: 959px) {
  .ob-whoKnow__head {
    margin-bottom: 32px;
  }
}
.ob-whoKnow__tmb {
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
}

.ob-whoKnow__ttl {
  margin: 0;
  color: #247789;
  margin-bottom: 12px;
}

.ob-whoKnow__link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ob-whoKnow__link::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005800.svg');
}

@media screen and (min-width: 960px) {
  .ob-whoKnow__link:hover::before {
    background-image: url('/albums/css/basic-blocks/abm00005799.svg');
  }
}
.ob-whoKnow__link a {
  color: #222;
}

/* ==========================================================================

在学生からメッセージ

========================================================================== */
.ob-introduction {
  background-color: #fff;
  padding: 50px !important;
}

@media screen and (max-width: 959px) {
  .ob-introduction {
    padding: 24px !important;
  }
}
.ob-introduction:not(:last-child) {
  margin-bottom: 20px;
}

.ob-introduction__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .ob-introduction__inner {
    grid-template-columns: 1fr;
  }
}
.ob-introduction__head {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
}

@media screen and (max-width: 959px) {
  .ob-introduction__head {
    margin-bottom: 32px;
  }
}
.ob-introduction__tmb {
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
}

.ob-introduction__ttl {
  margin: 0;
  color: #247789;
  margin-bottom: 12px;
}

.ob-introduction__link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ob-introduction__link::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005800.svg');
}

@media screen and (min-width: 960px) {
  .ob-introduction__link:hover::before {
    background-image: url('/albums/css/basic-blocks/abm00005799.svg');
  }
}
.ob-introduction__link a {
  color: #222;
}

/* ==========================================================================

学科紹介

========================================================================== */
@media screen and (max-width: 959px) {
  .page-index.education2 .ob-headEn + .ob-ttlVerticalWrap .ob-ttlVertical__txt {
    display: none;
  }
}
.page-index.education2 .ob-mvCommon {
  margin-bottom: 0;
}

.page-index.education2 .ob-mvCommon__txtWrap,
.page-index.education2 .ob-mvCommon__txtEn {
  color: #222;
}

.page-index.education2 .ob-mvCommon__txtSub {
  font-size: 4rem;
}

.page-index.education2 .ob-mvCommon__txtMain {
  font-size: 8rem;
  margin-top: 24px;
}

.page-index.education2 .ob-mvCommon__txtEn {
  font-size: 2.8rem;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-top: 24px;
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-mvCommon__vertical {
    top: 120px;
  }
}
.page-index.education2 .ob-catch {
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-catch {
    padding: 180px 10px 21px;
  }
}
.page-index.education2 .ob-catch::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 83px;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  background-color: #EBF4F5;
  z-index: 0;
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-catch::after {
    content: none;
  }
}
.page-index.education2 .ob-catch__inner {
  z-index: 1;
}

.page-index.education2 .ob-catch__txtWrap {
  width: 50vw;
  height: 380px;
  padding-right: calc(50vw - 628px);
  bottom: -64px;
  right: calc((100vw - 100%) / -2);
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-catch__txtWrap {
    height: auto;
    width: 100%;
  }
}
.page-index.education2 .ob-course + .cp-text-col1 {
  margin-bottom: 100px;
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-course + .cp-text-col1 {
    margin-bottom: 48px;
  }
}
.page-index.education2 .ob-ttlVerticalWrap .cp-text-col1 {
  margin-bottom: 90px;
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-ttlVerticalWrap .cp-text-col1 {
    margin-bottom: 48px;
  }
}
.page-index.education2 .ob-1to2 span {
  line-height: 1.1;
  border-bottom: 1px solid #fff;
}

.page-index.education2 .ob-1to2 strong {
  font-size: 2.2rem;
  margin-bottom: 7px;
  display: block;
}

.page-index.education2 .ob-1to2 + .cp-text-col1 {
  margin-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .page-index.education2 .ob-1to2 + .cp-text-col1 {
    margin-bottom: 40px;
  }
}
/* 6つのコース制 */
.ob-course {
  margin-bottom: 24px;
}

.ob-course__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(408px, 1fr));
  grid-template-rows: 1fr;
  gap: 28px 17px;
}

@media screen and (max-width: 959px) {
  .ob-course__inner {
    grid-template-columns: 1fr;
  }
}
.ob-course__item {
  background-color: #247789;
  color: #fff;
  height: 80px;
}

.ob-course__item .cp-inner {
  width: 100%;
  height: 100%;
}

.ob-course__item a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 23px;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-image: url('/albums/css/basic-blocks/abm00005830.svg');
}

@media screen and (min-width: 960px) {
  .ob-course__item:hover a {
    background-color: #fff;
    border: 1px solid #247789;
    color: #247789;
    background-image: url('/albums/css/basic-blocks/abm00005829.svg');
  }
}
/* //6つのコース制 */
/* 選べる11の地域言語 */
.ob-11lang {
  margin-bottom: 50px;
}

.ob-11lang__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
  grid-template-rows: 240px 240px 240px;
  gap: 20px 12px;
}

.ob-11lang__item {
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
}

.ob-11lang__img {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 20px;
  margin: 0 auto;
}

.ob-11lang__bottom {
  border-top: 1px solid #ccc;
  padding-top: 16px;
}

.ob-11lang__lang {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.ob-11lang__txt {
  font-size: 1.4rem;
  line-height: 1.857;
}

/* //選べる11の地域言語 */
/* 学科DATA */
.ob-data__grid {
  display: grid;
  grid-template-columns: 156px 1fr 156px 1fr;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .ob-data__grid {
    grid-template-columns: 156px 1fr;
  }
}
.ob-data__item {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.ob-data__item:nth-child(4n+2) {
  margin-right: 60px;
}

.ob-data__item:nth-child(n+9) {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 959px) {
  .ob-data__item:nth-child(odd) {
    grid-column: 1/2;
  }
  .ob-data__item:nth-child(even) {
    grid-column: 2/3;
  }
  .ob-data__item:nth-child(4n+2) {
    margin-right: 0;
  }
  .ob-data__item:nth-child(n+9) {
    border-bottom: none;
  }
  .ob-data__item:nth-child(n+11) {
    border-bottom: 1px solid #ccc;
  }
}
.ob-data ul {
  list-style: none;
  margin-left: 0;
}

.ob-data li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 19px;
}

.ob-data li::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #247789;
  top: 11px;
  left: 0;
}

/* //学科DATA */
/* 在学生VOICE */
.ob-zaigakuVoice {
  margin-bottom: 0 !important;
}

.ob-zaigakuVoice__inner {
  position: relative;
  max-width: calc(100% - 330px);
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__inner {
    max-width: 100%;
  }
}
.cms .ob-zaigakuVoice__inner {
  max-width: 100%;
  margin: 0;
}

.ob-zaigakuVoice__inner {
  max-width: 1590px;
  margin-left: calc((100% - 1160px) / 2);
}

@media screen and (max-width: 1260px) {
  .ob-zaigakuVoice__inner {
    margin: 0;
  }
}
.ob-zaigakuVoice__layerBottom {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__layerBottom {
    flex-direction: column;
  }
}
.ob-zaigakuVoice__txtWrap {
  max-width: 530px;
  width: 100%;
  padding-left: 10px;
}

@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__txtWrap {
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 16px;
  }
}
.ob-zaigakuVoice__lead {
  margin-top: 34px;
  font-size: 2.8rem !important;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__lead {
    width: 100%;
    font-size: 2rem !important;
    margin-top: 0;
  }
}
.ob-zaigakuVoice__bg {
  max-width: calc(100% - 530px);
  width: 100%;
  height: 620px;
  border-radius: 40px 0 0 0;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__bg {
    max-width: 100%;
    height: auto;
  }
}
.ob-zaigakuVoice__bg .cp-inner {
  width: 100%;
  height: 100%;
}

.ob-zaigakuVoice__bg .cp-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob-zaigakuVoice__layerTop {
  max-width: 1160px;
  width: 100%;
  height: 480px;
  margin-top: -258px;
  margin-left: -330px;
  background-color: #247789;
  padding: 90px 171px 0 0;
  position: relative;
  border-radius: 0 40px 0 0;
}

@media screen and (max-width: 1921px) {
  .ob-zaigakuVoice__layerTop {
    margin-left: calc((100vw - 1160px) / -2);
  }
}
@media screen and (max-width: 1260px) {
  .ob-zaigakuVoice__layerTop {
    max-width: 73.6vw;
    margin-left: 0;
  }
}
@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__layerTop {
    margin-top: 0;
    margin-left: 0;
    padding: 24px 10px;
    max-width: 100%;
    height: auto;
    border-radius: 0;
  }
}
.cms .ob-zaigakuVoice__layerTop {
  position: static;
  margin: 0;
  height: auto;
  padding: 16px;
}

.ob-zaigakuVoice__layerTopTxt {
  max-width: 760px;
  width: 100%;
  margin-left: auto;
  padding-left: 10px;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .ob-zaigakuVoice__layerTopTxt {
    max-width: 100%;
  }
}
.cms .ob-zaigakuVoice__layerTopTxt {
  max-width: 100%;
}

/* //在学生VOICE */
/* ==========================================================================

国際学科の学び

========================================================================== */
.page-structure.education2 .ob-ttlVerticalWrap {
  padding: 0 10px;
}

@media screen and (max-width: 959px) {
  .page-structure.education2 .ob-ttlVertical {
    display: none;
  }
}
.page-structure.education2 .ob-ttlVerticalWrap + .ob-headEn + .ob-ttlVerticalWrap .ob-ttlVerticalWrap__inner > span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  line-height: 1.3;
  display: inline-block;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .page-structure.education2 .ob-ttlVerticalWrap + .ob-headEn + .ob-ttlVerticalWrap .ob-ttlVerticalWrap__inner > span {
    font-size: 3.2rem;
    margin-bottom: 32px;
  }
}
/* 4年間の学び */
.ob-study {
  padding: 62px 50px;
  background-color: #fff;
  margin-bottom: 120px;
}

@media screen and (max-width: 959px) {
  .ob-study {
    padding: 24px;
    margin-bottom: 64px;
  }
}
.ob-study__item:not(:last-child) {
  margin-bottom: 80px;
}

.ob-study__ttlWrap {
  display: flex;
  gap: 25px;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .ob-study__ttlWrap {
    margin-bottom: 32px;
  }
}
.ob-study__box {
  width: 69px;
  height: 69px;
  background-color: #247789;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}

.ob-study__num {
  font-family: "Libre Bodoni", serif;
  font-size: 3.8rem;
}

.ob-study__nenji {
  font-size: 1.4rem;
}

.ob-study__ttl {
  margin: 12px 0px;
}

@media screen and (max-width: 959px) {
  .ob-study__ttl {
    margin: 0;
  }
}
@media screen and (max-width: 959px) {
  .ob-study td:first-child {
    width: 30% !important;
  }
}
/* //4年間の学び */
/* ==========================================================================

6つのコース

========================================================================== */
.page-course.education2 .ob-1to1 {
  margin-top: 60px;
}

.page-course.education2 .ob-1to1__right {
  background-color: #fff;
  color: #222;
}

/* コースキャッチコピー */
.ob-courseCopy {
  max-width: 1180px;
  padding: 120px 10px 83px;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy {
    max-width: 100%;
    padding: 101px 10px 21px;
  }
}
.ob-courseCopy.is-reverse {
  padding: 129px 0 97px;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy.is-reverse {
    padding: 31px 0 44px;
  }
}
.cms .ob-courseCopy {
  padding: 0;
}

.ob-courseCopy__src {
  display: none;
}

.cms .ob-courseCopy__src {
  display: block;
}

.ob-courseCopy__inner {
  position: relative;
  height: 640px;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy__inner {
    height: auto;
  }
}
.cms .ob-courseCopy__inner {
  position: static;
  height: auto;
}

.ob-courseCopy__bgWrap {
  display: flex;
  width: calc(100% + 100px);
  flex-direction: row-reverse;
  position: relative;
}

@media screen and (max-width: 1480px) {
  .ob-courseCopy__bgWrap {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .ob-courseCopy__bgWrap {
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 29px;
  }
}
.is-reverse .ob-courseCopy__bgWrap {
  flex-direction: row;
  margin-left: -100px;
}

@media screen and (max-width: 1480px) {
  .is-reverse .ob-courseCopy__bgWrap {
    margin-left: auto;
  }
}
@media screen and (max-width: 959px) {
  .is-reverse .ob-courseCopy__bgWrap {
    flex-direction: row-reverse;
  }
}
.cms .ob-courseCopy__bgWrap {
  display: flex;
  flex-direction: column-reverse;
  width: auto;
  position: static;
}

.ob-courseCopy__bg {
  position: absolute;
  top: 0;
  left: calc(-50vw + 50% - 50px);
  z-index: 0;
  width: calc(100% + 50vw - 50% - 50px);
  height: 640px;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy__bg {
    height: auto;
    padding-top: 54%;
    position: relative;
    top: auto;
    left: -10px;
    width: calc(100% - 23px);
  }
}
.is-reverse .ob-courseCopy__bg {
  left: auto;
  right: calc(-50vw + 50% - 50px);
}

@media screen and (max-width: 959px) {
  .is-reverse .ob-courseCopy__bg {
    right: 0;
    width: 88.2%;
    padding-top: 48%;
  }
}
.cms .ob-courseCopy__bg {
  position: static;
  overflow: hidden;
}

.cms .is-video .ob-courseCopy__bg {
  display: none;
}

.cms .is-reverse .ob-courseCopy__bg {
  display: block;
  position: static;
  width: 640px;
  height: 360px;
}

.ob-courseCopy__bg video,
.ob-courseCopy__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
}

.cms .ob-courseCopy__bg video,
.cms .ob-courseCopy__bg img {
  position: static;
}

.ob-courseCopy__ttl {
  writing-mode: vertical-rl;
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  font-size: 4rem;
  width: 100px;
  display: flex;
  align-items: flex-start;
  color: #3F3D3A;
  line-height: 1.2;
  letter-spacing: 0.01em;
  height: -moz-max-content;
  height: max-content;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy__ttl {
    font-size: 1.5rem;
    width: 23px;
    align-items: center;
    transform: translateX(-6px);
  }
}
.is-reverse .ob-courseCopy__ttl {
  transform: translateX(-48px);
}

@media screen and (max-width: 959px) {
  .is-reverse .ob-courseCopy__ttl {
    transform: translateX(-11px);
  }
}
.cms .ob-courseCopy__ttl {
  writing-mode: horizontal-tb;
  width: auto;
  font-size: 3rem;
  margin: 0;
}

.ob-courseCopy__vertical {
  position: absolute;
  left: 98px;
  top: -114px;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy__vertical {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    text-orientation: upright;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
  }
}
.ob-courseCopy__vertical span {
  background-color: #fff;
  height: -moz-max-content;
  height: max-content;
  padding: 8px 4px;
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy__vertical span {
    font-size: 2rem;
  }
}
.ob-courseCopy__vertical .cp-inner {
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  .ob-courseCopy__vertical .cp-inner {
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .ob-courseCopy__vertical .cp-inner {
    font-size: 1.6rem;
  }
}
.cms .ob-courseCopy__vertical .cp-inner {
  writing-mode: horizontal-tb;
}

.cms .ob-courseCopy__vertical {
  position: static;
  display: block;
}

/* //コースキャッチコピー */
/* ピックアップ */
.ob-pickup__tabWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 80px;
}

.ob-pickup__tab {
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ob-pickup__tab:first-child {
  background-color: #fff;
}

.ob-pickup__tab:first-child.is-active {
  background-color: #b4cbf2;
}

.ob-pickup__tab:last-child {
  background-color: #fff;
}

.ob-pickup__tab:last-child.is-active {
  background-color: #C7DEAF;
}

.cms .ob-pickup__tab:last-child {
  background-color: #C7DEAF !important;
}

@media screen and (max-width: 959px) {
  .ob-pickup__tab {
    padding: 0 4px;
  }
}
.ob-pickup__tabInner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: -0.03em;
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-pickup__tabInner {
    gap: 4px;
    font-size: 1.3rem;
    line-height: 1.25;
  }
}
.ob-pickup__tabInner::before, .ob-pickup__tabInner::after {
  content: "";
  display: block;
  width: 22px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005874.svg');
}

.ob-pickup__tabInner::after {
  transform: scale(-1, 1);
}

.ob-pickup__contents {
  background-color: #fff;
  padding: 60px 50px;
}

@media screen and (max-width: 959px) {
  .ob-pickup__contents {
    padding: 24px;
  }
}
.ob-pickup__contents .cp-h4-text {
  margin-top: 0;
}

.cms .ob-pickup__contents {
  display: grid;
  gap: 40px;
}

.ob-pickup__left {
  display: none;
  gap: 60px;
  display: none;
  opacity: 0;
  transition: 0.2s;
}

@media screen and (max-width: 959px) {
  .ob-pickup__left {
    gap: 40px;
  }
}
.ob-pickup__left.is-active {
  display: grid;
  animation-name: displayAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

.cms .ob-pickup__left {
  display: grid;
  opacity: 1;
}

.ob-pickup__leftItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .ob-pickup__leftItem {
    grid-template-columns: 1fr;
  }
}
.ob-pickup__right {
  display: none;
  opacity: 0;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .ob-pickup__right {
    grid-template-columns: 1fr;
  }
}
.ob-pickup__right.is-active {
  display: grid;
  animation-name: displayAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

.cms .ob-pickup__right {
  display: grid;
  opacity: 1;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* //ピックアップ */
/* ==========================================================================

カリキュラム

========================================================================== */
.page-curriculum.education2 .ob-point td {
  border-width: 2px;
}

/* カリキュラムのポイント */
.ob-point {
  padding: 62px 50px !important;
  background-color: #fff;
  margin-bottom: 120px;
}

@media screen and (max-width: 959px) {
  .ob-point {
    padding: 24px !important;
    margin-bottom: 64px;
  }
}
.ob-point__item:not(:last-child) {
  margin-bottom: 80px;
}

.ob-point__ttlWrap {
  display: flex;
  gap: 25px;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .ob-point__ttlWrap {
    margin-bottom: 32px;
  }
}
.ob-point__box {
  width: 69px;
  height: 69px;
  background-color: #247789;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}

.ob-point__num {
  font-family: "Libre Bodoni", serif;
  font-size: 3.8rem;
}

.ob-point__point {
  font-size: 1.4rem;
}

.ob-point__ttl {
  margin: 12px 0px;
}

@media screen and (max-width: 959px) {
  .ob-point__ttl {
    margin: 0;
  }
}
@media screen and (max-width: 959px) {
  .ob-point td:first-child {
    width: 30% !important;
  }
}
/* //カリキュラムのポイント */
/* ==========================================================================

ゼミナール

========================================================================== */
@media screen and (max-width: 959px) {
  .page-seminars.education2 .cp-h2-text + table td:first-child {
    width: 30% !important;
  }
}
.page-seminars.education2 .ob-catch.is-reverse {
  padding: 140px 0 44px;
}

.page-seminars.education2 .ob-catch__txtWrap {
  background-color: #EBF4F5;
}

.page-seminars.education2 tr {
  background-color: transparent;
}

/* 学生MESSAGE */
.ob-message__tabWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
}

.ob-message__tab {
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #C7DEAF;
}

@media screen and (max-width: 959px) {
  .ob-message__tab {
    padding: 0 4px;
  }
}
.ob-message__tabInner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: -0.03em;
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-message__tabInner {
    gap: 4px;
    font-size: 1.3rem;
    line-height: 1.25;
  }
}
.ob-message__tabInner::before, .ob-message__tabInner::after {
  content: "";
  display: block;
  width: 22px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005874.svg');
}

.ob-message__tabInner::after {
  transform: scale(-1, 1);
}

.ob-message__contents {
  background-color: #fff;
  padding: 60px 50px;
}

@media screen and (max-width: 959px) {
  .ob-message__contents {
    padding: 24px;
  }
}
.ob-message__contents .cp-h4-text {
  margin-top: 0;
}

.ob-message__contentsInner {
  display: grid;
  gap: 24px;
}

@media screen and (max-width: 959px) {
  .ob-message__contentsInner {
    gap: 40px;
  }
}
.ob-message__contentsItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .ob-message__contentsItem {
    grid-template-columns: 1fr;
  }
}
/* //学生MESSAGE */
/* ==========================================================================

教員紹介

========================================================================== */
.page-staff.education2 .lo-ttl {
  margin-bottom: 0;
}

.page-staff.education2 .ob-bgBox {
  margin-bottom: 0 !important;
}

.ob-teacher__btnWrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 20px;
  display: none;
}

.ob-teacher__btn {
  width: 120px;
  height: 40px;
  color: #fff;
  background-color: #222;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ob-teacher__btn::before {
  content: "全て開く";
}

.ob-teacher__btn.is-active::before {
  content: "全て閉じる";
}

.ob-teacher__item {
  padding: 20px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .ob-teacher__item {
    padding: 32px 0 0;
  }
}
.ob-teacher__itemInner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 20px 50px;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 959px) {
  .ob-teacher__itemInner {
    padding: 24px;
    gap: 16px;
  }
}
.ob-teacher__itemInner::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #247789;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005708.svg');
}

@media screen and (max-width: 959px) {
  .ob-teacher__itemInner::after {
    width: 24px;
    height: 24px;
    right: 8px;
  }
}
@media screen and (min-width: 960px) {
  .ob-teacher__item:hover .ob-teacher__itemInner {
    background-color: #247789;
  }
  .ob-teacher__item:hover .ob-teacher__itemInner::after {
    background-color: #fff;
    background-image: url('/albums/css/basic-blocks/abm00005707.svg');
  }
}
.ob-teacher__item.is-active .ob-teacher__itemInner {
  background-color: #247789;
}

.ob-teacher__item.is-active .ob-teacher__itemInner::after {
  background-color: #fff;
  background-image: url('/albums/css/basic-blocks/abm00005707.svg');
}

.ob-teacher__img {
  max-width: 120px;
  width: 100%;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .ob-teacher__img {
    max-width: 100px;
    height: 100px;
  }
}
.ob-teacher__img .cp-inner {
  width: 100%;
  height: 100%;
}

.ob-teacher__img .cp-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob-teacher__txtWrap {
  max-width: calc(100% - 240px);
  width: 100%;
}

@media screen and (min-width: 960px) {
  .ob-teacher__item:hover .ob-teacher__txtWrap {
    color: #fff;
  }
}
@media screen and (max-width: 959px) {
  .ob-teacher__txtWrap {
    max-width: 100%;
    padding-right: 24px;
  }
}
.ob-teacher__ttl {
  margin-bottom: 20px;
  margin-top: 0;
  color: #247789;
}

@media screen and (max-width: 959px) {
  .ob-teacher__ttl {
    margin-bottom: 4px;
    font-size: 1.8rem;
  }
}
.ob-teacher__txt {
  font-family: "Noto Sans JP", sans-serif;
}

.ob-teacher__item.is-active .ob-teacher__ttl, .ob-teacher__item.is-active .ob-teacher__txt {
  color: #fff;
}

@media screen and (min-width: 960px) {
  .ob-teacher__item:hover .ob-teacher__ttl, .ob-teacher__item:hover .ob-teacher__txt {
    color: #fff;
  }
}
.ob-teacher__contents {
  display: none;
  background: #EBF4F5;
  padding: 0;
  cursor: pointer;
}

.ob-teacher__contents span {
  font-size: 3rem !important;
}

@media screen and (max-width: 959px) {
  .ob-teacher__contents span {
    font-size: 2.4rem !important;
  }
}
.ob-teacher__contents .fr-inner {
  font-size: 1.5rem !important;
}

.ob-teacher__contents .cp-it-img {
  max-width: 480px;
  width: 100%;
}

.ob-teacher__contentsInner {
  max-width: 1160px;
  width: 100%;
  padding: 60px 150px 44px;
  background-color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .ob-teacher__contentsInner {
    padding: 24px;
  }
}
.ob-teacher__contentsInner > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.ob-teacher__top {
  display: flex;
  gap: 54px;
  align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .ob-teacher__top {
    flex-direction: column;
  }
}
.ob-teacher__topImg {
  width: 226px;
}

@media screen and (max-width: 959px) {
  .ob-teacher__topImg {
    max-width: 100%;
    width: 100%;
  }
}
.ob-teacher__topTxtWrap {
  max-width: calc(100% - 280px);
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-teacher__topTxtWrap {
    max-width: 100%;
    width: 100%;
  }
}
.ob-teacher__topTxt02 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.ob-teacher__qa ul {
  list-style: none;
  margin-left: 0;
  display: grid;
}

.ob-teacher__qa li {
  position: relative;
  padding-left: 60px;
}

.ob-teacher__qa li:nth-child(odd) {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 26px;
}

.ob-teacher__qa li:nth-child(odd)::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 2rem;
  font-weight: 500;
  background-color: #2d4a76;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.ob-teacher__qa li:nth-child(even) {
  margin-bottom: 40px;
}

.ob-teacher__qa li:nth-child(even)::before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 2rem;
  font-weight: 500;
  color: #2d4a76;
  background-color: #EBF4F5;
  position: absolute;
  left: 0;
  top: -6px;
}

.ob-teacher__close {
  width: 240px;
  height: 54px;
  margin: 0 auto;
  background-color: #247789;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}

.ob-teacher .cp-ti-text,
.ob-teacher .cp-it-text {
  max-width: 100% !important;
  width: 100% !important;
}

.ob-teacher .cp-ti-img,
.ob-teacher .cp-it-img {
  max-width: 360px !important;
  width: 100% !important;
}

/* ==========================================================================

長期研修

========================================================================== */
@media screen and (max-width: 959px) {
  .page-index.abroad2 .ob-tab__label > .cp-inner {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .page-index.abroad2 .ob-tab__label > .cp-inner a {
    padding: 12px 0;
  }
}
@media screen and (max-width: 959px) {
  .page-index.abroad2 .ob-mvCommon__txtWrap {
    height: 200px;
  }
}
@media screen and (max-width: 959px) {
  .page-index.abroad2 .ob-mvCommon.is-big .ob-mvCommon__bg {
    height: 200px;
  }
}
@media screen and (max-width: 959px) {
  .page-index.abroad2 .ob-mvCommon__txtEn {
    font-size: 4.8rem;
  }
}
.page-index.abroad2 .ob-tab__switch:checked + .ob-tab__label + .ob-tab__content > div {
  display: none;
}

/* 長期研修 */
.ob-abroad__tabWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
}

.ob-abroad__tab {
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #247789;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .ob-abroad__tab {
    padding: 0 4px;
  }
}
.ob-abroad__tabInner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: -0.03em;
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-abroad__tabInner {
    gap: 4px;
    font-size: 1.3rem;
    line-height: 1.25;
  }
}
.ob-abroad__tabInner::before, .ob-abroad__tabInner::after {
  content: "";
  display: block;
  width: 22px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005883.svg');
}

.ob-abroad__tabInner::after {
  transform: scale(-1, 1);
}

.ob-abroad__contents {
  background-color: #fff;
  padding: 60px 50px;
}

@media screen and (max-width: 959px) {
  .ob-abroad__contents {
    padding: 24px;
  }
}
.ob-abroad__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding: 0 0 110px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .ob-abroad__item {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.ob-abroad__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0%;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #707070 50%);
}

@media screen and (max-width: 959px) {
  .ob-abroad__item::after {
    content: none;
  }
}
.ob-abroad__item.is-active::after {
  animation: scrolldown 2s ease-in forwards;
}

@keyframes scrolldown {
  0% {
    height: 0%;
  }
  100% {
    height: 85%;
  }
}
.ob-abroad__nenji {
  grid-column: 1/3;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  border-radius: 27px;
  background-color: #247789;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .ob-abroad__nenji {
    grid-column: 1/2;
  }
}
.ob-abroad__itemTxtWrap {
  grid-column: 1/3;
}

@media screen and (max-width: 959px) {
  .ob-abroad__itemTxtWrap {
    grid-column: 1/2;
  }
}
.ob-abroad__itemBox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #247789;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 14px 24px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.ob-abroad__itemTtl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.ob-abroad__itemTxt {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 4px 0;
}

@media screen and (max-width: 959px) {
  .ob-abroad__itemLeft .cp-inner,
  .ob-abroad__itemLeft img, .ob-abroad__itemRight .cp-inner,
  .ob-abroad__itemRight img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
/* //長期研修 */
/* ==========================================================================

短期研修

========================================================================== */
@media screen and (max-width: 959px) {
  .page-short-term.abroad2 .ob-tab__label > .cp-inner {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .page-short-term.abroad2 .ob-tab__label > .cp-inner a {
    padding: 12px 0;
  }
}
.page-short-term.abroad2 .ob-tab__switch:checked + .ob-tab__label + .ob-tab__content > div {
  display: none;
}

/* 短期研修 */
.ob-shortTerm__tabWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
}

.ob-shortTerm__tab {
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #247789;
}

@media screen and (max-width: 959px) {
  .ob-shortTerm__tab {
    padding: 0 4px;
  }
}
.ob-shortTerm__tabInner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: -0.03em;
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-shortTerm__tabInner {
    gap: 4px;
    font-size: 1.3rem;
    line-height: 1.25;
  }
}
.ob-shortTerm__tabInner::before, .ob-shortTerm__tabInner::after {
  content: "";
  display: block;
  width: 22px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005883.svg');
}

.ob-shortTerm__tabInner::after {
  transform: scale(-1, 1);
}

.ob-shortTerm__contents {
  background-color: #fff;
  padding: 60px 50px;
}

@media screen and (max-width: 959px) {
  .ob-shortTerm__contents {
    padding: 24px;
  }
}
.ob-shortTerm__contents .cp-h4-text {
  margin-top: 0;
}

.ob-shortTerm__contentsInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .ob-shortTerm__contentsInner {
    grid-template-columns: 1fr;
  }
}
.ob-shortTerm__flagWrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .ob-shortTerm__flagWrap {
    margin-bottom: 32px;
  }
}
.ob-shortTerm__about {
  font-size: 1.6rem;
  font-weight: bold;
}

.ob-shortTerm__right {
  display: grid;
  gap: 30px;
}

@media screen and (max-width: 959px) {
  .ob-shortTerm__img img {
    width: 100%;
  }
}
/* //短期研修 */
/* ==========================================================================

個人研修

========================================================================== */
@media screen and (max-width: 959px) {
  .page-individual.abroad2 .ob-tab__label > .cp-inner {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .page-individual.abroad2 .ob-tab__label > .cp-inner a {
    padding: 12px 0;
  }
}
.page-individual.abroad2 .ob-tab__switch:checked + .ob-tab__label + .ob-tab__content > div {
  display: none;
}

/* 個人研修 */
.ob-individual:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .ob-individual:not(:last-child) {
    margin-bottom: 40px;
  }
}
.ob-individual__tabWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
}

.ob-individual__tab {
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #247789;
}

@media screen and (max-width: 959px) {
  .ob-individual__tab {
    padding: 0 4px;
  }
}
.ob-individual__tabInner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: -0.03em;
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-individual__tabInner {
    gap: 4px;
    font-size: 1.3rem;
    line-height: 1.25;
  }
}
.ob-individual__tabInner::before, .ob-individual__tabInner::after {
  content: "";
  display: block;
  width: 22px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005883.svg');
}

.ob-individual__tabInner::after {
  transform: scale(-1, 1);
}

.ob-individual__contents {
  background-color: #fff;
  padding: 60px 50px;
}

@media screen and (max-width: 959px) {
  .ob-individual__contents {
    padding: 24px;
  }
}
.ob-individual__contents .cp-h4-text {
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .ob-individual__contentsInner {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.ob-individual__left {
  max-width: 100%;
  width: 100%;
}

.ob-individual__right {
  max-width: calc((100% - 40px) / 2);
  width: 100%;
  margin-left: 40px;
  margin-bottom: 40px;
  float: right;
}

@media screen and (max-width: 959px) {
  .ob-individual__right {
    float: none;
    max-width: 100%;
    margin: 0;
  }
}
.ob-individual__flagWrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .ob-individual__flagWrap {
    margin-bottom: 32px;
  }
}
.ob-individual__about {
  font-size: 1.6rem;
  font-weight: bold;
}

.ob-individual__right {
  display: grid;
  gap: 30px;
}

/* //個人研修 */
/* ==========================================================================

キャリア支援

========================================================================== */
.page-index.career2 .cp-ti-horizontal-col1 {
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .page-index.career2 .cp-ti-horizontal-col1 {
    margin-bottom: 48px;
  }
}
.page-index.career2 .cp-ti-horizontal-wp-col1 h4 {
  color: #247789;
}

/* ==========================================================================

就職実績

========================================================================== */
.page-data.career2 [data-area=content] > *:last-child {
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .page-data.career2 [data-area=content] > *:last-child {
    margin-bottom: 40px;
  }
}
/* ==========================================================================

資格取得

========================================================================== */
@media screen and (max-width: 959px) {
  .page-qualification.career2 .cp-h4-text + .cp-text-col2 {
    gap: 0;
  }
}
.ob-certification {
  background-color: #fff;
  padding: 50px !important;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .ob-certification {
    padding: 24px !important;
    margin-bottom: 24px;
  }
}
.ob-certification__head {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .ob-certification__head {
    margin-bottom: 32px;
  }
}
.ob-certification__tmb {
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
}

.ob-certification__ttl {
  margin: 0;
  color: #247789;
  margin-bottom: 12px;
}

/* ==========================================================================

社会貢献・研究

========================================================================== */
.page-index.research2 .cp-text-col2 .button1 {
  margin-bottom: 0;
}

/* ==========================================================================

JICA×殖大学連携ボランティア

========================================================================== */
.page-index.jica-volunteer3 .lo-ttl {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005967.jpg');
  height: 720px;
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  .page-index.jica-volunteer3 .lo-ttl {
    height: auto;
    padding-top: 40%;
    margin-top: 60px;
    background-size: cover;
  }
}
.page-index.jica-volunteer3 .lo-ttl__txt {
  font-size: 0;
}

.page-index.jica-volunteer3 .lo-container {
  background-color: #EBF4F5;
}

.page-index.jica-volunteer3 [data-area=content] {
  background-color: #EBF4F5;
}

/* ローカルメニュー */
.ob-jica {
  padding: 12px 10px;
  margin-bottom: 80px;
  background-color: #fff;
}

@media screen and (max-width: 959px) {
  .ob-jica {
    margin-bottom: 64px;
    padding: 0;
  }
}
.ob-jica__inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 40px;
}

@media screen and (max-width: 959px) {
  .ob-jica__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 40px 40px 40px;
  }
}
.ob-jica__item {
  padding: 0 10px;
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 959px) {
  .ob-jica__item {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
.ob-jica__item:first-child {
  border-left: 1px solid #ccc;
}

@media screen and (max-width: 959px) {
  .ob-jica__item:first-child {
    border-left: none;
  }
}
.ob-jica__item:nth-child(odd) {
  border-right: 1px solid #ccc;
}

.ob-jica__item .cp-inner {
  height: 100%;
}

.ob-jica__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  color: #222;
  transition: 0.2s;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  .ob-jica__item a:hover {
    background-color: #EBF4F5;
  }
}
.ob-jica__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* //ローカルメニュー */
/* NEWS上部 */
.newsJica {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .newsJica {
    flex-direction: column;
    align-items: normal;
  }
}
.newsJica__headSub {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .newsJica__headSub {
    font-size: 1.6rem;
  }
}
.newsJica__headMain {
  font-size: 7rem;
  font-weight: bold;
  font-family: "Edu TAS Beginner", cursive;
  line-height: 1;
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .newsJica__headMain {
    font-size: 5.1rem;
    line-height: 1.1;
  }
}
.newsJica__headMain span {
  color: #E95704;
}

.newsJica__sns {
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.428;
}

.newsJica__txt {
  font-size: 1.4rem;
}

.newsJica__img {
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00006211.png');
}

.newsJica__img a {
  display: block;
  width: 100%;
  height: 100%;
}

.newsJica__img a::after {
  content: none;
}

/* //NEWS上部 */
/* NEWS */
.page-index.jica-volunteer3 .newsContents {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px) minmax(0, 380px);
  gap: 60px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .page-index.jica-volunteer3 .newsContents {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.page-index.jica-volunteer3 .newsContents__item a {
  text-decoration: none;
}

.page-index.jica-volunteer3 .newsContents__item a::after {
  content: none;
}

.page-index.jica-volunteer3 .newsContents__tmb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .page-index.jica-volunteer3 .newsContents__tmb {
    height: auto;
  }
}
.page-index.jica-volunteer3 .newsContents__tmb.is-default::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005640.png');
  transition: 0.3s;
}

.page-index.jica-volunteer3 .newsContents__tmb img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (max-width: 959px) {
  .page-index.jica-volunteer3 .newsContents__tmb img {
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .page-index.jica-volunteer3 .newsContents__item:hover img {
    transform: scale(1.15);
  }
  .page-index.jica-volunteer3 .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.page-index.jica-volunteer3 .newsContents__ttl {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.55;
}

.page-index.jica-volunteer3 .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/* //NEWS */
/* ==========================================================================

JICA×殖大学連携ボランティア共通

========================================================================== */
.jica-volunteer3 .lo-breads {
  display: none;
}

.jica-volunteer3 .lo-ttl {
  color: #fff;
  background-color: #247789;
  margin-bottom: 0;
}

/* ==========================================================================

ネパールからの声

========================================================================== */
.page-voice-nepal.jica-volunteer3 .cp-text-col1 {
  margin-bottom: 64px;
}

@media screen and (max-width: 959px) {
  .page-voice-nepal.jica-volunteer3 .cp-text-col1 {
    margin-bottom: 48px;
  }
}
/* ==========================================================================

現地から活動報告

========================================================================== */
/* NEWS */
.page-report.jica-volunteer3 .newsContents {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px) minmax(0, 380px);
  gap: 60px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .page-report.jica-volunteer3 .newsContents {
    margin-bottom: 28px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}
.page-report.jica-volunteer3 .newsContents__item a {
  text-decoration: none;
}

.page-report.jica-volunteer3 .newsContents__item a::after {
  content: none;
}

.page-report.jica-volunteer3 .newsContents__tmb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .page-report.jica-volunteer3 .newsContents__tmb {
    height: 200px;
  }
}
.page-report.jica-volunteer3 .newsContents__tmb.is-default::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005640.png');
  transition: 0.3s;
}

.page-report.jica-volunteer3 .newsContents__tmb img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (max-width: 639px) {
  .page-report.jica-volunteer3 .newsContents__tmb img {
    height: 200px;
  }
}
@media screen and (min-width: 960px) {
  .page-report.jica-volunteer3 .newsContents__item:hover img {
    transform: scale(1.15);
  }
  .page-report.jica-volunteer3 .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.page-report.jica-volunteer3 .newsContents__ttl {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.55;
}

.page-report.jica-volunteer3 .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/* //NEWS */
/* ==========================================================================

ボランティア活動

========================================================================== */
.ob-volunteer__inner {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px) minmax(0, 380px);
  gap: 60px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .ob-volunteer__inner {
    grid-template-columns: 1fr;
  }
}
.ob-volunteer__headSub {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
}

.ob-volunteer__headMain {
  grid-column: 1/3;
  font-size: 7rem;
  font-weight: bold;
  font-family: "Edu TAS Beginner", cursive;
  line-height: 1;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .ob-volunteer__headMain {
    font-size: 5.1rem;
    line-height: 1.1;
  }
}
.ob-volunteer__img img {
  width: 100%;
}

.ob-volunteer__ttl {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.55;
}

.ob-volunteer__info {
  display: flex;
  gap: 1em;
}

.ob-volunteer a {
  color: #222;
}

.ob-volunteer a::after {
  content: none;
}

/* ==========================================================================

2020 TAKUSHOKU NEW ORANGE PROJECT

========================================================================== */
/* 2020 TAKUSHOKU NEW ORANGE PROJECT */
.ob-nop {
  padding: 60px 50px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .ob-nop {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}
.ob-nop:not(:last-child) {
  margin-bottom: 20px;
}

.ob-nop__ttl {
  margin-top: 0;
}

.ob-nop__name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
}

.ob-nop__txt {
  margin-bottom: 8px;
}

.ob-nop__link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ob-nop__link::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005800.svg');
}

@media screen and (min-width: 960px) {
  .ob-nop__link:hover::before {
    background-image: url('/albums/css/basic-blocks/abm00005799.svg');
  }
}
.ob-nop__link a {
  color: #222;
}

/* //2020 TAKUSHOKU NEW ORANGE PROJECT */
/* ==========================================================================

トビタテ！留学Japan

========================================================================== */
.page-tobitate.abroad2 .lo-breads {
  display: none;
}

.page-tobitate.abroad2 .button1 {
  margin-bottom: 46px;
}

@media screen and (max-width: 959px) {
  .page-tobitate.abroad2 .button1 {
    margin-bottom: 32px;
  }
}
.page-tobitate.abroad2 .cp-img-col1 a::after {
  content: none;
}

/* NEWS上部 */
.newsTobitate {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .newsTobitate {
    flex-direction: column;
    align-items: normal;
  }
}
.newsTobitate__headSub {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .newsTobitate__headSub {
    font-size: 1.6rem;
  }
}
.newsTobitate__headMain {
  font-size: 7rem;
  font-weight: bold;
  font-family: "Edu TAS Beginner", cursive;
  line-height: 1;
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .newsTobitate__headMain {
    font-size: 5.1rem;
    line-height: 1.1;
  }
}
.newsTobitate__headMain span {
  color: #E95704;
}

.newsTobitate__sns {
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.428;
}

.newsTobitate__txt {
  font-size: 1.4rem;
}

.newsTobitate__img {
  width: 44px;
  height: 44px;
}

/* //NEWS上部 */
/* NEWS */
.page-tobitate.abroad2 .newsContents {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px) minmax(0, 380px);
  gap: 60px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .page-tobitate.abroad2 .newsContents {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.page-tobitate.abroad2 .newsContents__item a {
  text-decoration: none;
}

.page-tobitate.abroad2 .newsContents__item a::after {
  content: none;
}

.page-tobitate.abroad2 .newsContents__tmb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .page-tobitate.abroad2 .newsContents__tmb {
    height: auto;
  }
}
.page-tobitate.abroad2 .newsContents__tmb.is-default::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005640.png');
  transition: 0.3s;
}

.page-tobitate.abroad2 .newsContents__tmb img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (max-width: 959px) {
  .page-tobitate.abroad2 .newsContents__tmb img {
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .page-tobitate.abroad2 .newsContents__item:hover img {
    transform: scale(1.15);
  }
  .page-tobitate.abroad2 .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.page-tobitate.abroad2 .newsContents__ttl {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.55;
}

.page-tobitate.abroad2 .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/* //NEWS */
/* 在学生VOICE */
.ob-tobitate__tabWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
}

.ob-tobitate__tab {
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #247789;
}

@media screen and (max-width: 959px) {
  .ob-tobitate__tab {
    padding: 0 4px;
  }
}
.ob-tobitate__tabInner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
  letter-spacing: -0.03em;
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .ob-tobitate__tabInner {
    gap: 4px;
    font-size: 1.3rem;
    line-height: 1.25;
  }
}
.ob-tobitate__tabInner::before, .ob-tobitate__tabInner::after {
  content: "";
  display: block;
  width: 22px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00005883.svg');
}

.ob-tobitate__tabInner::after {
  transform: scale(-1, 1);
}

.ob-tobitate__contents {
  background-color: #fff;
  padding: 60px 50px;
}

@media screen and (max-width: 959px) {
  .ob-tobitate__contents {
    padding: 24px;
  }
}
.ob-tobitate__contents .cp-h4-text {
  margin-top: 0;
}

.ob-tobitate__txt {
  margin-bottom: 24px;
}

.ob-tobitate__imgWrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 959px) {
  .ob-tobitate__imgWrap {
    grid-template-columns: 1fr;
  }
}
/* //在学生VOICE */
/* ==========================================================================

検索結果

========================================================================== */
.page-index.search2 .lo-lnav {
  display: none;
}

.page-index.search2 .lo-container {
  background-color: #EBF4F5;
}

.page-index.search2 [data-area=content] {
  background-color: transparent;
}

.page-index.search2 .cp-external {
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  .page-index.search2 .cp-external::after {
    content: none;
  }
}
.page-index.search2 [data-area=content] table tr {
  background-color: transparent;
}

.ob-changeResult {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 70px;
  text-align: center;
  margin-bottom: 66px;
  font-size: 1.8rem;
  padding: 0 !important;
}

@media screen and (max-width: 959px) {
  .ob-changeResult {
    font-size: 1.4rem;
    grid-template-rows: 48px;
  }
}
.ob-changeResult__left, .ob-changeResult__right {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ob-changeResult__left.is-active, .ob-changeResult__right.is-active {
  background-color: #247789;
  color: #fff;
}

.ob-changeResult__left::after, .ob-changeResult__right::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

@media screen and (max-width: 959px) {
  .ob-changeResult__left::after, .ob-changeResult__right::after {
    border-width: 12px 12px 0 12px;
    bottom: -12px;
  }
}
.ob-changeResult__left.is-active::after, .ob-changeResult__right.is-active::after {
  border-color: #247789 transparent transparent transparent;
}

/* 検索フォーム */
.page-index.search2 {
  color: #222;
  /* 検索結果 */
  /* //検索結果 */
  /* ページャー */
  /* //ページャー */
}

.page-index.search2 td {
  border: none;
  padding: 18px;
}

.page-index.search2 .gsc-control-cse {
  background-color: transparent;
  border: none;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.page-index.search2 form.gsc-search-box {
  background-color: #fff;
  margin-bottom: 30px;
}

.page-index.search2 .gsc-input {
  padding: 0;
}

.page-index.search2 .gsc-input-box {
  border: none;
}

.page-index.search2 table.gsc-search-box {
  border-bottom: 1px solid #ccc;
}

.page-index.search2 #gs_id50 {
  margin: 0;
}

.page-index.search2 .gsib_b {
  display: none;
}

.page-index.search2 .cp-external .gsc-search-button-v2 {
  border: none;
  background-color: transparent;
  background-image: url('/albums/css/basic-blocks/abm00005662.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  height: 22px;
  width: 24px;
  padding: 0;
}

.page-index.search2 .cp-external .gsc-search-button-v2 svg {
  display: none;
}

.page-index.search2 .gsc-above-wrapper-area {
  border: none;
  padding: 0 0 21px;
  border-bottom: 1px solid #ccc;
}

.page-index.search2 .gsc-above-wrapper-area-container {
  margin: 0;
}

.page-index.search2 .gsc-results {
  padding: 0;
  width: 100%;
}

.page-index.search2 .gsc-result-info-container {
  padding: 0 !important;
}

.page-index.search2 .gsc-result-info {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
  padding: 0;
}

.page-index.search2 .gsc-orderby-container {
  display: none;
}

.page-index.search2 .gsc-adBlock {
  display: none;
}

.page-index.search2 .gsc-webResult.gsc-result {
  padding: 32px 0;
  border-width: 0 0 1px 0;
  border-color: #ccc;
}

.page-index.search2 .gsc-thumbnail-inside {
  margin-bottom: 16px;
}

.page-index.search2 .gs-web-image-box,
.page-index.search2 .gs-promotion-image-box {
  display: none;
}

.page-index.search2 .gs-result .gs-title *,
.page-index.search2 .gsc-cursor-page,
.page-index.search2 .gs-spelling a,
.page-index.search2 .gs-promotion .gs-visibleUrl,
.page-index.search2 .gs-webResult .gs-visibleUrl {
  color: #222;
}

.page-index.search2 .gsc-expansionArea {
  margin-bottom: 40px;
}

.page-index.search2 .gsc-results .gsc-cursor-box {
  margin: 0 -20vw;
  padding: 20px 0;
  background-color: #fff;
}

.page-index.search2 .gsc-results .gsc-cursor {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-index.search2 .gsc-results .gsc-cursor-box .gsc-cursor-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background-color: #999;
  color: #fff;
  font-size: 1.5rem;
}

.page-index.search2 .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  background-color: #247789;
}

.page-index.search2 .gcsc-more-maybe-branding-root,
.page-index.search2 .gcsc-find-more-on-google-root,
.page-index.search2 .gcsc-branding {
  display: none;
}

/* //検索フォーム */
/* ==========================================================================

NEWS

========================================================================== */
.news-all2 .lo-ttl {
  color: #fff;
  background-color: #247789;
}

@media screen and (max-width: 959px) {
  .news-all2 .lo-breads {
    top: 200px;
  }
}
.news-all2 .lo-container {
  background-color: #F8F8F8;
}

.news-all2 [data-area=content] {
  background-color: transparent;
}

.news-all2 .cp-h2-text {
  margin-bottom: 48px;
  padding-bottom: 0;
}

@media screen and (max-width: 959px) {
  .news-all2 .cp-h2-text {
    margin-bottom: 24px;
    padding-bottom: 0;
  }
}
.news-all2 .cp-h2-text::after {
  content: none;
}

.news-all2 .ns-searchArea {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  justify-content: flex-end;
}

@media screen and (max-width: 959px) {
  .news-all2 .ns-searchArea {
    flex-direction: column;
    gap: 12px;
  }
}
.news-all2 .cpCategoryLists {
  position: relative;
  width: 200px;
}

@media screen and (max-width: 959px) {
  .news-all2 .cpCategoryLists {
    width: 100%;
  }
}
.news-all2 .categorySelected {
  position: relative;
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #ccc;
  cursor: pointer;
  background-color: #fff;
  margin-bottom: 64px;
}

@media screen and (max-width: 959px) {
  .news-all2 .categorySelected {
    width: 100%;
    margin: 0 0 24px;
  }
}
.news-all2 .categorySelected::after {
  display: block;
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
  right: 10px;
  top: 50%;
  margin-top: -5px;
}

.news-all2 .categorySelected.is-active::after {
  transform: rotate(45deg) scale(-1, -1);
}

.news-all2 #cateLists {
  display: none;
  margin-left: 0;
  list-style: none;
  border: 1px solid #ccc;
  border-top: none;
  cursor: pointer;
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 1;
}

.news-all2 #cateLists li a {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  .news-all2 #cateLists li a:hover {
    background-color: #247789;
  }
  .news-all2 #cateLists li a:hover {
    color: #fff;
  }
}
/* 一覧ページ */
.news-all2 .newsContents {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px) minmax(0, 380px);
  gap: 60px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .news-all2 .newsContents {
    margin-bottom: 28px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}
.news-all2 .newsContents__item a {
  text-decoration: none;
}

.news-all2 .newsContents__item a::after {
  content: none;
}

.news-all2 .newsContents__tmb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .news-all2 .newsContents__tmb {
    height: 200px;
  }
}
.news-all2 .newsContents__tmb.is-default::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005640.png');
  transition: 0.3s;
}

.news-all2 .newsContents__tmb img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (max-width: 639px) {
  .news-all2 .newsContents__tmb img {
    height: 200px;
  }
}
@media screen and (min-width: 960px) {
  .news-all2 .newsContents__item:hover img {
    transform: scale(1.15);
  }
  .news-all2 .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.news-all2 .newsContents__ttl {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.55;
}

.news-all2 .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/*// 一覧ページ */
/* ニュースメニュー */
.selectColumn {
  cursor: pointer;
  position: relative;
}

.selectColumn select {
  display: none;
}

.selectColumn .selectStyled {
  position: relative;
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #ccc;
  cursor: pointer;
  background-color: #fff;
  margin-bottom: 64px;
}

@media screen and (max-width: 959px) {
  .selectColumn .selectStyled {
    margin: 0;
    width: 100%;
  }
}
.selectColumn .selectStyled::after {
  display: block;
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
  right: 10px;
  top: 50%;
  margin-top: -5px;
}

.selectColumn .selectStyled.is-active::after {
  transform: rotate(45deg) scale(-1, -1);
}

.selectColumn .selectOptions {
  display: none;
  margin-left: 0;
  list-style: none;
  border: 1px solid #ccc;
  border-top: none;
  cursor: pointer;
  position: absolute;
  top: 40px;
  width: 200px;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .selectColumn .selectOptions {
    width: 100%;
  }
}
.selectColumn .selectOptions li {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background-color: #fff;
}

@media screen and (min-width: 960px) {
  .selectColumn .selectOptions li:hover {
    background-color: #247789;
    color: #fff;
  }
}
/* //ニュースメニュー */
/* ニュースコンテンツ */
.news-all2 .newsContents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .news-all2 .newsContents {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.news-all2 .newsContents a {
  color: #222;
}

.news-all2 .newsContents a::after {
  content: none;
}

.news-all2 .newsContents__tmb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-all2 .newsContents__tmb.is-default::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005640.png');
  transition: 0.3s;
}

@media screen and (min-width: 960px) {
  .news-all2 .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.news-all2 .newsContents__tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (min-width: 960px) {
  .news-all2 .newsContents__item:hover img {
    transform: scale(1.15);
  }
}
.news-all2 .newsContents__ttl {
  font-size: 1.6rem;
  font-weight: bold;
}

.news-all2 .newsContents__bottom {
  font-size: 1.4rem;
}

.news-all2 .newsContents__category {
  margin-left: 8px;
}

/* //ニュースコンテンツ */
/* 書籍紹介 */
.books {
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .books {
    margin-bottom: 40px;
  }
}
.books__item {
  display: block;
  margin-bottom: 20px;
}

.books a {
  display: flex;
  gap: 50px;
  color: #222;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  .books a {
    gap: 16px;
  }
}
.books a::after {
  content: none;
}

.books__tmb {
  max-width: 160px;
  width: 100%;
  height: 224px;
  position: relative;
}

.books__tmb.is-default::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/albums/css/basic-blocks/abm00005666.png');
  transition: 0.3s;
}

.books__tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (max-width: 639px) {
  .books__tmb img {
    height: 200px;
  }
}
.books__txtWrap {
  margin-top: 24px;
}

@media screen and (max-width: 959px) {
  .books__txtWrap {
    margin-top: 0;
  }
}
.books__ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

@media screen and (max-width: 959px) {
  .books__ttl {
    font-size: 1.8rem;
  }
}
.books__ttl::after {
  content: "";
  position: relative;
  top: 0;
  bottom: 0;
  margin: 0 0 0 6px;
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-size: contain;
  background: url('/albums/css/basic-blocks/abm00005661.svg') center center no-repeat;
}

@media screen and (min-width: 960px) {
  .books__item:hover .books__ttl {
    text-decoration: underline;
  }
}
.books__bottom {
  font-size: 1.4rem;
}

@media screen and (max-width: 959px) {
  .books__bottom {
    font-size: 1.2rem;
  }
}
/* //書籍紹介 */
/* ページング */
.paging-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 -20vw 0;
  padding: 20px 0;
  background-color: #fff;
}

.paging-list span,
.paging-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background-color: #999;
  text-decoration: none;
  border-radius: 4px;
}

.paging-list span.active,
.paging-list a.active {
  background-color: #247789;
}

.paging-list paging-list:first-of-type > span,
.paging-list paging-list:nth-of-type(2) > span,
.paging-list paging-list:nth-last-of-type(2) > span,
.paging-list paging-list:last-of-type > span {
  display: none;
}

/* //ページング */
/* ニュース記事詳細ページ */
.newsDetail .lo-container {
  background-color: #F8F8F8;
  font-size: 1.6rem;
  line-height: 2;
  /* ヒストリーバックボタン */
  /* //ヒストリーバックボタン */
}

.newsDetail .lo-container [data-area=content] {
  background-color: transparent;
}

.newsDetail .lo-container .lo-ttl {
  color: #fff;
  background-color: #247789;
  font-size: 4.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .lo-ttl {
    font-size: 3rem;
  }
}
.newsDetail .lo-container .cp-all {
  margin-top: 20px;
}

.newsDetail .lo-container > div[cp-news-detail=news] {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.newsDetail .lo-container .detail {
  margin-bottom: 48px;
}

.newsDetail .lo-container .detail__ttl {
  margin-bottom: 8px;
}

.newsDetail .lo-container .detail__info {
  display: flex;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .detail__info {
    font-size: 1.3rem;
  }
}
.newsDetail .lo-container .detail__description {
  display: none;
}

.newsDetail .lo-container .cp-h1-text {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.666;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .cp-h1-text {
    font-size: 3rem;
  }
}
.newsDetail .lo-container .cp-h2-text {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.785;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 60px;
  padding: 0;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .cp-h2-text {
    font-size: 2.4rem;
  }
}
.newsDetail .lo-container .cp-h2-text::after {
  content: none;
}

.newsDetail .lo-container .cp-h3-text {
  font-size: 2.2rem;
  line-height: 1.818;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .cp-h3-text {
    font-size: 2rem;
  }
}
.newsDetail .lo-container .cp-h4-text {
  font-size: 1.8rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .cp-h4-text {
    font-size: 1.6rem;
  }
}
.newsDetail .lo-container .cp-h5-text {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
}

.newsDetail .lo-container [data-area=content] img {
  margin: 0 auto;
}

.newsDetail .lo-container [data-area=content] .cp-text,
.newsDetail .lo-container [data-area=content] .cp-img {
  gap: 32px;
}

.newsDetail .lo-container [data-area=content] .cp-img-item img {
  margin: 0 auto;
}

.newsDetail .lo-container [data-area=content] span.fr-img-caption .fr-img-wrap img {
  margin: 0 auto;
}

.newsDetail .lo-container [data-area=content] .cp-horizontal,
.newsDetail .lo-container [data-area=content] .cp-vertical {
  gap: 32px;
}

.newsDetail .lo-container [data-area=content] .cp-horizontal .cp-horizontal-item {
  gap: 24px;
  margin-right: 0;
  padding: 0;
}

.newsDetail .lo-container [data-area=content] .cp-horizontal.cp-wp .cp-horizontal-item,
.newsDetail .lo-container [data-area=content] .cp-vertical.cp-wp .cp-vertical-item {
  padding: 40px;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container [data-area=content] .cp-horizontal.cp-wp .cp-horizontal-item,
  .newsDetail .lo-container [data-area=content] .cp-vertical.cp-wp .cp-vertical-item {
    padding: 24px;
  }
}
.newsDetail .lo-container .detail__btn {
  margin-top: 48px;
}

@media screen and (max-width: 959px) {
  .newsDetail .lo-container .detail__btn {
    margin-top: 32px;
  }
}
.newsDetail .lo-container .detail__btn a {
  display: block;
  width: 240px;
  line-height: 52px;
  margin: 0 auto 80px;
  color: #fff;
  background-color: #247789;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #247789;
}

@media screen and (min-width: 960px) {
  .newsDetail .lo-container .detail__btn a:hover {
    background-color: #fff;
    color: #247789;
  }
}
@media screen and (max-width: 959px) {
  .newsDetail .lo-container .detail__btn a {
    margin-bottom: 40px;
  }
}
.newsrelease .cp-h1-text {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.666;
}

@media screen and (max-width: 959px) {
  .newsrelease .cp-h1-text {
    font-size: 3rem;
  }
}
.newsrelease .cp-h2-text {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.785;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 60px;
  padding: 0;
}

@media screen and (max-width: 959px) {
  .newsrelease .cp-h2-text {
    font-size: 2.4rem;
  }
}
.newsrelease .cp-h2-text::after {
  content: none;
}

.newsrelease .cp-h3-text {
  font-size: 2.2rem;
  line-height: 1.818;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 959px) {
  .newsrelease .cp-h3-text {
    font-size: 2rem;
  }
}
.newsrelease .cp-h4-text {
  font-size: 1.8rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 959px) {
  .newsrelease .cp-h4-text {
    font-size: 1.6rem;
  }
}
.newsrelease .cp-h5-text {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
}

/* //ニュース記事詳細ページ */
/* ==========================================================================

サイトマップ

========================================================================== */
.page-sitemap .lo-lnav {
  display: none;
}

.sitemap__contents {
  max-width: 1160px;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .sitemap__contents {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.sitemap__contents > div:first-child {
  display: none;
}

.sitemap__contents > .categoryList {
  margin-bottom: 100px;
}

@media screen and (max-width: 959px) {
  .sitemap__contents > .categoryList {
    margin-bottom: 32px;
  }
}
.sitemap__contents .lnav-link {
  color: #222;
  font-size: 1.6rem;
}

.sitemap__contents .gnav__btnWrap {
  display: none;
}

.sitemap__contents .lv2-link {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  pointer-events: none;
  display: block;
  padding-bottom: 22px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 28px;
}

@media screen and (max-width: 959px) {
  .sitemap__contents .lv2-link {
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
}
.sitemap__contents .lv2-item > .lv2-folder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 16px;
}

@media screen and (max-width: 959px) {
  .sitemap__contents .lv2-item > .lv2-folder {
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 12px;
  }
}
.sitemap__contents .lv3-link {
  font-weight: bold;
}

.sitemap__contents .lv3-folder {
  margin-top: 16px;
}

@media screen and (max-width: 959px) {
  .sitemap__contents .lv3-folder {
    margin-top: 4px;
  }
}
.sitemap__contents .seminars4 > .lv4-link {
  display: none;
}

.ob-bgVideo {
  position: fixed;
  width: 100vw;
  height: 56.25vw;
  max-height: 1080px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .ob-bgVideo {
    top: 60px;
  }
}
.cms .ob-bgVideo {
  position: static;
  height: auto;
}
.ob-bgVideo__trg {
  display: none;
  color: #000;
  padding-left: 20px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.cms .ob-bgVideo__trg {
  display: block;
}
.ob-bgVideo__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
.ob-bgVideo__loading.is-hidden {
  display: none;
}
.ob-bgVideo__contents {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.cms .ob-bgVideo__contents {
  display: none;
}
.is-active .ob-bgVideo__contents {
  animation-name: PageAnimeAppear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ob-bgVideo__bg {
  /*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 100vw; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-width: 100%;
  top: 0;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 959px) {
  .ob-bgVideo__bg {
    top: 60px;
  }
}
.ob-bgVideo__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1000;
  overflow: hidden;
  font-family: YuMincho, "Yu Mincho", serif;
  width: -moz-max-content;
  width: max-content;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 100vw;
  height: 56.25vw;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.cms .ob-bgVideo__copy {
  position: static;
  align-items: flex-start;
}
.ob-bgVideo__copyTxtWrap {
  line-height: 2.3;
  overflow: hidden;
  transform: translateX(-150%);
  position: absolute;
  z-index: 1;
  bottom: 6.25vw;
  left: 7vw;
}
@media screen and (max-width: 959px) {
  .ob-bgVideo__copyTxtWrap {
    bottom: 4vw;
    left: 6vw;
  }
}
.is-active .ob-bgVideo__copyTxtWrap {
  animation: maincatch 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 4s;
}
.cms .ob-bgVideo__copyTxtWrap {
  transform: none;
  animation: none;
}
.ob-bgVideo__copyTxt {
  display: inline;
  color: #3F3D3A;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-size: 4.4rem;
  padding-left: 28px;
  padding: 10px 18px;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .ob-bgVideo__copyTxt {
    font-size: 2rem;
    padding: 4px 14px;
    letter-spacing: 0.05em;
  }
}
.cms .ob-bgVideo__copyTxt {
  position: static;
  font-size: 2rem;
}
.ob-bgVideo__copyTxt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
}
.is-active .ob-bgVideo__copyTxt::after {
  animation: maincatch3 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 4.8s;
}
.cms .ob-bgVideo__copyTxt::after {
  content: none;
}
@keyframes maincatch {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes maincatch2 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes maincatch3 {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes maincatchoff {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-150%);
  }
}
@keyframes maincatch2off {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

.ob-contentWrap {
  margin-top: 56.25vw;
}
@media screen and (max-width: 959px) {
  .ob-contentWrap {
    margin-top: calc(56.25vw + 60px);
  }
}

.ob-featureTop {
  max-width: 1180px;
  padding: 0 10px;
  margin: 0 auto 100px;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .ob-featureTop {
    padding: 0;
    margin-bottom: 64px;
  }
}
.ob-featureTop__desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 200px;
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__desc {
    padding: 0 10px;
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: 18px;
    margin-bottom: 180px;
  }
}
.ob-featureTop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: -140px 0 200px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    font-size: 1.6rem;
    line-height: 1.875;
    padding: 0 10px;
    margin: -120px 0 180px;
  }
}
.ob-featureTop__grid strong {
  display: block;
  font-size: 2rem;
  margin: 0 0 -20px;
}
.ob-featureTop__grid img {
  margin: 0 auto;
}
.ob-featureTop__contents {
  padding-top: 200px;
  padding-left: 98px;
  position: relative;
  height: 840px;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__contents {
    height: auto;
    padding: 200px 10px 39px;
  }
}
.ob-featureTop__contents::after {
  content: "";
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #EBF4F5;
  z-index: 0;
}
.ob-featureTop__vertical {
  position: absolute;
  left: 98px;
  top: -114px;
  z-index: 1;
  display: flex;
  writing-mode: vertical-rl;
  flex-direction: column;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__vertical {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 97px;
  }
}
.ob-featureTop__vertical .cp-inner {
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}
.cms .ob-featureTop__vertical {
  position: static;
}
.ob-featureTop__slideWrap {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1496px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  padding-bottom: 132px;
  max-width: calc((100vw - 1160px) / 2 + 1166px);
  gap: 28px;
}
.ob-featureTop__slideWrap.slick-slider {
  max-width: 1496px;
  gap: 0;
}
@media screen and (max-width: 1260px) {
  .ob-featureTop__slideWrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .ob-featureTop__slideWrap {
    flex-direction: column;
    gap: 28px;
    width: 100%;
    padding-bottom: 80px;
  }
}
.ob-featureTop__item.slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__item.slick-slide {
    margin: 0 8px;
  }
}
@media screen and (max-width: 639px) {
  .ob-featureTop__item.slick-slide {
    margin: 0;
  }
}
.ob-featureTop__item.slick-slide.slick-active {
  opacity: 1;
}
.ob-featureTop__itemImg {
  margin-bottom: 4px;
  overflow: hidden;
}
.ob-featureTop__itemImg .cp-inner {
  width: 480px;
  height: 320px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__itemImg .cp-inner {
    width: auto;
    height: auto;
    overflow: auto;
  }
}
.ob-featureTop__itemImg img {
  transform: scale(1);
  transition: 0.3s;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__itemImg img {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .ob-featureTop__itemImg:hover img {
    transform: scale(1.15);
  }
}
.ob-featureTop__itemTxt {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__itemTxt {
    font-size: 1.8rem;
    height: 74px;
    padding: 0 10px;
  }
}
.ob-featureTop__itemTxt a {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  line-height: 1.454;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__itemTxt a {
    font-size: 1.8rem;
  }
}
.ob-featureTop .slick-arrow {
  position: absolute;
  bottom: 47px;
  width: 50px;
  height: 50px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px;
  background-image: url('/albums/css/basic-blocks/abm00005653.svg');
}
@media screen and (min-width: 960px) {
  .ob-featureTop .slick-arrow:hover {
    background-image: url('/albums/css/basic-blocks/abm00005652.svg');
  }
}
@media screen and (max-width: 959px) {
  .ob-featureTop .slick-arrow {
    bottom: 40px;
  }
}
.ob-featureTop .slick-prev {
  left: 0;
  transform: rotate(180deg);
}
.ob-featureTop .slick-next {
  left: 60px;
}
.ob-featureTop__underTtl {
  position: relative;
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  color: #3F3D3A;
  font-size: 2.4rem;
  line-height: 1.5;
  z-index: 1;
  padding-top: 14px;
}
@media screen and (max-width: 959px) {
  .ob-featureTop__underTtl {
    font-size: 2rem;
    padding-top: 20px;
    letter-spacing: 0.005em;
    border-top: 1px solid #ccc;
    margin-right: -10px;
  }
}
.ob-featureTop__underTtl::before {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #555;
}
.ob-featureTop__underTtl strong {
  font-weight: 600;
}

.ob-process {
  background: #247789;
  padding: 60px 80px;
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .ob-process {
    margin-top: 0;
    padding: 24px 10px;
  }
}
.ob-process__inner {
  position: relative;
  max-width: 1160px;
  margin: 64px auto 0;
}
@media screen and (max-width: 959px) {
  .ob-process__inner {
    margin-top: 0;
  }
}
.ob-process__ttl {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  color: #fff;
}
.ob-process__contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 14px;
}
@media screen and (max-width: 959px) {
  .ob-process__contents {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}
.ob-process__contentsItem {
  padding: 30px 20px 20px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 959px) {
  .ob-process__contentsItem {
    padding: 32px 24px;
    border-left: none;
    height: auto;
  }
}
.ob-process__contentsItem:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-right: none;
}
@media screen and (max-width: 959px) {
  .ob-process__contentsItem:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}
.cms .ob-process__contentsItem {
  height: 320px;
}
.ob-process__contentsItemTop {
  background-color: #3f3d3a;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 23px;
  flex-shrink: 0;
}
@media screen and (max-width: 959px) {
  .ob-process__contentsItemTop {
    margin-bottom: 8px;
  }
}
.ob-process__num {
  font-size: 2.4rem;
  font-weight: bold;
}
.ob-process__nenji {
  font-size: 1.6rem;
  font-weight: bold;
}
.ob-process__contentsItemTxtWrap {
  text-align: center;
}
.ob-process__contentsItemTtl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.ob-process__contentsItemTxt {
  margin-bottom: 12px;
}
.ob-process__barTop {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .ob-process__barTop {
    grid-template-columns: 1fr;
    display: none;
  }
}
.ob-process__barBottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .ob-process__barBottom {
    grid-template-columns: 1fr;
    gap: 16px;
    display: none;
  }
}
.ob-process__bar {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(235, 244, 245, 0.32);
  height: 40px;
}
.cms .ob-process__bar {
  min-height: 40px;
  height: auto;
  margin-bottom: 8px;
}
.ob-process__barTop .ob-process__bar {
  grid-column: 2/3;
}
@media screen and (max-width: 959px) {
  .ob-process__barTop .ob-process__bar {
    grid-column: 1/2;
  }
}
.ob-process__contentsItem .ob-process__bar {
  display: none;
}
@media screen and (max-width: 959px) {
  .ob-process__contentsItem .ob-process__bar {
    display: block;
    margin-bottom: 8px;
    padding: 6px 12px;
    min-height: 40px;
    font-size: 1.4rem;
  }
}
.cms .ob-process__contentsItem .ob-process__bar {
  display: block;
}
.ob-process__btn {
  max-width: 1160px;
  margin: 64px auto 0;
}
@media screen and (max-width: 959px) {
  .ob-process__btn {
    margin: 32px auto;
  }
}
.ob-process__btn a {
  border-radius: 4px;
  width: 320px;
  height: 80px;
  padding: 8px 16px;
  border: 1px solid #fff;
  background-color: #247789;
  color: #fff;
  transition: 0.2s ease;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  .ob-process__btn a:hover {
    background-color: #fff;
    color: #247789;
    text-decoration: none;
  }
  .ob-process__btn a:hover::before {
    background-color: #247789;
  }
}
@media screen and (max-width: 959px) {
  .ob-process__btn a {
    margin: 0 auto;
  }
}
.ob-process__btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  background-color: #fff;
  width: 28px;
  height: 14px;
  transition: 0.2s ease;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2227.423%22%20height%3D%2214%22%20viewBox%3D%220%200%2027.423%2014%22%3E%3Cg%20transform%3D%22translate(-341.5%20-3591.5)%22%3E%3Cg%20transform%3D%22translate(0%208)%22%3E%3Cpath%20d%3D%22M-10720.2-12358a1%2C1%2C0%2C0%2C1-.707-.293%2C1%2C1%2C0%2C0%2C1%2C0-1.414l5.293-5.293-5.293-5.293a1%2C1%2C0%2C0%2C1%2C0-1.414%2C1%2C1%2C0%2C0%2C1%2C1.414%2C0l6.707%2C6.707-6.707%2C6.707A1%2C1%2C0%2C0%2C1-10720.2-12358Z%22%20transform%3D%22translate(11081.709%2015955.5)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M25%2C1H0A1%2C1%2C0%2C0%2C1-1%2C0%2C1%2C1%2C0%2C0%2C1%2C0-1H25a1%2C1%2C0%2C0%2C1%2C1%2C1A1%2C1%2C0%2C0%2C1%2C25%2C1Z%22%20transform%3D%22translate(342.5%203590.5)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2227.423%22%20height%3D%2214%22%20viewBox%3D%220%200%2027.423%2014%22%3E%3Cg%20transform%3D%22translate(-341.5%20-3591.5)%22%3E%3Cg%20transform%3D%22translate(0%208)%22%3E%3Cpath%20d%3D%22M-10720.2-12358a1%2C1%2C0%2C0%2C1-.707-.293%2C1%2C1%2C0%2C0%2C1%2C0-1.414l5.293-5.293-5.293-5.293a1%2C1%2C0%2C0%2C1%2C0-1.414%2C1%2C1%2C0%2C0%2C1%2C1.414%2C0l6.707%2C6.707-6.707%2C6.707A1%2C1%2C0%2C0%2C1-10720.2-12358Z%22%20transform%3D%22translate(11081.709%2015955.5)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M25%2C1H0A1%2C1%2C0%2C0%2C1-1%2C0%2C1%2C1%2C0%2C0%2C1%2C0-1H25a1%2C1%2C0%2C0%2C1%2C1%2C1A1%2C1%2C0%2C0%2C1%2C25%2C1Z%22%20transform%3D%22translate(342.5%203590.5)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.ob-catch {
  max-width: 1180px;
  padding: 203px 10px 83px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .ob-catch {
    max-width: 100%;
    padding: 101px 10px 21px;
  }
}
.ob-catch.is-reverse {
  padding: 129px 0 97px;
}
@media screen and (max-width: 959px) {
  .ob-catch.is-reverse {
    padding: 31px 0 44px;
  }
}
.ob-catch.is-ttlOnly {
  margin: 0 auto 64px;
}
.ob-catch.is-ttlOnly::after {
  height: 100% !important;
}
.ob-catch.is-ttlOnly + .cp-ti {
  font-weight: 500;
}
.cms .ob-catch {
  padding: 0;
}
.ob-catch__src {
  display: none;
}
.cms .ob-catch__src {
  display: block;
}
.ob-catch__inner {
  position: relative;
  height: 860px;
}
@media screen and (max-width: 959px) {
  .ob-catch__inner {
    height: auto;
  }
}
.cms .ob-catch__inner {
  position: static;
  height: auto;
}
.ob-catch__bgWrap {
  display: flex;
  width: calc(100% + 100px);
  flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 1480px) {
  .ob-catch__bgWrap {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .ob-catch__bgWrap {
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 29px;
  }
}
.is-reverse .ob-catch__bgWrap {
  flex-direction: row;
  margin-left: -100px;
}
@media screen and (max-width: 1480px) {
  .is-reverse .ob-catch__bgWrap {
    margin-left: auto;
  }
}
@media screen and (max-width: 959px) {
  .is-reverse .ob-catch__bgWrap {
    flex-direction: row-reverse;
  }
}
.cms .ob-catch__bgWrap {
  display: flex;
  flex-direction: column-reverse;
  width: auto;
  position: static;
}
.ob-catch__bg {
  position: absolute;
  top: 0;
  left: calc(-50vw + 50% - 50px);
  z-index: 0;
  width: calc(100% + 50vw - 50% - 50px);
  height: 860px;
}
@media screen and (max-width: 959px) {
  .ob-catch__bg {
    height: auto;
    padding-top: 54%;
    position: relative;
    top: auto;
    left: -10px;
    width: calc(100% - 23px);
  }
}
.is-reverse .ob-catch__bg {
  left: auto;
  right: calc(-50vw + 50% - 50px);
}
@media screen and (max-width: 959px) {
  .is-reverse .ob-catch__bg {
    right: 0;
    width: 88.2%;
    padding-top: 48%;
  }
}
.cms .ob-catch__bg {
  position: static;
  overflow: hidden;
}
.cms .is-video .ob-catch__bg {
  display: none;
}
.cms .is-reverse .ob-catch__bg {
  display: block;
  position: static;
  width: 640px;
  height: 360px;
}
.ob-catch__bg video,
.ob-catch__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.cms .ob-catch__bg video,
.cms .ob-catch__bg img {
  position: static;
}
.ob-catch__ttl {
  writing-mode: vertical-rl;
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  font-size: 6rem;
  width: 100px;
  display: flex;
  align-items: flex-start;
  color: #3F3D3A;
  line-height: 1.2;
  letter-spacing: 0.01em;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 959px) {
  .ob-catch__ttl {
    font-size: 1.5rem;
    width: 23px;
    align-items: center;
    transform: translateX(-6px);
  }
}
.is-reverse .ob-catch__ttl {
  transform: translateX(-48px);
}
@media screen and (max-width: 959px) {
  .is-reverse .ob-catch__ttl {
    transform: translateX(-11px);
  }
}
.cms .ob-catch__ttl {
  writing-mode: horizontal-tb;
  width: auto;
  font-size: 3rem;
  margin: 0;
}
.ob-catch__txtWrap {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 632px;
  background-color: #fff;
  padding-top: 47px;
  padding-left: 60px;
  height: 292px;
}
@media screen and (max-width: 959px) {
  .ob-catch__txtWrap {
    width: 100%;
    height: auto;
    padding: 0;
    position: static;
  }
}
.is-reverse .ob-catch__txtWrap {
  left: -1px;
  padding-right: 60px;
  padding-left: 0;
  height: 321px;
}
@media screen and (max-width: 959px) {
  .is-reverse .ob-catch__txtWrap {
    padding-left: 10px;
    padding-right: 0;
    height: auto;
  }
}
.cms .ob-catch__txtWrap {
  position: static;
  padding: 0;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.ob-catch__txtWrap .lead1 {
  margin-bottom: 29px;
}
@media screen and (max-width: 959px) {
  .ob-catch__txtWrap .lead1 {
    margin-bottom: 19px;
  }
}
.ob-catch__txtWrap .lead3 {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .ob-catch__txtWrap .lead3 {
    line-height: 1.875;
  }
}
.ob-catch__vertical {
  position: absolute;
  left: 98px;
  top: -114px;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .ob-catch__vertical {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    text-orientation: upright;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
  }
}
.ob-catch__vertical span {
  background-color: #fff;
  height: -moz-max-content;
  height: max-content;
  padding: 8px 4px;
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .ob-catch__vertical span {
    font-size: 2rem;
  }
}
.ob-catch__vertical .cp-inner {
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-size: 3.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .ob-catch__vertical .cp-inner {
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .ob-catch__vertical .cp-inner {
    font-size: 1.6rem;
  }
}
.cms .ob-catch__vertical .cp-inner {
  writing-mode: horizontal-tb;
}
.cms .ob-catch__vertical {
  position: static;
  display: block;
}

.ob-linkImgTxt01 {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 60px;
}
@media screen and (max-width: 959px) {
  .ob-linkImgTxt01 {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 0 10px 40px;
  }
}
.ob-linkImgTxt01.is-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ob-linkImgTxt01__item {
  height: -moz-max-content;
  height: max-content;
}
.ob-linkImgTxt01__img {
  overflow: hidden;
  margin-bottom: 18px;
}
@media screen and (max-width: 959px) {
  .ob-linkImgTxt01__img {
    margin-bottom: 14px;
    max-height: 320px;
    height: 100%;
  }
}
.ob-linkImgTxt01__img .cp-inner {
  height: 100%;
}
.ob-linkImgTxt01__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: 0.3s;
}
.ob-linkImgTxt01__txt a {
  display: flex;
  height: 50px;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  color: #222;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url('/albums/css/basic-blocks/abm00005671.svg');
  text-decoration: none;
}
@media screen and (max-width: 959px) {
  .ob-linkImgTxt01__txt a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 960px) {
  .ob-linkImgTxt01__item:hover .ob-linkImgTxt01__img img {
    transform: scale(1.15);
  }
  .ob-linkImgTxt01__item:hover .ob-linkImgTxt01__txt a {
    background-image: url('/albums/css/basic-blocks/abm00005670.svg');
  }
}

.ob-languageQa,
.ob-fieldStudyQa {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .ob-languageQa,
  .ob-fieldStudyQa {
    margin-bottom: 64px;
  }
}
.ob-languageQa__inner,
.ob-fieldStudyQa__inner {
  padding: 80px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__inner,
  .ob-fieldStudyQa__inner {
    padding: 24px;
  }
}
.ob-languageQa__heading,
.ob-fieldStudyQa__heading {
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0 0 52px;
  min-height: 50px;
  position: relative;
  margin: 0 0 32px;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__heading,
  .ob-fieldStudyQa__heading {
    font-size: 1.6rem;
    margin: 0 0 24px;
  }
}
.ob-languageQa__heading::before,
.ob-fieldStudyQa__heading::before {
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  width: 44px;
  height: 50px;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__heading::before,
  .ob-fieldStudyQa__heading::before {
    font-size: 3.2rem;
    top: -4px;
  }
}
.ob-languageQa__heading--question::before,
.ob-fieldStudyQa__heading--question::before {
  content: "Q.";
}
.ob-languageQa__heading--answer::before,
.ob-fieldStudyQa__heading--answer::before {
  content: "A.";
}
.ob-languageQa__txt,
.ob-fieldStudyQa__txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__txt,
  .ob-fieldStudyQa__txt {
    font-size: 1.5rem;
  }
}
.ob-languageQa__btn,
.ob-fieldStudyQa__btn {
  margin: 48px 0 0;
  width: 240px;
  height: 64px;
  border: 1px solid #247789;
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 8px;
  background-color: #247789;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__btn,
  .ob-fieldStudyQa__btn {
    margin: 32px 0 0;
  }
}
.ob-languageQa__btn::before, .ob-languageQa__btn::after,
.ob-fieldStudyQa__btn::before,
.ob-fieldStudyQa__btn::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  border-radius: 100vmax;
  transition: 0.2s ease;
}
.ob-languageQa__btn::before,
.ob-fieldStudyQa__btn::before {
  background-color: #fff;
}
.ob-languageQa__btn::after,
.ob-fieldStudyQa__btn::after {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 14px 28px;
          mask-size: 14px 28px;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2227.423%22%20viewBox%3D%220%200%2014%2027.423%22%3E%3Cg%20transform%3D%22translate(3597.5%20-341.5)%20rotate(90)%22%3E%3Cpath%20d%3D%22M-10720.2-12358a1%2C1%2C0%2C0%2C1-.707-.293%2C1%2C1%2C0%2C0%2C1%2C0-1.414l5.293-5.293-5.293-5.293a1%2C1%2C0%2C0%2C1%2C0-1.414%2C1%2C1%2C0%2C0%2C1%2C1.414%2C0l6.707%2C6.707-6.707%2C6.707A1%2C1%2C0%2C0%2C1-10720.2-12358Z%22%20transform%3D%22translate(11081.709%2015955.5)%22%20fill%3D%22%23247789%22%2F%3E%3Cpath%20d%3D%22M25%2C1H0A1%2C1%2C0%2C0%2C1-1%2C0%2C1%2C1%2C0%2C0%2C1%2C0-1H25a1%2C1%2C0%2C0%2C1%2C1%2C1A1%2C1%2C0%2C0%2C1%2C25%2C1Z%22%20transform%3D%22translate(342.5%203590.5)%22%20fill%3D%22%23247789%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2227.423%22%20viewBox%3D%220%200%2014%2027.423%22%3E%3Cg%20transform%3D%22translate(3597.5%20-341.5)%20rotate(90)%22%3E%3Cpath%20d%3D%22M-10720.2-12358a1%2C1%2C0%2C0%2C1-.707-.293%2C1%2C1%2C0%2C0%2C1%2C0-1.414l5.293-5.293-5.293-5.293a1%2C1%2C0%2C0%2C1%2C0-1.414%2C1%2C1%2C0%2C0%2C1%2C1.414%2C0l6.707%2C6.707-6.707%2C6.707A1%2C1%2C0%2C0%2C1-10720.2-12358Z%22%20transform%3D%22translate(11081.709%2015955.5)%22%20fill%3D%22%23247789%22%2F%3E%3Cpath%20d%3D%22M25%2C1H0A1%2C1%2C0%2C0%2C1-1%2C0%2C1%2C1%2C0%2C0%2C1%2C0-1H25a1%2C1%2C0%2C0%2C1%2C1%2C1A1%2C1%2C0%2C0%2C1%2C25%2C1Z%22%20transform%3D%22translate(342.5%203590.5)%22%20fill%3D%22%23247789%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-color: #247789;
}
@media screen and (min-width: 960px) {
  .ob-languageQa__btn:hover,
  .ob-fieldStudyQa__btn:hover {
    background-color: #fff;
    color: #247789;
  }
  .ob-languageQa__btn:hover::before,
  .ob-fieldStudyQa__btn:hover::before {
    background-color: #247789;
  }
  .ob-languageQa__btn:hover::after,
  .ob-fieldStudyQa__btn:hover::after {
    background-color: #fff;
  }
}
.ob-languageQa__btn.is-active,
.ob-fieldStudyQa__btn.is-active {
  background-color: #fff;
  color: #247789;
  cursor: auto;
}
.ob-languageQa__btn.is-active::before,
.ob-fieldStudyQa__btn.is-active::before {
  background-color: #247789;
}
.ob-languageQa__btn.is-active::after,
.ob-fieldStudyQa__btn.is-active::after {
  background-color: #fff;
}
.ob-languageQa__answer,
.ob-fieldStudyQa__answer {
  margin: 64px 0 0;
  display: none;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__answer,
  .ob-fieldStudyQa__answer {
    margin: 48px 0 0;
  }
}
.cms .ob-languageQa__answer,
.cms .ob-fieldStudyQa__answer {
  display: block;
}
.ob-languageQa__flex,
.ob-fieldStudyQa__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__flex,
  .ob-fieldStudyQa__flex {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ob-languageQa__flex .ob-languageQa__txt,
.ob-languageQa__flex .ob-fieldStudyQa__txt,
.ob-fieldStudyQa__flex .ob-languageQa__txt,
.ob-fieldStudyQa__flex .ob-fieldStudyQa__txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 959px) {
  .ob-languageQa__flex .ob-languageQa__txt,
  .ob-languageQa__flex .ob-fieldStudyQa__txt,
  .ob-fieldStudyQa__flex .ob-languageQa__txt,
  .ob-fieldStudyQa__flex .ob-fieldStudyQa__txt {
    font-size: 1.5rem;
  }
}
.ob-languageQa strong,
.ob-fieldStudyQa strong {
  font-size: 2.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .ob-languageQa strong,
  .ob-fieldStudyQa strong {
    font-size: 1.8rem;
  }
}

.ob-lead {
  font-size: 3.2rem;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 959px) {
  .ob-lead {
    font-size: 2.8rem;
    bottom: 64px;
  }
}

.page-index.faculty2 .ob-languageQa .ob-languageQa__inner {
  background-color: #ebf4f5;
}

.is-fs .ob-teacher__txt {
  font-size: 1.7rem;
}
@media screen and (max-width: 959px) {
  .is-fs .ob-teacher__txt {
    font-size: 1.5rem;
  }
}

.ob-fieldStudyQa__inner {
  padding: 0;
}

.ob-internationalStudent__heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 16px;
}
.ob-internationalStudent__txt ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 959px) {
  .ob-internationalStudent__txt ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
}

/**NEW_EDITOR_BLOCK__START**/
:root {
  --main-color: #247789;
  --main-bg-color: #fff;
  --sub-bg-color: #F6F6F8;
  --main-text-color: #222222;
  --sub-text-color: #333333;
  --main-border-color: #cccccc;
  --sub-border-color: #999999;
  --main-link-color: #0E67B4;
}

.cp-basic-block {
  margin: 40px auto;
  line-height: 2;
}

@media screen and (max-width: 959px) {
  .cp-basic-block {
    margin: 32px 0;
  }
}
.cp-basic-block__row {
  display: grid;
}

.cp-basic-block__row.is-no-step-down {
  display: flex;
}

.cp-basic-block__row[data-ratio="1-1"], .cp-basic-block__row[data-ratio="1-2"], .cp-basic-block__row[data-ratio="1-3"], .cp-basic-block__row[data-ratio="2-1"], .cp-basic-block__row[data-ratio="3-1"] {
  display: flex;
}

.cp-basic-block__col2 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="1"] {
  grid-row: 2/3;
}

.cp-basic-block__col2 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="2"] {
  grid-row: 1/2;
}

.cp-basic-block__col3 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="1"] {
  grid-row: 3/4;
}

.cp-basic-block__col3 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="2"] {
  grid-row: 2/3;
}

.cp-basic-block__col3 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="3"] {
  grid-row: 1/2;
}

.cp-basic-block__col4 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="1"] {
  grid-row: 4/5;
}

.cp-basic-block__col4 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="2"] {
  grid-row: 3/4;
}

.cp-basic-block__col4 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="3"] {
  grid-row: 2/3;
}

.cp-basic-block__col4 .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col[data-cp-text-image-id="4"] {
  grid-row: 1/2;
}

.cp-basic-block__col2 .cp-basic-block__row {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

@media screen and (max-width: 959px) {
  .cp-basic-block__col2 .cp-basic-block__row {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cp-basic-block__col3 .cp-basic-block__row {
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

@media screen and (max-width: 959px) {
  .cp-basic-block__col3 .cp-basic-block__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cp-basic-block__col4 .cp-basic-block__row {
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

@media screen and (max-width: 959px) {
  .cp-basic-block__col4 .cp-basic-block__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cp-basic-block__col {
  margin-left: 0;
  margin-bottom: 0;
  word-break: normal;
}

.cp-basic-block__col .cp-inner {
  word-break: keep-all;
}

.cp-basic-block__col + .cp-basic-block__col {
  margin-left: 0;
  margin-bottom: 0px;
}

@media screen and (max-width: 959px) {
  .cp-basic-block__row:not(.is-no-step-down) .cp-basic-block__col {
    margin-bottom: 0;
  }
  .cp-basic-block__row.is-step-down-reverse .cp-basic-block__col:last-child {
    margin-bottom: 0;
  }
}
.cp-basic-block__tab-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label {
  color: #fff;
  background-color: var(--main-color);
}

.cp-basic-block__tab-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label a {
  color: #fff;
}

.cp-basic-block__tab-contents .cp-basic-block__child-label {
  border: 1px solid var(--main-color);
  background: var(--main-bg-color);
  color: var(--main-text-colorcolor);
}

.cp-basic-block__tab-contents .cp-basic-block__child-label a {
  color: var(-main-text-color);
  text-decoration: none !important;
}

.cp-basic-block__tab-contents .cp-basic-block__child-label:hover {
  color: #fff;
  background-color: var(--main-color);
}

.cp-basic-block__tab-contents .cp-basic-block__child-label:hover a {
  color: #fff;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-label {
  border: 1px solid var(--main-color);
  background: var(--main-bg-color);
  color: var(--main-text-colorcolor);
  width: auto;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-label:hover {
  background-color: var(--main-color);
  color: #fff;
}

.cp-basic-block__accordion-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label {
  background-color: var(--main-color);
  color: #fff;
}

.cp-basic-block__buttons li a {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--main-text-color);
  border: 1px solid var(--main-color);
  background-color: var(--main-bg-color);
  text-decoration: none;
}

.cp-basic-block__buttons li a:hover {
  color: #fff;
  background-color: var(--main-color);
}

.cp-basic-block__image-text-wrap .cp-basic-block__row .cp-basic-block__col {
  background-color: #fff;
  padding: 24px;
}

.cp-basic-block__col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  word-break: break-all;
}

.cp-basic-block__row[data-ratio=""] .cp-basic-block__col .cp-inner {
  word-break: break-all;
}

.cp-basic-block__row[data-ratio="1-2"] .cp-basic-block__col:last-child, .cp-basic-block__row[data-ratio="2-1"] .cp-basic-block__col:first-child {
  flex-grow: 2;
}

.cp-basic-block__row[data-ratio="1-2"] .cp-basic-block__col .cp-inner, .cp-basic-block__row[data-ratio="2-1"] .cp-basic-block__col, cp-inner {
  word-break: break-all;
}

.cp-basic-block__row[data-ratio="3-1"] .cp-basic-block__col:first-child, .cp-basic-block__row[data-ratio="1-3"] .cp-basic-block__col:last-child {
  flex-grow: 3;
}

.cp-basic-block__row[data-ratio="3-1"] .cp-basic-block__col .cp-inner, .cp-basic-block__row[data-ratio="1-3"] .cp-basic-block__col, cp-inner {
  word-break: break-all;
}

.cp-basic-block__row.is-step-down-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.cp-basic-block__tab-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label {
  color: #fff;
  background-color: var(--main-color);
}

.cp-basic-block__tab-contents input.cp-basic-block__child-input {
  display: none !important;
}

.cp-basic-block__tab-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label + .cp-basic-block__child-content {
  padding: 10px;
  height: auto;
  overflow: hidden;
  transition: 0.5s opacity;
  opacity: 1;
}

.cp-basic-block__tab-contents .cp-basic-block__child-label {
  padding: 10px 25px;
  flex: 1;
  order: -1;
}

.cp-basic-block__tab-contents {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.cp-basic-block__tab-contents .cp-basic-block__child-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

@media screen and (max-width: 1023px) {
  .cp-basic-block__tab-contents {
    flex-direction: column;
  }
}
.cp-basic-block__accordion-contents {
  width: 100%;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-label {
  padding: 10px 25px;
  display: block;
  width: 100%;
  transition: 0.5s;
  cursor: pointer;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-label {
  position: relative;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-label::before,
.cp-basic-block__accordion-contents .cp-basic-block__child-label::after {
  content: "";
  width: 24px;
  height: 1px;
  position: absolute;
  right: 20px;
  top: calc(50% - 1px);
  transition: 0.3s;
  background-color: #333;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-label::after {
  transform: rotate(-90deg);
}

/* .cp-basic-block__accordion-contents .cp-basic-block__child-label:hover {
  transition: 0.2s;
} */
.cp-basic-block__accordion-contents .cp-basic-block__child-label:hover::after {
  transform: rotate(0deg);
  background-color: #fff;
  transition: 0.2s;
}

.cp-basic-block__accordion-contents input.cp-basic-block__child-input {
  display: none !important;
}

.cp-basic-block__accordion-contents .cp-basic-block__child-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* .cp-basic-block__accordion-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label {
  color: #fff;
  background: #1A5948;
} */
.cp-basic-block__accordion-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label::after {
  transform: rotate(0deg);
  background-color: #fff;
  transition: 0.2s;
}

.cp-basic-block__accordion-contents input.cp-basic-block__child-input:checked + .cp-basic-block__child-label + .cp-basic-block__child-content {
  padding: 10px;
  height: auto;
  overflow: hidden;
  transition: 0.5s opacity;
  opacity: 1;
}

.cp-basic-block__accordion-all-toggle-button-wrap {
  display: flex;
  justify-content: flex-end;
}

.cp-basic-block__accordion-all-toggle-button {
  cursor: pointer;
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}

.cp-basic-block__accordion-all-toggle-button:before {
  content: "全て開く";
}

.cp-basic-block__accordion-all-toggle-button[data-is-active="1"]:before {
  content: "全て閉じる";
}

.cp-basic-block__accordion-all-toggle-button-icon {
  position: absolute;
  top: 50%;
  left: 0;
}

.cp-basic-block__accordion-all-toggle-button-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #000;
}

.cp-basic-block__accordion-all-toggle-button-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #000;
  transform: rotate(90deg);
  transition: 0.2s;
}

.cp-basic-block__accordion-all-toggle-button[data-is-active="1"] .cp-basic-block__accordion-all-toggle-button-icon:before {
  transform: rotate(0);
  transition: 0.2s;
}

[data-area=content] .cp-basic-block__buttons ul {
  list-style: none;
  margin: 0;
}

.cp-basic-block__buttons ul {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  counter-reset: number;
  display: flex;
  flex-wrap: wrap;
}

.cp-basic-block__buttons li {
  margin-bottom: 20px;
  width: 100%;
  counter-increment: number 1;
}

.cp-basic-block__buttons li a {
  position: relative;
  display: block;
  text-align: inherit;
  padding: 10px 5px;
  background: var(--main-bg-color);
  word-break: break-all;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
}

.cp-basic-block__row[data-position=center] .cp-basic-block__buttons ul {
  justify-content: center;
}

.cp-basic-block__row[data-position=right] .cp-basic-block__buttons ul {
  justify-content: flex-end;
}

.cp-basic-block__buttons ul.cp-basic-block__buttons-col2 > li {
  width: calc(50% - 15px);
  margin-right: 30px;
}
.cp-basic-block__buttons ul.cp-basic-block__buttons-col2 > li:nth-child(2n) {
  margin-right: 0;
}

.cp-basic-block__buttons ul.cp-basic-block__buttons-col3 > li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
}
.cp-basic-block__buttons ul.cp-basic-block__buttons-col3 > li:nth-child(3n) {
  margin-right: 0;
}

.cp-basic-block__buttons ul.cp-basic-block__buttons-col4 > li {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
}
.cp-basic-block__buttons ul.cp-basic-block__buttons-col4 > li:nth-child(4n) {
  margin-right: 0;
}

.cp-basic-block__buttons ul.cp-basic-block__buttons-col5 > li {
  width: calc((100% - 120px) / 5);
  margin-right: 30px;
}
.cp-basic-block__buttons ul.cp-basic-block__buttons-col5 > li:nth-child(5n) {
  margin-right: 0;
}

.cp-basic-block__buttons ul.cp-basic-block__buttons-col6 > li {
  width: calc((100% - 150px) / 6);
  margin-right: 30px;
}
.cp-basic-block__buttons ul.cp-basic-block__buttons-col6 > li:nth-child(6n) {
  margin-right: 0;
}

/**NEW_EDITOR_BLOCK___END**/