@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ============================
  basic
=============================*/
* {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  html {
    font-size: clamp(16px, 1.67vw, 20px);
  }
}

@media (max-width: 767px) {
  html {
    font-size: calc(28 / 750 * 100vw);
  }
}

body {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  color: #262626;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  line-height: 1.86;
  font-feature-settings: "palt";
}

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

a {
  text-decoration: none;
}

main {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
  }
}

.clearfix * {
  zoom: 1;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.hide {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

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

@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

@media (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.f-min {
  font-family: "Shippori Mincho", serif;
}

.u-sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.01em;
}

.u-note {
  display: block;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .u-note {
    font-size: clamp(12px, 1.17vw, 14px);
  }
}

@media (max-width: 767px) {
  .u-note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.u-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: .3em;
  color: #fff;
  line-height: 1.2;
  background-color: rgba(51, 51, 51, 0.8);
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media (min-width: 768px) {
  .u-caption {
    font-size: clamp(9px, 0.52083vw, 10px);
  }
}

@media (max-width: 767px) {
  .u-caption {
    font-size: calc(20 / 750 * 100vw);
  }
}

.u-caption::after {
  position: absolute;
  top: 0;
  left: 100%;
  display: inline-block;
  width: 1em;
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: rgba(51, 51, 51, 0.8);
}

@media (min-width: 768px) {
  .u-caption::after {
    content: '';
  }
}

.f-wht {
  color: #fff;
}

.img-cap {
  position: absolute;
  z-index: 2;
}

.img-cap.cap-lb {
  left: .5rem;
  bottom: .5rem;
}

.img-cap.cap-rb {
  right: .5rem;
  bottom: .5rem;
}

/* ============================
  Header
=============================*/
.l-header {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.l-header__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .l-header__in {
    width: 100%;
    max-width: 1200px;
    height: 8.33vw;
    max-height: 100px;
    padding: 0 1em;
  }
}

@media (max-width: 767px) {
  .l-header__in {
    height: calc(100 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }
}

.l-header__logo {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/logo.png);
}

@supports (background-image: url(../img/logo.webp)) {
  .l-header__logo {
    background-image: url(../img/logo.webp);
  }
}

@media (min-width: 768px) {
  .l-header__logo {
    width: 27vw;
    max-width: 324px;
    height: 5vw;
    max-height: 60px;
    background-image: url(../img/logo@2x.png);
  }
  @supports (background-image: url(../img/logo@2x.webp)) {
    .l-header__logo {
      background-image: url(../img/logo@2x.webp);
    }
  }
}

@media (max-width: 767px) {
  .l-header__logo {
    width: calc(306 / 750 * 100vw);
    height: calc(48 / 750 * 100vw);
  }
}

/* ============================
  main-visual
=============================*/
.p-mv {
  display: block;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  container-type: inline-size;
}

@media (min-width: 768px) {
  .p-mv {
    height: 34.79vw;
    max-height: 668px;
    background-image: url(../img/mv_bg.jpg);
  }
  @supports (background-image: url(../img/mv_bg.webp)) {
    .p-mv {
      background-image: url(../img/mv_bg.webp);
    }
  }
}

@media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx) {
  .p-mv {
    background-image: url(../img/mv_bg@2x.jpg);
  }
  @supports (background-image: url(../img/mv_bg@2x.webp)) {
    .p-mv {
      background-image: url(../img/mv_bg@2x.webp);
    }
  }
}

@media (max-width: 767px) {
  .p-mv {
    width: calc(750 / 750 * 100vw);
  }
}

.p-mv__inner {
  position: relative;
  display: block;
  container-type: inline-size;
}

@media (min-width: 768px) {
  .p-mv__inner {
    width: 66.66666667cqw;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .p-mv__inner {
    width: 100%;
    padding: 0 calc(20 / 750 * 100vw);
  }
}

.p-mv__copy {
  display: block;
  margin: auto;
  text-align: center;
  font-weight: 500;
  line-height: 1.62;
}

@media (min-width: 768px) {
  .p-mv__copy {
    margin-top: 3.17vw;
    margin-bottom: 2vw;
    font-size: 2.7cqw;
  }
}

@media (max-width: 767px) {
  .p-mv__copy {
    margin-top: calc(65 / 750 * 100vw);
    margin-bottom: calc(45 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: -0.03em;
  }
}

.p-mv__copy span.gold {
  font-size: 130%;
  font-weight: 600;
  color: #957a32;
}

.p-mv__copy span.big {
  font-size: 130%;
  font-weight: 600;
}

.p-mv__copy span.ls {
  letter-spacing: -.6rem;
}

.p-mv__img {
  position: relative;
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .p-mv__img {
    width: 33.203125cqw;
    margin-bottom: 2vw;
  }
}

@media (max-width: 767px) {
  .p-mv__img {
    width: calc(558 / 750 * 100vw);
    margin-bottom: calc(45 / 750 * 100vw);
  }
}

.p-mv__img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .p-mv__img::after {
    width: 7.578125cqw;
    height: 7.8125cqw;
    background-image: url(../img/mv_ribbon.png);
  }
  @supports (background-image: url(../img/mv_ribbon.webp)) {
    .p-mv__img::after {
      background-image: url(../img/mv_ribbon.webp);
    }
  }
}

@media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx) {
  .p-mv__img::after {
    background-image: url(../img/mv_ribbon@2x.png);
  }
  @supports (background-image: url(../img/mv_ribbon@2x.webp)) {
    .p-mv__img::after {
      background-image: url(../img/mv_ribbon@2x.webp);
    }
  }
}

@media (max-width: 767px) {
  .p-mv__img::after {
    width: calc(133 / 750 * 100vw);
    height: calc(147 / 750 * 100vw);
    background-image: url(../img/mv_ribbon@sp.png);
  }
  @supports (background-image: url(../img/mv_ribbon@sp.webp)) {
    .p-mv__img::after {
      background-image: url(../img/mv_ribbon@sp.webp);
    }
  }
}

.p-mv__bottom {
  display: block;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .p-mv__bottom {
    width: 66.66666667cqw;
    max-width: 1280px;
    padding: 0 20px;
    font-size: 1.21010101cqw;
  }
}

@media (max-width: 767px) {
  .p-mv__bottom {
    font-size: calc(26 / 750 * 100vw);
  }
}

.p-mv__bottom p {
  display: block;
}

@media (max-width: 767px) {
  .p-mv__bottom p {
    margin-bottom: calc(30 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.p-mv__bottom span {
  color: #957a32;
}

/* ==========================================================
  sec
=====*/
.sec-ttl {
  position: relative;
  display: block;
  margin: auto;
  text-align: center;
  font-weight: bold;
  line-height: 1.32;
}

@media (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .sec-ttl {
    margin-bottom: calc(60 / 750 * 100vw);
  }
}

.sec-ttl__num {
  position: absolute;
  top: -1rem;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: rgba(38, 38, 38, 0.1);
}

@media (min-width: 768px) {
  .sec-ttl__num {
    font-size: 180px;
  }
}

@media (max-width: 767px) {
  .sec-ttl__num {
    font-size: calc(220 / 750 * 100vw);
  }
}

.sec-ttl__min {
  display: block;
  font-size: 90%;
}

@media (min-width: 768px) {
  .sec-ttl__min {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .sec-ttl__min {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec-ttl__main {
  display: block;
  color: #365e95;
}

@media (min-width: 768px) {
  .sec-ttl__main {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .sec-ttl__main {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec-head__txt {
  text-align: center;
}

@media (min-width: 768px) {
  .sec-head__txt {
    font-size: 26px;
    letter-spacing: -0.1rem;
  }
}

@media (max-width: 767px) {
  .sec-head__txt {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: -0.16rem;
  }
}

.sec-head__txt span {
  letter-spacing: -0.8rem;
}

.sec-head__list {
  display: block;
  margin: auto;
  text-align: center;
}

.sec-head__list ol {
  padding-left: 0;
  list-style: none;
  display: inline-block;
}

.sec-head__list li {
  text-align: left;
  margin-bottom: .5rem;
  padding-left: 1rem;
}

.sec-head__list li::before {
  content: '●';
  display: inline-block;
  margin-left: -1rem;
  padding-right: .4rem;
  color: #365e95;
  font-size: 60%;
}

/* ==========================================================
  p-point
=====*/
.p-point {
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .p-point {
    padding: 120px 0;
  }
}

@media (max-width: 767px) {
  .p-point {
    padding: calc(120 / 750 * 100vw) 0;
    overflow: hidden;
  }
}

.p-point.bg-gray {
  background-color: #f5f5f5;
}

.p-point__head {
  width: 100%;
}

@media (min-width: 768px) {
  .p-point__head {
    max-width: 1260px;
    margin: 0 auto 80px;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .p-point__head {
    margin: 0 auto calc(60 / 750 * 100vw);
    padding: 0 calc(40 / 750 * 100vw);
    font-size: calc(34 / 750 * 100vw);
  }
}

.p-point__body {
  width: 100%;
}

@media (min-width: 768px) {
  .p-point__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto 80px;
    padding: 0 30px;
    container-type: inline-size;
  }
}

@media (max-width: 767px) {
  .p-point__body {
    margin: 0 auto calc(120 / 750 * 100vw);
    padding: 0 calc(40 / 750 * 100vw);
  }
}

.p-point__body.odd .p-point__item-01 {
  order: 2;
}

.p-point__body.odd .p-point__item-02 {
  order: 1;
}

@media (min-width: 768px) {
  .p-point__body.odd .p-point__item-02 .p-point__item-img::after {
    right: 2vw;
  }
}

@media (max-width: 767px) {
  .p-point__body.odd .p-point__item-02 .p-point__item-img::after {
    right: 10vw;
  }
}

.p-point__body.even .p-point__item-01 {
  order: 1;
}

.p-point__body.even .p-point__item-02 {
  order: 2;
}

@media (min-width: 768px) {
  .p-point__body.even .p-point__item-02 .p-point__item-img::after {
    left: 2vw;
  }
}

@media (max-width: 767px) {
  .p-point__body.even .p-point__item-02 .p-point__item-img::after {
    left: 10vw;
  }
}

@media (min-width: 768px) {
  .p-point__body.area-03-01 {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .p-point__body.area-03-01 {
    display: block;
  }
}

@media (min-width: 768px) {
  .p-point__body.area-03-01 .p-point__item-01 {
    margin-left: 3.125cqw;
    margin-bottom: 2cqw;
    grid-area: 1 / 2 / 2 / 3;
    order: 1;
  }
}

@media (min-width: 768px) {
  .p-point__body.area-03-01 .p-point__item-02 {
    grid-area: 1 / 1 / 3 / 2;
    order: 3;
  }
}

@media (min-width: 768px) {
  .p-point__body.area-03-01 .p-point__item-box {
    margin-left: 3.125cqw;
    grid-area: 2 / 2 / 3 / 3;
    order: 2;
  }
}

.p-point__body-wrap {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .p-point__item-01 {
    width: 50cqw;
    container-type: inline-size;
  }
}

@media (max-width: 767px) {
  .p-point__item-01 {
    width: 100%;
    margin-bottom: calc(50 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .p-point__item-02 {
    width: 46.66667cqw;
    container-type: inline-size;
  }
}

@media (max-width: 767px) {
  .p-point__item-02 {
    width: 100%;
  }
}

.p-point__item-ttl {
  display: block;
  font-weight: 600;
  letter-spacing: -0.1rem;
}

@media (min-width: 768px) {
  .p-point__item-ttl {
    margin-bottom: 30px;
    font-size: 5.333333333cqw;
  }
}

@media (max-width: 767px) {
  .p-point__item-ttl {
    margin-bottom: calc(30 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
  }
}

.p-point__item-ttl.box-ttl {
  line-height: 3.4rem;
}

.p-point__item-ttl.box-ttl .ul {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: .3rem .5rem;
  background-color: #365e95;
  color: #fff;
}

.p-point__item-ttl.box-ttl .ul span.ls {
  letter-spacing: -.8rem;
}

.p-point__item-ttl.box-ttl .u-note {
  margin-top: .5rem;
  font-family: initial;
  font-weight: initial;
  letter-spacing: 0;
}

.p-point__item-ttl.line-ttl {
  padding-bottom: .75rem;
  color: #365e95;
  border-bottom: solid 2px #365e95;
  line-height: 1.42;
}

.p-point__item-txt {
  text-align: justify;
}

.p-point__item-txt p {
  margin-bottom: .3rem;
}

@media (min-width: 768px) {
  .p-point__item-txt p .u-pc {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .p-point__item-txt p .u-sp {
    display: inline-block;
  }
}

.p-point__item-img {
  position: relative;
  display: block;
  height: auto;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-point__item-img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .p-point__item-img {
    width: 100%;
  }
}

.p-point__item-img::after {
  content: '';
  position: absolute;
  background-color: rgba(54, 94, 149, 0.2);
  z-index: -1;
}

@media (min-width: 768px) {
  .p-point__item-img::after {
    top: 5vw;
    width: 48vw;
    height: 66.60714286cqw;
  }
}

@media (max-width: 767px) {
  .p-point__item-img::after {
    top: 10vw;
    width: 100vw;
    height: calc(412 / 750 * 100vw);
  }
}

.p-point__item-img picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.p-point__item-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  background-color: #fff;
}

@media (min-width: 768px) {
  .p-point__item-box {
    width: 50cqw;
    padding: 4.571428571cqw;
    container-type: inline-size;
  }
}

@media (max-width: 767px) {
  .p-point__item-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: calc(100 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(140 / 750 * 100vw);
  }
}

.p-point__item-box picture {
  display: block;
}

@media (min-width: 768px) {
  .p-point__item-box picture {
    width: 23.83333333cqw;
    margin-top: 2cqw;
    margin-left: 8cqw;
  }
}

@media (max-width: 767px) {
  .p-point__item-box picture {
    position: relative;
    width: calc(200 / 750 * 100vw);
  }
}

.p-point__item-list {
  position: relative;
}

@media (max-width: 767px) {
  .p-point__item-list {
    width: calc(400 / 750 * 100vw);
    padding-bottom: calc(30 / 750 * 100vw);
  }
}

.p-point__item-list ol {
  list-style: none;
  display: inline-block;
}

@media (min-width: 768px) {
  .p-point__item-list ol {
    margin-right: 4.571428571cqw;
  }
}

.p-point__item-list li {
  text-align: left;
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .p-point__item-list li {
    font-size: 3.333333333cqw;
  }
}

@media (max-width: 767px) {
  .p-point__item-list li {
    font-size: calc(26 / 750 * 100vw);
  }
}

.p-point__item-list li::before {
  content: '●';
  display: inline-block;
  margin-left: -1rem;
  padding-right: .4rem;
  color: #365e95;
  font-size: 60%;
}

.p-point__item-list a {
  position: absolute;
  display: block;
  color: #365e95;
  border: solid 2px #365e95;
  border-radius: 9999px;
  text-align: center;
  font-weight: 600;
  transition: .3s;
}

@media (min-width: 768px) {
  .p-point__item-list a {
    bottom: 0;
    left: 48cqw;
    width: 52cqw;
    font-size: 3.333333333cqw;
  }
}

@media (max-width: 767px) {
  .p-point__item-list a {
    top: 100%;
    left: 0;
    right: 0;
    width: calc(560 / 750 * 100vw);
    height: calc(96 / 750 * 100vw);
    margin: auto;
    font-size: calc(32 / 750 * 100vw);
    line-height: calc(96 / 750 * 100vw);
  }
}

.p-point__item-list a::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  transition: .3s;
}

.p-point__item-list a:hover {
  opacity: .6;
}

.p-point__item-list a:hover::after {
  transform: translateX(0.5rem);
}

.p-point__bottom {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (min-width: 768px) {
  .p-point__bottom {
    margin-top: 140px;
    container-type: inline-size;
  }
}

@media (max-width: 767px) {
  .p-point__bottom {
    margin-top: calc(120 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .p-point__bottom.type-01 .p-point__bottom-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5cqw 6.666666667cqw 2.5cqw 5.333333333cqw;
    background: linear-gradient(-75deg, #365e95 0%, #365e95 27%, #fff 27%, #fff 100%);
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-01 .p-point__bottom-inner {
    position: relative;
    display: block;
    padding: calc(64 / 750 * 100vw) calc(40 / 750 * 100vw);
    background: linear-gradient(-15deg, #365e95 0%, #365e95 40%, #fff 40%, #fff 100%);
  }
}

@media (min-width: 768px) {
  .p-point__bottom.type-01 .p-point__bottom-lft {
    width: 58.333333cqw;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-01 .p-point__bottom-lft {
    width: 100%;
  }
}

.p-point__bottom.type-01 .p-point__bottom-lft > h3 {
  margin-bottom: .5rem;
  padding: 0 0.5em;
  background: transparent;
  color: #365e95;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 768px) {
  .p-point__bottom.type-01 .p-point__bottom-lft > h3 {
    border-left: solid 6px #365e95;
    font-size: 2.666666667cqw;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-01 .p-point__bottom-lft > h3 {
    border-left: solid calc(6 / 750 * 100vw) #365e95;
    font-size: calc(40 / 750 * 100vw);
    line-height: 1.42;
  }
}

.p-point__bottom.type-01 .p-point__bottom-lft > p {
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-align: justify;
}

.p-point__bottom.type-01 .p-point__bottom-lft > a {
  display: block;
  color: #365e95;
  border-radius: 9999px;
  text-align: center;
  font-weight: 600;
  transition: .3s;
}

@media (min-width: 768px) {
  .p-point__bottom.type-01 .p-point__bottom-lft > a {
    position: relative;
    width: 33.3333333cqw;
    border: solid 2px #365e95;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-01 .p-point__bottom-lft > a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(60 / 750 * 100vw);
    width: calc(560 / 750 * 100vw);
    height: calc(86 / 750 * 100vw);
    margin: auto;
    background-color: #fff;
    font-size: calc(32 / 750 * 100vw);
    line-height: calc(86 / 750 * 100vw);
  }
}

.p-point__bottom.type-01 .p-point__bottom-lft > a::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  transition: .3s;
}

.p-point__bottom.type-01 .p-point__bottom-lft > a:hover {
  opacity: .6;
}

.p-point__bottom.type-01 .p-point__bottom-lft > a:hover::after {
  transform: translateX(0.5rem);
}

.p-point__bottom.type-01 .p-point__bottom-rgt {
  display: block;
  box-shadow: 4px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .p-point__bottom.type-01 .p-point__bottom-rgt {
    width: 25.16666667cqw;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-01 .p-point__bottom-rgt {
    width: 100%;
    height: auto;
    margin-bottom: calc(120 / 750 * 100vw);
  }
}

.p-point__bottom.type-01 .p-point__bottom-rgt picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-point__bottom.type-01 .p-point__bottom-rgt picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-point__bottom.type-02 .p-point__bottom-inner {
  width: 100%;
  background-color: #f5f5f5;
}

@media (min-width: 768px) {
  .p-point__bottom.type-02 .p-point__bottom-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    order: 1;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-02 .p-point__bottom-inner {
    display: block;
  }
}

.p-point__bottom.type-02 .p-point__bottom-lft {
  position: relative;
}

@media (min-width: 768px) {
  .p-point__bottom.type-02 .p-point__bottom-lft {
    width: 32.08333333cqw;
    order: 1;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-02 .p-point__bottom-lft {
    width: 100%;
    order: 2;
  }
}

.p-point__bottom.type-02 .p-point__bottom-lft picture {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .p-point__bottom.type-02 .p-point__bottom-rgt {
    width: 67.91666667cqw;
    padding: 1cqw 5.333333333cqw;
    order: 2;
  }
}

@media (max-width: 767px) {
  .p-point__bottom.type-02 .p-point__bottom-rgt {
    width: 100%;
    padding: calc(64 / 750 * 100vw) calc(40 / 750 * 100vw);
    order: 1;
  }
}

.p-point__bottom.type-02 .p-point__bottom-rgt > p {
  letter-spacing: 0.06em;
  text-align: justify;
}
