@charset "UTF-8";

/*********************************************
*
* 共通パーツ、初期設定
*
*********************************************/
/************************
**ブレイクポイント
************************/
/*min-widthベース、基本*/
/*max-widthベース、特定のクラスを途中まで、の場合*/
/*min-width,max-width混合、特定のクラスを途中から途中まで、の場合*/
/************************
**safari用
************************/
/************************
**全体
************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体",
    "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    "Meiryo", "verdana", sans-serif;
  /*↑googlefont使用時*/
  font-weight: 500;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-size: 3.75vw;
}

a {
  color: inherit !important;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.822vw;
  }
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.612vw;
  }
}

@media screen and (min-width: 1200px) {
  body {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 1.041vw;
  }
}

p {
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

p::before,
p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

p::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}

p::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}

/*画像サイズを要素のwidthに合わせる*/
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

img.himg {
  width: auto;
  height: 100%;
}

/*リストのデザインを削除*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

/*ボタン化(aタグ、buttonタグを親要素に全体化)*/
.ab-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ab-b {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*テキストを一塊にし、途中で改行させない*/
.txtb {
  display: inline-block;
}

/************************
**サイズ別br 使わないものはコメントアウト
************************/
.smartbr {
  display: block;
}

@media screen and (min-width: 576px) {
  .smartbr {
    display: none;
  }
}

/*スマホ(768px未満)*/
.spbr {
  display: block;
}

@media screen and (min-width: 768px) {
  .spbr {
    display: none;
  }
}

.smbr {
  display: none;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .smbr {
    display: block;
  }
}

.mdbr {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .mdbr {
    display: block;
  }
}

.lgbr {
  display: none;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .lgbr {
    display: block;
  }
}

.xlbr {
  display: none;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .xlbr {
    display: block;
  }
}

.xxlbr {
  display: none;
}

@media screen and (min-width: 1400px) {
  .xxlbr {
    display: block;
  }
}

.sm-flbr {
  display: none;
}

@media screen and (min-width: 576px) {
  .sm-flbr {
    display: block;
  }
}

.md-flbr,
.pcbr {
  display: none;
}

@media screen and (min-width: 768px) {

  .md-flbr,
  .pcbr {
    display: block;
  }
}

.lg-flbr {
  display: none;
}

@media screen and (min-width: 992px) {
  .lg-flbr {
    display: block;
  }
}

.xl-flbr {
  display: none;
}

@media screen and (min-width: 1200px) {
  .xl-flbr {
    display: block;
  }
}

.xxl-flbr {
  display: none;
}

@media screen and (min-width: 1400px) {
  .xxl-flbr {
    display: block;
  }
}

/************************
**container 使わないものはコメントアウト
************************/
.container {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}

/************************
**image pc/sp切り替え
************************/
.image-sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .image-sp {
    display: none;
  }
}

.image-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .image-pc {
    display: block;
  }
}

/*********************************************
*
*Header
*
*********************************************/
header {
  /************************
  **#ophs01-hdr
  ************************/
  /************************
  **ophs02-hdr
  ************************/
  /************************
  **ophs03-hdr
  ************************/
}

