@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: #fff;
}
.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/abm00006278.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/abm00006296.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/abm00006265.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/abm00006292.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/abm00006267.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: #EDEDED;
  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: #EDEDED;
  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-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-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/abm00006290.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/abm00006289.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/abm00006290.svg');
}
@media screen and (min-width: 960px) {
  .cp-btn li a:hover::before {
    background-image: url('/albums/css/basic-blocks/abm00006289.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: #EDEDED;
}

[data-area=content] table.fr-alternate-rows tbody tr:nth-child(even) {
  background-color: inherit;
}

/* //テーブル */
/* テーブルスマホスクロール */
.tableHiddenBox {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .tableHiddenBox {
    margin-bottom: 24px;
  }
}

.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/abm00006269.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/abm00006268.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;
}

/* //罫線 */
/* アンカーリンクメニュー */
[data-area=content] .cp-anchor-menu ul,
[data-area=content] .cp-anchor-menu ol {
  list-style: none;
}

.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 #2F7B67;
}

@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: #2F7B67;
}

.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: #2F7B67;
}

.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: #EDEDED;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-image: url('/albums/css/basic-blocks/abm00006276.svg');
}
@media screen and (max-width: 959px) {
  .ob-acdUnit__dt {
    background-size: 16px;
  }
}
.ob-acdUnit__dt.is-active {
  background-color: #2F7B67;
  background-image: url('/albums/css/basic-blocks/abm00006277.svg');
  transform: scale(1, -1);
}
@media screen and (min-width: 960px) {
  .ob-acdUnit__dt:hover {
    background-color: #2F7B67;
    background-image: url('/albums/css/basic-blocks/abm00006277.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-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 {
    grid-template-columns: 1fr;
    padding: 0 10px 40px;
    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;
  color: #222;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url('/albums/css/basic-blocks/abm00006290.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/abm00006289.svg');
  }
}

/* //リンク（画像＋テキスト） */
/* 縦書き見出し */
.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: #2F7B67;
  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: #2F7B67;
  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-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;
  }
}
.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: 0;
  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;
  }
}
@media screen and (max-width: 750px) {
  .ob-catch__vertical span {
    font-size: 1.6rem;
  }
}
.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-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: #EDEDED;
  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: #2F7B67;
}

/* //2段リスト */
/* 背景色有りエリア */
.ob-bgBox {
  background-color: #EDEDED;
  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: #2F7B67;
  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: #2F7B67;
  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;
  }
}

/* //囲みエリア */
/* 囲み見出し */
.ob-wpHead {
  margin-bottom: 40px;
}
.ob-wpHead__txt {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 4px solid #006651;
  color: #2F7B67;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 24px;
}
@media screen and (max-width: 959px) {
  .ob-wpHead__txt {
    font-size: 2.2rem;
    padding: 8px 12px;
    min-height: 100px;
    line-height: 1.5;
  }
}

/* //囲み見出し */
/* ==========================================================================

ヘッダー

========================================================================== */
.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: #2F7B67;
  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: 140px 10px 80px;
  opacity: 0;
  background-color: #2F7B67;
}
@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 #006651;
    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(6) {
  grid-column: 2/3;
}
@media screen and (max-width: 959px) {
  .gnav__contents > .categoryList:nth-child(6) {
    grid-column: auto;
  }
}
.gnav__contents > .categoryList:nth-child(n+6) .lv2-link {
  display: flex;
  align-items: flex-end;
  height: 100px;
}
@media screen and (max-width: 959px) {
  .gnav__contents > .categoryList:nth-child(n+6) .lv2-link {
    align-items: center;
    height: 50px;
  }
}
.gnav__contents > .categoryList.is-active {
  background-color: #006651;
}
.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 #006651;
    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 #006651;
    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 #006651;
  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 #006651;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 25px 0 calc(25px + 3em);
}
.gnav .lnav-link::after {
  background-image: url('/albums/css/basic-blocks/abm00006279.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: transform 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/abm00006281.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/abm00006272.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: #2F7B67;
  }
}

/* ==========================================================================

フッター

========================================================================== */
.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: #2F7B67;
    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__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: #2F7B67;
  border: 1px solid #2F7B67;
  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: #2F7B67;
  }
}
@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: #2F7B67;
  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/abm00006279.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/abm00006278.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: #2F7B67;
}

.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,
.page-index.search2 .lo-breads,
.newsDetail .lo-breads {
  display: none;
}

.lo-lnav {
  position: fixed;
  top: 140px;
  right: 0;
  z-index: 10;
  background-color: #2F7B67;
  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: #2F7B67;
  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/abm00006273.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: #2F7B67;
  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: #2F7B67;
  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: #006651;
  }
}
.lo-lnav .lv3-link.is-active {
  background-color: #006651;
}
.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: #006651;
  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: #006651;
  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: 1.7;
  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: #2F7B67;
  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: #2F7B67;
    color: #fff;
  }
  .lo-lnav__examLink > a:hover::after {
    background-image: url('/albums/css/basic-blocks/abm00006279.svg');
  }
}
.administration3 .lo-lnav .index3 {
  display: none;
}
.lo-lnav .lv2-link::after {
  background-image: none !important;
}
.lo-lnav .lnav-link::after {
  background-image: url('/albums/css/basic-blocks/abm00006279.svg');
}

.lo-ttl {
  width: 100%;
  height: 280px;
  background-color: #EDEDED;
  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: #fff;
}
.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 .news-all-wrap + .button1 {
  margin-bottom: 0;
}
.top .ob-headTop + .lead2 {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .top .ob-headTop + .lead2 {
    margin-bottom: 48px;
  }
}
.top .lead2 + .cp-text-col2 {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 40px;
}
.top .lead2 + .cp-text-col2 img {
  width: 100%;
}
.top .ob-gakka + .button1 {
  display: block;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 124px;
  padding: 0 10px;
}
@media screen and (max-width: 959px) {
  .top .ob-gakka + .button1 {
    margin-bottom: 64px;
  }
}
.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;
  overflow: hidden;
}
.top .cp-videos-03 + .button1 {
  max-width: 1160px;
  width: 100%;
  margin: 40px auto 24px;
}

