@charset "UTF-8";
:root {
  --color-primary: #0081CC;
  --color-lightblue: #EEF9FE;
  --color-black: #333;
  --color-orange: #FE9C00;
}

html {
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

.bugyo-end {
  padding-top: 100px;
  line-height: 1.3;
}
.bugyo-end section {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1140px) {
  .bugyo-end section {
    scroll-margin-top: 60px;
  }
}
@media screen and (max-width: 1140px) {
  .bugyo-end {
    padding-top: 60px;
  }
}
@media screen and (max-width: 819px) {
  .bugyo-end {
    font-size: 16px;
  }
}

.wrapper {
  max-width: 1060px;
  margin: 0 auto;
}

.sponly {
  display: none;
}
@media screen and (max-width: 819px) {
  .sponly {
    display: block;
  }
}

.titlearea {
  text-align: center;
}
.titlearea span {
  color: var(--color-primary);
}
.titlearea h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 35px;
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .titlearea h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.titlearea p {
  line-height: 1.7;
}

.button {
  border-radius: 80px;
  font-size: 20px;
  color: #fff;
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 819px) {
  .button {
    font-size: 15px;
    padding: 20px 20px 20px 0;
  }
}
.button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_arrow.svg) no-repeat center center;
  transition: 0.3s;
}
@media screen and (max-width: 819px) {
  .button::after {
    right: 10px;
  }
}

.button_yellow {
  background: var(--color-orange);
}
@media (hover: hover) {
  .button_yellow:hover {
    background: #FE6A00;
  }
  .button_yellow:hover::after {
    right: 13px;
  }
}

.button_blue {
  background: var(--color-primary);
}
@media (hover: hover) {
  .button_blue:hover {
    background: #FE6A00;
  }
  .button_blue:hover::after {
    right: 13px;
  }
}

.bg-blue {
  background-color: var(--color-lightblue);
}

.lp-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}
@media screen and (max-width: 1140px) {
  .lp-header {
    height: 60px;
  }
}
.lp-header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 1140px) {
  .lp-header-logo {
    width: 72px;
  }
}
.lp-header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  flex: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1140px) {
  .lp-header-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-lightblue);
    width: 100%;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 0 40px;
  }
}
.lp-header-menu nav {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1140px) {
  .lp-header-menu nav {
    height: auto;
    margin-bottom: 20px;
  }
}
.lp-header-menu nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2%;
  margin-right: 3%;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 1140px) {
  .lp-header-menu nav ul {
    display: block;
    text-align: center;
    margin-right: 0;
    height: auto;
    margin-top: -40px;
  }
}
.lp-header-menu nav ul li {
  justify-content: center;
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  min-width: 84px;
  height: 100%;
}
@media screen and (max-width: 1140px) {
  .lp-header-menu nav ul li {
    font-size: 16px;
  }
  .lp-header-menu nav ul li br {
    display: none;
  }
}
.lp-header-menu nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .lp-header-menu nav ul li a {
    height: auto;
    padding: 15px;
    display: block;
  }
}
.lp-header-menu nav ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .lp-header-menu nav ul li a:hover::before {
    width: 100%;
  }
}
.lp-header_btn {
  margin-right: 2%;
}
@media screen and (max-width: 1140px) {
  .lp-header_btn {
    width: 100%;
    margin-bottom: 20px;
  }
  .lp-header_btn br {
    display: none;
  }
}
.lp-header_btn a {
  font-size: 14px;
  background-color: var(--color-orange);
  border-radius: 50px;
  display: block;
  color: #fff;
  text-align: center;
  padding: 5% 3%;
  min-width: 181px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 1140px) {
  .lp-header_btn a {
    font-size: 16px;
    padding: 20px;
  }
}
@media (hover: hover) {
  .lp-header_btn a:hover {
    background: #FE6A00;
  }
}
@media screen and (max-width: 1140px) {
  .lp-header_tel {
    width: 100%;
  }
}
.lp-header_tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  padding: 5% 0;
  min-width: 208px;
  gap: 2%;
  transition: 0.3s;
}
@media screen and (max-width: 1140px) {
  .lp-header_tel a {
    padding: 15px 20px;
  }
}
@media (hover: hover) {
  .lp-header_tel a:hover {
    color: var(--color-orange);
  }
}
.lp-header_tel a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_tel_black.svg) no-repeat;
  background-size: 100%;
}
.lp-header_toggle {
  display: none;
}
@media screen and (max-width: 1140px) {
  .lp-header_toggle {
    display: block;
    position: absolute;
    z-index: 2;
    top: 17px;
    right: 20px;
  }
  .lp-header_toggle button {
    width: 30px;
    height: 30px;
    background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_humberger.svg) no-repeat;
  }
}
.lp-header.js-open .lp-header-menu {
  display: flex;
}
.lp-header.js-open .lp-header_toggle button {
  background-image: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_close.svg);
}

