@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(:root) {
  scrollbar-gutter: stable;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(body) {
  min-height: 100vh;
}

:where(ul, ol) {
  margin: 0;
  padding: 0;
  list-style-type: "";
}

:where(a:not([class])) {
  color: currentColor;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a[class]) {
  display: block;
  text-decoration: none;
  color: inherit;
}

:where(img, picture) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

:where(svg) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

:where(input, button, textarea, select) {
  font-family: inherit;
  font-size: inherit;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color: inherit;
}

:where(button) {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

:where(address) {
  font-style: normal;
}

:where(dialog) {
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  position: static;
  background: transparent;
  font: inherit;
  color: inherit;
}

:where(fieldset) {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

:where(legend) {
  margin: 0;
  padding: 0;
}

:where(summary)::-webkit-details-marker {
  display: none;
}

:root {
  --duration: 0.2s;
  --black: #1a1a1a;
  --black-70: #1a1a1a70;
  --black-30: #1a1a1a30;
  --gray: #ccc;
  --green: #5fb45e;
  --green2: #97d195;
  --yellow: #ffe43d;
  --red: #960000;
  --red2: #c40000;
  --blue: #28496b;
  --orange: #ff6500;
}

html:not([lang=ja]) {
  word-break: break-word;
}
html.is-scroll-locked {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Zen Kaku Gothic New", "メイリオ", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  position: relative;
}

* {
  letter-spacing: 0.05em;
}

/**
 * l-footer
 */
footer {
  background-color: #EDEDF0;
}
footer .inner {
  padding: 0.9375rem 0;
  width: calc(100% - 3.75rem);
  max-width: 45rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .inner {
    width: calc(100% - 1.875rem);
    display: block;
  }
}
footer .inner .logo {
  width: 13.375rem;
}
@media screen and (max-width: 768px) {
  footer .inner .logo {
    width: 11.25rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .address {
    font-size: 0.8125rem;
  }
}
footer .inner .address a {
  text-decoration: none;
  display: inline-block;
  color: #b0153d;
  text-align: center;
  display: inline-block;
  border: solid 0.0625rem;
  line-height: 1.3;
  padding: 0.125rem 0.625rem;
  border-radius: 1.875rem;
  font-size: 0.75rem;
  transition: color var(--duration), background-color var(--duration);
}
footer .inner .address a:hover {
  background-color: #b0153d;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .inner .address a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0.3125rem;
  }
}
footer .copyright {
  background-color: #363636;
  padding: 0.625rem 0 6.25rem;
  color: #fff;
  font-weight: 400;
  font-size: 0.8125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 0.6875rem;
  }
}

.totop {
  display: block;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 7.1875rem;
  text-align: center;
  opacity: 0;
  transition: opacity var(--duration);
}
.totop.is-show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .totop {
    width: 4rem;
    bottom: 0.3125rem;
    right: 0.3125rem;
  }
}
.totop p {
  color: #b0153d;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 768px) {
  .totop p {
    font-size: 0.8125rem;
    letter-spacing: 0;
  }
}
.totop:hover {
  opacity: 0.7;
}

.p-header {
  width: 100%;
  height: 6.875rem;
  padding: 0 1.625rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 4.5rem;
    padding: 0 0.8125rem;
  }
}
.p-header .logo {
  width: 14.5rem;
}
@media screen and (max-width: 768px) {
  .p-header .logo {
    width: 7.5rem;
  }
}
.p-header .link {
  background-color: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 1.25rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-header .link {
    padding: 0.625rem 0.625rem;
    font-size: 0.625rem;
  }
}
.p-header .link span {
  display: inline-block;
  width: 0.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-header .link span {
    margin-left: 0.3125rem;
    width: 0.375rem;
  }
}
.p-header .link {
  transition: background-color var(--duration);
}
.p-header .link:hover {
  background-color: var(--green2);
}

/**
 * Layout
 */