.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__vertical {
  position: absolute;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.25em;
  z-index: 1;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  bottom: -8.2%;
  left: 8.1%;
  font-weight: 400;
}
.is-loaded .ob-topMv__vertical {
  animation: verticalTxtIn 0.7s ease-out forwards 1s;
}
@media screen and (max-width: 959px) {
  .ob-topMv__vertical {
    font-size: 4.2rem;
    bottom: 2%;
  }
}
@media screen and (max-width: 750px) {
  .ob-topMv__vertical {
    font-size: 3.2rem;
  }
}
.cms .ob-topMv__vertical {
  writing-mode: horizontal-tb;
  position: static;
  color: #222;
  font-size: 2.4rem;
  -webkit-clip-path: none;
          clip-path: none;
}
.ob-topMv__verticalTxt1 {
  margin-left: 4px;
}
@media screen and (max-width: 959px) {
  .ob-topMv__verticalTxt1 {
    margin-left: 20px;
  }
}
@media screen and (max-width: 750px) {
  .ob-topMv__verticalTxt1 {
    margin-left: 18px;
  }
}
.cms .ob-topMv__verticalTxt1 {
  margin-left: 0;
  margin-bottom: 8px;
}
.ob-topMv__verticalTxt2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-left: 16px;
  font-family: "Libre Bodoni", serif;
}
@media screen and (max-width: 959px) {
  .ob-topMv__verticalTxt2 {
    font-size: 1rem;
    margin-left: 16px;
  }
}
@media screen and (max-width: 750px) {
  .ob-topMv__verticalTxt2 {
    margin-left: 12px;
    transform: scale(0.8) translateY(-32px);
  }
}
.cms .ob-topMv__verticalTxt2 {
  margin-left: 0;
  margin-bottom: 8px;
}
.ob-topMv__verticalTxt3 {
  margin-left: 48px;
}
@media screen and (max-width: 959px) {
  .ob-topMv__verticalTxt3 {
    margin-left: 32px;
  }
}
.cms .ob-topMv__verticalTxt3 {
  margin-left: 0;
  margin-bottom: 8px;
}
.ob-topMv__verticalTxt4 {
  margin-left: 48px;
}
@media screen and (max-width: 959px) {
  .ob-topMv__verticalTxt4 {
    margin-left: 32px;
  }
}
.cms .ob-topMv__verticalTxt4 {
  margin-left: 0;
  margin-bottom: 8px;
}
@keyframes verticalTxtIn {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 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/abm00006306.jpg');
}
@media screen and (max-width: 750px) {
  .ob-bannerTop__inner {
    height: 163px;
    overflow: hidden;
    background-image: url('/albums/css/basic-blocks/abm00006307.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;
}

.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: 6rem;
  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-gakka {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 48px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .ob-gakka {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ob-gakka__ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 48px;
}
@media screen and (max-width: 959px) {
  .ob-gakka__ttl {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.ob-gakka__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 100px;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .ob-gakka__contents {
    grid-template-columns: 1fr;
    grid-template-rows: 100px 100px 100px;
  }
}
.ob-gakka__item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.ob-gakka__item a,
.ob-gakka__item .cp-inner,
.ob-gakka__item span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 959px) {
  .ob-gakka__item span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
@media screen and (max-width: 959px) {
  .ob-gakka__item span::after {
    content: "";
    display: block;
    margin-top: 2px;
    width: 8px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('/albums/css/basic-blocks/abm00006321.svg');
  }
}
.ob-gakka__item:nth-child(-n+2)::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 16px;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00006321.svg');
}
@media screen and (max-width: 959px) {
  .ob-gakka__item:nth-child(-n+2)::after {
    content: none;
  }
}
.ob-gakka__item:last-child {
  grid-column: 1/3;
  display: flex;
}
@media screen and (max-width: 959px) {
  .ob-gakka__item:last-child {
    grid-column: 1/2;
  }
}
.ob-gakka__item:last-child span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ob-gakka__item:last-child span::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 8px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00006321.svg');
}

.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: #EDEDED;
  z-index: 0;
}
.ob-featureTop__vertical {
  position: absolute;
  left: 98px;
  top: -114px;
  z-index: 1;
  display: flex;
  font-weight: 400;
  writing-mode: vertical-rl;
  flex-direction: column;
}
@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 - 1260px) / 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/abm00006270.svg');
}
@media screen and (min-width: 960px) {
  .ob-featureTop .slick-arrow:hover {
    background-image: url('/albums/css/basic-blocks/abm00006271.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: #EDEDED;
  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);
  }
}

.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/abm00006295.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;
  overflow: hidden;
  line-height: 1.55;
}
.top .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/* ==========================================================================

学部紹介

========================================================================== */
.page-index.faculty2 .lo-ttl {
  display: none;
}
.page-index.faculty2 .ob-mvGakubu__copyTxt:first-child {
  opacity: 0;
}
@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-catch {
    padding: 161px 10px 21px;
  }
}
@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-catch__vertical {
    top: -100px;
  }
}
@media screen and (max-width: 959px) {
  .page-index.faculty2 .ob-ttlVertical {
    display: none;
  }
}
.page-index.faculty2 .ob-ttlVerticalWrap .cp-text-col2 .cp-text-r .cp-h4-text {
  margin-bottom: 20px;
}

/* 学部紹介 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-gakkei {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 959px) {
  .ob-gakkei {
    grid-template-columns: 1fr;
  }
}
.ob-gakkei__item:first-child .ob-gakkei__topTxt {
  background-color: #2583b9;
}
.ob-gakkei__item:nth-child(2) .ob-gakkei__topTxt {
  background-color: #459CBE;
}
.ob-gakkei__item:nth-child(3) .ob-gakkei__topTxt {
  background: linear-gradient(90deg, rgb(37, 131, 185) 0%, rgb(69, 156, 190) 100%);
}
.ob-gakkei + .cp-h3-text + .ob-gakkei .ob-gakkei__item:first-child .ob-gakkei__topTxt {
  background-color: #5FA867;
}
.ob-gakkei + .cp-h3-text + .ob-gakkei .ob-gakkei__item:nth-child(2) .ob-gakkei__topTxt {
  background-color: #85C15B;
}
.ob-gakkei + .cp-h3-text + .ob-gakkei .ob-gakkei__item:nth-child(3) .ob-gakkei__topTxt {
  background: linear-gradient(90deg, rgb(95, 168, 103) 0%, rgb(133, 193, 91) 100%);
}
.ob-gakkei__top {
  margin-bottom: 23px;
}
.ob-gakkei__topTxt {
  background-color: #ccc;
  height: 120px;
}
.ob-gakkei__topTxt .cp-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: 90% center;
  background-image: url('/albums/css/basic-blocks/abm00006321.svg');
}
.ob-gakkei__topTxt a {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  display: block;
  transition: 0.2s;
  text-decoration: none;
}
.ob-gakkei__topImg {
  overflow: hidden;
}
.ob-gakkei__topImg .cp-inner {
  width: 100%;
  height: 100%;
}
.ob-gakkei__topImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
@media screen and (min-width: 960px) {
  .ob-gakkei__item:hover .ob-gakkei__topTxt a {
    border-bottom: 1px solid #fff;
  }
  .ob-gakkei__item:hover .ob-gakkei__topImg img {
    scale: 1.15;
  }
}
.ob-gakkei__middle ul {
  list-style: none;
  padding-bottom: 32px;
  border-bottom: 1px solid #ccc;
  margin-left: 0;
  margin-bottom: 21px;
  height: 145px;
}
@media screen and (max-width: 959px) {
  .ob-gakkei__middle ul {
    height: auto;
  }
}
.ob-gakkei__middle ul a {
  color: #222;
}
.ob-gakkei + .cp-h3-text + .ob-gakkei .ob-gakkei__middle ul {
  height: 203px;
}
@media screen and (max-width: 959px) {
  .ob-gakkei + .cp-h3-text + .ob-gakkei .ob-gakkei__middle ul {
    height: auto;
  }
}
.ob-gakkei__middle li {
  font-size: 1.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ob-gakkei__middle li::before {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00006330.svg');
}

/* //学科・コース */
/* プロセス */
.ob-process {
  background: #2F7B67;
  padding: 60px 80px;
  margin-bottom: 112px;
}
@media screen and (max-width: 959px) {
  .ob-process {
    margin-top: 0;
    margin-bottom: 48px;
    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;
  margin-bottom: 14px;
}
.ob-process__lead {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  color: #fff;
}
.ob-process__contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}
@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: 300px;
  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;
  }
}
.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);
  }
}
.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;
}

/* //プロセス */
/* ==========================================================================

工学部の育成力

========================================================================== */
.page-cultivation.faculty2 .ob-skill + .cp-img-col1 + table {
  max-width: 1160px;
  margin-bottom: 106px;
}
@media screen and (max-width: 959px) {
  .page-cultivation.faculty2 .ob-skill + .cp-img-col1 + table {
    margin-bottom: 64px;
  }
}
.page-cultivation.faculty2 .ob-skill + .cp-img-col1 + table td {
  height: 200px;
  border-width: 10px;
}
@media screen and (max-width: 959px) {
  .page-cultivation.faculty2 .ob-skill + .cp-img-col1 + table td {
    height: 160px;
  }
}
@media screen and (max-width: 959px) {
  .page-cultivation.faculty2 [data-area=content] .ob-skill + .cp-img-col1 img {
    width: auto;
  }
}
.page-cultivation.faculty2 .ob-skill + .cp-img-col1 + table strong {
  font-size: 3.2rem;
}
@media screen and (max-width: 959px) {
  .page-cultivation.faculty2 .ob-skill + .cp-img-col1 + table strong {
    font-size: 2.4rem;
  }
}