.lp-mainvisual {
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/bg_mv.webp) no-repeat;
  background-size: cover;
  height: 370px;
  text-align: center;
  padding: 80px 20px;
}
@media screen and (max-width: 1140px) {
  .lp-mainvisual {
    padding-top: 60px;
  }
}
@media screen and (max-width: 819px) {
  .lp-mainvisual {
    height: auto;
    padding-top: 40px;
    padding-bottom: 90px;
  }
}
.lp-mainvisual p {
  background: #fff;
  border-radius: 5px;
  font-size: 24px;
  color: var(--color-primary);
  font-weight: bold;
  padding: 1% 0;
  max-width: 507px;
  margin: 0 auto;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
@media screen and (max-width: 819px) {
  .lp-mainvisual p {
    font-size: 18px;
    padding: 8px 0 10px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
}
.lp-mainvisual h2 {
  color: #fff;
  font-size: 54px;
  font-weight: bold;
  letter-spacing: 2px;
}
.lp-mainvisual h2 span {
  margin-left: 25px;
}
@media screen and (max-width: 1140px) {
  .lp-mainvisual h2 {
    font-size: 48px;
  }
  .lp-mainvisual h2 br {
    display: block;
  }
}
@media screen and (max-width: 819px) {
  .lp-mainvisual h2 {
    font-size: 28px;
    line-height: 1.5;
  }
  .lp-mainvisual h2 span {
    display: block;
    margin: 0;
  }
}

.section01 {
  background: linear-gradient(to bottom, transparent 0 60px, #EEF9FE 60px);
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  margin-top: -60px;
  padding: 0 20px 68px;
}
@media screen and (max-width: 1140px) {
  .section01 {
    font-size: 16px;
    padding-bottom: 40px;
  }
}
.section01 span {
  color: var(--color-primary);
  font-weight: bold;
}
.section01 .wrapper {
  background: #FFF;
  border-radius: 10px;
  padding: 35px 83px;
}
@media screen and (max-width: 819px) {
  .section01 .wrapper {
    padding: 30px 15px;
  }
}
.section01 p:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 819px) {
  .section01 p:not(:last-child) {
    margin-bottom: 25px;
  }
}

.section02 {
  background: linear-gradient(to bottom, #EEF9FE 0%, #EEF9FE 50%, transparent 50%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
}
.section02 .wrapper {
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/section2_bg.webp) no-repeat center top;
  background-size: contain;
  border-radius: 5px;
  overflow: hidden;
  padding: 5% 3.3% 10%;
}
@media screen and (max-width: 1140px) {
  .section02 .wrapper {
    padding: 5% 3.3% 10%;
    background-size: 100%;
  }
}
@media screen and (max-width: 819px) {
  .section02 .wrapper {
    background-size: cover;
    padding: 40px 20px 10%;
  }
}
@media screen and (max-width: 1140px) {
  .section02 .titlearea p br {
    display: none;
  }
}
.section02 ul {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 819px) {
  .section02 ul {
    flex-direction: column;
  }
}
.section02 ul li {
  width: 48%;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px 3%;
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .section02 ul li {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 10px 15px;
  }
}
.section02 ul li h3 {
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1140px) {
  .section02 ul li h3 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 819px) {
  .section02 ul li h3 {
    font-size: 18px;
  }
}
.section02 ul li p {
  color: #333;
  font-size: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1140px) {
  .section02 ul li p {
    font-size: 16px;
  }
}
@media screen and (max-width: 819px) {
  .section02 ul li p {
    margin-bottom: 5px;
  }
}
.section02 ul li span {
  display: block;
  text-align: center;
  font-size: 40px;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 1140px) {
  .section02 ul li span {
    font-size: 28px;
  }
}

.section03 {
  padding: 60px 20px 95px;
}
@media screen and (max-width: 819px) {
  .section03 {
    padding: 40px 20px 40px;
  }
}
.section03 h2 {
  margin-bottom: 10px;
}
.section03_logos {
  margin-top: 34px;
  background: #fff;
  border: solid 3px var(--color-primary);
  padding: 3.9% 20px;
  border-radius: 5px;
}
@media screen and (max-width: 819px) {
  .section03_logos {
    margin-top: 20px;
  }
}
.section03_logos ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7%;
  flex-wrap: wrap;
}
@media screen and (max-width: 819px) {
  .section03_logos li {
    width: 40%;
    margin-bottom: 10px;
  }
}
.section03_logos p {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 1140px) {
  .section03_logos p {
    font-size: 18px;
  }
}
@media screen and (max-width: 819px) {
  .section03_logos p {
    font-size: 16px;
  }
}
.section03_notice {
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
}

.section04 {
  background-color: var(--color-lightblue);
  padding: 110px 20px 100px;
}
@media screen and (max-width: 819px) {
  .section04 {
    padding: 40px 20px 40px;
  }
}
.section04 h2 {
  line-height: 1.5;
}
.section04_risk {
  margin-top: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 819px) {
  .section04_risk {
    margin-bottom: 40px;
  }
}
.section04_risk ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 819px) {
  .section04_risk ul {
    display: block;
  }
}
.section04_risk ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 30%;
  line-height: 1.3;
}
@media screen and (max-width: 819px) {
  .section04_risk ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.section04_risk ul li img {
  margin-bottom: 25px;
}
@media screen and (max-width: 819px) {
  .section04_risk ul li img {
    width: 40%;
    margin: 0 auto 20px;
  }
}
.section04_risk ul li h3 {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 819px) {
  .section04_risk ul li h3 {
    font-size: 20px;
  }
}
.section04_office-title {
  text-align: center;
  margin: 0 auto 20px;
}
.section04_office-title h3 {
  font-size: 24px;
  display: inline-block;
  line-height: 1.5;
  padding: 0 3% 50px;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/line.svg) no-repeat bottom center;
  max-width: 714px;
}
.section04_office-title h3 span {
  color: var(--color-primary);
}
@media screen and (max-width: 819px) {
  .section04_office-title h3 {
    font-size: 18px;
    padding-bottom: 30px;
    background-size: 100%;
  }
}
.section04_office_list {
  background: #fff;
  border-radius: 5px;
  padding: 47px 30px 25px;
  margin-bottom: 48px;
}
@media screen and (max-width: 819px) {
  .section04_office_list {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}
.section04_office_list dl {
  max-width: 832px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.section04_office_list dl dt {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 819px) {
  .section04_office_list dl dt {
    font-size: 19px;
  }
}
.section04_office_list dl dt span {
  color: var(--color-primary);
}
.section04_office_list dl dd {
  margin-bottom: 13px;
  position: relative;
  padding-left: 27px;
}
.section04_office_list dl dd:nth-child(even) {
  width: 47.3%;
}
@media screen and (max-width: 819px) {
  .section04_office_list dl dd:nth-child(even) {
    width: 100%;
  }
}
.section04_office_list dl dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_circlecheck.svg) no-repeat;
  background-size: 100%;
}
.section04_notice {
  border: solid #DA0000 5px;
  border-radius: 5px;
  padding: 35px 30px;
  background: #fff;
  text-align: center;
}
.section04_notice h3 {
  color: #DA0000;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 819px) {
  .section04_notice h3 {
    font-size: 20px;
  }
}
.section04_notice p {
  line-height: 1.5;
}
.section04_notice p span {
  text-decoration: underline;
}