.u-inner {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 769px) {
  .u-inner {
    width: 100%;
    max-width: clamp(51.75rem, 0.6061493411 * 100vw, 78.75rem);
    margin-inline: auto;
    padding-inline: 1.875rem;
  }
}

/**
 * Visibility
 */
.u-sr-only {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .u-hidden-md {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-max-md {
    display: none !important;
  }
}

/**
 * Typography
 */
.u-font-bold {
  font-weight: 700;
}

.u-font-black {
  font-weight: 900;
}

.u-text-black {
  color: var(--black);
}

.u-text-gray {
  color: var(--gray);
}

.u-leading-trim {
  margin-block: calc((1em - 1lh) / 2);
}
.u-leading-trim[lang=en] {
  margin-block: calc((1cap - 1lh) / 2);
}

/**
 * Other
 */
.u-alpha {
  transition: opacity var(--duration);
}
.u-alpha:focus-visible {
  opacity: 0.7;
}
@media (any-hover: hover) {
  .u-alpha:hover {
    opacity: 0.7;
  }
}

.p-mv-sec {
  width: 100%;
  padding-bottom: 5.1244509517vw;
  background-image: url("../images/img_mv-01_pc.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv-sec {
    background-image: url("../images/img_mv-01_sp.webp");
    background-size: 100%;
    background-color: #919191;
    padding-bottom: 5.3333333333vw;
  }
}
.p-mv-sec::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, #919191 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-mv-sec::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, #919191 70%, #919191 100%);
  }
}
.p-mv-sec .text {
  position: relative;
  z-index: 1;
}
.p-mv-sec .title {
  width: max(45rem, 55.6368960469vw);
  margin: 0 auto max(1.25rem, 1.4641288433vw);
  padding-top: 5.3125rem;
}
@media screen and (max-width: 768px) {
  .p-mv-sec .title {
    padding-top: 4.6875rem;
    width: 100%;
  }
}
.p-mv-sec .read {
  text-align: center;
  font-size: max(1.125rem, 1.317715959vw);
  color: #fff;
  font-weight: 700;
  margin-bottom: max(3.125rem, 3.6603221083vw);
}
@media screen and (max-width: 768px) {
  .p-mv-sec .read {
    font-size: 3.3333333333vw;
    line-height: 2;
    margin-bottom: 4vw;
  }
}
.p-mv-sec .read span {
  display: block;
  font-size: max(1.75rem, 2.0497803807vw);
  color: var(--yellow);
}
@media screen and (max-width: 768px) {
  .p-mv-sec .read span {
    display: block;
    font-size: 4.8vw;
    line-height: 1.4;
    padding-bottom: 0.6666666667vw;
  }
}
.p-mv-sec .link {
  display: block;
  background-color: var(--green);
  font-size: max(1.625rem, 1.9033674963vw);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 1.8301610542vw 2.5622254758vw;
  padding: max(1.5625rem, 1.8301610542vw) max(2.1875rem, 2.5622254758vw);
  border-radius: max(1.25rem, 1.4641288433vw);
  box-shadow: 0.625rem 0.625rem 0.625rem rgba(0, 0, 0, 0.6);
  letter-spacing: 0;
}
.p-mv-sec .link span {
  margin-left: max(0.9375rem, 1.0980966325vw);
  display: inline-block;
  width: max(0.8125rem, 0.9516837482vw);
}
.p-mv-sec .link {
  transition: background-color var(--duration);
}
.p-mv-sec .link:hover {
  background-color: var(--green2);
}
@media screen and (max-width: 768px) {
  .p-mv-sec .link {
    border-radius: 2.6666666667vw;
    width: calc(100% - 3.125rem);
    margin: 0 auto;
    font-size: 4.1333333333vw;
    padding: 5.3333333333vw 2.6666666667vw;
    box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, 0.6);
  }
  .p-mv-sec .link span {
    margin-left: 2.6666666667vw;
    display: inline-block;
    width: 2.1333333333vw;
  }
}
.p-mv-sec small {
  display: block;
  text-align: center;
  font-size: max(0.9375rem, 1.0980966325vw);
  color: #fff;
  margin-top: max(1.25rem, 1.4641288433vw);
}
@media screen and (max-width: 768px) {
  .p-mv-sec small {
    font-size: 2.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}

.p-intro-sec {
  background: #919191;
  padding-bottom: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-intro-sec {
    padding-bottom: 3.75rem;
  }
}
.p-intro-sec .inner {
  max-width: 62.5rem;
  width: calc(100% - 3.125rem);
  margin: 0 auto;
  background-image: linear-gradient(rgba(0, 113, 188, 0.1) 1px, transparent 1px), linear-gradient(to right, rgba(0, 113, 188, 0.1) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  background-color: #fff;
  background-position: 50% 0;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner {
    background-size: 1.25rem 1.25rem;
    width: calc(100% - 1.875rem);
  }
}
.p-intro-sec .inner .box:nth-of-type(1) {
  padding: 3.125rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner .box:nth-of-type(1) {
    padding: 1.5625rem 1.25rem;
  }
}
.p-intro-sec .inner .box:nth-last-of-type(1) {
  background: linear-gradient(90deg, rgb(40, 73, 107) 0%, rgb(16, 50, 102) 100%);
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner .box:nth-last-of-type(1) {
    padding: 1.25rem 1.25rem;
  }
}
.p-intro-sec .inner .catch {
  width: calc(100% - 2.196193265vw);
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner .catch {
    width: calc(100% - 4vw);
  }
}
.p-intro-sec .inner .read {
  font-size: 1.3125rem;
  text-align: center;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner .read {
    font-size: 0.8125rem;
    letter-spacing: 0;
  }
}
.p-intro-sec .inner .closing {
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner .closing {
    font-size: 1.15625rem;
    text-align: left;
  }
}
.p-intro-sec .inner .closing span {
  color: var(--yellow);
}
.p-intro-sec .inner small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.84375rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-intro-sec .inner small {
    font-size: 0.75rem;
    text-align: left;
  }
}

.p-client-sec {
  background: linear-gradient(180deg, #e5edf6 0%, #e5edf6 50%, #a5b1b2 100%);
}
.p-client-sec .inner {
  width: calc(100% - 3.75rem);
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 7.5rem 0 10.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner {
    padding: 3.75rem 0 3.75rem;
    width: calc(100% - 1.875rem);
  }
}
.p-client-sec .inner::before {
  content: "";
  width: 24.75rem;
  height: 4.375rem;
  background-color: var(--blue);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner::before {
    width: 12.375rem;
    height: 2.1875rem;
  }
}
.p-client-sec .inner .catch {
  width: min(67.8623718887vw, 57.9375rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .catch {
    width: 79.2vw;
  }
}
.p-client-sec .inner .read {
  text-align: center;
  color: var(--red);
  font-size: 1.5625rem;
  font-weight: 600;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .read {
    font-size: 0.75rem;
    margin-top: 0.9375rem;
  }
}
.p-client-sec .inner .checklist {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem min(6.6666666667vw, 3.125rem);
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .checklist {
    margin-top: 1.875rem;
    gap: 0.625rem 0.3125rem;
  }
}
.p-client-sec .inner .checklist .item {
  border: 0.0625rem solid var(--blue);
  background: #fff;
  padding: 1.25rem min(1.4641288433vw, 1.25rem) 1.875rem min(2.196193265vw, 1.875rem);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .checklist .item {
    padding: 1.25rem 0.625rem;
    display: block;
  }
}
.p-client-sec .inner .checklist .item .icon {
  width: 7.25rem;
  margin-right: min(16.8374816984vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .checklist .item .icon {
    width: 3.75rem;
    margin: 0 auto 0.625rem;
  }
}
.p-client-sec .inner .checklist .item .text .komidashi {
  font-size: 1.6875rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .checklist .item .text .komidashi {
    font-size: 0.9375rem;
  }
}
.p-client-sec .inner .checklist .item .text .description {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .checklist .item .text .description {
    font-size: 0.65625rem;
  }
}
.p-client-sec .inner .badcase .bridge {
  width: 1.4375rem;
  margin: 2.5rem auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .badcase .bridge {
    width: 1rem;
    margin: 1.25rem auto 0.9375rem;
  }
}
.p-client-sec .inner .badcase .nakamidashi {
  color: var(--red);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .badcase .nakamidashi {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
  }
}
.p-client-sec .inner .badcase .box {
  box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(130, 0, 0, 0.5);
}
.p-client-sec .inner .badcase .box .list {
  border: 0.125rem solid var(--red);
  background-color: #fff;
  padding: 3.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .badcase .box .list {
    display: block;
    margin: 0 auto;
    padding: 1.25rem 0 2.5rem;
  }
}
.p-client-sec .inner .badcase .box .list .item {
  font-size: 2.125rem;
  letter-spacing: -0.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .badcase .box .list .item {
    font-size: 1.5rem;
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto;
  }
}
.p-client-sec .inner .badcase .box .list .item span {
  color: var(--red);
}
.p-client-sec .inner .badcase .box .list .item small {
  font-size: 1.125rem;
  position: absolute;
  top: 100%;
  left: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .badcase .box .list .item small {
    font-size: 0.8125rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
.p-client-sec .inner .badcase .box .closing {
  background: repeating-linear-gradient(120deg, #820000, #820000 10px, var(--red) 10px, var(--red) 20px);
  font-size: 2.125rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-client-sec .inner .badcase .box .closing {
    padding: 1.25rem;
    font-size: 1.0625rem;
  }
}

.p-agency-sec {
  background: linear-gradient(180deg, #e4e1e1 0%, #e4e1e1 50%, #c6bec2 100%);
}
.p-agency-sec .inner {
  width: calc(100% - 3.75rem);
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 7.5rem 0 10.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .inner {
    padding: 3.75rem 0 3.75rem;
    width: calc(100% - 1.875rem);
  }
}
.p-agency-sec .inner::before {
  content: "";
  width: 24.75rem;
  height: 4.375rem;
  background-color: var(--red2);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  .p-agency-sec .inner::before {
    width: 12.375rem;
    height: 2.1875rem;
  }
}
.p-agency-sec .inner .catch {
  width: min(65.3001464129vw, 55.75rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .inner .catch {
    width: 65.8666666667vw;
  }
}
.p-agency-sec .regulations {
  background: #fff;
  margin-top: 3.75rem;
  padding-bottom: 5rem;
  box-shadow: 0.5rem 0.5rem 0.3125rem -0.125rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations {
    margin-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.p-agency-sec .regulations .nakamidashi {
  background-color: var(--red2);
  color: #fff;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 600;
  padding: 0.3125rem 0;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .nakamidashi {
    font-size: 1rem;
    padding: 0.625rem 0;
  }
}
.p-agency-sec .regulations .read {
  text-align: center;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .read {
    font-size: 0.8125rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-agency-sec .regulations .read span {
  color: var(--red2);
}
.p-agency-sec .regulations .list {
  padding: 0 min(4.39238653vw, 3.75rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1.25rem;
  }
}
.p-agency-sec .regulations .list .item {
  background: #f0f0f0;
  border-radius: 1.25rem;
  padding: 1.75rem 1.75rem 2.5rem;
  box-shadow: 0.5rem 0.5rem 0.3125rem -0.125rem rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item {
    padding: 1.25rem 0.625rem 1.25rem;
  }
}
.p-agency-sec .regulations .list .item .icon {
  width: 7.375rem;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item .icon {
    width: 4.0625rem;
    margin: 0 auto 0.625rem;
  }
}
.p-agency-sec .regulations .list .item .komidashi {
  font-size: 1.9375rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item .komidashi {
    font-size: 1rem;
  }
}
.p-agency-sec .regulations .list .item .description {
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item .description {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}
.p-agency-sec .regulations .list .item .article {
  font-size: 1.9375rem;
  font-weight: 600;
  text-align: center;
  border: 0.0625rem solid #f0f0f0;
  padding: 1.875rem 0;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item .article {
    padding: 1.25rem 0;
    font-size: 1.25rem;
  }
}
.p-agency-sec .regulations .list .item .article span {
  display: block;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item .article span {
    font-size: 0.8125rem;
  }
}
.p-agency-sec .regulations .list .item small {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-agency-sec .regulations .list .item small {
    font-size: 0.8125rem;
  }
}
.p-agency-sec .regulations .list .item:nth-of-type(2) {
  background-color: #fff;
  border: 0.0625rem solid var(--red2);
}
.p-agency-sec .regulations .list .item:nth-of-type(2) .komidashi {
  color: var(--red2);
}

.p-conversion-sec {
  background: linear-gradient(180deg, #fff7cc 0%, #fff7cc 50%, white 100%);
}
.p-conversion-sec .kv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-conversion-sec .inner {
  padding: 5.625rem 0;
  width: calc(100% - 3.75rem);
  max-width: 62.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-conversion-sec .inner {
    width: calc(100% - 1.875rem);
    padding: 1.875rem 0;
  }
}
.p-conversion-sec .inner .catch {
  font-size: 2.3125rem;
  color: var(--orange);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-conversion-sec .inner .catch {
    font-size: 1.25rem;
  }
}
.p-conversion-sec .inner .read {
  font-size: 1.4375rem;
  text-align: center;
  margin-top: 1.875rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-conversion-sec .inner .read {
    font-size: 0.8125rem;
    margin-top: 0.9375rem;
    margin-bottom: 1.875rem;
  }
}
.p-conversion-sec .inner .link {
  display: block;
  background-color: var(--green);
  font-size: 2.0625rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 3.125rem 2.5622254758vw;
  border-radius: max(1.25rem, 1.4641288433vw);
  box-shadow: 0.4375rem 0.4375rem 0.3125rem rgba(0, 0, 0, 0.6);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-conversion-sec .inner .link {
    box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, 0.6);
    padding: 1.875rem 2vw;
    font-size: 1rem;
    width: 100%;
  }
}
.p-conversion-sec .inner .link span {
  margin-left: max(0.9375rem, 1.0980966325vw);
  display: inline-block;
  width: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-conversion-sec .inner .link span {
    width: 0.5rem;
  }
}
.p-conversion-sec .inner .link {
  transition: background-color var(--duration);
}
.p-conversion-sec .inner .link:hover {
  background-color: var(--green2);
}
.p-conversion-sec .inner small {
  display: block;
  font-size: 1rem;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-conversion-sec .inner small {
    margin-top: 0.625rem;
    font-size: 0.625rem;
  }
}

.p-about-sec {
  padding: 4.375rem 0 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-about-sec {
    padding: 1.875rem 0 4.375rem;
  }
}
.p-about-sec .midashi {
  font-size: 2.0625rem;
  letter-spacing: 0;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-sec .midashi {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}
.p-about-sec .read {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-about-sec .read {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}
.p-about-sec .logo {
  width: 33.5625rem;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-about-sec .logo {
    width: 16.875rem;
    margin: 1.25rem auto 0;
  }
}

.c-kv {
  position: relative;
  width: 100%;
  height: max(18.3125rem, 21.4494875549vw);
}
@media screen and (max-width: 768px) {
  .c-kv {
    height: 26.6666666667vw;
  }
}
.c-kv figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-kv figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
  width: 100%;
  height: 100%;
}
.c-kv figure picture {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
  width: 100%;
  height: 100%;
}
.c-kv figure video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
  width: 100%;
  height: 100%;
}
.c-kv .midashi {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  color: #FFF;
  font-size: max(1.875rem, 2.196193265vw);
  max-width: 62.5rem;
  width: calc(100% - 3.125rem);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-kv .midashi {
    font-size: 4.4vw;
  }
}