/* 工学部で身につくチカラ */
.ob-skill {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .ob-skill {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ob-skill__tag {
  display: inline-block;
  width: 127px;
  text-align: center;
  background-color: #2F7B67;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
}
.ob-skill__ttlWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 46px;
}
.ob-skill__ttl {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .ob-skill__ttl {
    font-size: 3.4rem;
  }
}
.ob-skill__num {
  font-family: "Libre Bodoni", serif;
  color: #2F7B67;
  font-size: 6rem;
  line-height: 1;
}
.ob-skill__num .cp-inner {
  text-shadow: 0.3px 0.3px 0px, 0.3px -0.3px 0px, -0.3px 0.3px 0px, -0.3px -0.3px 0px, 0.3px 0px 0px, 0px 0.3px 0px, -0.3px 0px 0px, 0px -0.3px 0px;
}

/* //工学部で身につくチカラ */
/* TOPICS */
.ob-topics {
  background-color: #fff;
  padding: 87px 0 105px;
}
@media screen and (max-width: 959px) {
  .ob-topics {
    padding: 24px;
  }
}
.ob-topics__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .ob-topics__inner {
    max-width: 100%;
  }
}
.ob-topics__headSub, .ob-topics__headMain {
  background-color: #5b766b;
  color: #fff;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
}
.ob-topics__headSub {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 959px) {
  .ob-topics__headSub {
    font-size: 2rem;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 750px) {
  .ob-topics__headSub {
    font-size: 1.6rem;
  }
}
.ob-topics__headMain {
  font-size: 5.4rem;
  margin-bottom: 52px;
}
@media screen and (max-width: 959px) {
  .ob-topics__headMain {
    font-size: 4.6rem;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 750px) {
  .ob-topics__headMain {
    font-size: 2.4rem;
  }
}
.ob-topics__contents:not(:last-child) {
  margin-bottom: 84px;
}
@media screen and (max-width: 959px) {
  .ob-topics__contents:not(:last-child) {
    margin-bottom: 40px;
  }
}
.ob-topics__ttlWrap {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}
.ob-topics__num {
  background-color: #5b766b;
  color: #fff;
  border-radius: 4px;
  font-family: "Libre Bodoni", serif;
  font-size: 4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  flex-shrink: 0;
}
.ob-topics__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .ob-topics__ttl {
    font-size: 2rem;
    margin-top: 16px;
  }
}
.ob-topics .cp-wp .cp-text-item {
  background-color: #EDEDED;
}

/* //TOPICS */
/* ==========================================================================

学科紹介

========================================================================== */
.page-index.course2 .ob-mvCommon {
  margin-bottom: 0;
}
.page-index.course2 .cp-ti-horizontal-col1 + table {
  margin-bottom: 60px;
}
.page-index.course2 .newsTtlWrap {
  text-align: center;
  margin-bottom: 54px;
}
@media screen and (max-width: 959px) {
  .page-index.course2 .newsTtlWrap {
    margin-bottom: 40px;
  }
}
.page-index.course2 .newsTtlWrap__sub {
  font-size: 2rem;
  font-weight: bold;
}
.page-index.course2 .newsTtlWrap__main {
  font-size: 7rem;
  font-weight: bold;
  font-family: "Edu TAS Beginner", cursive;
  line-height: 1;
  margin-top: 16px;
}
@media screen and (max-width: 959px) {
  .page-index.course2 .newsTtlWrap__main {
    margin-top: 8px;
  }
}
.page-index.course2 .newsTtlWrap__main span {
  color: #E95704;
}
.page-index.course2 .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.course2 .newsContents {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.page-index.course2 .newsContents__item a {
  text-decoration: none;
}
.page-index.course2 .newsContents__item a::after {
  content: none;
}
.page-index.course2 .newsContents__tmb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .page-index.course2 .newsContents__tmb {
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  .page-index.course2 .newsContents__tmb.is-default {
    height: 280px;
  }
}
.page-index.course2 .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/abm00006295.png');
  transition: 0.3s;
}
.page-index.course2 .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.course2 .newsContents__tmb img {
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .page-index.course2 .newsContents__item:hover img {
    transform: scale(1.15);
  }
  .page-index.course2 .newsContents__item:hover .newsContents__tmb.is-default::after {
    transform: scale(1.15);
  }
}
.page-index.course2 .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;
  overflow: hidden;
  line-height: 1.55;
}
.page-index.course2 .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}
.page-index.course2 .news-all-wrap + .button1 {
  margin-bottom: 0;
}

/* 学科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: #2F7B67;
  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: #2F7B67;
  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 */
/* 電子システム工学科 */
@media screen and (max-width: 959px) {
  .page-index.course2.es3 .ob-catch {
    padding-top: 160px;
  }
}

/* //電子システム工学科 */
/* デザイン学科 */
/* デザイン学科のポイント */
.ob-point {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 130px;
}
@media screen and (max-width: 959px) {
  .ob-point {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }
}
.ob-point__num {
  font-size: 6rem;
  font-family: "Libre Bodoni", serif;
  text-align: center;
}
.ob-point__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 22px;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 959px) {
  .ob-point__ttl {
    font-size: 2rem;
    padding-bottom: 24px;
    margin-bottom: 16px;
    letter-spacing: 0;
  }
}
.ob-point__img {
  width: 260px;
  height: 240px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* //デザイン学科のポイント */
/* //デザイン学科 */
/* ==========================================================================

コース紹介

========================================================================== */
.page-introduction.course2 .ob-catch {
  padding: 129px 0 97px;
}
.page-introduction.course2 .cp-img-col2 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 機械システム工学科 */
@media screen and (max-width: 959px) {
  .page-introduction.course2.ms3 .ob-catch {
    padding-top: 160px;
  }
}

/* //機械システム工学科 */
/* 電子システム工学科 */
@media screen and (max-width: 959px) {
  .page-introduction.course2.es3 .ob-catch {
    padding-top: 160px;
  }
}

/* //電子システム工学科 */
/* 情報工学科 */
@media screen and (max-width: 959px) {
  .page-introduction.course2.cs3 .ob-catch {
    padding-top: 160px;
  }
}

/* //情報工学科 */
/* デザイン学科 */
@media screen and (max-width: 959px) {
  .page-introduction.course2.id3 .ob-catch {
    padding-top: 160px;
  }
}
@media screen and (min-width: 960px) {
  .page-introduction.course2.id3 .ob-acdUnit__dt:hover {
    background-repeat: no-repeat !important;
    background-position: 95% center !important;
    background-image: url('/albums/css/basic-blocks/abm00006277.svg') !important;
    background-color: #2F7B67 !important;
  }
}

/* //デザイン学科 */
/* ==========================================================================

授業・カリキュラム

========================================================================== */
/* 機械システム工学科 */
.page-curriculum.course2.ms3 .cp-img-col4 {
  gap: 12px;
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .page-curriculum.course2.ms3 .cp-img-col4 {
    gap: 24px;
    margin-bottom: 64px;
  }
}
.page-curriculum.course2.ms3 .ob-bgBox span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .page-curriculum.course2.ms3 .ob-bgBox span {
    font-size: 2.4rem;
  }
}

/* 4年間の学び */
.ob-curriculum {
  display: flex;
  gap: 25px;
  margin-bottom: 42px;
}
.ob-curriculum__num {
  background-color: #2F7B67;
  color: #fff;
  border-radius: 4px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 69px;
  height: 69px;
  padding-bottom: 20px;
  flex-shrink: 0;
}
.ob-curriculum__num .cp-inner {
  font-size: 4rem;
  font-family: "Libre Bodoni", serif;
  line-height: 1;
  margin-bottom: -6px;
}
.ob-curriculum__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .ob-curriculum__ttl {
    font-size: 2rem;
    margin-top: 16px;
  }
}

/* //4年間の学び */
/* //機械システム工学科 */
/* 電子システム工学科 */
.page-curriculum.course2.es3 .ob-ttlVerticalWrap {
  padding: 0;
}
.page-curriculum.course2.es3 .ob-bgBox:nth-child(3) {
  margin-bottom: 40px;
}
.page-curriculum.course2.es3 .ob-bgBox span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .page-curriculum.course2.es3 .ob-bgBox span {
    font-size: 2.4rem;
  }
}
.page-curriculum.course2.es3 .ob-bgBox .lead2 {
  margin-top: 36px;
}
@media screen and (max-width: 959px) {
  .page-curriculum.course2.es3 .ob-bgBox .lead2 {
    margin-top: 24px;
  }
}