.section05 {
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/CTA_bg.webp) no-repeat;
  background-size: cover;
  padding: 64px 20px 70px;
  position: relative;
}
@media screen and (max-width: 819px) {
  .section05 {
    padding: 40px 20px;
  }
}
.section05::before {
  content: "";
  position: absolute;
  width: 134px;
  height: 45px;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/section05_top.svg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 819px) {
  .section05::before {
    width: 70px;
    height: 20px;
  }
}
.section05 .wrapper {
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  align-items: center;
}
@media screen and (max-width: 819px) {
  .section05 .wrapper {
    display: block;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 819px) {
  .section05_img {
    width: 60%;
    margin: 0 auto 15px;
  }
}
.section05_text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  .section05_text {
    width: 70%;
  }
}
@media screen and (max-width: 819px) {
  .section05_text {
    width: 100%;
  }
}
.section05_text p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 44px;
}
@media screen and (max-width: 1140px) {
  .section05_text p {
    font-size: 18px;
  }
}
@media screen and (max-width: 819px) {
  .section05_text p {
    margin-bottom: 20px;
  }
  .section05_text p br {
    display: none;
  }
}
.section05_text a {
  width: 88%;
}
@media screen and (max-width: 819px) {
  .section05_text a {
    width: 100%;
  }
}

