@charset "UTF-8";
:root {
  --oc-link-color: #0d6efd;
  --oc-primary-color: #1E3970;
  --oc-btn-primary-color: #1E3970;
  --oc-btn-alt-color: #1E3970;
  --oc-blog-heading-mt: 1.9rem;
  --oc-blog-heading-mb: 1.625rem;
  --oc-blog-heading-pt: 1.625rem;
  --oc-blog-font-size: calc(1rem + .069vw);
  --oc-blog-heading1-fs: calc(1.6rem + .069vw);
  --oc-blog-heading2-fs: calc(1.5rem + .069vw);
  --oc-blog-heading3-fs: calc(1.35rem + .069vw);
  --oc-blog-line-height: 1.625rem;
  --oc-font: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --oc-font-serif: "Noto Serif JP";
  --oc-font-en: "Oooh Baby", cursive;
}

@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP_Medium.woff2") format("woff2"), url("../fonts/NotoSerifJP_Medium.woff") format("woff"), url("../fonts/NotoSerifJP_semibold.woff2") format("woff2"), url("../fonts/NotoSerifJP_semibold.woff") format("woff");
}
html * {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  background-color: var(--oc-primary-color);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  color: #2D3442;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  line-height: 1.5;
}

.text-primary-color {
  color: var(--oc-primary-color);
}

.clear-fix {
  clear: both;
}

a {
  text-decoration: none;
  color: var(--oc-primary-color);
}

img {
  max-width: 100%;
}

.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
@media only screen and (max-width: 1240px) {
  .inner {
    padding: 0 20px;
  }
  .ttl-inner {
    padding: 0 20px;
    }
}