/* //電子システム工学科 */
/* 情報工学科 */
.page-curriculum.course2.cs3 .ob-bgBox span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .page-curriculum.course2.cs3 .ob-bgBox span {
    font-size: 2.4rem;
  }
}

/* 4年間の学び */
.ob-csCurriculum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 65px;
}
@media screen and (max-width: 959px) {
  .ob-csCurriculum {
    grid-template-columns: 1fr;
  }
}
.ob-csCurriculum__ttlWrap {
  display: flex;
  gap: 25px;
  margin-bottom: 42px;
}
.ob-csCurriculum__num {
  background-color: #2F7B67;
  color: #fff;
  border-radius: 4px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 69px;
  height: 69px;
  padding-bottom: 20px;
  flex-shrink: 0;
}
.ob-csCurriculum__num .cp-inner {
  font-size: 4rem;
  font-family: "Libre Bodoni", serif;
  line-height: 1;
  margin-bottom: -6px;
}
.ob-csCurriculum__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .ob-csCurriculum__ttl {
    font-size: 2rem;
    margin-top: 16px;
  }
}

/* //4年間の学び */
/* //情報工学科 */
/* デザイン学科 */
.page-curriculum.course2.id3 .ob-bgBox span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .page-curriculum.course2.id3 .ob-bgBox span {
    font-size: 2.4rem;
  }
}

/* //デザイン学科 */
/* ==========================================================================

研究室一覧

========================================================================== */
.page-index.lab4 .lo-ttl {
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .page-index.lab4 .lo-ttl {
    margin-bottom: 72px;
  }
}
.page-index.lab4 .ob-bgBox {
  padding: 200px 0 144px;
}
@media screen and (max-width: 959px) {
  .page-index.lab4 .ob-bgBox {
    padding: 80px 0;
  }
}
.page-index.lab4 .ob-bgBox__inner {
  max-width: 1180px !important;
}
.page-index.lab4 .ob-ttlVerticalWrap {
  padding: 0;
}

/* ==========================================================================

研究室

========================================================================== */
.lab4 .lo-ttl {
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .lab4 .lo-ttl {
    margin-bottom: 72px;
  }
}
.lab4 .cp-h4-text {
  font-size: 2.8rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 959px) {
  .lab4 .cp-h4-text {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
.lab4 .cp-h4-text + .lead2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .lab4 .cp-h4-text + .lead2 {
    margin-bottom: 64px;
  }
}
.lab4 [data-area=content] .cp-vertical {
  gap: 30px;
}
@media screen and (max-width: 959px) {
  .lab4 [data-area=content] .cp-vertical {
    gap: 24px;
  }
}

/* ==========================================================================

卒業生の活躍

========================================================================== */
/* 機械システム工学科 */
.page-graduate.course2.ms3 .ob-ttlVerticalWrap__inner {
  max-width: 960px;
}
.page-graduate.course2.ms3 .ob-activity + .cp-text-col1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .page-graduate.course2.ms3 .ob-activity + .cp-text-col1 {
    margin-bottom: 40px;
  }
}

.ob-activity {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .ob-activity {
    flex-direction: column;
    gap: 32px;
  }
}
.ob-activity__left {
  max-width: 450px;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 959px) {
  .ob-activity__left {
    max-width: 100%;
  }
}
.ob-activity__right {
  max-width: 100%;
  width: 100%;
}
.ob-activity .cp-h4-text {
  margin-top: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .ob-activity .cp-h4-text {
    margin-bottom: 32px;
  }
}

/* //機械システム工学科 */
/* 電子システム工学科 */
.page-graduate.course2.es3 .ob-ttlVerticalWrap__inner {
  max-width: 960px;
}
.page-graduate.course2.es3 .ob-activity + .cp-text-col1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .page-graduate.course2.es3 .ob-activity + .cp-text-col1 {
    margin-bottom: 40px;
  }
}

/* //電子システム工学科 */
/* デザイン学科 */
.page-graduate.course2.id3 .ob-ttlVerticalWrap__inner > * {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .page-graduate.course2.id3 .ob-ttlVerticalWrap__inner > * {
    max-width: 100%;
  }
}
.page-graduate.course2.id3 .cp-h3-text {
  margin: 50px auto 46px !important;
}
@media screen and (max-width: 959px) {
  .page-graduate.course2.id3 .cp-h3-text {
    margin: 24px auto 15px !important;
  }
}

.ob-idSlider {
  margin: 40px auto 80px !important;
}
@media screen and (max-width: 959px) {
  .ob-idSlider {
    padding: 32px auto 40px !important;
  }
}
.ob-idSlider__img {
  max-width: 100%;
  width: 100%;
  height: 720px;
}
@media screen and (max-width: 959px) {
  .ob-idSlider__img {
    height: 80vw;
  }
}
.ob-idSlider__img .cp-inner,
.ob-idSlider__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ob-idSlider__txt {
  margin-bottom: 20px;
  text-align: center;
}
.ob-idSlider .slick-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 1;
  font-size: 0;
  top: 360px;
  background-image: url('/albums/css/basic-blocks/abm00006270.svg');
}
@media screen and (min-width: 960px) {
  .ob-idSlider .slick-arrow:hover {
    background-image: url('/albums/css/basic-blocks/abm00006271.svg');
  }
}
@media screen and (max-width: 959px) {
  .ob-idSlider .slick-arrow {
    width: 40px;
    height: 40px;
    background-size: 40px;
    top: calc((100% - 20px) * 0.75 / 2);
  }
}
.ob-idSlider .slick-prev {
  left: 20px;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 959px) {
  .ob-idSlider .slick-prev {
    left: 10px;
  }
}
.ob-idSlider .slick-next {
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 959px) {
  .ob-idSlider .slick-next {
    right: 10px;
  }
}
.ob-idSlider .slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 43px auto 0;
}
@media screen and (max-width: 959px) {
  .ob-idSlider .slick-dots {
    margin-top: 0;
  }
}
.ob-idSlider .slick-dots li {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2F7B67;
  border: 1px solid #2F7B67;
  transition: 0.2s;
}
.ob-idSlider .slick-dots li.slick-active {
  background-color: #2F7B67;
  color: #fff;
}

/* //デザイン学科 */
/* ==========================================================================

コラボレーションコース

========================================================================== */
.page-collaboration.course2 .ob-ttlVerticalWrap + .ob-bgBox {
  padding-top: 70px;
}
@media screen and (max-width: 959px) {
  .page-collaboration.course2 .ob-ttlVerticalWrap + .ob-bgBox {
    padding-top: 40px;
    margin-top: 40px;
  }
}
.page-collaboration.course2 .ob-bgBox .cp-ti-text span,
.page-collaboration.course2 .ob-bgBox .cp-text-item span {
  display: flex;
  width: 160px;
  height: 32px;
  justify-content: center;
  align-items: center;
}
.page-collaboration.course2 [data-area=content] > *:last-child {
  margin-bottom: 0;
}

/* コラボレーションコース（オリブロ） */
.ob-collaboration {
  margin-top: 93px;
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .ob-collaboration {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.ob-collaboration__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding: 71px 0 0;
}
@media screen and (max-width: 959px) {
  .ob-collaboration__inner {
    grid-template-columns: 1fr;
  }
}
.ob-collaboration__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  height: 78%;
  background-color: #F8D447;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .ob-collaboration__inner::after {
    right: -10px;
  }
}
.ob-collaboration__ttl span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin: 0 0 64px;
}
@media screen and (max-width: 959px) {
  .ob-collaboration__ttl span {
    font-size: 2.4rem;
    margin: 0 0 32px;
  }
}
.ob-collaboration__ttl span span {
  display: inline;
  padding: 0;
}
.ob-collaboration__img {
  display: flex;
  justify-content: center;
}