.section06 {
  padding: 112px 20px 100px;
}
@media screen and (max-width: 819px) {
  .section06 {
    padding: 40px 20px;
  }
}
.section06_figure {
  max-width: 978px;
  margin: 41px auto 0;
}
.section06_figure img {
  width: 100% !important;
}
@media screen and (max-width: 819px) {
  .section06_figure {
    overflow-x: scroll;
    margin: 40px -20px 0 0;
  }
  .section06_figure figure {
    display: block;
    width: 820px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 819px) {
  .scroll-container {
    position: relative;
  }
  .scroll-container.js-hide::before {
    opacity: 0;
  }
  .scroll-container::before {
    content: "";
    width: 132px;
    height: 100px;
    position: absolute;
    background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/scroll_img.svg) no-repeat;
    background-size: 100%;
    top: 50%;
    left: calc(50% - 10px);
    transition: 0.1s;
    transform: translate(-50%, -50%);
  }
}
.section07 {
  padding: 110px 20px 80px;
}
@media screen and (max-width: 819px) {
  .section07 {
    padding: 40px 20px;
  }
}
.section07 .titlearea {
  margin-bottom: 43px;
}
@media screen and (max-width: 819px) {
  .section07 .titlearea span {
    display: block;
    line-height: 1.5;
  }
}
.section07_box {
  max-width: 966px;
  margin: 0 auto 53px;
}
@media screen and (max-width: 819px) {
  .section07_box {
    margin-bottom: 30px;
  }
}
.section07_box:nth-child(2) h3::before {
  content: "例02";
}
.section07_box h3 {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 819px) {
  .section07_box h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.section07_box h3::before {
  content: "例01";
  color: #fff;
  background: var(--color-primary);
  font-size: 18px;
  line-height: 1;
  padding: 8px 18px 8px 10px;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
  margin-right: 20px;
  letter-spacing: 1px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 819px) {
  .section07_box h3::before {
    display: block;
    width: 75px;
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.section07_box h3 span {
  color: var(--color-primary);
}
.section07_box h3 .osusume {
  background: #FBE0DD;
  border-radius: 100px;
  color: #DA0000;
  line-height: 1;
  padding: 2px 10px;
  margin-left: 20px;
  display: inline-block;
  font-size: 16px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 819px) {
  .section07_box h3 .osusume {
    margin-left: 0;
    top: 0;
    display: inline-flex;
    justify-content: center;
    padding-bottom: 4px;
    font-size: 14px;
  }
}
.section07_box p {
  line-height: 1.5;
  margin-bottom: 30px;
}
.section07_box-figure img {
  width: 100% !important;
}
@media screen and (max-width: 819px) {
  .section07_box-figure {
    overflow-x: scroll;
    margin-right: -20px;
    padding-bottom: 20px;
  }
  .section07_box-figure figure {
    width: 820px;
    padding-right: 20px;
    display: block;
  }
}
.section07_text {
  max-width: 966px;
  margin: 0 auto 53px;
  background: #fff;
  border: solid 5px var(--color-primary);
  border-radius: 5px;
  padding: 20px;
  font-size: 24px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 1140px) {
  .section07_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 819px) {
  .section07_text {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 20px 15px;
  }
}
.section07_text span {
  color: var(--color-primary);
}
.section07_notice {
  max-width: 966px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .section07_notice {
    text-align: left;
  }
}
.section07_notice span {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 819px) {
  .section07_notice span {
    font-size: 18px;
  }
}

.section08 {
  padding: 105px 20px 113px;
}
@media screen and (max-width: 819px) {
  .section08 {
    padding: 40px 20px;
  }
}
.section08 .titlearea p {
  margin-bottom: 20px;
}
@media screen and (max-width: 819px) {
  .section08 .titlearea p {
    text-align: left;
  }
  .section08 .titlearea p br {
    display: none;
  }
}
.section08_list {
  padding-top: 30px;
  margin-bottom: 57px;
}
@media screen and (max-width: 819px) {
  .section08_list {
    margin-bottom: 30px;
  }
}
.section08_list ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 819px) {
  .section08_list ul {
    display: block;
  }
}
.section08_list ul li {
  width: 32%;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 819px) {
  .section08_list ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.section08_list ul li img {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 819px) {
  .section08_list ul li img {
    width: 65%;
    margin: 0 auto 10px;
  }
}
.section08_list ul li span {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .section08_list ul li span {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.section08_list ul li p {
  padding: 0 6%;
}
.section08_btn {
  max-width: 481px;
  margin: 0 auto;
}

.section09 {
  padding: 0 20px 80px;
}
@media screen and (max-width: 819px) {
  .section09 {
    padding: 10px 20px;
  }
  .section09 .titlearea p {
    text-align: left;
  }
}
.section09_content {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  .section09_content {
    margin-top: 30px;
  }
}
.section09_box {
  background: var(--color-lightblue);
  width: 48%;
  padding: 45px;
  border-radius: 5px;
}
@media screen and (max-width: 1140px) {
  .section09_box {
    padding: 30px;
  }
}
@media screen and (max-width: 819px) {
  .section09_box {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}
.section09_box01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8%;
  margin-bottom: 30px;
}
@media screen and (max-width: 819px) {
  .section09_box01 {
    display: block;
  }
}
.section09_box01 .section09_text {
  width: 46%;
}
@media screen and (max-width: 1140px) {
  .section09_box01 .section09_text {
    width: 50%;
  }
}
@media screen and (max-width: 819px) {
  .section09_box01 .section09_text {
    width: 100%;
  }
}
.section09_text h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 30px;
}
@media screen and (max-width: 819px) {
  .section09_text h3 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.section09_text p {
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .section09_text p {
    margin-bottom: 10px;
  }
}
.section09_text dl {
  background: #fff;
  padding: 25px 25px;
  margin-top: 30px;
}
@media screen and (max-width: 819px) {
  .section09_text dl {
    padding: 15px;
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
.section09_text dl dt {
  background: var(--color-primary);
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 819px) {
  .section09_text dl dt {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
  }
}
.section09_text dl dd {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.section09_text dl dd::before {
  content: "";
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_check.svg) no-repeat;
  background-size: 100%;
}
.section09_imgs img {
  margin-bottom: 42px;
  width: 100% !important;
}
@media screen and (max-width: 819px) {
  .section09_imgs img {
    margin-bottom: 20px;
  }
}

.section10 {
  padding: 114px 20px 87px;
}
@media screen and (max-width: 819px) {
  .section10 {
    padding: 40px 20px;
  }
}
.section10_faq {
  margin-top: 40px;
}
@media screen and (max-width: 819px) {
  .section10_faq {
    margin-top: 20px;
  }
}
.section10_faq-a {
  background: #fff;
  border-radius: 0 0 5px 5px;
  padding: 25px 62px 28px 60px;
  position: relative;
  line-height: 1.8;
}
.section10_faq-a p {
  margin-bottom: 10px;
}
.section10_faq-a ul {
  margin-bottom: 10px;
}
.section10_faq-a ul li {
  list-style: disc;
  list-style-position: inside;
}
.section10_faq-a a {
  color: var(--color-primary);
  text-decoration: underline;
}
@media screen and (max-width: 819px) {
  .section10_faq-a {
    padding: 17px 20px 28px 43px;
  }
}
.section10_faq-a::before {
  content: "";
  width: 25px;
  height: 26px;
  display: inline-block;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/faq_a.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 30px;
  left: 20px;
}
@media screen and (max-width: 819px) {
  .section10_faq-a::before {
    width: 16px;
    height: 17px;
    margin-top: 5px;
    top: 20px;
  }
}
@media screen and (max-width: 1140px) {
  .section10_tabs {
    gap: 3px;
  }
}
@media screen and (max-width: 819px) {
  .section10_tabs {
    overflow-x: scroll;
  }
}
.section10_tabs button {
  border: solid 3px var(--color-primary);
  border-radius: 5px;
  color: var(--color-primary);
  height: 74px;
  width: 24%;
  max-width: 207px;
  cursor: pointer;
  transition: 0.3s;
}
.section10_tabs button.is-active {
  background: var(--color-primary);
  color: #fff;
}
@media screen and (max-width: 1140px) {
  .section10_tabs button {
    font-size: 14px;
    border: solid 3px var(--color-primary);
  }
}
@media screen and (max-width: 819px) {
  .section10_tabs button {
    font-size: 12px;
    padding: 0 5px;
    height: 60px;
  }
}
.section10_tabs-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1%;
}
@media screen and (max-width: 819px) {
  .section10_tabs-wrap {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .section10_tabs-wrap {
    width: 510px;
  }
  .section10_tabs-wrap button {
    width: 100px;
  }
}
.section10_panel {
  margin-top: 26px;
}
@media screen and (max-width: 819px) {
  .section10_panel {
    margin-top: 15px;
  }
}
.section10_panel details {
  margin-bottom: 20px;
}
.section10_panel details[open] summary::after {
  background-image: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_minus.svg);
  background-size: 14px;
}
.section10_panel details summary::-webkit-details-marker {
  display: none;
}
.section10_panel details summary {
  background-color: var(--color-primary);
  color: #fff;
  display: flex;
  padding: 20px 20px 20px 62px;
  font-size: 20px;
  border-radius: 5px;
  gap: 15px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  list-style: none;
  appearance: none;
  -webkit-appearance: none;
}
@media (hover: hover) {
  .section10_panel details summary:hover {
    background-color: #2E9EDD;
  }
}
@media screen and (max-width: 819px) {
  .section10_panel details summary {
    font-size: 16px;
    gap: 10px;
    padding: 15px 40px 15px 35px;
  }
}
.section10_panel details summary::before {
  content: "";
  width: 27px;
  height: 26px;
  display: inline-block;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/faq_q.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 819px) {
  .section10_panel details summary::before {
    width: 18px;
    left: 10px;
    height: 17px;
    top: 16px;
  }
}
.section10_panel details summary::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/icon_plus.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media screen and (max-width: 819px) {
  .section10_panel details summary::after {
    right: 10px;
    top: 15px;
  }
}

.contact {
  background: url(https://www.obc.co.jp/hubfs/obc/v1/images/landing/end-i11/section10_bg.webp) repeat-x bottom center, var(--color-lightblue);
  background-size: 1440px;
  padding: 0 20px 100px;
}
.contact_content {
  border: solid 5px var(--color-primary);
  background: #fff;
  display: flex;
  height: 262px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 10%;
}
@media screen and (max-width: 819px) {
  .contact_content {
    display: block;
    padding: 30px 20px;
    height: auto;
  }
}
.contact_btns {
  width: 38%;
  text-align: center;
}
@media screen and (max-width: 819px) {
  .contact_btns {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact_btns p {
  text-align: center;
  margin-bottom: 20px;
  display: inline;
  position: relative;
  font-weight: bold;
}
.contact_btns p::before, .contact_btns p::after {
  content: "";
  height: 100%;
  width: 2px;
  background: var(--color-primary);
  position: absolute;
  top: 4px;
}
.contact_btns p::before {
  left: calc(100% + 13px);
  transform: rotate(45deg);
}
.contact_btns p::after {
  right: calc(100% + 13px);
  transform: rotate(-45deg);
}
.contact_btns a {
  display: block;
  margin-top: 10px;
}
.contact_text {
  text-align: center;
  line-height: 1.5;
}
.contact_text p {
  font-weight: bold;
}
.contact_text p span {
  font-weight: normal;
}
.contact_text-tel {
  margin: 20px 0;
}
@media screen and (max-width: 819px) {
  .contact_text-tel {
    margin: 20px;
  }
}