header #ophs01-hdr .hdr-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 15px 0;
  background-color: #7b9fd3;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper {
    height: 60px;
    padding: 10px 0;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box {
  width: 95%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box.box-left {
    justify-content: flex-start;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image {
  height: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image {
    height: 85%;
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image {
    height: 100%;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image .himg {
  display: block;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
  font-size: 30px;
  color: #fff;
  font-family: serif;
}

@media screen and (max-width: 1399px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
    font-size: min(1.53vw, 30px);
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
    font-size: 2.7vw;
  }
}

@media screen and (max-width: 767px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
    font-size: max(16px, 3.5vw);
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
  height: 75%;
}

@media screen and (max-width: 1399px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 50%;
  }
}

@media screen and (max-width: 1199px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 40%;
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 75%;
  }
}

@media screen and (max-width: 575px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 50%;
    max-width: 180px;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name .himg {
  display: block;
}

@media screen and (max-width: 575px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name .himg {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav {
    position: fixed;
    top: 0;
    right: -45vw;
    width: 45vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    transition: right 0.5s;
  }
}

@media screen and (max-width: 575px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav {
    right: -75vw;
    width: 75vw;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap {
  height: 100%;
  position: relative;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: calc(100% + 10px);
  width: 40px;
  height: 40px;
  padding: 10px 5px;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn {
    display: block;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav nav {
    height: 100%;
    overflow-y: auto;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.125vw;
  }

  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item:not(.sns-list .list-item):not(.item-icon) {
    display: none;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
  width: 120px;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}

@media screen and (max-width: 1199px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
    width: 90px;
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
    width: min(80%, 250px);
  }
}

@media screen and (max-width: 767px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
    width: min(80%, 200px);
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item .item-label {
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-icon {
  width: 25px;
  border-bottom: none;
  display: block;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-lang {
  border-bottom: none;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-lang .item-label {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-lang .item-label .label-icon {
  width: 25px;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns {
  width: 120px;
}

@media screen and (max-width: 1399px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns {
    width: 100px;
  }
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns {
    width: 100%;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list {
    justify-content: center;
    gap: 10px;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list .list-item {
  flex: 1 0 0;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list .list-item {
    flex: initial;
    width: 35px;
  }
}


header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-blog {
  width: 180px;
  border-bottom: none;
  border-radius: 5px;
  padding: 0.25em;
  background-color: #2d5fac;
}

@media screen and (max-width: 1399px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-blog {
    width: 150px;
  }
}

@media screen and (max-width: 1199px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-blog {
    width: 120px;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-line {
  display: none;
  width: 80%;
  height: 1px;
  margin-inline: auto;
  margin-block: 1em;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-line {
    display: none;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist {
  display: none;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.125vw;
  }
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem {
  width: min(80%, 250px);
  color: #fff;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #fff;
  position: relative;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title {
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title .ab-a {
  z-index: 1;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 15px;
  height: 10px;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::before,
header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% calc(100% - 1px);
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::before {
  transform: rotate(40deg);
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::after {
  transform: rotate(-40deg);
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist {
  width: 80%;
  margin-inline: auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist .sublist-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  overflow: hidden;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist .sublist-box .sublist-item {
  width: fit-content;
  font-size: 0.8rem;
  text-align: center;
  padding: 1em 0;
  position: relative;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem.sublist-active .ftrlist-main .priitem-btn .btn-wrap {
  transform: rotateX(180deg);
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem.sublist-active .ftrlist-sublist {
  grid-template-rows: 1fr;
}

@media screen and (max-width: 991px) {
  header #ophs01-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav {
    right: 0;
  }
}

header #ophs01-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

header #ophs01-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  opacity: 0;
}

header #ophs01-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  top: 50%;
  left: 0;
  bottom: initial;
  transform: translateY(-50%) rotate(-45deg);
}

header #ophs02-hdr .hdr-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2%;
}

header #ophs02-hdr .hdr-wrapper .hdr-logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-image {
  height: 80%;
  flex-shrink: 0;
}

header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-image .himg {
  display: block;
  height: 100%;
  width: auto;
}

header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-text {
  font-size: min(1.53vw, 30px);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-text {
    font-size: max(14px, 2.8vw);
  }
}

@media screen and (max-width: 575px) {
  header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-text {
    font-size: max(12px, 3.5vw);
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-name {
  height: 75%;
}

@media screen and (max-width: 1399px) {
  header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-name {
    height: 50%;
  }
}

@media screen and (max-width: 1199px) {
  header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-name {
    height: 40%;
  }
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-name {
    height: 75%;
  }
}

@media screen and (max-width: 575px) {
  header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-name {
    height: 50%;
    max-width: 180px;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-name .himg {
  display: block;
  height: 100%;
  width: auto;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav {
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav {
    position: fixed;
    top: 0;
    right: -45vw;
    width: 45vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: right 0.5s;
  }
}

@media screen and (max-width: 575px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav {
    right: -75vw;
    width: 75vw;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list {
    flex-direction: column;
    justify-content: center;
    padding: 3.125vw;
  }

  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item:not(.sns-list .list-item):not(.item-icon) {
    display: none;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item {
  width: 95px;
  color: #000;
  border-bottom: 1px solid #000;
  position: relative;
}

@media screen and (max-width: 1199px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item {
    width: 90px;
  }
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item {
    width: min(80%, 250px);
  }
}

@media screen and (max-width: 767px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item {
    width: min(80%, 200px);
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item .item-label {
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-icon {
  width: 25px;
  border-bottom: none;
  display: block;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-lang {
  border-bottom: none;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-lang .item-label {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-lang .item-label .label-icon {
  width: 25px;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns {
  width: 120px;
}

@media screen and (max-width: 1399px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns {
    width: 100px;
  }
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns {
    width: 100%;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns .sns-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns .sns-list {
    justify-content: center;
    gap: 10px;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns .sns-list .list-item {
  flex: 1 0 0;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-sns .sns-list .list-item {
    flex: initial;
    width: 35px;
  }
}


header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-list .list-item.item-contact {
  border-bottom: none;
  color: #fff;
  background-color: #2d5fac;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-line {
  display: none;
  width: 80%;
  height: 1px;
  margin-inline: auto;
  margin-block: 1em;
  background-color: #000;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-line {
    display: block;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist {
  display: none;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.125vw;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem {
  width: 80%;
  color: #000;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #000;
  position: relative;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title {
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title .ab-a {
  z-index: 1;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 15px;
  height: 10px;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::before,
header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: 50% calc(100% - 1px);
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::before {
  transform: rotate(40deg);
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::after {
  transform: rotate(-40deg);
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist {
  width: 80%;
  margin-inline: auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist .sublist-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  overflow: hidden;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist .sublist-box .sublist-item {
  width: fit-content;
  text-align: center;
  padding: 1em 0;
  position: relative;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem.sublist-active .ftrlist-main .priitem-btn .btn-wrap {
  transform: rotateX(180deg);
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-ftrlist .ftrlist-priitem.sublist-active .ftrlist-sublist {
  grid-template-rows: 1fr;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap {
  position: relative;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: calc(100% + 10px);
  width: 40px;
  height: 40px;
  padding: 10px 5px;
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn {
    display: block;
  }
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn .btn-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header #ophs02-hdr .hdr-wrapper .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 991px) {
  header #ophs02-hdr .hdr-wrapper.nav-active .hdr-nav {
    right: 0;
  }
}

header #ophs02-hdr .hdr-wrapper.nav-active .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

header #ophs02-hdr .hdr-wrapper.nav-active .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  opacity: 0;
}

header #ophs02-hdr .hdr-wrapper.nav-active .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  top: 50%;
  left: 0;
  bottom: initial;
  transform: translateY(-50%) rotate(-45deg);
}

header #ophs03-hdr .hdr-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 15px 0;
  animation: backcolor 60s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  header #ophs03-hdr .hdr-wrapper {
    height: 60px;
    padding: 10px 0;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box {
  width: 95%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box.box-left {
    justify-content: flex-start;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image {
  height: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image {
    height: 85%;
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image {
    height: 100%;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-image .himg {
  display: block;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
  font-size: 30px;
  color: #fff;
  font-family: serif;
}

@media screen and (max-width: 1399px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
    font-size: min(1.53vw, 30px);
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
    font-size: 2.7vw;
  }
}

@media screen and (max-width: 767px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text {
    font-size: max(16px, 3.5vw);
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
  height: 75%;
}

@media screen and (max-width: 1399px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 50%;
  }
}

@media screen and (max-width: 1199px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 40%;
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 75%;
  }
}

@media screen and (max-width: 575px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name {
    height: 50%;
    max-width: 180px;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name .himg {
  display: block;
}

@media screen and (max-width: 575px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-name .himg {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav {
    position: fixed;
    top: 0;
    right: -45vw;
    width: 45vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: right 0.5s;
  }
}

@media screen and (max-width: 575px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav {
    right: -75vw;
    width: 75vw;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap {
  position: relative;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: calc(100% + 10px);
  width: 40px;
  height: 40px;
  padding: 10px 5px;
  border-radius: 50%;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn {
    display: block;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav nav {
    height: 100%;
    overflow-y: auto;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1199px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list {
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list {
    flex-direction: column;
    justify-content: center;
    padding: 3.125vw;
  }

  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item:not(.sns-list .list-item):not(.item-icon) {
    display: none;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
  width: 90px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
    width: fit-content;
  }
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
    width: min(80%, 250px);
  }
}

@media screen and (max-width: 767px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item {
    width: min(80%, 200px);
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item .item-label {
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-icon {
  width: 25px;
  display: block;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-lang .item-label {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-lang .item-label .label-icon {
  width: 25px;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-dummy {
  width: 120px;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns {
  width: 120px;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns {
    width: 100%;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list {
    justify-content: center;
    gap: 2.604vw;
  }
}

@media screen and (max-width: 575px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list {
    gap: 3.75vw;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list .list-item {
  flex: 1 0 0;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-list .list-item.item-sns .sns-list .list-item {
    flex: initial;
    width: 35px;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-line {
  display: none;
  width: 80%;
  height: 1px;
  margin-inline: auto;
  margin-block: 1em;
  background-color: #000;
}

/* Language Dropdown Styles */
.list-item.item-lang {
  position: relative;
  cursor: pointer;
}

.list-item.item-lang .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

.list-item.item-lang .dropdown-content li {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  transition: background-color 0.2s;
  border-bottom: 1px solid #eee;
}

.list-item.item-lang .dropdown-content li:last-child {
  border-bottom: none;
}

.list-item.item-lang .dropdown-content li:hover {
  background-color: #f1f1f1;
}

.list-item.item-lang .dropdown-content.show {
  display: block;
}

/* SNS Hiding Logic (handled by JS for cross-browser support) */


@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-line {
    display: block;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist {
  display: none;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.125vw;
  }
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem {
  width: 80%;
  color: #000;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
  position: relative;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title {
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title .ab-a {
  z-index: 1;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 15px;
  height: 10px;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::before,
header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: 50% calc(100% - 1px);
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::before {
  transform: rotate(40deg);
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .priitem-btn .btn-wrap .btn-arrow::after {
  transform: rotate(-40deg);
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist {
  width: 80%;
  margin-inline: auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist .sublist-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  overflow: hidden;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-sublist .sublist-box .sublist-item {
  width: fit-content;
  font-size: 0.8em;
  text-align: center;
  padding: 1em 0;
  position: relative;
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem.sublist-active .ftrlist-main .priitem-btn .btn-wrap {
  transform: rotateX(180deg);
}

header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem.sublist-active .ftrlist-sublist {
  grid-template-rows: 1fr;
}

@media screen and (max-width: 991px) {
  header #ophs03-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav {
    right: 0;
  }
}

header #ophs03-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

header #ophs03-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  opacity: 0;
}

header #ophs03-hdr .hdr-wrapper.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  top: 50%;
  left: 0;
  bottom: initial;
  transform: translateY(-50%) rotate(-45deg);
}

/*********************************************
*
*footer
*
*********************************************/
footer {
  /************************
    **ftr-chatbot
  ************************/
  /************************
    **ophs01-ftr
  ************************/
  /************************
    **ophs02-ftr
  ************************/
  /************************
  **ophs03-ftr
  ************************/
}

footer #ftr-chatbot .chatbot-button {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 80px;
  font-size: 12px;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  footer #ftr-chatbot .chatbot-button {
    width: 70px;
    bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  footer #ftr-chatbot .chatbot-button {
    width: 60px;
  }
}

footer #ftr-chatbot .chatbot-button .btn-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  position: relative;
}

footer #ophs01-ftr .ftr-wrapper {
  padding: 50px 0 10px;
  color: #fff;
  background-color: #7b9fd3;
  position: relative;
}

@media screen and (max-width: 767px) {
  footer #ophs01-ftr .ftr-wrapper {
    padding: 3.25vw 0 3.125vw;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0 10px;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info {
    padding: 20px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo {
    width: 90%;
    justify-content: center;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-image {
  width: 50px;
}

footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
  font-size: 32px;
}

@media screen and (max-width: 991px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
    font-size: 5vw;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
  width: 380px;
}

@media screen and (max-width: 991px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
    width: auto;
    flex: 1 0 0;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-info .info-address {
  font-size: min(0.83vw, 18px);
  margin-bottom: 0.25em;
}

@media screen and (max-width: 1199px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(1.51vw, 18px);
  }
}

@media screen and (max-width: 991px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(1.5625vw, 18px);
  }
}

@media screen and (max-width: 767px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(2.083vw, 16px);
  }
}

@media screen and (max-width: 575px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: 3.75vw;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-nav {
  width: 95%;
  margin-inline: auto;
  padding: 20px 0 90px;
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-nav {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-nav {
    display: none;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

@media screen and (max-width: 1199px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box {
    gap: 25px;
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block {
  font-size: min(0.72vw, 16px);
}

@media screen and (max-width: 1199px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block {
    font-size: min(1.2vw, 14px);
  }
}

footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .block-title {
  font-size: 1.1em;
  font-weight: 600;
  margin-block: 0.75em;
  width: fit-content;
  position: relative;
}

footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .nav-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem 50px;
}

footer #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .nav-wrap .nav-item {
  width: auto !important;
  position: relative;
  min-width: 0 !important;
  white-space: nowrap !important;
}

footer #ophs01-ftr .ftr-wrapper .ftr-copy {
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-copy {
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-copy {
    font-size: min(1.5625vw, 12px);
    padding-top: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs01-ftr .ftr-wrapper .ftr-copy {
    font-size: min(3.125vw, 12px);
  }
}

footer #ophs02-ftr .ftr-wrapper {
  padding: 50px 0 10px;
  background-color: #fcfaec;
  position: relative;
}

@media screen and (max-width: 767px) {
  footer #ophs02-ftr .ftr-wrapper {
    padding: 3.25vw 0 3.125vw;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0 10px;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info {
    padding: 20px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo {
    width: 90%;
    justify-content: center;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-image {
  width: 50px;
}

footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
  font-size: 32px;
}

@media screen and (max-width: 991px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
    font-size: 5vw;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
  width: 380px;
}

@media screen and (max-width: 991px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
    width: auto;
    flex: 1 0 0;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-info .info-address {
  font-size: min(0.83vw, 18px);
  margin-bottom: 0.25em;
}

@media screen and (max-width: 1199px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(1.51vw, 18px);
  }
}

@media screen and (max-width: 991px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(1.5625vw, 18px);
  }
}

@media screen and (max-width: 767px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(2.083vw, 16px);
  }
}

@media screen and (max-width: 575px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: 3.75vw;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-nav {
  width: 95%;
  margin-inline: auto;
  padding: 20px 0 90px;
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-nav {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-nav {
    display: none;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

@media screen and (max-width: 1199px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box {
    gap: 25px;
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block {
  font-size: min(0.72vw, 16px);
}

@media screen and (max-width: 1199px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block {
    font-size: min(1.2vw, 14px);
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .block-title {
  font-size: 1.1em;
  font-weight: 600;
  margin-block: 0.75em;
  width: fit-content;
  position: relative;
}

footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .nav-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem 50px;
}

footer #ophs02-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .nav-wrap .nav-item {
  width: auto !important;
  position: relative;
  min-width: 0 !important;
  white-space: nowrap !important;
}

footer #ophs02-ftr .ftr-wrapper .ftr-copy {
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-copy {
    font-size: min(1.5625vw, 12px);
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-copy {
    font-size: min(1.5625vw, 12px);
    padding-top: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs02-ftr .ftr-wrapper .ftr-copy {
    font-size: min(3.125vw, 12px);
  }
}

footer #ophs02-ftr .ftr-wrapper .ftr-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  width: 30%;
  opacity: 0.5;
}

footer #ophs03-ftr .ftr-wrapper {
  padding: 50px 0 10px;
  position: relative;
  animation: backcolor 60s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  footer #ophs03-ftr .ftr-wrapper {
    padding: 3.25vw 0 3.125vw;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0 10px;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info {
    padding: 20px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo {
    width: 90%;
    justify-content: center;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-image {
  width: 50px;
}

footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
  font-size: 32px;
}

@media screen and (max-width: 991px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-text {
    font-size: 5vw;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
  width: 380px;
}

@media screen and (max-width: 991px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-logo .logo-name {
    width: auto;
    flex: 1 0 0;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-info .info-address {
  font-size: min(0.83vw, 18px);
  margin-bottom: 0.25em;
}

@media screen and (max-width: 1199px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(1.51vw, 18px);
  }
}

@media screen and (max-width: 991px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(1.5625vw, 18px);
  }
}

@media screen and (max-width: 767px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: min(2.083vw, 16px);
  }
}

@media screen and (max-width: 575px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-info .info-address {
    font-size: 3.75vw;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-nav {
  width: 95%;
  margin-inline: auto;
  padding: 20px 0 90px;
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-nav {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-nav {
    display: none;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

@media screen and (max-width: 1199px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box {
    gap: 25px;
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block {
  font-size: min(0.72vw, 16px);
}

@media screen and (max-width: 1199px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block {
    font-size: min(1.2vw, 14px);
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .block-title {
  font-size: 1.1em;
  font-weight: 600;
  margin-block: 0.75em;
  width: fit-content;
  position: relative;
}

footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .nav-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem 50px;
}

footer #ophs03-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .nav-wrap .nav-item {
  width: auto !important;
  position: relative;
  min-width: 0 !important;
  white-space: nowrap !important;
}

footer #ophs03-ftr .ftr-wrapper .ftr-copy {
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-copy {
    font-size: min(1.5625vw, 12px);
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-copy {
    font-size: min(1.5625vw, 12px);
    padding-top: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  footer #ophs03-ftr .ftr-wrapper .ftr-copy {
    font-size: min(3.125vw, 12px);
  }
}

footer #ophs03-ftr .ftr-wrapper .ftr-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  width: 30%;
  opacity: 0.5;
}

/*********************************************
*
*共通
*
*********************************************/
.title-common {
  text-align: center;
  margin-bottom: 2rem;
}

.title-common .title-en {
  font-size: min(3rem, 42px);
  font-weight: 600;
  color: #00449b;
}

@media screen and (max-width: 767px) {
  .title-common .title-en {
    font-size: min(1.5rem, 24px);
  }
}

.title-common .title-ja {
  font-size: min(1.5rem, 28px);
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .title-common .title-ja {
    font-size: min(1.2rem, 18px);
  }
}

/*********************************************
*
*#ophs01-index-mainv
*
*********************************************/
.wrapper-ophs01 {
  padding-top: 80px;
}

@media screen and (max-width: 991px) {
  .wrapper-ophs01 {
    padding-top: 60px;
  }
}

.wrapper-ophs02 {
  padding-top: 70px;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(7, 1fr);
  grid-template-areas: "item01 item02 item03 item04 item05 item06 item07" "item08 item09 item03 item10 item11 item12 item13" "item14 item14 item15 item16 item17 item18 item19";
  background-color: #7b9fd3;
}

@media screen and (max-width: 767px) {
  #ophs01-index-mainv .mainv-wrapper .mainv-box {
    grid-template-columns: repeat(5, 1fr);
    grid-template-areas: "item13 item02 item03 item04 item05" "item08 item09 item03 item10 item11" "item14 item14 item06 item17 item19" "item15 item07 item12 item01 item18";
  }
}

@media screen and (max-width: 575px) {
  #ophs01-index-mainv .mainv-wrapper .mainv-box {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "item13 item02 item03 item04" "item08 item09 item03 item10" "item11 item19 item06 item17" "item15 item07 item12 item01" "item05 item14 item14 item18";
  }
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item {
  width: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.2s;
  position: relative;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item .item-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 10%;
  overflow: hidden;
  opacity: 0;
  border-radius: 10px;
  animation-name: pop;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item .item-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes pop {
  0% {
    width: 30%;
    height: 30%;
    opacity: 0;
  }

  100% {
    width: var(--width, 90%);
    height: var(--height, 90%);
    opacity: 1;
  }
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item01 {
  grid-area: item01;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item01 .item-frame {
  animation-delay: 0.5s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item02 {
  grid-area: item02;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item02 .item-frame {
  border-radius: 50%;
  animation-delay: 1s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item03 {
  grid-area: item03;
  aspect-ratio: 1/2;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item03 .item-frame img {
  object-position: center;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item04 {
  grid-area: item04;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item04 .item-frame {
  animation-delay: 0.5s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item05 {
  grid-area: item05;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item06 {
  grid-area: item06;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item06 .item-frame {
  animation-delay: 1s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item07 {
  grid-area: item07;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item08 {
  grid-area: item08;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item09 {
  grid-area: item09;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item09 .item-frame {
  animation-delay: 0.5s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item10 {
  grid-area: item10;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item11 {
  grid-area: item11;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item11 .item-frame {
  animation-delay: 0.5s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item12 {
  grid-area: item12;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item12 .item-frame {
  animation-delay: 1s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item13 {
  grid-area: item13;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item13 .item-frame {
  animation-delay: 1s;
  border-radius: 50%;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item14 {
  grid-area: item14;
  aspect-ratio: 2/1;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item15 {
  grid-area: item15;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item15 .item-frame {
  border-radius: 50%;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item16 {
  grid-area: item16;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item16 .item-frame {
  animation-delay: 0.5s;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item17 {
  grid-area: item17;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item17 .item-frame {
  animation-delay: 1s;
  border-radius: 50%;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item18 {
  grid-area: item18;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item18 .item-frame {
  border-radius: 50%;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item19 {
  grid-area: item19;
}

#ophs01-index-mainv .mainv-wrapper .mainv-box .mainv-item.item19 .item-frame {
  animation-delay: 0.5s;
}

/*********************************************
*
*#ophs01-index-speciality
*
*********************************************/
#ophs01-index-speciality .speciality-wrapper {
  padding: 6.25vw 0;
}

@media screen and (min-width: 768px) {
  #ophs01-index-speciality .speciality-wrapper {
    padding: 60px 0;
  }
}

#ophs01-index-speciality .speciality-wrapper .speciality-title .title-en {
  color: #00449b;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box {
  width: 100%;
  overflow: hidden;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 991px) {
  #ophs01-index-speciality .speciality-wrapper .speciality-box {
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  #ophs01-index-speciality .speciality-wrapper .speciality-box {
    width: 95%;
    max-width: 420px;
    margin-inline: auto;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item {
  width: 100%;
  opacity: 0;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item01 {
  transform: translateX(-50%);
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item02,
#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item03 {
  transform: translateY(-50%);
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item04 {
  transform: translateX(50%);
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item05 {
  transform: translateX(-50%);
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item06,
#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item07 {
  transform: translateY(50%);
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item08 {
  transform: translateX(50%);
}

@media screen and (max-width: 767px) {

  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item01,
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item03,
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item05,
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item07 {
    transform: translateX(-50%);
  }

  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item02,
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item04,
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item06,
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item08 {
    transform: translateX(50%);
  }
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text {
  aspect-ratio: 3/2;
  position: relative;
  color: black;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-size: 32px;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-text {
    font-size: min(3.75vw, 22px);
  }
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-deco {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-deco.deco01 {
  bottom: -50%;
  right: -30%;
  width: 100%;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap .item-deco.deco02 {
  top: -20%;
  left: -20%;
  width: 50%;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item01 .item-wrap {
  background-color: #e8d8d2;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item02 .item-wrap {
  background-color: #e4e6f1;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item03 .item-wrap {
  background-color: #d7e2e1;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item04 .item-wrap {
  background-color: #dde7ed;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item05 .item-wrap {
  background-color: #f2e9e7;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item06 .item-wrap {
  background-color: #d8e0e0;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item07 .item-wrap {
  background-color: #e4efe8;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text.item08 .item-wrap {
  background-color: #f3ecea;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item .ab-a {
  z-index: 1;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item {
  opacity: 1;
}

#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item01,
#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item04,
#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item05,
#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item08 {
  transform: translateX(0%);
}

#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item02,
#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item03,
#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item06,
#ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item07 {
  transform: translateY(0%);
}

@media screen and (max-width: 767px) {

  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item01,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item03,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item05,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item07,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item02,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item04,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item06,
  #ophs01-index-speciality .speciality-wrapper .speciality-box.anime-active .speciality-item.item08 {
    transform: translateX(0%);
  }
}

#ophs01-index-news .news-wrapper {
  padding: 30px 0;
}

#ophs01-index-news .news-wrapper .news-title .title-en {
  color: #00449b;
}

#ophs01-index-news .news-wrapper .news-list .news-item {
  padding: 30px 0;
  border-top: 1px solid #00449b;
}

@media screen and (max-width: 767px) {
  #ophs01-index-news .news-wrapper .news-list .news-item {
    padding: 10px 0;
  }
}

#ophs01-index-news .news-wrapper .news-list .news-item .news-wrap {
  width: 90%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

#ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-text {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: min(1.5625vw, 22px);
}

@media screen and (max-width: 767px) {
  #ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-text {
    font-size: 2.08vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-text {
    font-size: 3.75vw;
  }
}

#ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-text .news-main {
  border-bottom: 1px solid transparent;
  transition:
    color 0.5s,
    border-bottom 0.5s;
  position: relative;
}

#ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-text .news-main:hover {
  color: #00449b;
  border-bottom: 1px solid #00449b;
}

#ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-link {
  width: 20px;
  flex-shrink: 0;
  position: relative;
}

#ophs01-index-news .news-wrapper .news-list .news-item .news-wrap .news-link .link-deco {
  width: 100%;
  height: 100%;
}

#ophs01-index-news .news-wrapper .news-list .news-item:nth-last-child(1) {
  border-bottom: 1px solid #00449b;
}

#ophs01-index-news .news-wrapper .news-all {
  padding: 20px 0;
}

#ophs01-index-news .news-wrapper .news-all .all-button {
  width: 240px;
  margin-inline: auto;
  color: #00449b;
  border: 1px solid #00449b;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
  transition:
    color 0.5s,
    background-color 0.5s;
  position: relative;
}

@media screen and (max-width: 767px) {
  #ophs01-index-news .news-wrapper .news-all .all-button {
    width: min(50%, 180px);
    padding: 1.73vw 0;
    font-size: 2.08vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs01-index-news .news-wrapper .news-all .all-button {
    font-size: 3.75vw;
    padding: 3.125vw 0;
  }
}

#ophs01-index-news .news-wrapper .news-all .all-button:hover {
  background-color: #00449b;
  color: #fff;
}

#ophs01-index-banner .banner-wrapper {
  padding: 30px 0 60px;
}

#ophs01-index-banner .banner-wrapper .banner-box {
  display: flex;
  gap: 20px;
}

#ophs01-index-banner .banner-wrapper .banner-box .banner-item {
  flex: 1 0 0;
}

/*********************************************
*
*#ophs02-index-mainv
*
*********************************************/
#ophs02-index-mainv .mainv-wrapper {
  position: relative;
  padding: 60px 0 100px;
  background-color: #ede6d0;
}

@media screen and (max-width: 991px) {
  #ophs02-index-mainv .mainv-wrapper {
    padding: 30px 0 70px;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv-box {
  display: flex;
  overflow: hidden;
  gap: 20px;
}

#ophs02-index-mainv .mainv-wrapper .mainv-box .mainv-block05 {
  display: flex;
  gap: 20px;
  animation: infinity-scroll-left 45s infinite linear 0.5s both;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv-box .mainv-block05 .mainv-item {
  width: 25vw;
  aspect-ratio: 2/3;
  border-radius: 5vw;
  border: 3px solid #000;
  overflow: hidden;
  margin-block: 30px;
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv-box .mainv-block05 .mainv-item {
    width: 33.3333333333vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv-box .mainv-block05 .mainv-item {
    width: 66.6666666667vw;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv-box .mainv-block05 .mainv-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#ophs02-index-mainv .mainv-wrapper .mainv-box .mainv-block05 .mainv-item.item05 img {
  object-position: left top;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title {
  position: absolute;
  top: 0;
  left: 17.5%;
  height: 100%;
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title {
    left: 5.5%;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap {
  height: 100%;
  position: relative;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-back {
  height: 100%;
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-back {
    width: 45vw;
  }

  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-back .himg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch {
  position: absolute;
  top: 7.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch {
    top: 40%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch {
    width: 95%;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-image {
  width: 35%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-image {
    width: 65%;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-image {
    width: 50%;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-text {
  font-size: min(1.45vw, 30px);
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-text {
    font-size: 2.43vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-text {
    font-size: 4.375vw;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-name {
  width: 60%;
  margin-inline: auto;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-name .himg {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-name {
    width: 80%;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-logo .logo-name {
    width: 70%;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name {
  font-weight: 800;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name .name-osaka {
  font-size: min(1.45vw, 30px);
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name .name-osaka {
    font-size: 2.08vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name .name-osaka {
    font-size: 3.75vw;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name .name-ryoku {
  font-size: min(2.5vw, 47px);
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name .name-ryoku {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-name .name-ryoku {
    font-size: 4.375vw;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-main {
  font-size: min(1.45vw, 30px);
  font-weight: 700;
  margin-bottom: 0.75em;
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-main {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-main {
    font-size: 4.375vw;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub {
  font-size: 12px;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub {
    display: none;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub p {
  line-height: 2;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub p::before,
#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub p::before {
  margin-top: calc((1 - 2) * 0.5em);
}

#ophs02-index-mainv .mainv-wrapper .mainv_title .title-wrap .title-catch .catch-message .message-sub p::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

#ophs02-index-mainv .mainv-wrapper .mainv_deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 63%;
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv_deco {
    width: 100%;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv-pop {
  position: absolute;
  top: 90%;
  left: 5%;
  width: 20%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  #ophs02-index-mainv .mainv-wrapper .mainv-pop {
    width: 25%;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-mainv .mainv-wrapper .mainv-pop {
    top: inherit;
    bottom: 3.125vw;
    width: 35%;
  }
}

#ophs02-index-mainv .mainv-wrapper .mainv-pop .pop-wrap {
  position: relative;
}

#ophs02-index-link .link-wrapper {
  background-color: #201270;
  padding: 30px 0;
}

#ophs02-index-link .link-wrapper .link-box01 {
  display: flex;
  gap: 10px;
}

/*********************************************
*
*#ophs02-index-goals
*
*********************************************/
#ophs02-index-goals .goals-wrapper {
  background-color: #fcfaec;
  padding-bottom: 5vw;
  position: relative;
}

#ophs02-index-goals .goals-wrapper .goals-frame {
  position: relative;
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-back {
  background-color: #a9dbee;
}

@media screen and (max-width: 575px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-back {
    height: max(60vh, 60vw);
  }
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-text {
  position: absolute;
  top: 7.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  color: #fff;
  font-family: serif;
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-text .text-main {
  font-size: min(2.5vw, 56px);
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-text .text-main {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-text .text-main {
    font-size: 5.625vw;
  }
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-text .text-sub {
  font-size: min(1.45vw, 32px);
}

@media screen and (max-width: 767px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-text .text-sub {
    font-size: 2.08vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-text .text-sub {
    font-size: 4.375vw;
  }
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-text.text05 {
  color: #000;
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-link {
    font-size: 0.5em;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-link {
    width: 80%;
    font-size: 3.75vw;
    text-align: center;
  }
}

#ophs02-index-goals .goals-wrapper .goals-frame .goals-link .link-btn {
  padding: 1em 5.5em;
  color: #fff;
  background-color: #5cbb89;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 575px) {
  #ophs02-index-goals .goals-wrapper .goals-frame .goals-link .link-btn {
    padding: 1em;
  }
}

#ophs02-index-goals .goals-wrapper .goals-parsons {
  position: absolute;
  bottom: 1.5vw;
  right: 8vw;
  width: 25vw;
}

#ophs02-index-point .point-wrapper {
  padding: 30px 0 0;
  background-color: #fcfaec;
}

#ophs02-index-point .point-wrapper .point-block {
  display: flex;
  margin-bottom: 5vw;
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block {
    flex-direction: column;
  }
}

#ophs02-index-point .point-wrapper .point-block:nth-last-child(1) {
  margin-bottom: 0;
}

#ophs02-index-point .point-wrapper .point-block .block-left {
  width: 32.5%;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  #ophs02-index-point .point-wrapper .point-block .block-left {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-block .block-left {
    width: 45%;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block .block-left {
    width: 75%;
  }
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text {
  margin-top: 5vw;
  width: 100%;
  aspect-ratio: 15/17;
  padding: 30% 7.5% 7.5% 15%;
  background-color: #fff;
  border-radius: 0 2vw 0 0;
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text {
    aspect-ratio: 15/16;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text {
    aspect-ratio: 10/11;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-title {
  font-size: min(2.3vw, 52px);
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #5cbb89;
}

@media screen and (max-width: 991px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-title {
    font-size: 2.604vw;
  }
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-title {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-title {
    font-size: 5.625vw;
  }
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-lead {
  font-size: min(1.45vw, 32px);
  font-weight: 700;
  margin-bottom: 1em;
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence {
  font-size: min(1.25vw, 28px);
  text-align: justify;
}

@media screen and (max-width: 991px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence {
    font-size: 1.56vw;
  }
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence {
    font-size: 2.083vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence {
    font-size: 3.125vw;
  }
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence p {
  line-height: 1.75;
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence p::before,
#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence p::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-text .text-sentence p::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}

#ophs02-index-point .point-wrapper .point-block .block-left .left-label {
  position: absolute;
  top: 0;
  left: 15%;
  width: 30%;
}

#ophs02-index-point .point-wrapper .point-block .block-right {
  flex: 1 0 0;
  position: relative;
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block .block-right {
    flex: initial;
    height: 35vw;
  }
}

#ophs02-index-point .point-wrapper .point-block .block-right .right-image {
  position: absolute;
  top: 0;
  right: 5vw;
  width: 70vw;
  border-radius: 10vw 0 0 0;
  overflow: hidden;
  aspect-ratio: 9/5;
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-block .block-right .right-image {
    width: 60vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-block .block-right .right-image {
    top: initial;
    bottom: 0;
    width: 80%;
  }
}

#ophs02-index-point .point-wrapper .point-block .block-right .right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#ophs02-index-point .point-wrapper .point-subblock {
  width: 95%;
  margin-inline: auto;
  margin-bottom: 5vw;
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box {
    flex-wrap: wrap;
    gap: 2.6vw;
  }
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item {
    flex: initial;
    width: calc(50% - 1.3vw);
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item {
    width: 85%;
    margin-inline: auto;
  }
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-image {
  width: 100%;
  height: 12.5vw;
  border-radius: 0.5vw 0.5vw 0 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-image {
    height: 25.5vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 2/1;
  }
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text {
  flex: 1 0 0;
  background-color: #bfe3e7;
  padding: 1.5em 0.75vw;
  border-radius: 0 0 0.5vw 0.75vw;
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text {
    padding: 2.6vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text {
    padding: 3.75vw 2.5vw;
  }
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-title {
  font-size: min(1.25vw, 30px);
  text-align: center;
  margin-bottom: 1em;
}

@media screen and (max-width: 991px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-title {
    font-size: 1.75vw;
  }
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-title {
    font-size: 2.43vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-title {
    font-size: 4.6875vw;
  }
}

#ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-sentence {
  font-size: min(0.93vw, 24px);
}

@media screen and (max-width: 991px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-sentence {
    font-size: 1.5625vw;
  }
}

@media screen and (max-width: 767px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-sentence {
    font-size: 1.99vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-point .point-wrapper .point-subblock .subblock-box .subblock-item .item-text .text-sentence {
    font-size: 3.75vw;
  }
}

#ophs02-index-access .access-wrapper {
  position: relative;
}

#ophs02-index-access .access-wrapper .access-back {
  width: 100%;
  aspect-ratio: 7/4;
}

@media screen and (max-width: 767px) {
  #ophs02-index-access .access-wrapper .access-back {
    height: 80vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-access .access-wrapper .access-back {
    height: 100vw;
  }
}

#ophs02-index-access .access-wrapper .access-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#ophs02-index-access .access-wrapper .access-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
}

@media screen and (max-width: 767px) {
  #ophs02-index-access .access-wrapper .access-main {
    width: 75%;
    top: initial;
    bottom: 10vw;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-access .access-wrapper .access-main {
    width: 90%;
    bottom: 10vw;
  }
}

#ophs02-index-access .access-wrapper .access-main .main-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
}

#ophs02-index-access .access-wrapper .access-main .main-wrap .main-title {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #000;
  font-family: serif;
  width: object-fit;
  white-space: nowrap;
}

#ophs02-index-access .access-wrapper .access-main .main-wrap .main-title .title-en {
  font-size: min(2.5vw, 56px);
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  #ophs02-index-access .access-wrapper .access-main .main-wrap .main-title .title-en {
    font-size: min(3.125vw, 56px);
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-access .access-wrapper .access-main .main-wrap .main-title .title-en {
    font-size: 5.625vw;
  }
}

#ophs02-index-access .access-wrapper .access-main .main-wrap .main-title .title-ja {
  font-size: min(1.45vw, 32px);
}

@media screen and (max-width: 767px) {
  #ophs02-index-access .access-wrapper .access-main .main-wrap .main-title .title-ja {
    font-size: min(2.34vw, 56px);
  }
}

@media screen and (max-width: 575px) {
  #ophs02-index-access .access-wrapper .access-main .main-wrap .main-title .title-ja {
    font-size: 4.375vw;
  }
}

#ophs02-index-access .access-wrapper .access-main .main-wrap .main-map {
  width: 100%;
  height: 100%;
}

#ophs02-index-access .access-wrapper .access-main .main-wrap .main-map iframe {
  width: 100%;
  height: 100%;
}

/*********************************************
*
*#ophs03-index-mainv
*
*********************************************/
.wrapper-ophs03 {
  padding-top: 80px;
  background-color: #cbe3b7;
  animation: backcolor 60s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  .wrapper-ophs03 {
    padding-top: 60px;
  }
}

@keyframes backcolor {
  0% {
    background-color: #cbe3b7;
  }

  19% {
    background-color: #cbe3b7;
  }

  20% {
    background-color: #a9ceed;
  }

  39% {
    background-color: #a9ceed;
  }

  40% {
    background-color: #fff9a7;
  }

  59% {
    background-color: #fff9a7;
  }

  60% {
    background-color: #f4e1de;
  }

  79% {
    background-color: #f4e1de;
  }

  80% {
    background-color: #f9f1d9;
  }

  99% {
    background-color: #f9f1d9;
  }

  100% {
    background-color: #cbe3b7;
  }
}

#ophs03-index-mainv {
  position: relative;
  padding: 15vw 0 5vw;
}

@media screen and (max-width: 767px) {
  #ophs03-index-mainv {
    padding: 25vw 0 7.5vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-mainv {
    padding: 30vw 0 7.5vw;
  }
}

#ophs03-index-mainv .mainv-box {
  display: flex;
  overflow: hidden;
  gap: 20px;
}

#ophs03-index-mainv .mainv-box .mainv-block {
  display: flex;
  gap: 20px;
  animation: infinity-scroll-left02 45s infinite linear 0.5s both;
}

@keyframes infinity-scroll-left02 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#ophs03-index-mainv .mainv-box .mainv-block .mainv-item {
  width: 33.3333333333vw;
  aspect-ratio: 18/11;
  border-radius: 3%;
  overflow: hidden;
  animation: infinity-scroll-left02 45s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  #ophs03-index-mainv .mainv-box .mainv-block .mainv-item {
    width: 50vw;
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-mainv .mainv-box .mainv-block .mainv-item {
    width: 90vw;
  }
}

#ophs03-index-mainv .mainv-box .mainv-block .mainv-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#ophs03-index-mainv .mainv-title {
  position: absolute;
  top: calc(5vw + 80px);
  left: 10%;
  width: 65%;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  #ophs03-index-mainv .mainv-title {
    width: 80%;
    gap: 15px;
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-mainv .mainv-title {
    width: 60%;
    flex-direction: column;
    gap: 0;
  }
}

#ophs03-index-mainv .mainv-title .title-main {
  width: 50%;
  flex-shrink: 0;
  animation: titleanime01 5s infinite linear 0.5s both;
}

@media screen and (max-width: 767px) {
  #ophs03-index-mainv .mainv-title .title-main {
    width: 60%;
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-mainv .mainv-title .title-main {
    width: 100%;
  }
}

@keyframes titleanime01 {
  1% {
    transform: rotate(3deg);
  }

  2% {
    transform: rotate(-3deg);
  }

  3% {
    transform: rotate(3deg);
  }

  4% {
    transform: rotate(-3deg);
  }

  5% {
    transform: rotate(3deg);
  }

  6% {
    transform: rotate(-3deg);
  }

  6% {
    transform: rotate(0deg);
  }
}

#ophs03-index-mainv .mainv-title .title-main .main-wrap {
  width: 100%;
  height: 100%;
  animation: circleMask 5s infinite;
}

@keyframes circleMask {
  0% {
    clip-path: circle(100%);
  }

  40% {
    clip-path: circle(100%);
  }

  70% {
    clip-path: circle(0%);
  }

  100% {
    clip-path: circle(100%);
  }
}

#ophs03-index-mainv .mainv-title .title-copy {
  flex: 1 0 0;
  margin-top: 1%;
}

@media screen and (max-width: 575px) {
  #ophs03-index-mainv .mainv-title .title-copy {
    flex: 0 1 0;
    width: 80%;
  }
}

/*********************************************
*
*#ophs03-index-news
*
*********************************************/
#ophs03-index-news .news-wrapper {
  padding: 30px 0;
}

#ophs03-index-news .news-wrapper .news-container {
  width: 95%;
  max-width: 2000px;
  margin-inline: auto;
}

#ophs03-index-news .news-wrapper .news-container .news-title {
  width: fit-content;
  margin-bottom: 30px;
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

#ophs03-index-news .news-wrapper .news-container .news-title.anime-active {
  transform: translateX(0%);
  opacity: 1;
}

#ophs03-index-news .news-wrapper .news-container .news-title .title-en {
  font-size: 78px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  #ophs03-index-news .news-wrapper .news-container .news-title .title-en {
    font-size: min(10vw, 62px);
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-news .news-wrapper .news-container .news-title .title-en {
    font-size: 13.125vw;
  }
}

#ophs03-index-news .news-wrapper .news-container .news-title .title-ja {
  font-size: 28px;
  font-weight: 700;
  margin-top: 0.5em;
}

@media screen and (max-width: 767px) {
  #ophs03-index-news .news-wrapper .news-container .news-title .title-ja {
    font-size: min(4.16vw, 24px);
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-news .news-wrapper .news-container .news-title .title-ja {
    font-size: 5vw;
  }
}

#ophs03-index-news .news-wrapper .news-container .news-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

@media screen and (max-width: 767px) {
  #ophs03-index-news .news-wrapper .news-container .news-box {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-news .news-wrapper .news-container .news-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* safari specific fix for pick up section */
@supports (-webkit-hyphens: none) {
  #ophs03-index-news .news-wrapper .news-container .news-title {
    width: -webkit-fit-content;
  }

  #ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text {
    height: 0;
    padding-top: 100%;
  }

  #ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-nav .nav-ftrlist .ftrlist-priitem .ftrlist-main .main-title,
  #ophs01-ftr .ftr-wrapper .ftr-nav .nav-box .nav-block .block-title {
    width: -webkit-fit-content;
  }

  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text {
    height: 0;
    padding-top: calc(100% * 2 / 3);
  }

  #ophs01-index-speciality .speciality-wrapper .speciality-box .speciality-item.item-text .item-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item {
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: titleanime02 5s infinite linear 0.5s both;
}

@keyframes titleanime02 {
  1% {
    transform: rotate(3deg);
  }

  2% {
    transform: rotate(-3deg);
  }

  3% {
    transform: rotate(3deg);
  }

  4% {
    transform: rotate(-3deg);
  }

  5% {
    transform: rotate(3deg);
  }

  6% {
    transform: rotate(-3deg);
  }

  6% {
    transform: rotate(0deg);
  }
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item .item-wrap {
  transition: transform 0.5s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:hover {
  animation-play-state: paused;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:hover .item-wrap {
  transform: scale(1.2);
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(1) {
  animation-delay: 0s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(2) {
  animation-delay: 0.25s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(3) {
  animation-delay: 0.5s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(4) {
  animation-delay: 0.75s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(5) {
  animation-delay: 1s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(6) {
  animation-delay: 0.15s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(7) {
  animation-delay: 0.4s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(8) {
  animation-delay: 0.55s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(9) {
  animation-delay: 0.8s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item:nth-child(10) {
  animation-delay: 1.2s;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap {
  width: 100%;
  height: 100%;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame {
  width: 100%;
  height: 100%;
  position: relative;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-size: 32px;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  #ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  #ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  #ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-text {
    font-size: min(3.75vw, 22px);
  }
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-deco {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-deco.deco01 {
  bottom: -30%;
  right: -30%;
  width: 100%;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text .item-wrap .item-frame .item-deco.deco02 {
  top: -10%;
  left: -20%;
  width: 50%;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(1) .item-wrap .item-frame {
  background-color: #e8d8d2;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(2) .item-wrap .item-frame {
  background-color: #e4e6f1;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(3) .item-wrap .item-frame {
  background-color: #d7e2e1;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(4) .item-wrap .item-frame {
  background-color: #dde7ed;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(5) .item-wrap .item-frame {
  background-color: #f2e9e7;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(6) .item-wrap .item-frame {
  background-color: #d8e0e0;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(7) .item-wrap .item-frame {
  background-color: #e4efe8;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(8) .item-wrap .item-frame {
  background-color: #f3ecea;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(9) .item-wrap .item-frame {
  background-color: #dae3e8;
}

#ophs03-index-news .news-wrapper .news-container .news-box .news-item.item-text:nth-child(10) .item-wrap .item-frame {
  background-color: #f0dbdb;
}

/*********************************************
*
*#ophs03-index-school
*
*********************************************/
.ophs03-index-contents .contents-wrapper {
  position: relative;
}

.ophs03-index-contents .contents-wrapper .contents-back {
  width: 100%;
  aspect-ratio: 5/3;
}

@media screen and (max-width: 767px) {
  .ophs03-index-contents .contents-wrapper .contents-back {
    aspect-ratio: initial;
    height: 75dvh;
  }
}

.ophs03-index-contents .contents-wrapper .contents-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ophs03-index-contents .contents-wrapper .contents-deco {
  position: absolute;
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 {
  top: 10px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 {
    top: 3.15vw;
    left: 3.9vw;
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 .title-en {
  font-size: 7.8125vw;
  font-family: "Mitr", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #00a5e3;
}

@media screen and (max-width: 767px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 .title-en {
    font-size: 9.76vw;
  }
}

@media screen and (max-width: 575px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 .title-en {
    font-size: 10.93vw;
  }
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 .title-ja {
  font-size: 1.5625vw;
  padding-top: 1em;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title01 .title-ja {
    font-size: 3.125vw;
  }
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-title02 {
  bottom: 10px;
  right: 60px;
}

@media screen and (max-width: 767px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title02 {
    bottom: 3.15vw;
    right: 3.9vw;
  }
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-title02 .title-en {
  font-size: 7.8125vw;
  font-family: "Mitr", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #00a5e3;
}

@media screen and (max-width: 767px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title02 .title-en {
    font-size: 9.76vw;
  }
}

@media screen and (max-width: 575px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-title02 .title-en {
    font-size: 10.93vw;
  }
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-messagage {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-messagage .message01 {
  font-size: 3.90625vw;
  white-space: nowrap;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 575px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-messagage .message01 {
    font-size: 5.625vw;
  }
}

.ophs03-index-contents .contents-wrapper .contents-deco.deco-messagage .message02 {
  font-size: 1.5625vw;
}

@media screen and (max-width: 767px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-messagage .message02 {
    font-size: 1.953vw;
  }
}

@media screen and (max-width: 575px) {
  .ophs03-index-contents .contents-wrapper .contents-deco.deco-messagage .message02 {
    font-size: 3.125vw;
  }
}

#ophs03-index-school .contents-wrapper .contents-deco.deco-title01 .title-en {
  color: #00a5e3;
}

#ophs03-index-school .contents-wrapper .contents-deco.deco-title01 .title-ja {
  color: #fff;
}

#ophs03-index-school .contents-wrapper .contents-deco.deco-title02 .title-en {
  color: #00a5e3;
}

#ophs03-index-school .contents-wrapper .contents-deco.deco-messagage {
  color: #fff;
}

#ophs03-index-learning .contents-wrapper .contents-deco.deco-title01 .title-en {
  color: #5cbb89;
}

#ophs03-index-learning .contents-wrapper .contents-deco.deco-title01 .title-ja {
  color: #fff;
}

#ophs03-index-learning .contents-wrapper .contents-deco.deco-title02 .title-en {
  color: #5cbb89;
}

#ophs03-index-learning .contents-wrapper .contents-deco.deco-messagage {
  color: #fff;
}

#ophs03-index-international .contents-wrapper .contents-deco.deco-title01 .title-en {
  color: #f3c524;
}

#ophs03-index-international .contents-wrapper .contents-deco.deco-title01 .title-ja {
  color: #fff;
}

#ophs03-index-international .contents-wrapper .contents-deco.deco-title02 .title-en {
  color: #f3c524;
}

#ophs03-index-international .contents-wrapper .contents-deco.deco-messagage {
  color: #fff;
}

#ophs03-index-access .contents-wrapper .contents-deco.deco-title01 .title-en {
  color: #ba915e;
}

#ophs03-index-access .contents-wrapper .contents-deco.deco-title01 .title-ja {
  color: #000;
}

#ophs03-index-access .contents-wrapper .contents-deco.deco-title02 .title-en {
  color: #ba915e;
}

#ophs03-index-access .contents-wrapper .contents-deco.deco-messagage {
  color: #000;
}

#ophs03-index-access .contents-wrapper .contents-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  aspect-ratio: 3/2;
}

@media screen and (max-width: 767px) {
  #ophs03-index-access .contents-wrapper .contents-map {
    width: 75%;
  }
}

@media screen and (max-width: 575px) {
  #ophs03-index-access .contents-wrapper .contents-map {
    width: 90%;
    aspect-ratio: initial;
    height: 60%;
  }
}

#ophs03-index-access .contents-wrapper .contents-map iframe {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=style.css.map */

.list-item {
  position: relative;
}

.hdr-submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-item:hover .hdr-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hdr-submenu .sublist-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.hdr-submenu .sublist-item {
  width: 100% !important;
  padding: 0 !important;
  text-align: left !important;
}

.hdr-submenu .sublist-item a {
  display: block !important;
  padding: 10px 20px !important;
  color: #333333 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: background 0.2s;
}

.hdr-submenu .sublist-item a:hover {
  background: #f5f5f5 !important;
  color: #000000 !important;
}

.hdr-submenu .sublist-item p {
  margin: 0 !important;
  color: inherit !important;
}

.logo-name {
  display: none;
}

.video-container {
  user-select: none;
  -webkit-user-drag: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
}

.wysi-video-cover {
  display: none;
}

.has-logo-image .logo-text {
  display: none;
}

.has-logo-image .logo-name {
  display: block;
}


header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-list > .list-item:not(.item-icon):not(.item-sns):not(.item-lang),
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-list > .list-item:not(.item-icon):not(.item-sns):not(.item-lang),
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-list > .list-item:not(.item-icon):not(.item-sns):not(.item-lang) {
  display: block !important;
}

header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-list > .list-item:not(.item-icon):not(.item-sns):not(.item-lang),
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-list > .list-item:not(.item-icon):not(.item-sns):not(.item-lang),
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-list > .list-item:not(.item-icon):not(.item-sns):not(.item-lang) {
  width: auto !important;
  min-width: 80px !important;
  padding-inline: 15px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo,
header #ophs02-hdr .hdr-wrapper .hdr-logo,
header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text,
header #ophs01-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text p,
header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-text,
header #ophs02-hdr .hdr-wrapper .hdr-logo .logo-text p,
header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text,
header #ophs03-hdr .hdr-wrapper .hdr-box .hdr-logo .logo-text p {
  white-space: nowrap !important;
}

header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav,
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav,
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav {
  position: static !important;
  width: auto !important;
  height: 100% !important;
  background-color: transparent !important;
}

header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav nav,
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav nav,
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav nav {
  display: block !important;
  height: auto !important;
  overflow: visible !important;
}

header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-list,
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-list,
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-list {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0 !important;
  gap: 10px !important;
}

header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-wrap .nav-btn,
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-wrap .nav-btn,
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-wrap .nav-btn {
  display: none !important;
}

header #ophs01-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-ftrlist,
header #ophs02-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-nav .nav-ftrlist,
header #ophs03-hdr .hdr-wrapper:not(.hdr-collapsed) .hdr-box .hdr-nav .nav-ftrlist {
  display: none !important;
}

header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav {
  position: fixed !important;
  top: 0 !important;
  right: -45vw !important;
  width: 45vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  transition: right 0.5s !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav {
  right: 0 !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-wrap .nav-btn {
  display: block !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav nav {
  height: 100% !important;
  overflow-y: auto !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 3.125vw !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item:not(.item-icon):not(.item-sns):not(.item-lang):not(.sns-list .list-item) {
  display: none !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item:not(.item-icon):not(.item-sns):not(.item-lang):not(.sns-list .list-item) {
  width: min(80%, 250px) !important;
  border-bottom: 1px solid #fff !important;
}
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-ftrlist {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 3.125vw !important;
}

header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav {
  position: fixed !important;
  top: 0 !important;
  right: -45vw !important;
  width: 45vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  transition: right 0.5s !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-nav {
  right: 0 !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-wrap .nav-btn {
  display: block !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav nav {
  height: 100% !important;
  overflow-y: auto !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 3.125vw !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-list .list-item:not(.item-icon):not(.item-sns):not(.item-lang):not(.sns-list .list-item) {
  display: none !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-list .list-item:not(.item-icon):not(.item-sns):not(.item-lang):not(.sns-list .list-item) {
  width: min(80%, 250px) !important;
  border-bottom: 1px solid #000 !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-line {
  display: block !important;
}
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-ftrlist {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 3.125vw !important;
}
header #ophs02-hdr .hdr-collapsed nav{
  filter: invert();
}

header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav {
  position: fixed !important;
  top: 0 !important;
  right: -45vw !important;
  width: 45vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  transition: right 0.5s !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav nav{
  filter: invert();
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav {
  right: 0 !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-wrap .nav-btn {
  display: block !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav nav {
  height: 100% !important;
  overflow-y: auto !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 3.125vw !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item:not(.item-icon):not(.item-sns):not(.item-lang):not(.sns-list .list-item) {
  display: none !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item:not(.item-icon):not(.item-sns):not(.item-lang):not(.sns-list .list-item) {
  width: min(80%, 250px) !important;
  border-bottom: 1px solid #fff !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-line {
  display: block !important;
}
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-ftrlist {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 3.125vw !important;
}

@media screen and (max-width: 575px) {
  header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav,
  header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav,
  header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav {
    right: -75vw !important;
    width: 75vw !important;
  }
}

header #ophs01-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1),
header #ophs02-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1),
header #ophs03-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(1) {
  top: 50% !important;
  /*transform: translate(-50%, -50%) rotate(45deg) !important;*/
}

header #ophs01-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2),
header #ophs02-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2),
header #ophs03-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(2) {
  opacity: 0 !important;
}

header #ophs01-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3),
header #ophs02-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3),
header #ophs03-hdr .hdr-wrapper.hdr-collapsed.nav-active .hdr-box .hdr-nav .nav-wrap .nav-btn .btn-wrap .btn-line:nth-child(3) {
  top: 50% !important;
  /*transform: translate(-50%, -50%) rotate(-45deg) !important;*/
}

.cms-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 30px auto !important;
}

.cms-pagination .page-item {
  display: inline-block !important;
}

.cms-pagination .page-item .page-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid #e2e8f0 !important;
  background-color: #ffffff !important;
  color: #475569 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: all 0.2s ease-in-out !important;
  cursor: pointer !important;
}

.cms-pagination .page-item.active .page-link {
  background-color: var(--primary, #3b82f6) !important;
  border-color: var(--primary, #3b82f6) !important;
  color: #ffffff !important;
}

.cms-pagination .page-item .page-link:hover:not(.disabled *) {
  background-color: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

.cms-pagination .page-item.disabled .page-link {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  background-color: #f8fafc !important;
}


header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item.item-sns,
header #ophs01-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item.item-lang,
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-list .list-item.item-sns,
header #ophs02-hdr .hdr-wrapper.hdr-collapsed .hdr-nav .nav-list .list-item.item-lang,
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item.item-sns,
header #ophs03-hdr .hdr-wrapper.hdr-collapsed .hdr-box .hdr-nav .nav-list .list-item.item-lang {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
}

.nav-wrap{
  height: 100%;
}

.list-item .hdr-submenu{
  max-height: 80svh;
  overflow-y: auto;
}