/* //コラボレーションコース（オリブロ） */
/* ==========================================================================

国際コース「国際エンジニアプログラム」

========================================================================== */
.page-ie.course2 .cp-ti-horizontal-wp-col1 span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .page-ie.course2 .cp-ti-horizontal-wp-col1 span {
    font-size: 2.4rem;
  }
}
.page-ie.course2 .cp-ti-horizontal-wp-col1 + .cp-h3-text + .cp-img-col1 {
  display: block;
}
@media screen and (max-width: 959px) {
  .page-ie.course2 .cp-ti-horizontal-wp-col1 + .cp-h3-text + .cp-img-col1 {
    display: none;
  }
}
.page-ie.course2 .cp-ti-horizontal-wp-col1 + .cp-h3-text + .cp-img-col1 + .cp-img-col1 {
  display: none;
}
@media screen and (max-width: 959px) {
  .page-ie.course2 .cp-ti-horizontal-wp-col1 + .cp-h3-text + .cp-img-col1 + .cp-img-col1 {
    display: block;
  }
}
.page-ie.course2 .cp-text-col3 ul {
  list-style: none;
  margin-left: 0;
}
.page-ie.course2 .cp-text-col3 li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 19px;
}
.page-ie.course2 .cp-text-col3 li::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2F7B67;
  top: 11px;
  left: 0;
}
.page-ie.course2 .ob-bgBox:last-child {
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.page-ie.course2 .ob-bgBox .cp-ti-text span,
.page-ie.course2 .ob-bgBox .cp-text-item span {
  display: flex;
  width: 160px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================

基礎教育系列

========================================================================== */
.page-la.course2 .ob-bgBox {
  margin-top: 120px;
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .page-la.course2 .ob-bgBox {
    margin-top: 64px;
  }
}
.page-la.course2 .ob-bgBox .ob-teacher__contents .cp-wp .cp-text-item {
  background-color: #EDEDED;
}

/* 教員紹介 */
.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: #2F7B67;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00006575.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: #2F7B67;
  }
  .ob-teacher__item:hover .ob-teacher__itemInner::after {
    background-color: #fff;
    background-image: url('/albums/css/basic-blocks/abm00006574.svg');
  }
}
.ob-teacher__item.is-active .ob-teacher__itemInner {
  background-color: #2F7B67;
}
.ob-teacher__item.is-active .ob-teacher__itemInner::after {
  background-color: #fff;
  background-image: url('/albums/css/basic-blocks/abm00006574.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: #2F7B67;
}
@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: #EDEDED;
  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 {
    margin-bottom: 30px;
  }
}
.ob-teacher__topTxt span {
  font-size: 4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 4px 8px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .ob-teacher__topTxt span {
    font-size: 2.4rem;
  }
}
.ob-teacher__close {
  width: 240px;
  height: 54px;
  margin: 0 auto;
  background-color: #2F7B67;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}
.ob-teacher .cp-text-col1 strong {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* //教員紹介 */
/* ==========================================================================

国際交流・留学

========================================================================== */
@media screen and (max-width: 959px) {
  .page-index.abroad2 .ob-mvCommon__txtWrap,
  .page-index.abroad2 .ob-mvCommon__bg {
    height: 200px;
  }
}

/* ==========================================================================

就職実績

========================================================================== */
.page-index.career2 [data-area=content] > *:last-child {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .page-index.career2 [data-area=content] > *:last-child {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  .page-index.career2 .ob-acdUnit__dt:hover {
    background-color: #2F7B67;
  }
}

/* ==========================================================================

夢をかなえた先輩たち

========================================================================== */
.page-graduate.career2 .lo-ttl {
  margin-bottom: 40px;
}
.page-graduate.career2 .ob-wpArea:not(:last-child) {
  margin-bottom: 20px;
}
.page-graduate.career2 .cp-it-horizontal-col1 {
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .page-graduate.career2 .cp-it-horizontal-col1 {
    margin-top: 32px;
  }
}

/* ==========================================================================

ORANGE CUP

========================================================================== */
.page-index.orange_cup2 .lo-breads {
  position: static;
  margin-bottom: 32px;
}
.page-index.orange_cup2 .cp-btn {
  margin-top: 0 !important;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .page-index.orange_cup2 .cp-btn {
    margin-bottom: 12px;
  }
}
.page-index.orange_cup2 .cp-btn ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 60px;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .page-index.orange_cup2 .cp-btn ul {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60px 60px;
    gap: 12px;
    height: auto;
  }
}
.page-index.orange_cup2 .cp-btn li {
  width: 100%;
  height: 100%;
  border: 1px solid #2F7B67;
  background-color: #EDEDED;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  margin: 0;
  transition: 0.2s;
}
@media screen and (min-width: 960px) {
  .page-index.orange_cup2 .cp-btn li:hover {
    background-color: #2F7B67;
  }
}
@media screen and (min-width: 960px) {
  .page-index.orange_cup2 .cp-btn li:hover a {
    color: #fff;
    opacity: 1;
  }
  .page-index.orange_cup2 .cp-btn li:hover a::before {
    background-image: url('/albums/css/basic-blocks/abm00006614.svg');
  }
}
.page-index.orange_cup2 .cp-btn a {
  text-decoration: none;
  transition: 0.2s;
}
.page-index.orange_cup2 .cp-btn a::before {
  width: 15px;
  height: 15px;
  background-image: url('/albums/css/basic-blocks/abm00006615.svg');
}

@media screen and (max-width: 959px) {
  .lo-nop {
    margin-top: 60px;
  }
}
.lo-nop img {
  width: 100%;
}

/* ==========================================================================

過去の受賞者一覧

========================================================================== */
.page-past.orange_cup2 [data-area=content] > *:last-child {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .page-past.orange_cup2 [data-area=content] > *:last-child {
    margin-bottom: 40px;
  }
}

/* ==========================================================================

検索結果

========================================================================== */
.page-index.search2 .lo-lnav {
  display: none;
}

.page-index.search2 .lo-container {
  background-color: #EDEDED;
}

.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: #2F7B67;
  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: #2F7B67 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/abm00006280.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: #2F7B67;
}
.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-container {
  background-color: #EDEDED;
}

@media screen and (max-width: 959px) {
  .news-all2 .lo-breads {
    top: 200px;
  }
}

.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 .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/abm00006295.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;
  overflow: hidden;
  line-height: 1.55;
}
.news-all2 .newsContents__bottom {
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

/*// 一覧ページ */
/* ニュースメニュー */
.newsMenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
  background-color: #fff;
  border: 1px solid #ccc;
}
@media screen and (max-width: 959px) {
  .newsMenu {
    grid-template-columns: 1fr 1fr;
  }
}
.newsMenu__item:nth-child(-n+3) a {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 959px) {
  .newsMenu__item:nth-child(-n+3) a {
    border-right: none;
    border-bottom: none;
  }
}
.newsMenu__item:nth-child(4) a {
  border-bottom: 1px solid #ccc;
}
.newsMenu__item:nth-child(n+5):nth-child(-n+6) a {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 959px) {
  .newsMenu__item:nth-child(n+5):nth-child(-n+6) a {
    border-right: none;
  }
}
@media screen and (max-width: 959px) {
  .newsMenu__item:nth-child(odd) a {
    border-right: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
  }
  .newsMenu__item:nth-child(even) a {
    border-bottom: 1px solid #ccc !important;
  }
}
.newsMenu__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  text-align: center;
  background-color: #fff;
  font-size: 0px;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .newsMenu__item a:hover {
    background-color: #2F7B67;
  }
}
@media screen and (max-width: 959px) {
  .newsMenu__item a {
    width: 100%;
  }
}
.newsMenu__item a::after {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}
@media screen and (min-width: 960px) {
  .newsMenu__item a:hover::after {
    color: #fff;
  }
}
.newsMenu__item:nth-child(1) a::after {
  content: "最新情報";
}
.newsMenu__item:nth-child(2) a::after {
  content: "NEWS";
}
.newsMenu__item:nth-child(3) a::after {
  content: "機械システム工学科";
}
.newsMenu__item:nth-child(4) a::after {
  content: "電子システム工学科";
}
.newsMenu__item:nth-child(5) a::after {
  content: "情報工学科";
}
.newsMenu__item:nth-child(6) a::after {
  content: "デザイン学科";
}
.page-index .newsMenu__item:nth-child(1) a, .page-news .newsMenu__item:nth-child(2) a, .page-ms .newsMenu__item:nth-child(3) a, .page-es .newsMenu__item:nth-child(4) a, .page-cs .newsMenu__item:nth-child(5) a, .page-id .newsMenu__item:nth-child(6) a {
  background-color: #2F7B67;
}
.page-index .newsMenu__item:nth-child(1) a::after, .page-news .newsMenu__item:nth-child(2) a::after, .page-ms .newsMenu__item:nth-child(3) a::after, .page-es .newsMenu__item:nth-child(4) a::after, .page-cs .newsMenu__item:nth-child(5) a::after, .page-id .newsMenu__item:nth-child(6) a::after {
  color: #fff;
}
.newsMenu .selectColumn {
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .newsMenu .selectColumn {
    grid-column: 1/3;
  }
}
.newsMenu .select {
  position: relative;
}
.newsMenu .selectHidden {
  display: none;
}
.newsMenu .selectStyled {
  background-color: #fff;
  border-right: 1px solid #ccc;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 960px) {
  .newsMenu .selectStyled:hover {
    background-color: #2F7B67;
    color: #fff;
  }
}
@media screen and (max-width: 959px) {
  .newsMenu .selectStyled {
    border-right: none;
  }
}
.newsMenu .selectStyled::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 54px;
  height: 54px;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/albums/css/basic-blocks/abm00006276.svg');
}
@media screen and (min-width: 960px) {
  .newsMenu .selectStyled:hover::after {
    background-image: url('/albums/css/basic-blocks/abm00006277.svg');
    transform: scale(1, -1);
  }
}
.newsMenu .selectOptions {
  display: none;
  margin-left: 0;
  list-style: none;
  text-align: center;
  gap: 1px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.newsMenu .selectOptions li {
  line-height: 54px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: none;
  transition: 0.3s;
}
@media screen and (min-width: 960px) {
  .newsMenu .selectOptions li:hover {
    background-color: #2F7B67;
    color: #fff;
  }
}
.newsMenu .selectOptions li:first-child {
  font-size: 0;
  position: relative;
}
.newsMenu .selectOptions li:first-child::after {
  content: "全ての年度";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 1.6rem;
}
.newsMenu .selectOptions li:last-child {
  border-bottom: 1px solid #ccc;
}

/* //ニュースメニュー */
/* ニュースコンテンツ */
.news-all2 .newsContents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px 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/abm00006295.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;
}

