@charset "UTF-8";

*::after {
  box-sizing: border-box;
}

/* 基本設定
****************************************/
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  line-height: 0;
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '.';
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

/* 共通
****************************************/
.sp {
  display: none;
}

.pc {
  display: block;
}

.inner {
  width: 96%;
  max-width: 1220px;
  margin: 0 auto;
}

.inner2 {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.inner3 {
  width: 96%;
  max-width: 1020px;
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.gold--bottom {
  background: linear-gradient(180deg, #fff 0%, #E9C866 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold--left {
  background: linear-gradient(90deg, #E9C866 0%, #fff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold--right {
  background: linear-gradient(270deg, #E9C866 0%, #fff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shadow {
  text-shadow: 0px 4px 10px rgba(0, 0, 10, 0.3);
  /* -webkit-text-stroke: 1px transparent; */
}

.ls-small {
  letter-spacing: -15% !important;
}

.title01 {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}

.title01 .small {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 16px;
  color: #7A4065;
  display: block;
  margin-bottom: 10px;
}

.title02 span {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: #14203F;
  display: inline;
  background: linear-gradient(transparent 55%, rgb(20 32 63 / 6%) 45%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.btn01 {
  width: fit-content;
  border-radius: 100px;
  background: linear-gradient(90deg, #574B26 0%, #A9914A 30%, #A9914A 70%, #574B26 100%);
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
}

.btn01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  padding: 15px 40px;
}

.btn01:after {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  -ms-transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  opacity: 0;
  transition: none;
}

.btn01:hover:after {
  left: 130%;
  opacity: 1;
  transition: left 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.btn01 .btn-arrow {
  width: auto;
  height: .7em;
  flex-shrink: 0;
}

.btn02 {
  width: fit-content;
  background: #A9914A;
  border: 1px solid #fff;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.btn02 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 14px 20px;
}

.btn02 .text {
  padding: 0 60px;
}

.btn02:after {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  -ms-transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  opacity: 0;
  transition: none;
}

.btn02:hover:after {
  left: 130%;
  opacity: 1;
  transition: left 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.btn03 {
  width: fit-content;
}

.btn03 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #0F36A3 0%, #14203F 50%);
  padding: 5px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn03 a:hover {
  background: #fff;
  border-color: #14203F;
  background-image: linear-gradient(90deg, #0F36A3 0%, #14203F 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn03 a::after {
  content: "";
  display: inline-block;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/arrow_forward.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: .8em;
  height: .8em;
  flex-shrink: 0;
}

.btn03 a:hover::after {
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/arrow_forward_hover.svg");
  -webkit-text-fill-color: initial;
}

.btn04 {
  width: 200px;
  max-width: 100%;
}

.btn04 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #0F36A3 0%, #14203F 50%);
  padding: 5px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn04 a:hover {
  background: #fff;
  border-color: #14203F;
  background-image: linear-gradient(90deg, #0F36A3 0%, #14203F 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn04 a::after {
  content: "";
  display: inline-block;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/icon_open.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: .8em;
  height: .8em;
  flex-shrink: 0;
}

.btn04 a:hover::after {
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/icon_open_hover.svg");
  -webkit-text-fill-color: initial;
}

.btn05 {
  width: fit-content;
  background: #A9914A;
  border: 1px solid #fff;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 5px 5px 0px 0px #0000004D; */
}

.btn05 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 14px 20px;
}

.btn05 .text {
  padding: 0 60px;
}

.btn05:after {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  -ms-transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  opacity: 0;
  transition: none;
}

.btn05:hover:after {
  left: 130%;
  opacity: 1;
  transition: left 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.btn06 {
  width: 100%;
  background: #A9914A;
  border: 1px solid #fff;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.btn06 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 18px 20px;
}

.btn06 .text {
  padding: 0 10px;
  text-align: center;
  width: 100%;
}

.btn06:after {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  -ms-transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  opacity: 0;
  transition: none;
}

.btn06:hover:after {
  left: 130%;
  opacity: 1;
  transition: left 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

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

  .inner,
  .inner2,
  .inner3 {
    width: 90%;
  }

  .title01 {
    font-size: 32px;
  }

  .title02 span {
    font-size: 24px;
  }

  .btn01 a {
    gap: 15px;
    font-size: 20px;
    padding: 15px 40px;
    line-height: 1.2;
    text-align: left;
  }

  .btn01 .btn-arrow {
    height: 1em;
  }

  .btn02 a {
    font-size: 18px;
    padding: 20px;
  }

  .btn02 .text {
    padding: 0 30px;
  }

  .btn03 a {
    gap: 10px;
    font-size: 14px;
    padding: 5px 20px;
  }

  .btn03 a::after {
    width: 1em;
    height: 1em;
  }

  .btn04 a {
    font-size: 14px;
  }

  .btn04 a::after {
    width: 1em;
    height: 1em;
  }

  .btn05 a {
    font-size: 16px;
    padding: 20px;
  }

  .btn05 .text {
    padding: 0 20px;
  }

  .btn06 a {
    font-size: 18px;
    padding: 20px 15px;
  }

  .btn06 .text {
    padding: 0 10px 0 0;
  }
}

/* header
****************************************/
.header_inner {
  padding: 20px 0 10px;
  position: relative;
  width: 96%;
  max-width: 1220px;
  margin: 0 auto;
}

.header_logo a {
  transition: all .3s;
}

.header_logo a:hover {
  opacity: .8;
}

.header_logo img {
  max-width: 237px;
}

@media screen and (max-width: 768px) {
  .header_inner {
    width: 90%;
    padding: 10px 0 5px;
  }

  .header_logo img {
    max-width: 150px;
  }
}

/* mv
****************************************/
.mv {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  height: 100%;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/top_white.webp"), url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/mv_bg.webp");
  background-position: center top, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, cover;
  z-index: 1;
}

.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/btm_white.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.mv::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 100%;
  height: 100%;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bugyo.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform 3s cubic-bezier(0.25, 1, 0.5, 1), opacity 3s ease;
  transform: translate(calc(-50% + 100%), 0);
}

.mv.is-active::after {
  opacity: 1;
  transform: translate(calc(-50% + 430px), 0);
}

.mv_inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.mv__contents {
  width: 80%;
  display: flex;
  flex-direction: column;
}

.mv__lead {
  text-align: left;
  position: relative;
  z-index: 3;
}

.mv__lead .mv__title {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 78px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

.mv__lead .mv__title .mv__title-shadow,
.mv__lead .mv__title .mv__title-front {
  display: block;
}

.mv__lead .mv__title .mv__title-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  text-shadow:
    0px 0px 1px rgba(255, 255, 255, 0.5),
    0px 0px 16px rgba(0, 0, 10, 0.6),
    0px 0px 34.51px rgba(0, 0, 10, 0.4);
  pointer-events: none;
}

.mv__lead .mv__title .mv__title-front {
  position: relative;
  z-index: 2;
  color: #fff;
}

.mv__lead .mv__title .row01,
.mv__lead .mv__title .row02 {
  display: block;
}

.mv__lead .mv__title .row02 {
  padding-left: 4.2em;
}

.mv__lead .mv__title .big {
  font-size: 92px;
}

.mv__lead .mv__title .kasoku {
  display: inline-block;
  font-style: italic;
  padding-right: 0.1em;
  font-size: 100px;
  padding-bottom: 0.04em;
}

.mv__lead .mv__title .mv__title-front .kasoku {
  background: linear-gradient(178.46deg, #ffffff 49.73%, #e9c866 85.61%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mv__second {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.mv__second__box {
  padding: 20px;
  background: rgb(4 18 38 / 80%);
  position: relative;
}

.mv__second__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 60px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.mv__second__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1px;
  width: 80px;
  height: 60px !important;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.mv__second__box__title {
  background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, #FFFFFF 8%, #FFFFFF 92%, rgba(153, 153, 153, 0) 100%);
  color: #07367A;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -10%;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.mv__second__box__batsu {
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 44px;
  line-height: 110%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mv__second__box__batsu .batsu01,
.mv__second__box__batsu .batsu02 {
  letter-spacing: 0%;
}

.mv__second__share {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 24.29px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}

.mv__second__share__title .text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv__second__share__title .text:after {
  content: "";
  background: #fff;
  height: 1px;
  flex: 1;
}

.mv__second__share__percent {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  padding-right: 0.1em;
  padding-bottom: .6em;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 67.28px;
  line-height: 130%;
  letter-spacing: -0.05em;
  font-style: italic;
}

.mv__second__share__percent-shadow,
.mv__second__share__percent-text {
  display: inline-block;
}

.mv__second__share__percent-shadow {
  user-select: none;
  -webkit-user-select: none;
  position: absolute;
  left: 4px;
  top: 4px;
  color: rgba(0, 0, 0, 0.12);
  text-shadow: none;
  pointer-events: none;
}

.mv__second__share__percent-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(178.46deg, #ffffff 49.73%, #e9c866 85.61%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mv__second__share__percent::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 45%;
  height: .6em;
  background: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/leaf.webp") no-repeat center / contain;
  pointer-events: none;
}

.mv__second__share__percent .big {
  font-size: 108px;
}

.mv__second__share__text {
  margin-top: 10px;
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}

.mv__second__share__text .small {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 5%;
  display: block;
  margin-top: 6px;
}

.mv__btn {
  margin-top: 40px;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 1024px) {
  .mv__lead .mv__title {
    font-size: 55px;
  }

  .mv__lead .mv__title .row02 {
    padding-left: 1.5em;
  }

  .mv__lead .mv__title .big {
    font-size: 66px;
  }

  .mv__lead .mv__title .kasoku {
    font-size: 72px;
  }

  .mv__second__share__percent {
    margin-top: 20px;
    padding-bottom: 0;
    padding-left: .9em;
    padding-right: .9em;
    font-size: 48px;
  }

  .mv__second__share__percent-shadow {
    left: 4px;
    top: 4px;
  }

  .mv__second__share__percent::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    left: 0;
    bottom: auto;
    width: .9em;
    height: 100%;
    background: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/leaf_l.webp") no-repeat center / contain;
  }

  .mv__second__share__percent::after {
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: .9em;
    height: 100%;
    background: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/leaf_r.webp") no-repeat center / contain;
  }

  .mv__second__share__percent .big {
    font-size: 67px;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mv::after {
    background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bugyo_sp.webp");
    z-index: 2;
    left: auto;
    right: 0;
    transform: translateX(100px);
    background-position: right bottom;
  }

  .mv.is-active::after {
    transform: translateX(0);
  }

  .mv_inner {
    width: 90%;
  }

  .mv__contents {
    width: 100%;
  }

  .mv__lead {
    text-align: center;
  }

  .mv__lead .mv__title {
    font-size: 37px;
  }

  .mv__lead .mv__title .row02 {
    padding-left: 1.5em;
  }

  .mv__lead .mv__title .big {
    font-size: 44px;
  }

  .mv__lead .mv__title .kasoku {
    font-size: 48px;
  }

  .mv__second {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .mv__second__box {
    padding: 10px 15px;
    order: 2;
  }

  .mv__second__box::before {
    width: 60px;
    height: 40px;
  }

  .mv__second__box::after {
    width: 60px;
    height: 40px !important;
  }

  .mv__second__box__title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 4px 20px;
  }

  .mv__second__box__batsu {
    font-size: 27px;
  }

  .mv__second__box__batsu img {
    width: 30px;
  }

  .mv__second__share {
    font-size: 27px;
    order: 1;
  }

  .mv__second__share__title {
    font-size: 14px;
  }

  .mv__second__share__percent {
    font-size: 32px;
    margin-top: 8px;
  }

  .mv__second__share__text {
    margin-top: 8px;
    font-size: 14px;
    text-align: left;
  }

  .mv__second__share__text .small {
    font-size: 9px;
    margin-top: 6px;
  }

  .mv__btn {
    width: 100%;
    margin-top: 30px;
  }
}

/* company
****************************************/
.company {
  padding-top: 60px;
  padding-bottom: 60px;
}

.company__inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.company__title {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.company__logo {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.companySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.companySwiper .swiper-slide {
  width: max-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companySwiper .swiper-slide img {
  max-width: 100%;
  height: 60px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .company {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .company__inner {
    width: 90%;
  }

  .company__title {
    font-size: 20px;
  }

  .company__logo {
    gap: 30px;
    margin-top: 20px;
  }

  /* .companySwiper .swiper-slide img {
    height: 80px;
  } */
}

/* achievements
****************************************/

.achievements {
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bg_achievements.webp");
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

.achievements__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.achievements__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  min-height: clamp(23rem, 25vw, 30rem);
}

.achievements__bar {
  width: 1px;
  background: #3A4970;
  height: 100px;
}

.achievements__title {
  padding-bottom: 10px;
  color: #fff;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: inline-block;
  border-bottom: 1px solid #fff;
}

.achievements__percent {
  position: relative;
  display: inline-block;
  overflow: visible;
  font-weight: 700;
  font-style: italic;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  padding: 0 18px 0 10px;
  letter-spacing: -0.05em;
  text-align: center;
  font-size: clamp(34px, 5vw, 70px);
}

.achievements__percent-shadow,
.achievements__percent-text {
  display: inline-block;
  padding-right: 0.12em;
}

.achievements__percent-shadow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  color: transparent;
  text-shadow: 2.56px 2.56px 0 #00000026;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.achievements__percent-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(178.46deg, #ffffff 49.73%, #e9c866 85.61%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.achievements__percent .big {
  font-size: clamp(65px, 9.8vw, 140px);
}

.achievements__text {
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 5%;
  text-align: center;
  font-size: clamp(15px, 1.7vw, 24px);
}

.achievements__text .small {
  display: block;
  font-size: 14px;
  color: #BCBCBC;
}

@media screen and (max-width: 768px) {
  .achievements {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .achievements__box {
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
  }

  .achievements__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 20px;
    min-height: auto;
  }

  .achievements__bar {
    width: 100%;
    height: 1px;
  }

  .achievements__title {
    padding-bottom: 0;
    font-size: 20px;
    border-bottom: none;
    flex: none;
    max-width: 50%;
  }

  .achievements__percent {
    flex: none;
    margin-top: 0;
    max-width: 50%;
    font-size: 34px;
    padding: 0;
  }

  .achievements__percent-shadow {}

  .achievements__percent .big {
    font-size: 65px;
  }

  .achievements__text {
    margin-top: 0;
    font-size: 15px;
    width: 100%;
  }

  .achievements__text .small {
    font-size: 12px;
  }
}

/* what
****************************************/
.what {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bg_what.webp");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 50%;
}

.what__wrap {
  width: 60%;
}

.what .title02 {
  margin-top: 40px;
}

.what__text {
  margin-top: 40px;
}

.what__box {
  margin-top: 150px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.what__box__item {
  flex: 1;
  background: #E9E9E1;
  padding: 40px 30px 30px;
  position: relative;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.what__box__number {
  color: #7A4065;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: italic;
  position: absolute;
  left: 50%;
  top: -.5em;
  transform: translateX(-50%);
}

.what__box__title {
  font-family: Zen Old Mincho;
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.what__box__text {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}

@media screen and (max-width: 768px) {
  .what {
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: 100%;
  }

  .what__wrap {
    width: 100%;
  }

  .what .title02 {
    margin-top: 30px;
  }

  .what__text {
    margin-top: 30px;
    font-size: 16px;
  }

  .what__box {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .what__box__item {
    padding: 30px 20px 20px;
  }

  .what__box__number {
    font-size: 40px;
  }

  .what__box__title {
    font-size: 24px;
  }

  .what__box__text {
    font-size: 16px;
  }
}

/* cta01
****************************************/
.cta01 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bg_cta01.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta01__title {
  color: #fff;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.cta01__text {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
  text-align: center;
  margin-top: 20px;
}

.cta01__box {
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.cta01__box__title {
  color: #A9914A;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 450px;
  max-width: 100%;
}

.cta01__box__title::before,
.cta01__box__title::after {
  content: "";
  background: #A9914A;
  height: 1px;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .cta01 {
    padding-top: 40px;
    padding-bottom: 40px;
    background-position: left 21% center;
  }

  .cta01__title {
    font-size: 32px;
  }

  .cta01__text {
    font-size: 16px;
    text-align: left;
  }

  .cta01__box {
    margin-top: 20px;
    gap: 20px;
  }

  .cta01__box__title {
    font-size: 20px;
  }
}

/* support
****************************************/
.support {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(0deg, rgb(255 255 255 / 30%) 0%, rgb(233 200 102 / 30%) 100%);
}

.support .title01 {
  text-align: center;
}

.support .title02 {
  text-align: center;
  margin-top: 40px;
}

.support__box {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.support__box__item {
  flex: 1;
  background: #152337;
  padding: 40px 30px 30px;
}

.support__box__title {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.support__box__text01 {
  margin-top: 20px;
  font-family: Zen Old Mincho;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  padding: 40px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-height: 19rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support__box__text02 {
  margin-top: 20px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}

@media screen and (max-width: 768px) {
  .support {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .support__box {
    margin-top: 40px;
    gap: 20px;
    flex-direction: column;
  }

  .support__box__item {
    padding: 30px 20px;
  }

  .support__box__title {
    font-size: 24px;
  }

  .support__box__text01 {
    margin-top: 20px;
    font-size: 20px;
    padding: 20px 0;
    min-height: auto;
  }

  .support__box__text02 {
    font-size: 16px;
  }
}

/* tab
****************************************/
.tab {
  padding-top: 80px;
  padding-bottom: 100px;
}

.tab-nav {
  display: flex;
  width: 100%;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  background: #fff;
  border: 1px solid #ccc;
  color: rgba(21, 35, 55, 0.5);
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  padding: 20px;
  transition: all .3s;
}

.tab-btn::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/tab_arw.svg") no-repeat center / contain;
  margin-right: 10px;
}

.tab-btn:hover {
  background-color: #E9E9E1;
  color: #14203F;
}

.tab-btn.active {
  color: #14203F;
  background-color: #E9E9E1;
  border: 1px solid #D5D5CF;
}

.tab-btn.active:before {
  background: none;
  margin-right: 0;
  width: 0;
  height: 0;
}

.tab-btn h2 {
  margin: 0;
  font-weight: 700;
}

.tab-body {
  padding: 50px 50px 100px;
  background-color: #E9E9E1;
}

.tab-content {
  display: none;
  overflow: hidden;
}

.tab-content.active {
  display: block;
}

.tab-body__lead {
  background-color: #14203F;
  padding: 30px;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 5%;
  text-align: center;
  color: #fff;
}

.tab-body__lead .big {
  font-size: 40px;
}

.tab-body__wrap {
  margin-top: 60px;
}

.tab-body__title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tab-body__title .merit {
  background-color: #7A4065;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #E9E9E1;
  transform: skewX(-10deg);
  padding: 10px;
  display: inline-block;
  margin-left: 0.2em;
}

.tab-body__title .merit .big {
  font-size: 40px;
  margin-left: 6px;
}

.tab-body__title .text {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  color: #14203F;
}

.tab-body__title .text::after {
  content: "";
  background: #7A4065;
  height: 1px;
  flex: 1;
}

.tab-body__text {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0%;
}

.tab-body__box {
  margin-top: 30px;
}

.tab-body__box .jc-start {
  justify-content: start;
  display: flex;
  align-items: center;
  width: 100%;
}

.tab-body__box.--col02,
.tab-body__box.--col03 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tab-body__box.--col03 {
  flex-wrap: wrap;
}

.tab-body__box__item {
  background-color: #fff;
  padding: 30px;
  padding: 28px;
  flex: 1;
}

.tab-body__box__item.jc-between {
  justify-content: space-between;
}

.tab-body__box.--col02 .tab-body__box__item,
.tab-body__box.--col03 .tab-body__box__item,
.tab-body__box__item__content01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tab-body__box__title {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 24px;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.tab-body__box__text {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}

.tab-body__box__list {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 5%;
  list-style: none;
  padding-left: 0;
}

.tab-body__box__list li {
  position: relative;
  padding-left: 1.2em;
}

.tab-body__box__list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.tab-body__box__image.border {
  border: 1px solid #E9E9E1;
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-body__box__image.small img {
  max-height: 100px;
}

.tab-body__box__item__content02 {
  display: flex;
  justify-content: end;
  width: 100%;
}

.tab-body__box__caption {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 5%;
}

.tab-body__box__flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tab-body__box__flex img {
  width: 60%;
  height: auto;
  flex-shrink: 0;
}

.tab-body__box__flex__text {
  flex: 1;
}

.tab-body__box__flex__title {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  border-bottom: 1px solid #7A4065;
}

.tab-body__box__flex__list {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 5%;
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.tab-body__box__flex__list li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.6;
}

.tab-body__box__flex__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: .6em;
  height: .6em;
  border-radius: 50%;
  background-color: #7A4065;
}

.tab-body__box__background {
  background: #A9914A1A;
  padding: 10px 16px;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
  text-align: center;
}

.tab-body__box__background .big {
  font-weight: 700;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .tab {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .tab-btn {
    font-size: 18px;
    padding: 20px 9px;
  }

  .tab-btn::before {
    width: 14px;
    height: 14px;
    margin-right: 3px;
  }

  .tab-body {
    padding: 30px 20px;
  }

  .tab-body__lead {
    padding: 20px;
    font-size: 22px;
  }

  .tab-body__lead .big {
    font-size: 28px;
  }

  .tab-body__title {
    gap: 10px;
    flex-direction: column;
  }

  .tab-body__title .merit {
    font-size: 20px;
    padding: 7px 10px;
  }

  .tab-body__title .merit .big {
    font-size: 32px;
    margin-left: 4px;
  }

  .tab-body__title .text {
    font-size: 24px;
    text-align: center;
    gap: 0;
  }

  .tab-body__title .text::after {
    background: none;
    width: 0;
    height: 0;
  }

  .tab-body__text {
    font-size: 16px;
  }

  .tab-body__box.--col02,
  .tab-body__box.--col03 {
    flex-direction: column;
    gap: 20px;
  }

  .tab-body__box.--col02 .tab-body__box__item,
  .tab-body__box.--col03 .tab-body__box__item {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .tab-body__box__item__content01 {
    flex-direction: column;
    gap: 10px;
  }

  .tab-body__box__title {
    font-size: 20px;
  }

  .tab-body__box__text {
    font-size: 14px;
  }

  .tab-body__box__list {
    font-size: 12px;
  }

  .tab-body__box__caption {
    font-size: 12px;
  }

  .tab-body__box__flex {
    gap: 20px;
    flex-direction: column;
  }

  .tab-body__box__flex img {
    width: 100%;
  }

  .tab-body__box__flex__title {
    font-size: 14px;
  }

  .tab-body__box__flex__list {
    font-size: 14px;
    margin-top: 8px;
  }

  .tab-body__box__flex__list li {
    font-size: 14px;
  }

  .tab-body__box__background {
    padding: 20px;
    font-size: 14px;
  }

  .tab-body__box__background .big {
    font-size: 18px;
  }
}

/* ipo_expert
****************************************/
.ipo_expert__compass {
  background-color: #fff;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: space-between;
}

.ipo_expert__compass01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
  border: 1px solid #E9E9E1;
  width: 40%;
}

.ipo_expert__compass01 img {
  max-width: 237px;
}

.ipo_expert__compass02 {
  flex: 1;
}

.ipo_expert__compass02__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ipo_expert__compass02__item {
  background: #14203F;
  width: calc(50% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(20px, 2vw, 25px) clamp(5px, 1.6vw, 20px);
  box-sizing: border-box;
  overflow: hidden;
}

.ipo_expert__compass02__item__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.4em;
  margin-bottom: 6px;
}

.ipo_expert__compass02__item__text {
  position: relative;
  display: inline-block;
  font-size: clamp(20px, 2.5vw, 32px);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  padding: 0 0.14em 0 0;
  max-width: 100%;
}

.ipo_expert__compass02__item__text-shadow,
.ipo_expert__compass02__item__text-front {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding-right: 0.08em;
}

.ipo_expert__compass02__item__text-shadow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  color: transparent;
  text-shadow: 2.56px 2.56px 0 #00000026;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.ipo_expert__compass02__item__text-front {
  position: relative;
  z-index: 2;
  background: linear-gradient(178.46deg, #ffffff 49.73%, #e9c866 85.61%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ipo_expert__compass02__item__text .big01 {
  font-size: clamp(40px, 5vw, 65px);
}

.ipo_expert__compass02__item__text .small01 {
  font-size: clamp(26px, 2.5vw, 32px);
}

.ipo_expert__compass02__item__text .tate {
  font-size: clamp(18px, 2vw, 24px);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-style: normal;
  line-height: 1;
  margin-right: 6px;
  transform: skewX(-10deg);
  transform-origin: center bottom;
}

.ipo_expert__compass02__item__text-front .tate {
  background: linear-gradient(178.46deg, #ffffff 49.73%, #e9c866 85.61%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ipo_expert__compass02__item__text-shadow .tate {
  color: transparent;
  text-shadow: 2.56px 2.56px 0 #00000026;
}

.ipo_expert__compass02__caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 10px;
}

.ipo_expert__btn__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.ipo_expert__support {
  background-color: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipo_expert__support__border {
  border: 1px solid #E9E9E1;
  padding: 30px 40px;
  max-width: 715px;
}

.ipo_expert__support__title {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.ipo_expert__support__image {
  margin-top: 20px;
}

.ipo_expert__support__text {
  margin-top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 5%;
  text-align: center;
}

.ipo_expert__alliance__title {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.ipo_expert__alliance__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 30px;
}

.ipo-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
  overflow: visible !important;
}

.ipoSwiper {
  width: 100%;
  overflow: visible !important;
}

.ipoSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.ipoSwiper .swiper-slide {
  width: max-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipoSwiper .swiper-slide img {
  height: 100px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.ipo-button-prev,
.ipo-button-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipo-button-prev {
  left: 20px;
}

.ipo-button-next {
  right: 20px;
}

.ipo-button-prev img,
.ipo-button-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ipo-button-prev::after,
.ipo-button-next::after {
  content: "";
}

@media screen and (max-width: 768px) {
  .ipo_expert__compass {
    padding: 20px;
    flex-direction: column;
  }

  .ipo_expert__compass01 {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .ipo_expert__compass02__item {
    width: 100%;
    padding: 20px 16px;
  }

  .ipo_expert__support {
    padding: 30px 20px;
  }

  .ipo_expert__support__border {
    padding: 0;
    border: none;
  }

  .ipo_expert__support__border__sp {
    margin-top: 20px;
    border: 1px solid #E9E9E1;
    padding: 10px 20px 20px;
  }

  .ipo_expert__support__title {
    font-size: 20px;
  }

  .ipo_expert__support__image {
    margin-top: 20px;
  }

  .ipo_expert__support__text {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 14px;
    text-align: left;
    border-top: 1px solid #E9E9E1;
  }

  .ipo_expert__alliance__title {
    font-size: 20px;
  }

  .ipo_expert__alliance__text {
    margin-top: 20px;
    text-align: left;
    font-size: 16px;
  }

  .ipo-slider-wrapper {
    margin: 20px auto 0;
  }

  .ipoSwiper .swiper-slide img {
    height: 80px !important;
  }

  .ipo-button-prev {
    left: 10px;
  }

  .ipo-button-next {
    right: 10px;
  }
}

/* cta02
****************************************/
.cta02 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bg_cta02.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta02__lead {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.cta02__box {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cta02__item {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px 50px;
  flex: 1;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-direction: column;
}

.cta02__item__title {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #A9914A;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta02__item__title::before,
.cta02__item__title::after {
  content: "";
  background: #A9914A;
  height: 1px;
  flex: 1;
}

.cta02__item__title .small {
  font-size: 24px;
}

.cta02__item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .cta02 {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .cta02__lead {
    font-size: 32px;
  }

  .cta02__box {
    margin-top: 20px;
    gap: 10px;
    flex-direction: column;
  }

  .cta02__item {
    padding: 30px 20px 20px;
    gap: 20px;
  }

  .cta02__item__title {
    font-size: 22px;
    gap: 10px;
  }

  .cta02__item__title .small {
    font-size: 16px;
  }

  .cta02__item__text {
    font-size: 16px;
    text-align: left;
  }
}

/* case
****************************************/
.case {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #E9E9E1;
}

.case .title01 {
  text-align: center;
}

.case-slider-container {
  position: relative;
  width: 100%;
  margin: 40px 0 auto;
  padding: 0 90px;
  box-sizing: border-box;
}

.caseSwiper {
  width: 100%;
  overflow: hidden;
}

.case__slide {
  padding: 60px 50px 50px;
  border-top: 10px solid #14203F;
  background-color: #fff;
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.case__slide__upper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.case__slide__image,
.case__slide__info {
  flex: 1;
}

.case__slide__info__title {
  font-family: Zen Old Mincho;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  border-bottom: 1px solid #14203F;
  padding-bottom: 6px;
}

.case__slide__info__dl {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  row-gap: 10px;
  column-gap: 10px;
}

.case__slide__info__dl dt {
  white-space: nowrap;
  padding: 2px 10px;
  color: #fff;
  background-color: #14203F;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  height: fit-content;
}

.case__slide__info__dl dd {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}

.case__slide__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}

.case__slide__btn {
  display: flex;
  justify-content: end;
}

.case-button-prev,
.case-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
}

.case-button-prev {
  left: 0;
}

.case-button-next {
  right: 0;
}

.case-button-prev img,
.case-button-next img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .case {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .case-slider-container {
    margin: 30px 0 auto;
    padding: 0;
  }

  .case__slide {
    padding: 20px;
  }

  .case__slide__upper {
    gap: 10px;
    flex-direction: column;
  }

  .case__slide__info__dl dd {
    font-size: 14px;
  }

  .case-button-prev,
  .case-button-next {
    top: 80px;
    transform: none;
  }

  .case-button-prev {
    left: -10px;
  }

  .case-button-next {
    right: -10px;
  }
}

/* faq
****************************************/
.faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

.faq .title01 {
  text-align: center;
}

.faq__contents {
  margin-top: 40px;
}

.faq__wrap {
  background-color: #E9E9E1;
  padding: 30px;
}

.faq__wrap:not(:first-child) {
  margin-top: 30px;
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #14203F;
  padding-bottom: 10px;
}

.faq__q__icon {
  color: #A9914A;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}

.faq__q__text {
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #14203F;
}

.faq__a {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .faq__contents {
    margin-top: 30px;
  }

  .faq__wrap {
    padding: 20px;
  }

  .faq__wrap:not(:first-child) {
    margin-top: 10px;
  }

  .faq__q {
    gap: 8px;
    padding-bottom: 8px;
  }

  .faq__q__text {
    font-size: 18px;
  }

  .faq__a {
    font-size: 14px;
  }
}

/* cta03
****************************************/
.cta03 {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/top_white.webp"), url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bg_cta03.webp");
  background-position: center top, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, cover;
  z-index: 1;
}

.cta03::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/btm_white.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 3;
  pointer-events: none;
}

.cta03::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bugyo.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform 3s cubic-bezier(0.25, 1, 0.5, 1), opacity 3s ease;
  transform: translate(calc(-50% + 100%), 0);
}

.cta03.is-active::after {
  opacity: 1;
  transform: translate(calc(-50% + 450px), 0);
}

.cta03__lead {
  position: relative;
  z-index: 4;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.cta03__lead-shadow,
.cta03__lead-front {
  display: block;
}

.cta03__lead-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  text-shadow: 0px 4px 10px rgba(0, 0, 10, 0.3);
  pointer-events: none;
}

.cta03__lead-front {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta03__lead .big {
  font-size: 45px;
}

.cta03__lead .colored {
  background: linear-gradient(90deg, #e9c866 0%, #fff 30%, #e9c866 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cta03__box__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.cta03__box {
  padding: 40px 50px;
  background-color: rgba(0, 0, 0, 0.7);
  width: fit-content;
}

.cta03__box__title {
  position: relative;
  z-index: 1;
  color: #A9914A;
  font-family: Zen Old Mincho;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.cta03__box__text {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
  text-align: center;
  color: #fff;
}

.cta03__box__btn {
  position: relative;
  z-index: 4;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.cta03__box__btn a {
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .cta03 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta03::after {
    background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bugyo_sp.webp");
    left: auto;
    right: 0;
    background-position: right bottom;
    background-size: contain;
    transform: translateX(100%);
  }

  .cta03.is-active::after {
    transform: translateX(0);
  }

  .cta03__lead {
    font-size: 24px;
  }

  .cta03__lead .big {
    font-size: 32px;
  }

  .cta03__lead-shadow {
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.85),
      0 6px 14px rgba(0, 0, 0, 0.7),
      0 12px 32px rgba(0, 0, 0, 0.55),
      0 0 46px rgba(0, 0, 0, 0.45);
  }

  .cta03__box__wrap {
    margin-top: 15px;
  }

  .cta03__box {
    padding: 20px;
  }

  .cta03__box__title {
    font-size: 22px;
    text-align: left;
    width: 80%;
  }

  .cta03__box__text {
    margin-top: 10px;
    text-align: left;
    width: 70%;
  }

  .cta03__box__btn {
    margin-top: 30px;
  }

  .cta03__box__btn a {
    font-size: 17px;
  }

  .cta03__box__btn .text {
    padding: 0 10px 0 0;
  }
}

/* related
****************************************/
.related {
  padding-top: 100px;
  padding-bottom: 90px;
  background-image: url("https://www.obc.co.jp/hubfs/obc/v1/images/special/ipo/bugyo-ipo/bg_related.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.related__contens {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.related__wrap {
  background-color: #E9E9E1;
  padding: 70px 40px 40px;
  position: relative;
}

.related__title {
  position: absolute;
  top: -1em;
  min-width: 330px;
  transform: skewX(-10deg);
  padding: 14px 30px;
  display: inline-block;
  background-color: #14203F;
  font-family: Zen Old Mincho;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}

.related__flex {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.related__flex__image {
  max-width: 300px;
}

.related__flex__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related__flex__content .upper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related__flex__content__title {
  font-family: Zen Old Mincho;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  border-bottom: 1px solid #14203F;
  padding-bottom: 10px;
}

.related__flex__content__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}

.related__flex__content__btn {
  display: flex;
  justify-content: end;
}

.related__flex__content__btn .btn03 {
  min-width: 180px;
}

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

@media screen and (max-width: 768px) {
  .related {
    padding-top: 40px;
    padding-bottom: 40px;
    background-position: bottom center;
    background-size: 200% auto;
  }

  .related__contens {
    margin-top: 50px;
  }

  .related__wrap {
    padding: 40px 20px 20px;
  }
  
  .related__wrap:nth-child(2) {
    padding: 90px 20px 20px;
  }

  .related__title {
    font-size: 24px;
    min-width: 0;
    width: 90%;
    padding: 10px 20px;
  }

  .related__flex {
    flex-direction: column;
    gap: 20px;
  }

  .related__flex__content,
  .related__flex__content .upper {
    gap: 10px;
  }
}