.bg-image {
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-bg-top {
  z-index: 0;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-bg-top .caption h1,
.text-bg-top .caption h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.content-none {
  text-align: center;
  font-size: 20px;
  padding: 80px 10px;
}

.content-none .error-number {
  font-size: 70px;
}

.content-none .content-none-btn {
  margin: 20px auto;
  text-align: center;
}

/* OC Button Style */
.site-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 375px;
  height: 73px;
  max-width: 90%;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  transition: all 0.5s;
}

.site-btn {
  color: #fff;
  border-color: #fff;
}

/* END - OC Button Style */
/* OC Modal Style */
.modal-design {
  height: 80vh;
  overflow: scroll;
  margin: 15% 0 10% 0;
  border-radius: unset;
}

.modal-dialog {
  max-width: 800px;
  padding: 1rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
.close-btn {
  position: fixed;
  right: 0x;
  top: 25px;
}

.modal-side-margin {
  margin: 0;
}

.modal-body-design {
  padding: 0;
}

.round_btn {
  display: block;
  width: 45px;
  height: 45px;
  border: 2px solid #AA8400; /* 枠の調整 */
  border-radius: 50%; /* 丸みの度合い */
  background: #fff; /* ボタンの背景色 */
}

.round_btn::before, .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 22px; /* 棒の高さ */
  background: #AA8400; /* バツ印の色 */
}

.round_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* END - OC Modal Style */
/* header
----------------------------------------*/
.header {
  width: 100%;
  padding: 0 10px 0 30px;
  height: 70px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-logo {
  width: 160px;
  display: block;
}
.header-logo .logo-text {
  width: 100%;
}
.header-logo .logo-icon {
  display: none;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.header-nav .nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-nav ul {
  margin: 0 15px 0 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-self: flex-start;
}
.header-nav ul > li {
  padding: 10px 15px;
}
.header-nav ul > li > a {
  font-family: var(--oc-font-serif);
  color: #2D3442;
}
.header-nav ul .has-sub .sub {
  padding-top: 10px;
  position: absolute;
  display: none;
  top: 60px;
  left: 0;
  z-index: 11;
}
.header-nav ul .has-sub .sub-inner {
  padding: 40px 0;
  width: 100vw;
  background-color: #EFF0F2;
}
.header-nav ul .has-sub .sub ul {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 35px 20px;
}
.header-nav ul .has-sub .sub ul > li {
  padding: 0;
  width: calc(25% - 15px);
}
.header-nav ul .has-sub .sub ul > li > a {
  font-size: 1.5rem;
  font-family: var(--oc-font-serif);
  text-align: center;
  display: block;
}
.header-nav ul .has-sub .sub ul > li > a img {
  margin-bottom: 4px;
  width: 255px;
  display: block;
}
.header-nav .nav-btn {
  margin: 0 5px;
  padding: 10px 0;
  width: 160px;
  border: 1px solid var(--oc-primary-color);
  color: var(--oc-primary-color);
}
.header-nav .nav-btn .small,
.header-nav .nav-btn .large {
  line-height: 1;
  text-align: center;
  display: block;
}
.header-nav .nav-btn .small {
  font-size: 0.9rem;
}
.header-nav .nav-btn .small::before {
  content: "＼";
}
.header-nav .nav-btn .small::after {
  content: "／";
}
.header-nav .nav-btn .large {
  margin-top: 5px;
  font-size: 1.3rem;
  font-family: var(--oc-font-serif);
}
.header-nav .nav-btn-contact {
  margin-left: 5px;
  width: 160px;
  background-color: var(--oc-primary-color);
  font-size: 1.4rem;
  line-height: 4.9rem;
  font-family: var(--oc-font-serif);
  color: #fff;
  text-align: center;
}
.header .burger-btn {
  display: none;
}
.header .nav-btn-privacy {
  display: none;
}
.header .nav-external {
  display: none;
}
.header-btn-sp {
  display: none;
}

@media only screen and (max-width: 1080px) {
  .header-nav {
    padding: 40px 20px 60px;
    width: 100%;
    height: 100%;
    background-color: var(--oc-primary-color);
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
  }
  .header-nav .nav-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
  }
  .header-nav ul {
    margin: 0 0 30px 0;
    width: 100%;
    padding-left: 0;
    display: block;
  }
  .header-nav ul > li {
    padding: 0;
  }
  .header-nav ul > li > a {
    font-family: var(--oc-font) !important;
    line-height: 60px;
    color: #fff;
    border-bottom: 1px solid #43567B;
    display: block;
    position: relative;
    cursor: pointer;
  }
  .header-nav ul > li > a::after {
    content: "";
    width: 6px;
    height: 12px;
    background-image: url(../img/common/link_arrow_small.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.2s linear;
  }
  .header-nav ul > li > a.arrow-down::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .header-nav ul > li > a.arrow-down.is-open::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .header-nav ul .has-sub {
    display: block;
  }
  .header-nav ul .has-sub .sub {
    display: none;
    position: static;
  }
  .header-nav ul .has-sub .sub-inner {
    padding: 0 0 30px 0;
    width: auto;
    background-color: transparent;
  }
  .header-nav ul .has-sub .sub ul {
    display: block;
  }
  .header-nav ul .has-sub .sub ul > li {
    width: 100%;
  }
  .header-nav ul .has-sub .sub ul > li > a {
    font-family: var(--oc-font);
    line-height: 40px;
    text-align: left;
    border: none;
    position: relative;
  }
  .header-nav ul .has-sub .sub ul > li > a::after {
    display: none;
  }
  .header-nav ul .has-sub .sub ul > li > a img {
    display: none;
  }
  .header-nav .nav-btn {
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    border: 1px solid #8C97AC;
    background-color: #fff;
    text-align: center;
    color: var(--oc-primary-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .header-nav .nav-btn .small,
  .header-nav .nav-btn .large {
    line-height: 4.9rem;
    text-align: center;
    display: inline-block;
  }
  .header-nav .nav-btn .small {
    padding-right: 10px;
    font-size: 1.4rem;
    font-family: var(--oc-font);
    position: relative;
  }
  .header-nav .nav-btn .small::before, .header-nav .nav-btn .small::after {
    display: none;
  }
  .header-nav .nav-btn .large {
    margin-top: 0;
    font-size: 1.6rem;
  }
  .header-nav .nav-btn-contact {
    margin: 0;
    width: 100%;
    border: 1px solid #8C97AC;
    background-color: #fff;
    font-size: 1.6rem;
    color: var(--oc-primary-color);
    display: block;
  }
  .header-btn-sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .header-btn-sp .btn-sp-search {
    width: 80px;
    border-radius: 3px;
    font-size: 1rem;
    line-height: 28px;
    border: 1px solid var(--oc-primary-color);
    color: var(--oc-primary-color);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .header-btn-sp .btn-sp-search::before {
    content: "";
    margin-right: 5px;
    width: 10px;
    height: 10px;
    background-image: url(../img/common/icon_loupe.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
  }
  .header-btn-sp .btn-sp-contact {
    width: 28px;
    margin-left: 10px;
    color: #fff;
    text-align: center;
    display: block;
  }
  .header-btn-sp .btn-sp-contact img {
    display: block;
  }
  .header .burger-btn {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
  }
  .header .burger-btn span {
    width: 20px;
    height: 2px;
    background-color: var(--oc-primary-color);
    display: block;
    border-radius: 10px;
    position: absolute;
    left: 5px;
    transition: all 0.2s linear;
    transform-origin: center center;
  }
  .header .burger-btn span:nth-of-type(1) {
    top: 8px;
  }
  .header .burger-btn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header .burger-btn span:nth-of-type(3) {
    bottom: 8px;
  }
  .header .burger-btn.is-open span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }
  .header .burger-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .header .burger-btn.is-open span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  .header .nav-btn-privacy {
    margin-top: 40px;
    font-size: 1.4rem;
    color: #fff;
    display: inline-block;
    text-decoration: underline;
  }
  .header .nav-external {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .header .nav-external .ex-suumo {
    margin-right: 30px;
    width: 140px;
    display: block;
  }
  .header .nav-external .ex-instagram {
    width: 30px;
    display: block;
  }
  .header .nav-external .ex-tiktok {
    margin-left: 20px;
    width: 30px;
    display: block;
  }
}
@media only screen and (max-width: 440px) {
  .header {
    padding: 0 10px 0 20px;
    height: 55px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .header-logo .logo-text {
    width: 120px;
    align-self: center;
    display: block;
  }
  .header-logo .logo-icon {
    margin-left: 5px;
    height: 28px;
    display: block;
  }
  .header-nav {
    height: 100dvh;
    top: 55px;
    overflow: scroll;
  }
}
.fixed-btn-side {
  padding: 20px 10px;
  width: 38px;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
  display: block;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}
.fixed-btn-side a {
  width: 18px;
  height: 18px;
  display: block;
}
.fixed-btn-side a:nth-of-type(2), .fixed-btn-side a:nth-of-type(3) {
  margin-top: 20px;
}
.fixed-btn-side a img {
  display: block;
}

@media only screen and (max-width: 440px) {
  .fixed-btn-side {
    padding: 14px 7px;
    width: 30px;
  }
  .fixed-btn-side a {
    width: 16px;
    height: 16px;
  }
  .fixed-btn-side a:nth-of-type(2), .fixed-btn-side a:nth-of-type(3) {
    margin-top: 10px;
  }
}
.fixed-btn-bottom {
  width: 220px;
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
}
.fixed-btn-bottom .fixed-close {
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  position: absolute;
  cursor: pointer;
  top: -23px;
  right: 0;
}
.fixed-btn-bottom .btn {
  padding: 20px 0;
  width: 220px;
  background-color: #fff;
  border-radius: 5px;
  font-family: var(--oc-font-serif);
  color: var(--oc-primary-color);
  display: block;
  position: relative;
}
.fixed-btn-bottom .btn::before {
  content: "Contact";
  width: 100%;
  height: auto;
  font-size: 3.8rem;
  line-height: 1;
  font-family: var(--oc-font-en);
  text-align: center;
  color: rgba(191, 201, 222, 0.4);
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  transform: rotate(-4deg);
}
.fixed-btn-bottom .btn::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/common/link_arrow_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.fixed-btn-bottom .btn .small {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
}
.fixed-btn-bottom .btn .large {
  margin-top: 10px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  display: block;
  position: relative;
  z-index: 5;
}

.fixed-btn-bottom .fixed-logo-icon {
  max-width: 60%;
      position: absolute;
      bottom: 75px;
      left: 50%;
      transform: translateX(-50%);
}


@media only screen and (max-width: 440px) {
  .fixed-btn-bottom {
    width: 135px;
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
  }
  .fixed-btn-bottom .fixed-close {
    width: 18px;
    height: 18px;
    background-image: url(../img/common/icon_close.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    cursor: pointer;
    top: -23px;
    right: 0;
  }
  .fixed-btn-bottom .btn {
    padding: 20px 0;
    width: 135px;
    background-color: #fff;
    border-radius: 5px;
    font-family: var(--oc-font-serif);
    color: var(--oc-primary-color);
    display: block;
    position: relative;
  }
  .fixed-btn-bottom .btn::before {
    font-size: 3.3rem;
    top: 10px;
  }
  .fixed-btn-bottom .btn::after {
    bottom: 5px;
    right: 5px;
  }
  .fixed-btn-bottom .btn .small {
    display: none;
  }
  .fixed-btn-bottom .btn .large {
    margin-top: 0;
  }
  .fixed-btn-bottom .btn .large span {
    display: none;
  }

  .fixed-btn-bottom .fixed-logo-icon {
    max-width: 60%;
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
  }
}
/* footer
----------------------------------------*/
/* Access
- - - - - - - - - - - */
.footer-access {
  padding: 150px 0;
}
.footer-access .access-row {
  margin-top: 60px;
  border: 1px solid #43567B;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-access .access-col {
  width: 33.3333333333%;
  color: #fff;
}
.footer-access .access-col:nth-of-type(2) {
  border-left: 1px solid #43567B;
  border-right: 1px solid #43567B;
}
.footer-access .access-col .col-map {
  width: 100%;
  height: 245px;
}
.footer-access .access-col .col-map iframe {
  width: 100%;
  height: 100%;
}
.footer-access .access-col .col-body {
  padding: 25px;
}
.footer-access .access-col .col-ttl {
  margin: 0;
  font-size: 1.8rem;
  font-family: var(--oc-font-serif);
}
.footer-access .access-col .col-address {
  margin-top: 20px;
  min-height: 50px;
  font-size: 1.4rem;
}
.footer-access .access-col .col-contact {
  margin-top: 25px;
  padding: 5px 0;
  background-color: #294377;
  font-size: 1.3rem;
  text-align: center;
}
.footer-access .access-col .col-access {
  margin-top: 20px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 834px) {
  .footer-access {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 440px) {
  .footer-access .access-row {
    margin-top: 50px;
    display: block;
  }
  .footer-access .access-col {
    width: 100%;
  }
  .footer-access .access-col .col-map {
    height: 205px;
  }
  .footer-access .access-col .col-body {
    padding: 20px;
  }
  .footer-access .access-col .col-ttl {
    font-size: 1.6rem;
  }
  .footer-access .access-col .col-address {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .footer-access .access-col .col-contact {
    margin-top: 15px;
    font-size: 1.1rem;
  }
  .footer-access .access-col .col-access {
    margin-top: 15px;
    font-size: 1.2rem;
  }
}
/* contact
- - - - - - - - - - - */
.footer-contact {
  padding: 100px 0;
  background-color: #EFF0F2;
}
.footer-contact .contact {
  margin: 0 auto;
}
.footer-contact .contact-inner {
  width: 100%;
  max-width: 630px;
}
.footer-contact .contact-lead {
  margin-top: 35px;
  text-align: center;
}
.footer-contact .contact-card {
  margin-top: 50px;
  padding: 40px 60px;
  border: 1px solid #E0E0E0;
  color: var(--oc-primary-color);
}
.footer-contact .contact-card .card-text {
  font-size: 1.8rem;
  font-family: var(--oc-font-serif);
  text-align: center;
}
.footer-contact .contact-card .card-info {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-contact .contact-card .card-tel {
  font-size: 3rem;
  font-family: var(--oc-font-serif);
  line-height: 1;
}
.footer-contact .contact-card .card-tel::before {
  content: "";
  width: 33px;
  height: 33px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 5px;
}
.footer-contact .contact-card .card-tel a {
  color: var(--oc-primary-color);
}
.footer-contact .contact-card .card-time {
  padding-left: 32px;
  border-left: 1px solid #E0E0E0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.footer-contact .contact-link {
  margin-top: 60px;
  text-align: center;
}
.footer-contact .contact-link a {
  font-family: var(--oc-font-serif);
  font-weight: 500;
  color: #1E3970;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-contact .contact-link a::after {
  content: "";
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/link_arrow_r.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media only screen and (max-width: 1200px) {
  .footer-contact .contact-card {
    margin-top: 20px;
    padding: 30px 0;
    border: 1px solid #E0E0E0;
    color: var(--oc-primary-color);
  }
  .footer-contact .contact-card .card-text {
    font-size: 1.6rem;
  }
  .footer-contact .contact-card .card-info {
    margin-top: 30px;
    padding: 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-contact .contact-card .card-tel {
    width: 100%;
    font-size: 2.8rem;
    text-align: center;
  }
  .footer-contact .contact-card .card-tel::before {
    margin-right: 10px;
    width: 28px;
    height: 28px;
  }
  .footer-contact .contact-card .card-time {
    margin-top: 20px;
    padding: 20px 0 0 0;
    width: 100%;
    border-left: none;
    border-top: 1px solid #E0E0E0;
    font-size: 1.5rem;
    text-align: center;
  }
}
@media only screen and (max-width: 440px) {
  .footer-contact {
    padding: 60px 0 70px;
  }
  .footer-contact .contact {
    margin: 0 auto;
  }
  .footer-contact .contact-inner {
    width: 100%;
    max-width: 630px;
  }
  .footer-contact .contact-lead {
    margin-top: 30px;
    font-size: 1.5rem;
  }
  .footer-contact .contact-link {
    margin-top: 20px;
  }
  .footer-contact .contact-link a {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    height: 70px;
    border: 1px solid var(--oc-primary-color);
    border-radius: 100px;
    position: relative;
  }
  .footer-contact .contact-link a::after {
    content: "";
    margin-left: 0;
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
}
.footer {
  padding: 100px 0;
  color: #fff;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.footer-logo {
  width: 220px;
  display: block;
}
.footer-banner {
  margin-top: 40px;
  width: 140px;
  display: block;
}
.footer-sns {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-sns a {
  margin-right: 20px;
  width: 30px;
  display: block;
}
.footer-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.9rem;
  white-space: nowrap;
}
.footer-box1 {
  width: 25.8333333333%;
  position: relative;
}
.footer-box2 {
  width: 26.6666666667%;
}
.footer-box2 p {
  font-size: 1.8rem;
  font-family: var(--oc-font-serif);
}
.footer-box2 dl {
  margin: 20px 0 0;
}
.footer-box2 dl dt, .footer-box2 dl dd {
  font-size: 1.4rem;
}
.footer-box2 dl dt {
  font-weight: bold;
}
.footer-box2 dl dd {
  margin: 5px 0 0;
}
.footer-box3 {
  padding-left: 6.6666666667%;
  width: 20.4166666667%;
  border-left: 1px solid #556484;
}
.footer-box3 p {
  font-size: 1.6rem;
}
.footer-box3 ul {
  list-style-type: none;
  padding: 10px 0 0;
  border-top: 1px solid #556484;
}
.footer-box3 ul li a {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}
.footer-box3 ul li a::before {
  content: "-";
  margin-right: 5px;
  display: inline-block;
}
.footer-box4 {
  padding-left: 40px;
  width: 18.3333333333%;
}
.footer-box4 ul {
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.footer-box4 ul li {
  margin-top: 15px;
}
.footer-box4 ul li:first-of-type {
  margin-top: 0;
}
.footer-box4 ul li a {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.footer-box4 ul li a::after {
  content: "";
  margin-left: 20px;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/link_arrow_r_wh.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}
.footer-box4 > a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: underline;
}

@media only screen and (max-width: 440px) {
  .footer {
    padding: 60px 0 30px;
    color: #fff;
  }
  .footer-inner {
    display: block;
  }
  .footer-logo {
    margin: 0 auto;
    width: 200px;
  }
  .footer-banner {
    margin: 0 auto;
    margin-top: 40px;
  }
  .footer-sns {
    margin: 30px auto 0;
    text-align: center;
  }
  .footer-sns a {
    margin: 0 10px;
    width: 30px;
    display: inline-block;
  }
  .footer-copy {
    margin-top: 30px;
    text-align: center;
    position: static;
  }
  .footer-box1 {
    width: 100%;
    position: relative;
  }
  .footer-box2 {
    margin-top: 30px;
    padding-bottom: 40px;
    width: 100%;
    border-bottom: 1px solid #536589;
  }
  .footer-box2 p {
    text-align: center;
  }
  .footer-box2 dl {
    margin: 20px 0 0;
  }
  .footer-box2 dl dt, .footer-box2 dl dd {
    text-align: center;
  }
  .footer-box3 {
    display: none;
  }
  .footer-box4 {
    display: none;
  }
}
/* common
----------------------------------------*/
.contents {
  padding-top: 70px;
}
@media only screen and (max-width: 440px) {
  .contents {
    padding-top: 55px;
  }
}

.ttl-lv1 {
  margin-top: 40px;
  padding-top: 55px;
  position: relative;
}
.ttl-lv1 .en {
  font-family: var(--oc-font-en);
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  color: #8c97ac;
  position: absolute;
  top: 0;
  left: 40px;
}
.ttl-lv1 .ja {
  font-size: 4rem;
  font-family: var(--oc-font-serif);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.4rem;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 440px) {
  .ttl-lv1 {
    margin-top: 50px;
    padding-top: 30px;
  }
  .ttl-lv1 .en {
    font-size: 3.8rem;
    transform: rotate(-3deg);
    left: 10px;
  }
  .ttl-lv1 .ja {
    font-size: 2.8rem;
    letter-spacing: 0.4rem;
  }
}
.ttl-lv2 .en,
.ttl-lv2 .ja {
  color: #fff;
  text-align: center;
  display: block;
}
.ttl-lv2 .en {
  font-family: var(--oc-font-en);
}
.ttl-lv2 .ja {
  font-size: 3.6rem;
  font-family: var(--oc-font-serif);
  font-weight: 500;
  letter-spacing: 0.5rem;
}
.ttl-lv2 .ja .small {
  font-size: 2rem;
  display: block;
}
.ttl-lv2._blue .en,
.ttl-lv2._blue .ja {
  color: var(--oc-primary-color);
}

@media only screen and (max-width: 440px) {
  .ttl-lv2 .en {
    font-size: 1.8rem;
  }
  .ttl-lv2 .ja {
    font-size: 2.8rem;
  }
  .ttl-lv2._blue .en,
  .ttl-lv2._blue .ja {
    color: var(--oc-primary-color);
  }
}
.breadclumb {
  background-color: transparent;
  position: absolute;
  top: 70px;
  right: 0;
}
.breadclumb ul {
  padding: 5px 20px;
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.breadclumb ul li {
  position: relative;
}
.breadclumb ul li::after {
  content: "-";
  margin: 0 10px;
  color: #fff;
  display: inline-block;
}
.breadclumb ul li:last-of-type::after {
  display: none;
}
.breadclumb ul li a, .breadclumb ul li span {
  font-size: 1.2rem;
  color: #fff;
}
.breadclumb ul li a {
  text-decoration: underline;
}
.breadclumb ul li a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 440px) {
  .breadclumb {
    top: 55px;
  }
}
.is-sp {
  display: none;
}
@media only screen and (max-width: 440px) {
  .is-sp {
    display: block;
  }
}

@media only screen and (max-width: 440px) {
  .is-pc {
    display: none;
  }
}

.hov-op {
  transition: opacity 0.2s linear;
}

@media (hover: hover) {
  .hov-op:hover {
    opacity: 0.7;
  }
}
/* page - top
----------------------------------------*/
/* key visual
- - - - - - - - - - - - - - - - - - */
@keyframes slide-fade {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}
.top-kv {
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #fff;
  position: relative;
  background-color: #d5d5d5;
  overflow: hidden;
  z-index: 1;
}
.top-kv::after {
  content: "";
  width: 100%;
  height: 40vh;
  background-image: url(../img/top/top_kv_gd.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-kv .swiper-slide-active .swiper-img,
.top-kv .swiper-slide-duplicate-active .swiper-img,
.top-kv .swiper-slide-prev .swiper-img {
  animation: slide-fade 7s linear 0s normal both;
}
.top-kv .swiper-slide {
  height: calc(100vh - 70px);
}
.top-kv .swiper-img {
  height: calc(100vh - 70px);
}
.top-kv .swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transform-origin: center center;
}
.top-kv .kv-text {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 2;
}
.top-kv .kv-text .small,
.top-kv .kv-text .large,
.top-kv .kv-text .en {
  font-family: var(--oc-font-serif);
  font-weight: normal;
  color: #fff;
}
.top-kv .kv-text .small {
  margin-top: 40px;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.2rem;
}
.top-kv .kv-text .large {
  font-size: 5.4rem;
  line-height: 1.2;
  letter-spacing: 0.5rem;
}
.top-kv .kv-text .large span {
  font-size: 4.8rem;
}
.top-kv .kv-text .en {
  margin-top: 15px;
  font-size: 1rem;
}

@media only screen and (max-width: 440px) {
  .top-kv {
    width: 100%;
    height: calc(100svh - 55px);
    position: relative;
    overflow: hidden;
  }
  .top-kv ul {
    padding-left: 0;
  }
  .top-kv ul li {
    height: calc(100svh - 55px);
  }
  .top-kv ul li img {
    transform: scale(1.1);
  }
  .top-kv .kv-text {
    bottom: 100px;
    left: 35px;
  }
  .top-kv .kv-text .small {
    margin-top: 20px;
    font-size: 2.4rem;
  }
  .top-kv .kv-text .large {
    font-size: 3.6rem;
  }
  .top-kv .kv-text .large span {
    font-size: 3.2rem;
  }
  .top-kv .kv-text .en {
    margin-top: 10px;
  }
}
/* News
- - - - - - - - - - - - - - - - - - */
.top-sec1 {
  padding: 80px 0;
  background-color: #EFF0F2;
}
.top-sec1-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-sec1-ttl .en,
.top-sec1-ttl .ja {
  color: var(--oc-primary-color);
  line-height: 1;
  display: block;
}
.top-sec1-ttl .en {
  font-family: var(--oc-font-en);
}
.top-sec1-ttl .ja {
  margin-top: 10px;
  font-size: 3.8rem;
  font-family: var(--oc-font-serif);
  font-weight: 600;
  letter-spacing: 0.5rem;
}
.top-sec1-link {
  margin-top: 40px;
  font-size: 1.4rem;
  color: var(--oc-primary-color);
  text-decoration: underline;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.top-sec1-link::before {
  content: "";
  margin-right: 10px;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/link_arrow_r_line.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
}
.top-sec1-link:hover {
  color: var(--oc-primary-color);
  text-decoration: none;
}
.top-sec1-list {
  list-style-type: none;
  padding-left: 0;
  width: 75%;
}
.top-sec1-item {
  padding: 30px;
  background-color: #fff;
  position: relative;
}
.top-sec1-item:nth-of-type(2), .top-sec1-item:nth-of-type(3) {
  margin-top: 20px;
}
.top-sec1-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/common/link_arrow_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.top-sec1-item .item-meta {
  color: #8C97AC;
  font-size: 1.4rem;
  font-family: var(--oc-font-serif);
}
.top-sec1-item .item-link {
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #2D3442;
}
.top-sec1-item .item-link:hover {
  color: #1E3970;
  text-decoration: underline;
}

@media only screen and (max-width: 440px) {
  .top-sec1 {
    padding: 40px 0;
  }
  .top-sec1-inner {
    display: block;
  }
  .top-sec1-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top-sec1-ttl .en {
    font-size: 1.8rem;
  }
  .top-sec1-ttl .ja {
    margin-top: 5px;
    font-size: 2.8rem;
  }
  .top-sec1-link {
    margin-top: 25px;
  }
  .top-sec1-list {
    margin-top: 30px;
    width: 100%;
  }
  .top-sec1-item {
    padding: 20px;
  }
  .top-sec1-item .item-meta {
    font-size: 1.2rem;
  }
  .top-sec1-item .item-link {
    margin-top: 5px;
    font-size: 1.5rem;
    -webkit-line-clamp: 2;
  }
}
/* Suggest
- - - - - - - - - - - - - - - - - - */
.top-sec2 {
  padding-top: 150px;
}
.top-sec2-lead {
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.top-sec2-inner {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.top-sec2-slide {
  width: calc(100% - (100% - 1200px) / 2);
  overflow: hidden;
}
.top-sec2 .swiper-tools {
  margin-top: 40px;
  width: 100%;
  height: 42px;
  max-width: 1200px;
  position: relative;
}
.top-sec2 .swiper-scrollbar {
  width: calc(100% - 130px);
  height: 3px;
  background-color: #43567B;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-sec2 .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
}
.top-sec2 .swiper-button-prev,
.top-sec2 .swiper-button-next {
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
}
.top-sec2 .swiper-button-prev {
  background-image: url(../img/common/link_arrow_gohst_l.png);
  left: auto;
  right: 52px;
}
.top-sec2 .swiper-button-next {
  right: 0;
  background-image: url(../img/common/link_arrow_gohst_r.png);
}
.top-sec2-item {
  width: 29%;
  background-color: #fff;
  display: block;
  position: relative;
}
.top-sec2-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/common/link_arrow_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.top-sec2-item:hover .item-img {
  opacity: 0.7;
}
.top-sec2-item .item-img {
  aspect-ratio: 380/235;
  transition: opacity 0.2s linear;
}
.top-sec2-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-sec2-item .item-body {
  padding: 25px 20px;
  color: var(--oc-primary-color);
}
.top-sec2-item .item-ttl {
  font-size: 1.8rem;
  font-family: var(--oc-font-serif);
}
.top-sec2-item .item-price {
  font-size: 2.8rem;
  font-family: var(--oc-font-serif);
  font-weight: bold;
}
.top-sec2-item .item-price span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 440px) {
  .top-sec2 {
    padding-top: 60px;
  }
  .top-sec2-lead {
    margin-top: 30px;
  }
  .top-sec2-inner {
    margin-top: 30px;
    margin-left: 40px;
    display: block;
  }
  .top-sec2-slide {
    width: 100%;
  }
  .top-sec2 .mySwiper {
    width: 100%;
  }
  .top-sec2 .swiper-tools {
    width: calc(100% - 20px);
    margin-top: 20px;
    height: 30px;
  }
  .top-sec2 .swiper-scrollbar {
    width: calc(100% - 85px);
  }
  .top-sec2 .swiper-button-prev,
  .top-sec2 .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 20px;
  }
  .top-sec2 .swiper-button-prev {
    background-image: url(../img/common/link_arrow_gohst_l.png);
    left: auto;
    right: 40px;
  }
  .top-sec2 .swiper-button-next {
    right: 0;
    background-image: url(../img/common/link_arrow_gohst_r.png);
  }
  .top-sec2-item {
    width: 75%;
  }
  .top-sec2-item .item a {
    display: block;
  }
  .top-sec2-item .item-img img {
    display: block;
  }
  .top-sec2-item .item-body {
    padding: 15px 20px;
  }
  .top-sec2-item .item-ttl {
    font-size: 1.3rem;
  }
  .top-sec2-item .item-price {
    font-size: 2.4rem;
  }
  .top-sec2-item .item-price span {
    font-size: 1.4rem;
  }
  .top-sec2-item .item-address {
    margin-top: 5px;
    font-size: 1.2rem;
  }
}
/* Search
- - - - - - - - - - - - - - - - - - */
.top-sec3 {
  padding: 150px 0;
}
.top-sec3-lead {
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.top-sec3-list {
  list-style-type: none;
  margin-top: 60px;
  margin-bottom: 0;
  padding: 1px;
  width: 100%;
  background-color: #43567B;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1px;
}
.top-sec3-list .top-sec3-area {
  width: calc((100% - 3px) / 4);
  background-color: var(--oc-primary-color);
}
.top-sec3-list .top-sec3-area .top-sec3-area-wrap {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s linear;
}
.top-sec3-list .top-sec3-area .top-sec3-area-wrap .top-sec3-area-image {
  margin-right: 10px;
  width: 41.6666666667%;
  opacity: 0.6;
}
.top-sec3-list .top-sec3-area .top-sec3-area-wrap .top-sec3-area-name {
  font-size: 1.8rem;
  font-family: var(--oc-font-serif);
  color: #fff;
  opacity: 0.6;
}
.top-sec3-list .top-sec3-area a[href].top-sec3-area-wrap .top-sec3-area-image,
.top-sec3-list .top-sec3-area a[href].top-sec3-area-wrap .top-sec3-area-name {
  opacity: 1;
}
.top-sec3-list .top-sec3-area .top-sec3-area-wrap .top-sec3-area-name.show-arrow::after {
  content: "";
  margin-left: 10px;
  width: 22px;
  height: 22px;
  background-image: url(../img/top/top_sec3_arrow_r.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 3px;
}
.top-sec3-btn {
  margin: 60px auto 0;
  padding: 1px;
  width: 290px;
  border-radius: 100px;
  display: block;
  transition: all 0.2s linear;
}
.top-sec3-btn span {
  width: 100%;
  background-color: var(--oc-primary-color);
  font-size: 1.6rem;
  font-family: var(--oc-font-serif);
  line-height: 58px;
  color: #fff;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.top-sec3-btn span::after {
  content: "";
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/link_arrow_r_wh2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media (hover: hover) {
  .top-sec3-btn:hover {
    background-color: #fff;
  }
  .top-sec3-list li a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1200px) {
  .top-sec3-list li a img {
    width: 30%;
  }
  .top-sec3-list li a span {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 822px) {
  .top-sec3 {
    padding: 60px 0;
  }
  .top-sec3-lead {
    margin-top: 30px;
    font-size: 1.5rem;
  }
  .top-sec3-list {
    margin-top: 30px;
  }
  .top-sec3-list .top-sec3-area {
    width: calc((100% - 1px) / 2);
  }
  .top-sec3-list .top-sec3-area .top-sec3-area-wrap .top-sec3-area-image {
    width: 85px;
  }
  .top-sec3-list .top-sec3-area .top-sec3-area-wrap .top-sec3-area-name {
    font-size: 1.6rem;
  }
  .top-sec3-list .top-sec3-area .top-sec3-area-wrap .top-sec3-area-name::after {
    width: 16px;
    height: 16px;
  }
  .top-sec3-btn {
    background-color: #fff;
  }
}
/* SUUMO
- - - - - - - - - - - - - - - - - - */
.top-sec4 {
  padding: 170px 0;
  background-image: url(../img/top/top_sec4_img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.top-sec4-ttl {
  font-family: var(--oc-font-serif);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  font-size: 3.8rem;
}
.top-sec4-ttl span {
  font-size: 3.2rem;
}
.top-sec4-lead {
  margin-top: 40px;
  text-align: center;
  color: #fff;
}
.top-sec4-btn {
  margin: 40px auto 0;
  width: 85px;
  font-family: var(--oc-font-serif);
  color: #fff;
  text-align: center;
  display: block;
  transition: opacity 0.2s linear;
}
.top-sec4-btn::before {
  content: "";
  margin: 0 auto 10px;
  width: 50px;
  height: 50px;
  background-image: url(../img/top/top_sec4_icon_external.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
}

@media (hover: hover) {
  .top-sec4-btn:hover {
    opacity: 0.7;
    color: #fff;
  }
}
@media only screen and (max-width: 440px) {
  .top-sec4 {
    padding: 110px 0;
    background-image: url(../img/top/top_sec4_img_sp.jpg);
  }
  .top-sec4-ttl {
    font-size: 3.2rem;
  }
  .top-sec4-ttl span {
    font-size: 2rem;
  }
  .top-sec4-lead {
    margin-top: 20px;
  }
  .top-sec4-btn {
    margin-top: 30px;
  }
}
/* About
- - - - - - - - - - - - - - - - - - */
.top-sec5 {
  padding: 150px 0 0;
}
.top-sec5-label {
  font-size: 6.4rem;
  font-family: var(--oc-font-en);
  color: #fff;
  text-align: center;
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
}
.top-sec5-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  border: 2px solid #8C97AC;
  position: relative;
}
.top-sec5-inner::before, .top-sec5-inner::after {
  content: "";
  background-color: var(--oc-primary-color);
  display: block;
  position: absolute;
}
.top-sec5-inner::before {
  width: 620px;
  height: calc(100% + 4px);
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.top-sec5-inner::after {
  width: calc(100% + 4px);
  height: 490px;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}
.top-sec5-card {
  width: 100%;
  position: relative;
  z-index: 5;
}
.top-sec5-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-sec5-col {
  width: 23.0769230769%;
}
.top-sec5-col:nth-of-type(2) {
  border-left: 1px solid #8C97AC;
  border-right: 1px solid #8C97AC;
}
.top-sec5-col .col-img {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  display: block;
}
.top-sec5-col .col-text {
  margin-top: 20px;
  font-size: 2rem;
  font-family: var(--oc-font-serif);
  line-height: 1;
  color: #fff;
  text-align: center;
}
.top-sec5-ttl {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 3.8rem;
  font-family: var(--oc-font-serif);
  color: #fff;
  text-align: center;
}
.top-sec5-text {
  margin-top: 30px;
  text-align: center;
  color: #fff;
}
.top-sec5-btns {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-sec5-btns a {
  margin: 0 10px;
  padding: 1px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.2s linear;
}
.top-sec5-btns a span {
  padding: 0 15px;
  width: 100%;
  background-color: var(--oc-primary-color);
  font-size: 1.6rem;
  font-family: var(--oc-font-serif);
  line-height: 58px;
  color: #fff;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.top-sec5-btns a span::after {
  content: "";
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/link_arrow_r_wh2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media (hover: hover) {
  .top-sec5-btns a:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 440px) {
  .top-sec5 {
    padding: 30px 0 0;
  }
  .top-sec5-label {
    font-size: 4rem;
    line-height: 1;
    position: static;
    transform: none;
  }
  .top-sec5-inner {
    padding: 0;
    border: none;
  }
  .top-sec5-inner::before, .top-sec5-inner::after {
    display: none;
  }
  .top-sec5-row {
    margin-top: 30px;
  }
  .top-sec5-col {
    width: 33.3333333333%;
  }
  .top-sec5-col .col-text {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .top-sec5-ttl {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .top-sec5-text {
    margin-top: 10px;
  }
  .top-sec5-btns {
    margin-top: 40px;
    display: block;
    text-align: center;
  }
  .top-sec5-btns a {
    margin: 20px 0 0 0;
    background-color: #fff;
  }
  .top-sec5-btns a:first-of-type {
    margin-top: 0;
  }
}
/* Service
- - - - - - - - - - - - - - - - - - */
.top-sec6 {
  margin-top: 150px;
}
.top-sec6-media {
  margin-top: 130px;
  display: flex;
}
.top-sec6-media:first-of-type {
  margin-top: 60px;
}
.top-sec6-media.pos-l {
  justify-content: flex-start;
}
.top-sec6-media.pos-r {
  justify-content: flex-end;
}
.top-sec6-media.pos-r .media-img {
  order: 2;
}
.top-sec6-media.pos-r .media-body {
  order: 1;
}
.top-sec6-media .media-inner {
  width: calc(100% - (100% - 1200px) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-sec6-media .media-img {
  width: 48.0916030534%;
}
.top-sec6-media .media-img img {
  display: block;
}
.top-sec6-media .media-body {
  width: 45.8015267176%;
  color: #fff;
}
.top-sec6-media .media-body .body-num {
  font-size: 1.8rem;
  font-family: var(--oc-font-en);
  line-height: 1;
}
.top-sec6-media .media-body .body-ttl1 {
  margin-top: 10px;
  font-size: 3.2rem;
  font-family: var(--oc-font-serif);
  font-weight: 500;
}
.top-sec6-media .media-body .body-ttl2 {
  margin-top: 20px;
  font-size: 2.4rem;
  font-family: var(--oc-font-serif);
  font-weight: 500;
}
.top-sec6-media .media-body .body-text {
  margin-top: 15px;
  text-align: justify;
}
.top-sec6-media .media-body .body-link {
  margin-top: 40px;
  text-align: right;
}
.top-sec6-media .media-body .body-link a {
  margin-right: -15px;
  padding: 1px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.2s linear;
}
.top-sec6-media .media-body .body-link a span {
  padding: 0 15px;
  width: 100%;
  background-color: var(--oc-primary-color);
  font-size: 1.6rem;
  font-family: var(--oc-font-serif);
  line-height: 58px;
  color: #fff;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.top-sec6-media .media-body .body-link a span::after {
  content: "";
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/link_arrow_r_wh2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media (hover: hover) {
  .top-sec6 .body-link a:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 440px) {
  .top-sec6 {
    margin-top: 60px;
  }
  .top-sec6-media {
    margin-top: 60px;
    display: block;
  }
  .top-sec6-media:first-of-type {
    margin-top: 30px;
  }
  .top-sec6-media.pos-l .media-img {
    padding-right: 20px;
  }
  .top-sec6-media.pos-r {
    justify-content: flex-end;
  }
  .top-sec6-media.pos-r .media-img {
    padding-left: 20px;
    order: 1;
  }
  .top-sec6-media.pos-r .media-body {
    order: 2;
  }
  .top-sec6-media .media-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .top-sec6-media .media-img {
    width: 100%;
  }
  .top-sec6-media .media-img img {
    display: block;
  }
  .top-sec6-media .media-body {
    padding: 30px 20px 0;
    width: 100%;
  }
  .top-sec6-media .media-body .body-num {
    font-size: 1.5rem;
  }
  .top-sec6-media .media-body .body-ttl1 {
    font-size: 2.2rem;
  }
  .top-sec6-media .media-body .body-ttl2 {
    margin-top: 20px;
    font-size: 2rem;
  }
  .top-sec6-media .media-body .body-link {
    text-align: center;
  }
  .top-sec6-media .media-body .body-link a {
    margin-right: 0;
    background-color: #fff;
  }
}
/* Works
- - - - - - - - - - - - - - - - - - */
.top-sec7 {
  padding: 150px 0 0;
}
.top-sec7-inner {
  margin-top: 60px;
  overflow: hidden;
}
.top-sec7 .swiper-slide {
  height: auto;
}
.top-sec7 .swiper-slide-item {
  height: 100%;
}
.top-sec7 .swiper-tools {
  margin: 40px auto 0;
  width: 100%;
  height: 42px;
  max-width: 1200px;
  position: relative;
}
.top-sec7 .swiper-scrollbar {
  width: calc(100% - 62px);
  height: 3px;
  background-color: #43567B;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-sec7 .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
}
.top-sec7 .swiper-button-control {
  width: 42px;
  height: 42px;
  background-image: url(../img/top/top_sec7_icon_pause.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: auto;
  right: 0;
  cursor: pointer;
}
.top-sec7 .swiper-button-control.start {
  background-image: url(../img/top/top_sec7_icon_pause.png);
}
.top-sec7 .swiper-button-control.stop {
  background-image: url(../img/top/top_sec7_icon_play.png);
}
.top-sec7-item {
  width: 25%;
  height: 100%;
  background-color: #fff;
  display: block;
  position: relative;
}
.top-sec7-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/common/link_arrow_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.top-sec7-item:hover .item-img {
  opacity: 0.7;
}
.top-sec7-item .item-img {
  aspect-ratio: 380/235;
  transition: opacity 0.2s linear;
}
.top-sec7-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-sec7-item .item-cat {
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 3rem;
  text-align: center;
  background-color: #EFF0F2;
  display: inline-block;
  color: var(--oc-primary-color);
}
.top-sec7-item .item-body {
  padding: 15px 20px 25px;
}
.top-sec7-item .item-body .body-ttl {
  font-size: 2rem;
  font-family: var(--oc-font-serif);
  color: var(--oc-primary-color);
  line-height: 1.5;
}
.top-sec7-item .item-body .body-text {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #2D3442;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-sec7-btn {
  margin: 60px auto 0;
  width: 170px;
  padding: 1px;
  border-radius: 100px;
  display: block;
  transition: all 0.2s linear;
}
.top-sec7-btn span {
  padding: 0 15px;
  width: 100%;
  background-color: var(--oc-primary-color);
  font-size: 1.6rem;
  font-family: var(--oc-font-serif);
  line-height: 58px;
  color: #fff;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.top-sec7-btn span::after {
  content: "";
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/link_arrow_r_wh2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media (hover: hover) {
  .top-sec7-btn:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 440px) {
  .top-sec7 {
    padding: 60px 0 0;
  }
  .top-sec7-inner {
    margin-top: 30px;
    margin-left: 40px;
  }
  .top-sec7 .swiper-tools {
    width: calc(100% - 20px);
    margin-top: 20px;
    height: 30px;
  }
  .top-sec7 .swiper-pagination {
    width: calc(100% - 47px);
  }
  .top-sec7 .swiper-button-control {
    width: 30px;
    height: 30px;
  }
  .top-sec7-item {
    width: 75%;
  }
  .top-sec7-item .item-cat {
    font-size: 1.2rem;
  }
  .top-sec7-item .item-body {
    padding: 10px 20px 20px;
  }
  .top-sec7-item .item-body .body-ttl {
    font-size: 1.5rem;
  }
  .top-sec7-item .item-body .body-text {
    margin-top: 10px;
  }
  .top-sec7-btn {
    margin: 60px auto 0;
    width: 170px;
    padding: 1px;
    border-radius: 100px;
    display: block;
    transition: all 0.2s linear;
  }
  .top-sec7-btn span {
    padding: 0 15px;
    width: 100%;
    background-color: var(--oc-primary-color);
    font-size: 1.6rem;
    font-family: var(--oc-font-serif);
    line-height: 58px;
    color: #fff;
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .top-sec7-btn span::after {
    content: "";
    margin-left: 10px;
    width: 28px;
    height: 28px;
    background-image: url(../img/common/link_arrow_r_wh2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
  }
}
/* page - company
----------------------------------------*/
/* Policy
- - - - - - - - - - - - - - - - - - */
.company-sec1 {
  margin: 60px auto 0;
  width: 100%;
  max-width: 1440px;
}
.company-sec1-media {
  padding-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}
.company-sec1-media .media-img {
  width: 55.5555555556%;
  position: absolute;
  top: 0;
  left: 0;
}
.company-sec1-media .media-body {
  padding: 50px 120px 50px 50px;
  width: 50%;
  background-color: #EFF0F2;
  position: relative;
  z-index: 2;
}
.company-sec1-media .media-body .body-en {
  font-size: 2.4rem;
  font-family: var(--oc-font-en);
  line-height: 1;
  color: var(--oc-primary-color);
}
.company-sec1-media .media-body .body-ttl {
  margin-top: 20px;
  font-size: 3.2rem;
  font-family: var(--oc-font-serif);
  color: var(--oc-primary-color);
}
.company-sec1-media .media-body .body-text {
  margin-top: 25px;
  color: var(--oc-primary-color);
  text-align: justify;
}

@media only screen and (max-width: 1520px) {
  .company-sec1-media .media-body {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1520px) {
  .company-sec1-media .media-body {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 834px) {
  .company-sec1 {
    margin-top: 40px;
  }
  .company-sec1-media {
    padding: 50vw 20px 0;
    display: block;
  }
  .company-sec1-media .media-img {
    padding-right: 40px;
    width: 100%;
  }
  .company-sec1-media .media-body {
    padding: 30px;
    width: 100%;
  }
  .company-sec1-media .media-body .body-en {
    font-size: 1.8rem;
  }
  .company-sec1-media .media-body .body-ttl {
    margin-top: 10px;
    font-size: 2.2rem;
  }
  .company-sec1-media .media-body .body-text {
    margin-top: 25px;
    color: var(--oc-primary-color);
    text-align: justify;
  }
}
/* Greeting
- - - - - - - - - - - - - - - - - - */
.company-sec2 {
  padding-top: 150px;
}
.company-sec2-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-sec2-media .media-img {
  width: 35%;
  position: relative;
}
.company-sec2-media .media-img .img-en {
  font-size: 9rem;
  font-family: var(--oc-font-en);
  line-height: 1;
  color: #8c97ac;
  transform: rotate(-10deg);
  position: absolute;
  top: -5px;
  right: -260px;
}
.company-sec2-media .media-body {
  padding-top: 140px;
  width: 58.3333333333%;
  color: #fff;
}
.company-sec2-media .media-body .body-ttl {
  font-size: 1.4rem;
  color: #8C97AC;
  font-family: var(--oc-font-serif);
  font-weight: 400;
}
.company-sec2-media .media-body .body-ttl2 {
  margin-top: 20px;
}
.company-sec2-media .media-body .body-ttl2 .small,
.company-sec2-media .media-body .body-ttl2 .large {
  font-family: var(--oc-font-serif);
  display: block;
}
.company-sec2-media .media-body .body-ttl2 .small {
  font-size: 2rem;
  color: #fff;
}
.company-sec2-media .media-body .body-ttl2 .large {
  margin-top: 20px;
  font-size: 3.2rem;
}
.company-sec2-media .media-body .body-text {
  margin-top: 30px;
  text-align: justify;
}
.company-sec2-media .media-body .body-name {
  text-align: right;
}
.company-sec2-media .media-body .body-name .small {
  font-size: 1.4rem;
}
.company-sec2-media .media-body .body-name .large {
  font-size: 1.8rem;
}

@media only screen and (max-width: 834px) {
  .company-sec2-media {
    display: block;
  }
  .company-sec2-media .media-img {
    aspect-ratio: 1/1;
    width: 50%;
  }
  .company-sec2-media .media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .company-sec2-media .media-img .img-en {
    font-size: 9rem;
    font-family: var(--oc-font-en);
    line-height: 1;
    color: #8c97ac;
    top: 50%;
    right: -260px;
    transform: translateY(-50%) rotate(-10deg);
  }
  .company-sec2-media .media-body {
    padding-top: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 440px) {
  .company-sec2 {
    padding-top: 60px;
  }
  .company-sec2-media .media-img .img-en {
    font-size: 5.6rem;
    font-family: var(--oc-font-en);
    line-height: 1;
    color: #8c97ac;
    top: 50%;
    right: -160px;
    transform: translateY(-50%) rotate(-10deg);
  }
  .company-sec2-media .media-body {
    padding-top: 30px;
    width: 100%;
  }
  .company-sec2-media .media-body .body-ttl {
    font-size: 1.2rem;
  }
  .company-sec2-media .media-body .body-ttl2 {
    margin-top: 15px;
  }
  .company-sec2-media .media-body .body-ttl2 .small {
    font-size: 1.6rem;
    color: #fff;
  }
  .company-sec2-media .media-body .body-ttl2 .large {
    margin-top: 15px;
    font-size: 2.4rem;
  }
  .company-sec2-media .media-body .body-text {
    margin-top: 20px;
    text-align: justify;
  }
}
/* Company
- - - - - - - - - - - - - - - - - - */
.company-sec3 {
  padding-top: 150px;
}
.company-sec3-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-sec3-ttl .en,
.company-sec3-ttl .ja {
  text-align: left;
}
.company-sec3-body {
  width: 66.6666666667%;
}
.company-sec3-body .body-list {
  margin-bottom: 0;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed #43567B;
}
.company-sec3-body .body-list:first-of-type {
  border-top: 1px solid #43567B;
}
.company-sec3-body .body-list:last-of-type {
  border-bottom-style: solid;
}
.company-sec3-body .body-list dt, .company-sec3-body .body-list dd {
  padding: 35px 0;
}
.company-sec3-body .body-list dt {
  width: 31.25%;
  font-family: var(--oc-font-serif);
}
.company-sec3-body .body-list dd {
  width: 68.75%;
}
.company-sec3-body .body-list dd p:nth-of-type(2), .company-sec3-body .body-list dd p:nth-of-type(3) {
  margin-top: 20px;
}
.company-sec3-body .body-list dd.lh-wide {
  line-height: 2;
}
.company-sec3-body .body-note {
  margin-top: 20px;
  color: #fff;
}
.company-sec3-body .body-note a {
  color: #fff;
  text-decoration: underline;
}
.company-sec3-body .body-note a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 834px) {
  .company-sec3-inner {
    display: block;
  }
  .company-sec3-ttl .en,
  .company-sec3-ttl .ja {
    text-align: center;
  }
  .company-sec3-body {
    margin-top: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 440px) {
  .company-sec3-body .body-list {
    padding: 15px 0;
    display: block;
  }
  .company-sec3-body .body-list dt, .company-sec3-body .body-list dd {
    padding: 0;
    width: 100%;
  }
  .company-sec3-body .body-list dd {
    padding-top: 10px;
  }
}
/* 
- - - - - - - - - - - - - - - - - - */
.company-sec4 {
  padding-top: 150px;
}
.company-sec4-row {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.company-sec4-row::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 55px;
  left: 0;
}
.company-sec4-col {
  width: calc((100% - 60px) / 4);
}
.company-sec4-col .col-year {
  padding-bottom: 20px;
  font-size: 2rem;
  font-family: var(--oc-font-en);
  color: #fff;
  position: relative;
}
.company-sec4-col .col-year::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 100%;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 20px;
}
.company-sec4-col .col-year::after {
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(../img/company/company_sec4_dots.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -85px;
  left: 20px;
}
.company-sec4-col .col-card {
  margin-top: 105px;
  padding: 20px;
  background-color: #294377;
}
.company-sec4-col .col-card .card-date {
  font-size: 1.4rem;
  color: #8C97AC;
  line-height: 1;
}
.company-sec4-col .col-card .card-text {
  margin-top: 10px;
  color: #fff;
}

@media only screen and (max-width: 834px) {
  .company-sec4 {
    padding-top: 60px;
  }
  .company-sec4-row {
    margin-top: 30px;
    padding-bottom: 10px;
    display: block;
  }
  .company-sec4-row::before {
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 75px;
  }
  .company-sec4-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
  }
  .company-sec4-col:first-of-type {
    margin-top: 0;
  }
  .company-sec4-col .col-year {
    width: 75px;
    padding-bottom: 0;
    font-size: 1.6rem;
    align-self: flex-start;
  }
  .company-sec4-col .col-year::before {
    content: "";
    bottom: 10px;
    left: auto;
    right: -5px;
  }
  .company-sec4-col .col-year::after {
    content: "";
    width: 22px;
    height: 10px;
    background-image: url(../img/company/company_sec4_dots_sp.png);
    bottom: 10px;
    left: auto;
    right: -42px;
  }
  .company-sec4-col .col-card {
    margin-top: 40px;
    padding: 20px;
    width: calc(100% - 95px);
    background-color: #294377;
  }
  .company-sec4-col .col-card .card-date {
    font-size: 1.4rem;
    color: #8C97AC;
    line-height: 1;
  }
  .company-sec4-col .col-card .card-text {
    margin-top: 10px;
    color: #fff;
  }
}
/* 
- - - - - - - - - - - - - - - - - - */
.company-sec5 {
  padding-top: 150px;
}
.company-sec5-row {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-sec5-col {
  width: 47.9166666667%;
  border: 1px solid #43567B;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-sec5-col .col-img {
  width: 38.2608695652%;
  aspect-ratio: 1/1;
}
.company-sec5-col .col-body {
  padding: 35px 0;
  width: 56.5217391304%;
  position: relative;
}
.company-sec5-col .col-body .body-label {
  color: #8C97AC;
  font-family: var(--oc-font-serif);
}
.company-sec5-col .col-body .body-text {
  font-size: 2.2rem;
  font-family: var(--oc-font-serif);
  color: #fff;
}
.company-sec5-col .col-body .body-link {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  bottom: 35px;
  right: 35px;
}
.company-sec5-col .col-body .body-link::after {
  content: "";
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_external.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 4px;
}

@media only screen and (max-width: 1000px) {
  .company-sec5-row {
    margin: 80px auto 0;
    width: 100%;
    max-width: 575px;
    display: block;
  }
  .company-sec5-col {
    width: 100%;
  }
  /* .company-sec5-col:last-of-type {
    margin-top: 20px;
  } */
  .company-sec5-col .col-body .body-label {
    color: #8C97AC;
    font-family: var(--oc-font-serif);
  }
  .company-sec5-col .col-body .body-text {
    font-size: 2.2rem;
    font-family: var(--oc-font-serif);
    color: #fff;
  }
  .company-sec5-col .col-body .body-link {
    font-size: 1.5rem;
    color: #fff;
    position: absolute;
    bottom: 35px;
    right: 35px;
  }
  .company-sec5-col .col-body .body-link::after {
    content: "";
    margin-left: 5px;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/icon_external.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
    position: relative;
    top: 4px;
  }
}
@media only screen and (max-width: 834px) {
  .company-sec5 {
    padding-top: 60px;
  }
  .company-sec5-row {
    margin-top: 40px;
  }
  .company-sec5-col {
    width: 100%;
  }
  .company-sec5-col .col-body {
    padding: 25px 0;
  }
  .company-sec5-col .col-body .body-label {
    font-size: 1.2rem;
  }
  .company-sec5-col .col-body .body-text {
    font-size: 1.6rem;
  }
  .company-sec5-col .col-body .body-link {
    font-size: 1.2rem;
    bottom: 25px;
    right: 20px;
  }
  .company-sec5-col .col-body .body-link::after {
    content: "";
    margin-left: 5px;
    width: 16px;
    height: 16px;
    top: 3px;
  }
}
/* 
- - - - - - - - - - - - - - - - - - */
/* page - service
----------------------------------------*/
/* introduction
- - - - - - - - - - - - - - - - - - */
.service-sec1 {
  margin: 60px auto 0;
  width: 100%;
  max-width: 1440px;
}
.service-sec1-media {
  padding-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}
.service-sec1-media .media-img {
  width: 55.5555555556%;
  position: absolute;
  top: 0;
  left: 0;
}
.service-sec1-media .media-body {
  padding: 50px 120px 50px 50px;
  width: 50%;
  background-color: #EFF0F2;
  position: relative;
  z-index: 2;
}
.service-sec1-media .media-body .body-en {
  font-size: 2.4rem;
  font-family: var(--oc-font-en);
  line-height: 1;
  color: var(--oc-primary-color);
}
.service-sec1-media .media-body .body-ttl .small, .service-sec1-media .media-body .body-ttl .large {
  font-family: var(--oc-font-serif);
  color: var(--oc-primary-color);
  display: block;
}
.service-sec1-media .media-body .body-ttl .small {
  margin-top: 20px;
  font-size: 2rem;
}
.service-sec1-media .media-body .body-ttl .large {
  margin-top: 10px;
  font-size: 3.2rem;
}
.service-sec1-media .media-body .body-text {
  margin-top: 25px;
  color: var(--oc-primary-color);
  text-align: justify;
}

@media only screen and (max-width: 1520px) {
  .service-sec1-media .media-body {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1520px) {
  .service-sec1-media .media-body {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 834px) {
  .service-sec1 {
    margin-top: 40px;
  }
  .service-sec1-media {
    padding: 50vw 20px 0;
    display: block;
  }
  .service-sec1-media .media-img {
    padding-right: 40px;
    width: 100%;
  }
  .service-sec1-media .media-body {
    padding: 30px;
    width: 100%;
  }
  .service-sec1-media .media-body .body-en {
    font-size: 1.8rem;
  }
  .service-sec1-media .media-body .body-ttl {
    margin-top: 10px;
  }
  .service-sec1-media .media-body .body-ttl .small {
    font-size: 1.5rem;
  }
  .service-sec1-media .media-body .body-ttl .large {
    font-size: 2.2rem;
  }
  .service-sec1-media .media-body .body-text {
    margin-top: 25px;
    color: var(--oc-primary-color);
    text-align: justify;
  }
}
/* About 
- - - - - - - - - - - - - - - - - - */
.service-sec2 {
  padding-top: 150px;
}
.service-sec2-media {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-sec2-media .media-img {
  aspect-ratio: 56/50;
  width: 46.6666666667%;
  position: relative;
}
.service-sec2-media .media-img img:nth-of-type(1) {
  aspect-ratio: 1/1;
  width: 76.7857142857%;
}
.service-sec2-media .media-img img:nth-of-type(2) {
  aspect-ratio: 3/2;
  width: 53.5714285714%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.service-sec2-media .media-body {
  padding-top: 60px;
  width: 46.6666666667%;
}
.service-sec2-media .media-body .body-ttl {
  font-size: 3.2rem;
  font-family: var(--oc-font-serif);
  color: #fff;
}
.service-sec2-media .media-body .body-text {
  margin-top: 30px;
  color: #fff;
  text-align: justify;
}

@media only screen and (max-width: 834px) {
  .service-sec2 {
    padding-top: 60px;
  }
  .service-sec2-media {
    margin-top: 40px;
    display: block;
  }
  .service-sec2-media .media-img {
    width: 100%;
  }
  .service-sec2-media .media-img img:nth-of-type(1) {
    aspect-ratio: 1/1;
    width: 76.7857142857%;
  }
  .service-sec2-media .media-img img:nth-of-type(2) {
    aspect-ratio: 3/2;
    width: 53.5714285714%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .service-sec2-media .media-body {
    padding-top: 30px;
    width: 100%;
  }
  .service-sec2-media .media-body .body-ttl {
    font-size: 2.4rem;
  }
}
/* Management 
- - - - - - - - - - - - - - - - - - */
.service-sec3 {
  margin-top: 150px;
}
.service-sec3-lead {
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.service-sec3-row {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-sec3-col {
  padding: 40px 0;
  width: 25%;
  border-top: 1px solid #43567B;
  border-bottom: 1px solid #43567B;
  border-left: 1px solid #43567B;
}
.service-sec3-col:nth-of-type(4n), .service-sec3-col:last-of-type {
  border-right: 1px solid #43567B;
}
.service-sec3-col:nth-of-type(n + 5) {
  border-top: none;
}
.service-sec3-col .col-img {
  margin: 0 auto;
  width: 100px;
  display: block;
}
.service-sec3-col .col-text {
  font-family: var(--oc-font-serif);
  color: #fff;
  text-align: center;
}
.service-sec3-col .col-text span {
  font-size: 1.2rem;
  display: block;
}

@media only screen and (max-width: 834px) {
  .service-sec3 {
    margin-top: 60px;
  }
  .service-sec3-lead {
    margin-top: 30px;
    color: #fff;
    text-align: center;
  }
  .service-sec3-row {
    margin-top: 30px;
    justify-content: space-between;
  }
  .service-sec3-col {
    padding: 25px 0;
    width: 50%;
    border-top: 1px solid #43567B;
    border-bottom: 1px solid #43567B;
    border-left: 1px solid #43567B;
  }
  .service-sec3-col:nth-of-type(2n), .service-sec3-col:last-of-type {
    border-right: 1px solid #43567B;
  }
  .service-sec3-col:nth-of-type(n + 3) {
    border-top: none;
  }
  .service-sec3-col .col-img {
    width: 80px;
    display: block;
  }
  .service-sec3-col .col-text {
    margin-top: 15px;
    font-size: 1.2rem;
  }
  .service-sec3-col .col-text span {
    font-size: 1rem;
  }
}
/* Merit 
- - - - - - - - - - - - - - - - - - */
.service-sec4 {
  padding-top: 150px;
}
.service-sec4-media {
  margin: 150px auto 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-sec4-media:first-of-type {
  margin-top: 80px;
}
.service-sec4-media.pos-l {
  justify-content: flex-start;
}
.service-sec4-media.pos-r {
  justify-content: flex-end;
}
.service-sec4-media.pos-r .media-img {
  order: 2;
}
.service-sec4-media.pos-r .media-body {
  padding: 60px 80px 0 0;
  order: 1;
}
.service-sec4-media .media-inner {
  max-width: calc(100% - (100% - 1200px) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-sec4-media .media-img {
  width: 43.75%;
}
.service-sec4-media .media-body {
  padding: 60px 0 0 80px;
  width: 56.25%;
}
.service-sec4-media .media-body .body-ttl .en, .service-sec4-media .media-body .body-ttl .ja {
  display: block;
}
.service-sec4-media .media-body .body-ttl .en {
  font-size: 1.8rem;
  font-family: var(--oc-font-en);
  color: #fff;
}
.service-sec4-media .media-body .body-ttl .ja {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-family: var(--oc-font-serif);
  color: #fff;
}
.service-sec4-media .media-body .body-text {
  margin-top: 20px;
  text-align: justify;
  color: #fff;
}
.service-sec4-media .media-body .body-list {
  list-style-type: none;
  padding-left: 0;
}
.service-sec4-media .media-body .body-list li {
  color: #fff;
}
.service-sec4-media .media-body .body-list li::before {
  content: "";
  margin-right: 10px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  top: -2px;
}

@media only screen and (max-width: 1440px) {
  .service-sec4-media.pos-l .media-body {
    padding: 60px 20px 0 80px;
  }
  .service-sec4-media.pos-r .media-body {
    padding: 60px 80px 0 20px;
  }
}
@media only screen and (max-width: 834px) {
  .service-sec4 {
    padding-top: 60px;
  }
  .service-sec4-media {
    margin: 60px auto 0;
    display: block;
  }
  .service-sec4-media:first-of-type {
    margin-top: 40px;
  }
  .service-sec4-media.pos-l .media-img {
    padding-right: 40px;
  }
  .service-sec4-media.pos-l .media-body {
    padding: 30px 20px 0 20px;
  }
  .service-sec4-media.pos-r .media-img {
    padding-left: 40px;
  }
  .service-sec4-media.pos-r .media-body {
    padding: 30px 20px 0 20px;
  }
  .service-sec4-media .media-inner {
    width: 100%;
    display: block;
  }
  .service-sec4-media .media-img {
    width: 100%;
  }
  .service-sec4-media .media-body {
    padding: 30px 20px 0 20px;
    width: 100%;
  }
  .service-sec4-media .media-body .body-ttl .en {
    font-size: 1.5rem;
  }
  .service-sec4-media .media-body .body-ttl .ja {
    font-size: 2.2rem;
  }
  .service-sec4-media .media-body .body-text {
    margin-top: 20px;
    text-align: justify;
    color: #fff;
  }
  .service-sec4-media .media-body .body-list {
    list-style-type: none;
    padding-left: 0;
    text-indent: -1.4rem;
    margin-left: 1.4rem;
  }
  .service-sec4-media .media-body .body-list li {
    color: #fff;
  }
  .service-sec4-media .media-body .body-list li::before {
    content: "";
    margin: 0 6px 0 3px;
  }
}
/* Works
- - - - - - - - - - - - - - - - - - */
.service-sec5 {
  padding: 150px 0 0;
}
.service-sec5-inner {
  margin-top: 60px;
  overflow: hidden;
}
.service-sec5 .swiper-slide {
  height: auto;
}
.service-sec5 .swiper-slide-item {
  height: 100%;
}
.service-sec5 .swiper-tools {
  margin: 40px auto 0;
  width: 100%;
  height: 42px;
  max-width: 1200px;
  position: relative;
}
.service-sec5 .swiper-scrollbar {
  width: calc(100% - 62px);
  height: 3px;
  background-color: #43567B;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.service-sec5 .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
}
.service-sec5 .swiper-button-control {
  width: 42px;
  height: 42px;
  background-image: url(../img/top/top_sec7_icon_pause.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: auto;
  right: 0;
  cursor: pointer;
}
.service-sec5 .swiper-button-control.start {
  background-image: url(../img/top/top_sec7_icon_pause.png);
}
.service-sec5 .swiper-button-control.stop {
  background-image: url(../img/top/top_sec7_icon_play.png);
}
.service-sec5-item {
  width: 25%;
  height: 100%;
  background-color: #fff;
  display: block;
  position: relative;
}
.service-sec5-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/common/link_arrow_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.service-sec5-item:hover .item-img {
  opacity: 0.7;
}
.service-sec5-item .item-img {
  aspect-ratio: 380/235;
  transition: opacity 0.2s linear;
}
.service-sec5-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-sec5-item .item-cat {
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 3rem;
  text-align: center;
  background-color: #EFF0F2;
  display: inline-block;
  color: var(--oc-primary-color);
}
.service-sec5-item .item-body {
  padding: 15px 20px 25px;
}
.service-sec5-item .item-body .body-ttl {
  font-size: 2rem;
  font-family: var(--oc-font-serif);
  color: var(--oc-primary-color);
  line-height: 1.5;
}
.service-sec5-item .item-body .body-text {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #2D3442;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-sec5-btn {
  margin: 60px auto 0;
  width: 170px;
  padding: 1px;
  border-radius: 100px;
  display: block;
  transition: all 0.2s linear;
}
.service-sec5-btn span {
  padding: 0 15px;
  width: 100%;
  background-color: var(--oc-primary-color);
  font-size: 1.6rem;
  font-family: var(--oc-font-serif);
  line-height: 58px;
  color: #fff;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.service-sec5-btn span::after {
  content: "";
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/link_arrow_r_wh2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media (hover: hover) {
  .top-sec7-btn:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 440px) {
  .service-sec5 {
    padding: 60px 0 0;
  }
  .service-sec5-inner {
    margin-top: 30px;
    margin-left: 40px;
  }
  .service-sec5 .swiper-tools {
    width: calc(100% - 20px);
    margin-top: 20px;
    height: 30px;
  }
  .service-sec5 .swiper-pagination {
    width: calc(100% - 47px);
  }
  .service-sec5 .swiper-button-control {
    width: 30px;
    height: 30px;
  }
  .service-sec5-item {
    width: 75%;
  }
  .service-sec5-item .item-cat {
    font-size: 1.2rem;
  }
  .service-sec5-item .item-body {
    padding: 10px 20px 20px;
  }
  .service-sec5-item .item-body .body-ttl {
    font-size: 1.5rem;
  }
  .service-sec5-item .item-body .body-text {
    margin-top: 10px;
  }
  .service-sec5-btn {
    margin: 60px auto 0;
    width: 170px;
    padding: 1px;
    border-radius: 100px;
    display: block;
    transition: all 0.2s linear;
  }
  .service-sec5-btn span {
    padding: 0 15px;
    width: 100%;
    background-color: var(--oc-primary-color);
    font-size: 1.6rem;
    font-family: var(--oc-font-serif);
    line-height: 58px;
    color: #fff;
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .service-sec5-btn span::after {
    content: "";
    margin-left: 10px;
    width: 28px;
    height: 28px;
    background-image: url(../img/common/link_arrow_r_wh2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
  }
}
/* Flow 
- - - - - - - - - - - - - - - - - - */
.service-sec6 {
  margin-top: 150px;
}
.service-sec6-inner {
  max-width: 850px;
}
.service-sec6-row {
  margin-top: 30px;
  position: relative;
}
.service-sec6-row::before {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 75px;
}
.service-sec6-col {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.service-sec6-col .col-img {
  aspect-ratio: 1/1;
  width: 150px;
  background-color: var(--oc-primary-color);
  border: 1px solid #fff;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
}
.service-sec6-col .col-img img {
  width: 60px;
  height: 60px;
}
.service-sec6-col .col-body {
  width: calc(100% - 200px);
}
.service-sec6-col .col-body .body-num {
  font-size: 1.6rem;
  font-family: var(--oc-font-en);
  color: #fff;
}
.service-sec6-col .col-body .body-ttl {
  margin-top: 10px;
  font-size: 2.4rem;
  font-family: var(--oc-font-serif);
  color: #fff;
}
.service-sec6-col .col-body .body-text {
  margin-top: 10px;
  color: #fff;
}
.service-sec6-banner {
  margin-top: 150px;
  border: 1px solid #43567B;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-sec6-banner .banner-img {
  aspect-ratio: 1/1;
  width: 34.1176470588%;
  align-self: flex-start;
}
.service-sec6-banner .banner-img img {
  display: block;
}
.service-sec6-banner .banner-body {
  padding: 50px 50px 0 0;
  width: 60%;
}
.service-sec6-banner .banner-body .body-ttl {
  font-size: 2.2rem;
  font-family: var(--oc-font-serif);
  line-height: 1;
  color: #fff;
}
.service-sec6-banner .banner-body .body-text {
  margin-top: 20px;
  color: #fff;
}
.service-sec6-banner .banner-body .body-link {
  margin-top: 60px;
  text-align: right;
}
.service-sec6-banner .banner-body .body-link a {
  font-size: 1.5rem;
  font-family: var(--oc-font-serif);
  color: #fff;
}
.service-sec6-banner .banner-body .body-link a::after {
  content: "";
  margin-right: 5px;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/icon_external.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 8px;
}

@media only screen and (max-width: 834px) {
  .service-sec6 {
    margin-top: 60px;
  }
  .service-sec6-inner {
    max-width: 850px;
  }
  .service-sec6-row {
    margin-top: 30px;
    position: relative;
  }
  .service-sec6-row::before {
    height: calc(100% - 160px);
    left: 40px;
  }
  .service-sec6-col {
    margin-top: 30px;
  }
  .service-sec6-col .col-img {
    width: 80px;
  }
  .service-sec6-col .col-img img {
    width: 40px;
    height: 40px;
  }
  .service-sec6-col .col-body {
    width: calc(100% - 95px);
  }
  .service-sec6-col .col-body .body-num {
    font-size: 1.4rem;
  }
  .service-sec6-col .col-body .body-ttl {
    font-size: 1.8rem;
  }
  .service-sec6-col .col-body .body-text {
    font-size: 1.4rem;
    color: #fff;
  }
  .service-sec6-banner {
    margin-top: 60px;
    padding: 30px 20px;
    display: block;
  }
  .service-sec6-banner .banner-img {
    margin: 0 auto;
    width: 130px;
    align-self: flex-start;
  }
  .service-sec6-banner .banner-img img {
    display: block;
  }
  .service-sec6-banner .banner-body {
    margin-top: 30px;
    padding: 0;
    width: 100%;
  }
  .service-sec6-banner .banner-body .body-ttl {
    font-size: 1.6rem;
  }
  .service-sec6-banner .banner-body .body-text {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .service-sec6-banner .banner-body .body-link {
    margin-top: 20px;
    text-align: right;
  }
  .service-sec6-banner .banner-body .body-link a {
    font-size: 1.2rem;
  }
  .service-sec6-banner .banner-body .body-link a::after {
    content: "";
    width: 16px;
    height: 16px;
    top: 3px;
  }
}
/* page - recruit
----------------------------------------*/
/* intro
- - - - - - - - - - - - - - - - - - */
.recruit-sec1 {
  margin-top: 90px;
}
.recruit-sec1-img {
  position: relative;
}
.recruit-sec1-img p {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}
.recruit-sec1-img p span {
  font-size: 5.5rem;
  font-family: var(--oc-font-en);
  color: #fff;
  line-height: 1.2;
  display: block;
}
.recruit-sec1-img p span:last-of-type {
  padding-left: 90px;
}
.recruit-sec1-ttl {
  margin-top: 50px;
  font-size: 2.4rem;
  font-family: var(--oc-font-serif);
  line-height: 1.8;
  color: #fff;
  text-align: center;
}
.recruit-sec1-text {
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.recruit-sec1-media {
  margin: 150px auto 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-sec1-media.pos-l {
  justify-content: flex-start;
}
.recruit-sec1-media.pos-r {
  justify-content: flex-end;
}
.recruit-sec1-media.pos-r .media-img {
  order: 2;
}
.recruit-sec1-media.pos-r .media-body {
  padding: 70px 80px 0 0;
  order: 1;
}
.recruit-sec1-media .media-inner {
  max-width: calc(100% - (100% - 1200px) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-sec1-media .media-img {
  width: 43.75%;
}
.recruit-sec1-media .media-body {
  padding: 70px 0 0 80px;
  width: 56.25%;
}
.recruit-sec1-media .media-body .body-ttl .en, .recruit-sec1-media .media-body .body-ttl .ja {
  display: block;
}
.recruit-sec1-media .media-body .body-ttl .en {
  font-size: 1.8rem;
  font-family: var(--oc-font-en);
  color: #fff;
}
.recruit-sec1-media .media-body .body-ttl .ja {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-family: var(--oc-font-serif);
  color: #fff;
}
.recruit-sec1-media .media-body .body-text {
  margin-top: 20px;
  text-align: justify;
  color: #fff;
}
.recruit-sec1-media .media-body .body-list {
  list-style-type: none;
  padding-left: 0;
}
.recruit-sec1-media .media-body .body-list li {
  color: #fff;
}
.recruit-sec1-media .media-body .body-list li::before {
  content: "";
  margin-right: 10px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  top: -2px;
}

@media only screen and (max-width: 1440px) {
  .recruit-sec1-media.pos-l .media-body {
    padding: 70px 20px 0 80px;
  }
  .recruit-sec1-media.pos-r .media-body {
    padding: 70px 80px 0 20px;
  }
}
@media only screen and (max-width: 834px) {
  .recruit-sec1 {
    margin-top: 90px;
  }
  .recruit-sec1-img p {
    top: 40px;
    left: 30px;
    transform: translateY(0);
  }
  .recruit-sec1-img p span {
    font-size: 4rem;
  }
  .recruit-sec1-img p span:last-of-type {
    padding-left: 30px;
  }
  .recruit-sec1-ttl {
    margin-top: 40px;
    font-size: 1.8rem;
  }
  .recruit-sec1-text {
    margin-top: 35px;
  }
  .recruit-sec1-media {
    margin: 60px auto 0;
    display: block;
  }
  .recruit-sec1-media.pos-l .media-img {
    padding-right: 40px;
  }
  .recruit-sec1-media.pos-r .media-img {
    padding-left: 40px;
  }
  .recruit-sec1-media.pos-r .media-body {
    padding: 30px 20px 0 20px;
  }
  .recruit-sec1-media .media-inner {
    width: 100%;
    display: block;
  }
  .recruit-sec1-media .media-img {
    width: 100%;
  }
  .recruit-sec1-media .media-body {
    padding: 30px 20px 0 20px;
    width: 100%;
  }
  .recruit-sec1-media .media-body .body-ttl .en {
    font-size: 1.5rem;
  }
  .recruit-sec1-media .media-body .body-ttl .ja {
    font-size: 2.2rem;
  }
  .recruit-sec1-media .media-body .body-text {
    margin-top: 20px;
    text-align: justify;
    color: #fff;
  }
  .recruit-sec1-media .media-body .body-list {
    list-style-type: none;
    padding-left: 0;
    text-indent: -1.4rem;
    margin-left: 1.4rem;
  }
  .recruit-sec1-media .media-body .body-list li {
    color: #fff;
  }
  .recruit-sec1-media .media-body .body-list li::before {
    content: "";
    margin: 0 6px 0 3px;
  }
}
/* voice
- - - - - - - - - - - - - - - - - - */
.recruit-sec2 {
  padding-top: 150px;
}
.recruit-sec2-row {
  margin-top: 80px;
  border: 1px solid #43567B;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-sec2-col {
  padding: 30px;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.recruit-sec2-col:first-of-type {
  border-right: 1px solid #43567B;
}
.recruit-sec2-col .col-img {
  aspect-ratio: 1/1;
  width: 32.6923076923%;
}
.recruit-sec2-col .col-body {
  width: 61.5384615385%;
}
.recruit-sec2-col .col-body .body-ttl {
  color: #8C97AC;
}
.recruit-sec2-col .col-body .body-text {
  margin-top: 10px;
  color: #fff;
}
.recruit-sec2-text {
  margin-top: 70px;
  font-size: 2rem;
  font-family: var(--oc-font-serif);
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 834px) {
  .recruit-sec2 {
    padding-top: 60px;
  }
  .recruit-sec2-row {
    margin-top: 40px;
    display: block;
  }
  .recruit-sec2-col {
    width: 100%;
    display: block;
  }
  .recruit-sec2-col:first-of-type {
    border-right: none;
    border-bottom: 1px solid #43567B;
  }
  .recruit-sec2-col .col-img {
    margin: 0 auto;
    aspect-ratio: 1/1;
    width: 170px;
  }
  .recruit-sec2-col .col-body {
    margin-top: 30px;
    width: 100%;
  }
  .recruit-sec2-col .col-body .body-ttl {
    color: #8C97AC;
  }
  .recruit-sec2-col .col-body .body-text {
    margin-top: 10px;
    color: #fff;
  }
  .recruit-sec2-text {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}
/* requrements
- - - - - - - - - - - - - - - - - - */
.recruit-sec3 {
  padding-top: 150px;
}
.recruit-sec3-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-sec3-ttl .en,
.recruit-sec3-ttl .ja {
  text-align: left;
}
.recruit-sec3-body {
  width: 66.6666666667%;
}
.recruit-sec3-body .body-list {
  margin: 0;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed #43567B;
}
.recruit-sec3-body .body-list:first-of-type {
  border-top: 1px solid #43567B;
}
.recruit-sec3-body .body-list:last-of-type {
  border-bottom-style: solid;
}
.recruit-sec3-body .body-list dt, .recruit-sec3-body .body-list dd {
  padding: 35px 0;
}
.recruit-sec3-body .body-list dt {
  width: 31.25%;
  font-family: var(--oc-font-serif);
}
.recruit-sec3-body .body-list dd {
  width: 68.75%;
}
.recruit-sec3-body .body-list dd p:nth-of-type(2), .recruit-sec3-body .body-list dd p:nth-of-type(3) {
  margin-top: 20px;
}
.recruit-sec3-body .body-list dd.lh-wide {
  line-height: 2;
}

@media only screen and (max-width: 834px) {
  .recruit-sec3 {
    padding-top: 60px;
  }
  .recruit-sec3-inner {
    display: block;
  }
  .recruit-sec3-ttl .en,
  .recruit-sec3-ttl .ja {
    text-align: center;
  }
  .recruit-sec3-body {
    margin-top: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 440px) {
  .recruit-sec3-body .body-list {
    padding: 15px 0;
    display: block;
  }
  .recruit-sec3-body .body-list dt, .recruit-sec3-body .body-list dd {
    padding: 0;
    width: 100%;
  }
  .recruit-sec3-body .body-list dd {
    padding-top: 10px;
  }
}

.static-content {
	color: #fff;
}