/* //ニュースコンテンツ */
/* ページング */
.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: #2F7B67;
}
.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: #2F7B67;
  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;
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .newsDetail .lo-container .cp-h3-text {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.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 .cp-all {
  margin-top: 20px;
}
.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: #2F7B67;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #2F7B67;
}
@media screen and (min-width: 960px) {
  .newsDetail .lo-container .detail__btn a:hover {
    background-color: #fff;
    color: #2F7B67;
  }
}
@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 .course2 .lab4 .lv4-link.is-folder {
  display: none;
}

/* ==========================================================================

研究室

========================================================================== */
.page-index.course2.lab4 .lo-breads li.lab4 {
  display: none;
}

body.page-lab.course2.id3 .lo-ttl,
body.page-lab.course2.cs3 .lo-ttl,
body.page-lab.course2.es3 .lo-ttl,
body.page-lab.course2.ms3 .lo-ttl {
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  body.page-lab.course2.id3 .lo-ttl,
  body.page-lab.course2.cs3 .lo-ttl,
  body.page-lab.course2.es3 .lo-ttl,
  body.page-lab.course2.ms3 .lo-ttl {
    margin-bottom: 72px;
  }
}
body.page-lab.course2.id3 .ob-bgBox,
body.page-lab.course2.cs3 .ob-bgBox,
body.page-lab.course2.es3 .ob-bgBox,
body.page-lab.course2.ms3 .ob-bgBox {
  padding: 200px 0 144px;
}

@media screen and (max-width: 959px) {
  body.page-lab.course2.id3 .ob-bgBox,
  body.page-lab.course2.cs3 .ob-bgBox,
  body.page-lab.course2.es3 .ob-bgBox,
  body.page-lab.course2.ms3 .ob-bgBox {
    padding: 80px 0;
  }
}
.ob-laboIndex {
  display: flex;
  background: #fff;
  margin-bottom: 20px;
}

.ob-laboIndex a {
  display: flex;
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  .ob-laboIndex a {
    flex-direction: column;
  }
}
.ob-laboIndex__left {
  overflow: hidden;
  min-width: 360px;
  height: 280px;
}

@media screen and (max-width: 959px) {
  .ob-laboIndex__left {
    min-width: inherit;
    max-height: 280px;
    height: 100%;
  }
}
.ob-laboIndex__left .cp-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.ob-laboIndex__left img {
  display: block;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 100% 100%;
  object-position: center;
}

@media screen and (min-width: 960px) {
  .ob-laboIndex a:hover .ob-laboIndex__left img {
    transform: scale(1.15);
  }
}
.ob-laboIndex__right {
  color: #333;
  padding: 38px 30px;
}

@media screen and (max-width: 959px) {
  .ob-laboIndex__right {
    padding: 20px 20px 30px;
  }
}
.ob-laboIndex__right-ttl {
  font-size: 3rem;
  color: #2F7B67;
  font-weight: 600;
}

.ob-laboIndex__right-sub {
  line-height: 1;
  font-size: 1.5rem;
  margin: 6px 0 32px;
}

.ob-laboIndex__right-text {
  font-size: 1.5rem;
}

.ob-laboIndex__right-text strong {
  display: block;
  color: #222;
}

.ob-laboIndex__right-text strong + br {
  display: none;
}

/* ==========================================================================

研究室詳細

========================================================================== */
body.id3.lab4 .ob-bgBox,
body.cs3.lab4 .ob-bgBox,
body.es3.lab4 .ob-bgBox,
body.ms3.lab4 .ob-bgBox {
  padding-top: 110px;
}

@media screen and (max-width: 959px) {
  body.id3.lab4 .ob-bgBox,
  body.cs3.lab4 .ob-bgBox,
  body.es3.lab4 .ob-bgBox,
  body.ms3.lab4 .ob-bgBox {
    padding-top: 30px;
  }
}
body.id3.lab4 .ob-bgBox__inner,
body.cs3.lab4 .ob-bgBox__inner,
body.es3.lab4 .ob-bgBox__inner,
body.ms3.lab4 .ob-bgBox__inner {
  max-width: 980px;
}

@media screen and (max-width: 959px) {
  body.id3.lab4 .ob-bgBox__inner,
  body.cs3.lab4 .ob-bgBox__inner,
  body.es3.lab4 .ob-bgBox__inner,
  body.ms3.lab4 .ob-bgBox__inner {
    max-width: 100%;
  }
}
body.id3.lab4 .cp-h2-text:first-child,
body.cs3.lab4 .cp-h2-text:first-child,
body.es3.lab4 .cp-h2-text:first-child,
body.ms3.lab4 .cp-h2-text:first-child {
  margin-top: 106px;
  margin-bottom: 77px;
}

@media screen and (max-width: 959px) {
  body.id3.lab4 .cp-h2-text:first-child,
  body.cs3.lab4 .cp-h2-text:first-child,
  body.es3.lab4 .cp-h2-text:first-child,
  body.ms3.lab4 .cp-h2-text:first-child {
    margin-top: 48px;
    margin-bottom: 28px;
  }
}
body.id3.lab4 [data-area=content],
body.cs3.lab4 [data-area=content],
body.es3.lab4 [data-area=content],
body.ms3.lab4 [data-area=content] {
  overflow-wrap: break-word;
}

body.id3.lab4 [data-area=content] > *:last-child,
body.cs3.lab4 [data-area=content] > *:last-child,
body.es3.lab4 [data-area=content] > *:last-child,
body.ms3.lab4 [data-area=content] > *:last-child {
  margin-bottom: 0;
}

body.id3.lab4 [data-area=content] .lead1,
body.cs3.lab4 [data-area=content] .lead1,
body.es3.lab4 [data-area=content] .lead1,
body.ms3.lab4 [data-area=content] .lead1 {
  margin-top: 30px;
}

body.id3.lab4 .cp-img.cp-img-col1,
body.id3.lab4 .cp-img.cp-img-col2,
body.id3.lab4 .cp-img.cp-img-col3,
body.id3.lab4 .cp-img.cp-img-col4,
body.cs3.lab4 .cp-img.cp-img-col1,
body.cs3.lab4 .cp-img.cp-img-col2,
body.cs3.lab4 .cp-img.cp-img-col3,
body.cs3.lab4 .cp-img.cp-img-col4,
body.es3.lab4 .cp-img.cp-img-col1,
body.es3.lab4 .cp-img.cp-img-col2,
body.es3.lab4 .cp-img.cp-img-col3,
body.es3.lab4 .cp-img.cp-img-col4,
body.ms3.lab4 .cp-img.cp-img-col1,
body.ms3.lab4 .cp-img.cp-img-col2,
body.ms3.lab4 .cp-img.cp-img-col3,
body.ms3.lab4 .cp-img.cp-img-col4 {
  margin: 38px 0 76px;
}

@media screen and (max-width: 959px) {
  body.id3.lab4 .cp-img.cp-img-col1,
  body.id3.lab4 .cp-img.cp-img-col2,
  body.id3.lab4 .cp-img.cp-img-col3,
  body.id3.lab4 .cp-img.cp-img-col4,
  body.cs3.lab4 .cp-img.cp-img-col1,
  body.cs3.lab4 .cp-img.cp-img-col2,
  body.cs3.lab4 .cp-img.cp-img-col3,
  body.cs3.lab4 .cp-img.cp-img-col4,
  body.es3.lab4 .cp-img.cp-img-col1,
  body.es3.lab4 .cp-img.cp-img-col2,
  body.es3.lab4 .cp-img.cp-img-col3,
  body.es3.lab4 .cp-img.cp-img-col4,
  body.ms3.lab4 .cp-img.cp-img-col1,
  body.ms3.lab4 .cp-img.cp-img-col2,
  body.ms3.lab4 .cp-img.cp-img-col3,
  body.ms3.lab4 .cp-img.cp-img-col4 {
    margin: 26px 0;
  }
}
body.id3.lab4 [data-area=content] .cp-img img,
body.cs3.lab4 [data-area=content] .cp-img img,
body.es3.lab4 [data-area=content] .cp-img img,
body.ms3.lab4 [data-area=content] .cp-img img {
  width: 100%;
}

body.id3.lab4 [data-area=content] .button1:last-child,
body.id3.lab4 [data-area=content] .button2:last-child,
body.id3.lab4 [data-area=content] .button3:last-child,
body.cs3.lab4 [data-area=content] .button1:last-child,
body.cs3.lab4 [data-area=content] .button2:last-child,
body.cs3.lab4 [data-area=content] .button3:last-child,
body.es3.lab4 [data-area=content] .button1:last-child,
body.es3.lab4 [data-area=content] .button2:last-child,
body.es3.lab4 [data-area=content] .button3:last-child,
body.ms3.lab4 [data-area=content] .button1:last-child,
body.ms3.lab4 [data-area=content] .button2:last-child,
body.ms3.lab4 [data-area=content] .button3:last-child {
  margin-top: 40px;
}

.ob-catch.is-max.is-department {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 959px) {
  .ob-catch.is-max.is-department {
    padding-bottom: 21px;
  }
}
.ob-catch.is-max.is-department .ob-catch__ttl {
  position: relative;
  z-index: 1;
}

.ob-catch.is-max.is-department .ob-catch__txtWrap {
  width: 731px;
  height: 400px;
  bottom: -79px;
  padding-top: 32px;
  padding-left: 80px;
}

@media (min-width: 959px) and (max-width: 1480px) {
  .ob-catch.is-max.is-department .ob-catch__txtWrap {
    right: 100px;
  }
}
@media screen and (max-width: 959px) {
  .ob-catch.is-max.is-department .ob-catch__txtWrap {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.ob-catch.is-max.is-department .ob-catch__txtWrap.is-TtlOnly {
  height: 290px;
  display: flex;
  align-items: center;
  padding-top: 0;
}

@media screen and (max-width: 959px) {
  .ob-catch.is-max.is-department .ob-catch__txtWrap.is-TtlOnly {
    height: auto;
  }
}
.ob-catch.is-max.is-department .ob-catch__txtWrap.is-TtlOnly .cp-h4-text {
  margin: 0;
}

.ob-catch.is-max.is-department .ob-catch__txtWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100%;
  background: #fff;
}

@media screen and (max-width: 959px) {
  .ob-catch.is-max.is-department .ob-catch__txtWrap::before {
    content: none;
  }
}
.cms .ob-catch.is-max.is-department .ob-catch__txtWrap::before {
  content: none;
}

.cms .ob-catch.is-max.is-department .ob-catch__bg {
  height: auto;
}

.ob-catch.is-max.is-department .cp-h4-text {
  font-size: 2.8rem;
  margin-bottom: 35px;
}

@media screen and (max-width: 959px) {
  .ob-catch.is-max.is-department .cp-h4-text {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
.ob-catch.is-max.is-department .ob-catch__txt {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.2;
}

@media screen and (max-width: 959px) {
  .ob-catch.is-max.is-department .ob-catch__txt {
    font-size: 1.5rem;
    line-height: 2;
  }
}
.ob-qanda {
  margin: 40px 0;
}

@media screen and (max-width: 959px) {
  .ob-qanda {
    margin: 20px 0;
  }
}
.cms .ob-qanda {
  padding: 10px 0;
}

.ob-qanda__q {
  margin-bottom: 13px;
}

.ob-qanda__q,
.ob-qanda__a {
  display: flex;
  gap: 26px;
}

@media screen and (max-width: 959px) {
  .ob-qanda__q,
  .ob-qanda__a {
    gap: 14px;
  }
}
.ob-qanda__q-title,
.ob-qanda__a-title {
  font-size: 3.2rem;
  font-family: "Bodoni Moda", serif;
  width: 69px;
  min-width: 69px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50%;
}

@media screen and (max-width: 959px) {
  .ob-qanda__q-title,
  .ob-qanda__a-title {
    font-size: 2.2rem;
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}
.ob-qanda__q-title {
  color: #fff;
  background: #64756C;
}

.ob-qanda__a-title {
  color: #67746D;
  background: #fff;
}

.ob-qanda__q-text,
.ob-qanda__a-text {
  font-size: 2rem;
  font-weight: 700;
  padding: 13px 0 0;
}

@media screen and (max-width: 959px) {
  .ob-qanda__q-text,
  .ob-qanda__a-text {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 9px 0 0;
  }
}
.ob-borderBox {
  display: flex;
  background: #fff;
  border: 2px solid #59776A;
  gap: 20px;
  margin: 54px 0;
  padding: 39px 28px 38px;
}

@media screen and (max-width: 959px) {
  .ob-borderBox {
    gap: 15px;
    padding: 20px 15px;
    margin: 40px 0;
  }
}
.ob-borderBox__icon {
  min-width: 71px;
}

@media screen and (max-width: 959px) {
  .ob-borderBox__icon {
    min-width: 50px;
  }
}
.ob-borderBox__text {
  color: #222;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.2;
}

@media screen and (max-width: 959px) {
  .ob-borderBox__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
/* ==========================================================================

工学部女子学生のイマ→ミライ

========================================================================== */
@media screen and (max-width: 959px) {
  .lo-wEngineer {
    margin-top: 60px;
  }
}
.lo-wEngineer__image img {
  width: 100%;
}

body.w_engineer2 [data-area=content] > *:last-child {
  margin: 0;
}

body.w_engineer2 .lo-breads {
  position: static;
  background-color: #EDEDED;
}

@media screen and (max-width: 959px) {
  body.w_engineer2 .lo-breads {
    background-color: #FFF;
  }
}
body.w_engineer2 .lo-breads li:nth-child(1) {
  display: none;
}

body.w_engineer2 .cp-anchor-menu {
  margin-top: -51px;
  margin-bottom: 171px;
}

@media screen and (max-width: 959px) {
  body.w_engineer2 .cp-anchor-menu {
    margin-top: -40px;
    margin-bottom: 0;
  }
}
.ob-wEngineerTitle {
  margin: 40px 0 68px;
}

@media screen and (max-width: 959px) {
  .ob-wEngineerTitle {
    margin: 40px 0;
  }
}
.ob-wEngineerTitle__inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

body.w_engineer2 .cp-text.cp-text-col2 {
  margin-bottom: 105px;
}

@media screen and (max-width: 959px) {
  body.w_engineer2 .cp-text.cp-text-col2 {
    margin-bottom: 24px;
  }
}
body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item {
  padding: 0;
}

body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item .cp-inner {
  color: #333;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 33px;
}

@media screen and (max-width: 959px) {
  body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item .cp-inner {
    padding: 20px 20px 25px;
    border-radius: 10px;
  }
  body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item .cp-inner img.fr-fic {
    max-width: 130px;
  }
}
body.w_engineer2 .cp-text.cp-text-col2.is-tops {
  margin: 0;
}

body.w_engineer2 .cp-text.cp-text-col2.is-tops .cp-text-item .cp-inner {
  padding: 30px 33px 65px;
}

@media screen and (max-width: 959px) {
  body.w_engineer2 .cp-text.cp-text-col2.is-tops .cp-text-item .cp-inner {
    padding: 20px 20px 25px;
  }
}
body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item strong {
  font-size: 2rem;
}

body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item ul {
  margin: 20px 0 0;
}

@media screen and (max-width: 959px) {
  body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item ul {
    margin: 10px 0 0;
  }
}
body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item ul li {
  position: relative;
  list-style: none;
  padding-left: 25px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4px;
}

body.w_engineer2 .cp-text.cp-text-col2 .cp-text-item ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #666;
  top: 13px;
  left: 0;
}

.ob-merit {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 3px solid #000;
  margin-top: -284px;
  margin-bottom: 136px;
}

@media (min-width: 959px) and (max-width: 1100px) {
  .ob-merit {
    margin-top: -170px;
  }
}
@media screen and (max-width: 959px) {
  .ob-merit {
    display: block;
    border-bottom: 0;
    margin-top: -10px;
    margin-bottom: 0;
  }
}
.cms .ob-merit {
  margin: 0;
}

.ob-merit__image {
  margin: 20px 42px -19px 0;
  position: relative;
}

@media (min-width: 959px) and (max-width: 1100px) {
  .ob-merit__image {
    margin: 20px 20px -19px 0;
    width: 16%;
  }
}
@media screen and (max-width: 959px) {
  .ob-merit__image {
    max-width: 150px;
    width: 100%;
    margin: 40px auto 0;
    justify-content: center;
    display: flex;
    position: relative;
  }
  .ob-merit__image::after {
    content: "";
    position: absolute;
    background: #000;
    bottom: 11px;
    width: 1000vw;
    left: -90vw;
    height: 2px;
    z-index: 1;
  }
}
.ob-merit__image .cp-inner {
  position: relative;
  z-index: 2;
}

.ob-merit__text {
  color: #222;
  font-weight: 600;
  font-size: 2.8rem;
  position: relative;
  margin: -30px 47px 0 0;
}

@media (min-width: 959px) and (max-width: 1100px) {
  .ob-merit__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 959px) {
  .ob-merit__text {
    position: relative;
    margin: 10px 0 20px;
    text-align: center;
    font-size: 2rem;
  }
}
/* オリジナル開閉式 */
.ob-acdUnit.is-wEngineer {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  margin-bottom: -1px;
  margin-top: -1px;
}

.ob-acdUnit.is-wEngineer .ob-acdUnit__dt {
  display: flex;
  background: none;
  border: none;
  gap: 21px;
  padding: 29px 0 31px;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit.is-wEngineer .ob-acdUnit__dt {
    flex-direction: column;
    padding: 20px 0;
  }
}
@media screen and (min-width: 960px) {
  .ob-acdUnit.is-wEngineer .ob-acdUnit__dt:hover {
    background: none;
  }
}
.ob-acdUnit.is-wEngineer .ob-acdUnit__dt.is-active {
  transform: scale(1);
}

.ob-acdUnit.is-wEngineer .ob-acdUnit__dt::after {
  content: "読む＋";
  position: absolute;
  right: 0;
  top: 30px;
  bottom: 0;
  width: 80px;
  height: 80px;
  background: #FFF;
  line-height: 1;
  color: #333;
  font-size: 1.5rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit.is-wEngineer .ob-acdUnit__dt::after {
    font-size: 1.3rem;
    width: 60px;
    height: 60px;
  }
}
.ob-acdUnit.is-wEngineer .ob-acdUnit__dt.is-active::after {
  content: "閉じる";
  background: #E1C6C1;
}

.ob-acdUnit__image {
  max-width: 160px;
  width: 100%;
  border-radius: 50%;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit__image {
    max-width: 140px;
  }
}
.ob-acdUnit__text {
  padding: 29px 100px 0 0;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit__text {
    padding: 0;
  }
}
.ob-acdUnit__text-status {
  display: flex;
  gap: 18px;
  width: 200%;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit__text-status {
    width: 100%;
  }
}
.ob-acdUnit__text-status--tag {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 56px;
  padding: 1px 5px;
  height: 30px;
}

.ob-acdUnit__text-status--tag.is-01 {
  background: #AEA099;
}

.ob-acdUnit__text-status--tag.is-02 {
  background: #DAB486;
}

.ob-acdUnit__text-status--title {
  font-size: 1.5rem;
  color: #333;
}

.ob-acdUnit__text-main {
  font-size: 1.8rem;
  color: #222;
  padding: 14px 0 0;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit__text-main {
    padding: 10px 0 0;
  }
}
.ob-acdUnit.is-wEngineer .ob-acdUnit__dd {
  background: #fff;
  border-radius: 20px;
  padding: 49px 180px;
  margin: 0 0 59px;
}

@media screen and (max-width: 959px) {
  .ob-acdUnit.is-wEngineer .ob-acdUnit__dd {
    padding: 20px 20px 25px;
    margin: 0 0 30px;
  }
}
.ob-acdUnit__dd-content {
  margin-bottom: 33px;
}

.ob-acdUnit__dd-content:last-child {
  margin-bottom: 0;
}

.ob-acdUnit__dd-content--tag {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 56px;
  padding: 1px 5px;
}

.ob-acdUnit__dd-content--tag.is-01 {
  background: #AEA099;
}

.ob-acdUnit__dd-content--tag.is-02 {
  background: #DAB486;
}

.ob-acdUnit__dd-content--title strong {
  display: block;
  margin: 6px 0 5px;
}

.ob-acdUnit__dd-content--text .cp-h4-text {
  font-size: 1.6rem;
  margin: 30px 0 10px !important;
}

/* ==========================================================================

背景動画ブロック

========================================================================== */
.ob-bgVideo {
  position: fixed;
  width: 100vw;
  height: 56.25vw;
  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;
  position: absolute;
  z-index: 1000;
  overflow: hidden;
  bottom: 120px;
  left: 200px;
  font-family: YuMincho, "Yu Mincho", serif;
  width: -moz-max-content;
  width: max-content;
  -moz-text-align-last: left;
       text-align-last: left;
  display: none;
}
@media screen and (max-width: 959px) {
  .ob-bgVideo__copy {
    left: 15px;
    bottom: 48px;
  }
}
.cms .ob-bgVideo__copy {
  position: static;
  align-items: flex-start;
}
.ob-bgVideo__copyTxtWrap {
  line-height: 2.3;
  overflow: hidden;
  transform: translateX(-100%);
}
.is-active .ob-bgVideo__copyTxtWrap {
  animation: maincatch 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}
.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 1.5s;
}
.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);
  }
}



/**NEW_EDITOR_BLOCK__START**/
:root {
  --main-color: #2F7B67;
  --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: 1.8;
}
@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__image-text-wrap > * {
  /* background-color: var(--main-bg-color); */
  /* border: none; */
  /* padding: 24px; */
}
.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 .cp-basic-block__tab-contents .cp-basic-block__child-content{
  /* width:auto; */
}

.cp-basic-block__image-text-wrap .cp-basic-block__row .cp-basic-block__col{
      
    background-color: #EDEDED;
    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: .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: .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;
  &: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;
  &: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;
  &: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;
  &: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;
  &:nth-child(6n) {
    margin-right: 0;
  }
}
/**NEW_EDITOR_BLOCK___END**/