@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://use.typekit.net/ehz6mgp.css");
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1632px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 1632px) / 163.2);
  }
}
@media screen and (max-width: 1080px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 1080px) / 108);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 765px) / 76.5);
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 375px) / 37.5);
  }
}

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

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-pc--mid {
  display: block;
}
@media screen and (max-width: 1280px) {
  .is-pc--mid {
    display: none !important;
  }
}

:root {
  --base-font-size: 2rem;
  --color-white: #fff;
  --color-black: #2c3132;
  --color-gray: #eaecf0;
  --color-pink: #ef8a9c;
  --color-red: #ff1a1c;
  --base-bg: #fff;
  --primary-color: #0f218b;
  --secondary-color: #793d1c;
  --font-noto-san: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-zen-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-zen-min: "Zen Old Mincho", serif;
  --font-din: "din-2014", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-antonio: "Antonio", sans-serif;
  --font-AcuminVariableConcept: "Acumin Variable Concept", sans-serif;
  --sec-padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  :root {
    --base-font-size: max(1.6rem, 16px);
  }
}

img {
  width: 100%;
  vertical-align: top;
}

body {
  font-family: var(--font-noto-san);
  color: var(--color-black);
  background-color: var(--base-bg);
  font-size: var(--base-font-size);
  line-height: 1.7;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-blue {
  background: #eaedf1;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}
.l-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3.6%;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-header__container {
    padding-left: 0;
  }
}
.l-header__logo {
  max-width: 55rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 46rem;
  }
}
@media screen and (max-width: 520px) {
  .l-header__logo {
    max-width: 23rem;
  }
}
.l-header__diary {
  max-width: 13rem;
}
@media screen and (max-width: 1080px) {
  .l-header__diary {
    display: none;
  }
}
.l-header__content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .l-header__info {
    display: none;
  }
}
.l-header__infoTel {
  line-height: 1.2;
  margin-left: 7rem;
}
.l-header__infoTel a {
  font-size: 5rem;
  position: relative;
}
.l-header__infoTel a::before {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: -4rem;
  display: block;
  width: 2.814rem;
  height: 4.291rem;
  background: url(/assets/images/icon-tel.webp) no-repeat center center/contain;
}
.l-header__infoTel p {
  font-size: 2.2rem;
  font-family: var(--font-zen-min);
}
.l-header__nav {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 80vw;
  height: 100vh;
  background: rgba(216, 241, 254, 0.94);
  padding: 20rem 5rem;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.l-header__nav.is-active {
  transform: translateX(0);
}
@media screen and (max-width: 1080px) {
  .l-header__nav {
    padding: 15rem 5rem;
    overflow: scroll;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    width: 100%;
    padding: 10rem 5rem;
    overflow: scroll;
    z-index: -1;
  }
}
@media screen and (max-width: 520px) {
  .l-header__nav {
    width: 100%;
    padding: 10rem 3rem;
    overflow: scroll;
  }
}
.l-header__navList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 120rem;
  margin: 0 auto 10rem;
  gap: 5rem 6vw;
}
@media screen and (max-width: 767px) {
  .l-header__navList {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navList {
    margin-bottom: 5rem;
  }
}
.l-header__navListItem a {
  position: relative;
  font-family: var(--font-zen-min);
  font-size: 2.9rem;
  display: block;
  width: 100%;
  border-bottom: 1px solid #007cce;
}
.l-header__navListItem a::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  color: #007cce;
}
@media screen and (max-width: 1080px) {
  .l-header__navListItem a {
    font-size: 2.4rem;
    padding: 1em 0;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navListItem a {
    font-size: 1.6rem;
    padding: 1em 0;
  }
}
.l-header__navLead {
  font-size: 4.3rem;
  font-family: var(--font-zen-min);
  margin-bottom: 4rem;
  text-align: center;
  text-decoration: underline #fff145 2rem;
  text-underline-offset: -0.4rem;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 520px) {
  .l-header__navLead {
    font-size: 2.6rem;
  }
}
.l-header__navContent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.6rem;
}
@media screen and (max-width: 1080px) {
  .l-header__navContent {
    flex-direction: column;
    gap: 2.8rem;
  }
}
.l-header__navCard {
  background: var(--primary-color);
  border-radius: 4rem;
  color: var(--color-white);
  text-align: center;
  padding: 4rem;
  max-width: 62rem;
}
@media screen and (max-width: 520px) {
  .l-header__navCard {
    padding: 2rem;
  }
}
.l-header__navCardTitle {
  font-family: var(--font-din);
  font-size: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .l-header__navCardTitle {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navCardTitle {
    font-size: 2rem;
  }
}
.l-header__navCardTel {
  font-family: var(--font-din);
  font-weight: 600;
  font-size: 6.8rem;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 1.8rem;
}
@media screen and (max-width: 1080px) {
  .l-header__navCardTel {
    font-size: 4.4rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navCardTel {
    font-size: 3.8rem;
    gap: 0.5rem;
  }
}
.l-header__navCardTel:before {
  content: "";
  width: 3.145rem;
  height: 4.976rem;
  display: block;
  background: url(/assets/images/icon-phone.webp) no-repeat center center/contain;
  transform: translateY(1rem);
}
@media screen and (max-width: 1080px) {
  .l-header__navCardTel:before {
    width: 2.2015rem;
    height: 3.4832rem;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navCardTel:before {
    width: 1.613rem;
    height: 2.459rem;
    transform: translateY(0.5rem);
  }
}
.l-header__navCardText {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1080px) {
  .l-header__navCardText {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navCardText {
    font-size: 1.8rem;
  }
}
.l-header__navCardNote {
  font-size: 2.8rem;
}
@media screen and (max-width: 1080px) {
  .l-header__navCardNote {
    font-size: 2.4rem;
    text-align: start;
    text-indent: -1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 520px) {
  .l-header__navCardNote {
    font-size: 1.8rem;
  }
}
.l-header__navLink {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.l-header__navLinkItem {
  position: relative;
  width: 32rem;
  padding: 1em;
  background: #0391f8;
  color: var(--color-white);
  font-size: 2.1rem;
  border-radius: 1.8rem;
}
@media screen and (max-width: 520px) {
  .l-header__navLinkItem {
    font-size: 1.8rem;
    width: 24rem;
  }
}
.l-header__navLinkItem::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}
.l-header__navDiary {
  display: none;
}
@media screen and (max-width: 1080px) {
  .l-header__navDiary {
    display: block;
    max-width: 13rem;
    margin: 0 auto;
  }
}

.l-main {
  position: relative;
  padding-top: 14rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 9.176rem;
  }
}
@media screen and (max-width: 520px) {
  .l-main {
    padding-top: 6.2rem;
  }
}

.l-footer {
  position: relative;
  padding: 7.8rem 0 5.4rem;
  background: var(--primary-color);
  width: 100%;
}
@media screen and (max-width: 520px) {
  .l-footer {
    padding: 5rem 0 3rem;
  }
}
.l-footer__logo {
  max-width: 45rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.l-footer__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3em;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 520px) {
  .l-footer__link {
    flex-direction: column;
    gap: 1em;
    padding-bottom: 1.6rem;
  }
}
.l-footer__linkItem {
  font-family: var(--font-zen-min);
  font-size: 2.2rem;
  color: var(--color-white);
}
@media screen and (max-width: 520px) {
  .l-footer__linkItem {
    font-size: 1.4rem;
  }
}
.l-footer__rockykun {
  position: absolute;
  width: 12.8rem;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}
@media screen and (max-width: 1080px) {
  .l-footer__rockykun {
    right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__rockykun {
    position: relative;
    inset: 0;
    transform: translate(0);
    margin: 0 auto;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 520px) {
  .l-footer__rockykun {
    max-width: 7.8rem;
    padding-bottom: 1.6rem;
  }
}
.l-footer__copy {
  font-family: var(--font-zen-min);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 520px) {
  .l-footer__copy {
    font-size: 1.2rem;
  }
}

.l-inner {
  max-width: min(132rem, 100% - 4rem);
  margin: 0 auto;
}
.l-inner--small {
  max-width: min(103rem, 100% - 40px);
  margin: 0 auto;
}
.l-inner--xsmall {
  max-width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.c-btn {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 35rem;
  margin: 0 auto;
  padding: 1.7rem;
  background: #004fbb;
  border-radius: 1.8rem;
  color: var(--color-white);
  transition: all 0.3s ease;
}
.c-btn::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}

.c-btn--small {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 21rem;
  padding: 1.2rem;
  background: #004fbb;
  color: var(--color-white);
  border-radius: 1.8rem;
  transition: all 0.3s ease;
}
.c-btn--small::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}
.c-btn--small.--notArrow::after {
  content: none;
}

.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-gray-500);
  max-width: min(1400px, 100% - 4rem);
  margin: 0 auto;
  padding: 0.5rem 0;
}
.c-breadcrumb li:nth-last-of-type(1) {
  color: var(--primary-color);
}
.c-breadcrumb li:nth-last-of-type(1)::after {
  content: none;
}
.c-breadcrumb li::after {
  content: "/";
  padding-left: 0.8rem;
}

.js-image img {
  opacity: 0;
  transform: scale(1.1); /* 初期状態を少し大きくしておく */
  transition: transform 0.3s ease;
}

.js-image figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-image figure::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1f5b6c;
}

.js-image.move figure::before {
  animation: barAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s normal;
}

.js-image figure img {
  opacity: 0;
  transform: scale(1.1);
}

.js-image.move figure img {
  animation: photoAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-title .line {
  overflow: hidden;
}

.js-concept-detail {
  opacity: 0; /* 完全に非表示に設定 */
  transform: translateY(20px); /* 下に少しずらして非表示にする */
}

.c-title {
  position: relative;
  font-family: var(--font-zen-min);
  font-size: 5rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto 10rem;
  --rotate: 55deg;
}
@media screen and (max-width: 520px) {
  .c-title {
    font-size: 2.6rem;
    margin: 0 auto 5rem;
  }
}
.c-title::before {
  content: "";
  display: block;
  width: 8rem;
  height: 2px;
  rotate: var(--rotate);
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8rem;
}
@media screen and (max-width: 520px) {
  .c-title::before {
    width: 6rem;
    left: -6rem;
  }
}
.c-title::after {
  content: "";
  display: block;
  width: 8rem;
  height: 2px;
  rotate: calc(var(--rotate) * -1);
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8rem;
}
@media screen and (max-width: 520px) {
  .c-title::after {
    width: 6rem;
    right: -6rem;
  }
}

.c-slider {
  padding: 4.2rem 0;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-wrapper .swiper-slide {
  pointer-events: none;
}

.js-top-slide {
  transition: all 0.3s ease;
}
.js-top-slide.is-open {
  margin-top: 8rem;
}

.c-hamburger {
  --opacity: 1;
  --rotate: 0;
  --translate: 2rem;
  position: relative;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 14rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    --translate: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 9.176rem;
  }
}
@media screen and (max-width: 520px) {
  .c-hamburger {
    width: 6.2rem;
    --translate: 1rem;
  }
}
.c-hamburger.is-active {
  --opacity: 0;
  --rotate: 45deg;
  --translate: 0;
}
.c-hamburger span {
  display: block;
  width: 6rem;
  height: 3px;
  border-radius: 999px;
  background-color: var(--primary-color);
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-hamburger span {
    width: max(16px, 3.6rem);
    height: max(2px, 0.2rem);
  }
}
.c-hamburger span:nth-child(1) {
  opacity: var(--opacity);
}
.c-hamburger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.c-hamburger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.c-mask {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/80;
}
.c-mask:after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/assets/images/mask.svg);
  mask-image: url(/assets/images/mask.svg);
  mask-size: 100% auto;
  mask-position: left top;
  mask-repeat: no-repeat;
}
.c-mask.is-blue::after {
  background: #d8f1ff;
}
.c-mask.is-white::after {
  background: #fff;
}

#lead {
  position: relative;
}
#lead .p-bg__deco--01 {
  position: absolute;
  display: block;
  width: 35rem;
  height: 35rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #lead .p-bg__deco--01 {
    width: 32rem;
    height: 32rem;
    top: -5rem;
    left: -10rem;
  }
}
@media screen and (max-width: 520px) {
  #lead .p-bg__deco--01 {
    width: 16rem;
    height: 16rem;
    top: -2.5rem;
    left: -5rem;
  }
}
#lead .p-bg__deco--02 {
  position: absolute;
  display: block;
  width: 62rem;
  height: 62rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: -15%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #lead .p-bg__deco--02 {
    width: 40rem;
    height: 40rem;
    right: -10rem;
    bottom: -20rem;
  }
}
@media screen and (max-width: 520px) {
  #lead .p-bg__deco--02 {
    width: 20rem;
    height: 20rem;
    right: -5rem;
    bottom: -15rem;
  }
}

#case {
  position: relative;
}
#case .p-bg__deco--03 {
  position: absolute;
  display: block;
  width: 35rem;
  height: 35rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: -5%;
  bottom: 20%;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  #case .p-bg__deco--03 {
    width: 26rem;
    height: 26rem;
    left: -5rem;
  }
}

#strength .p-strength {
  position: relative;
  z-index: 1;
}
#strength .p-strength__content {
  position: relative;
}
#strength .p-strength__content .p-bg__deco--04 {
  position: absolute;
  display: block;
  width: 62rem;
  height: 62rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: -10%;
  top: -30%;
  mix-blend-mode: screen;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  #strength .p-strength__content .p-bg__deco--04 {
    width: 23rem;
    height: 23rem;
  }
}
#strength .p-strength__content .p-bg__deco--05 {
  position: absolute;
  display: block;
  width: 45rem;
  height: 45rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: 1%;
  bottom: -25%;
  mix-blend-mode: screen;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  #strength .p-strength__content .p-bg__deco--05 {
    width: 18rem;
    height: 18rem;
    bottom: auto;
    top: -10rem;
    left: -5rem;
  }
}
#strength .p-strength__content .p-bg__deco--06 {
  position: absolute;
  display: block;
  width: 58rem;
  height: 58rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: -10%;
  bottom: -30%;
  mix-blend-mode: screen;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  #strength .p-strength__content .p-bg__deco--06 {
    width: 25rem;
    height: 25rem;
  }
}

#flow {
  position: relative;
}
#flow .p-bg__deco--07 {
  position: absolute;
  display: block;
  width: 48rem;
  height: 48rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: -10%;
  top: 5%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #flow .p-bg__deco--07 {
    width: 34rem;
    height: 34rem;
  }
}
@media screen and (max-width: 520px) {
  #flow .p-bg__deco--07 {
    top: 2rem;
    left: -10rem;
    width: 17rem;
    height: 17rem;
  }
}
#flow .p-bg__deco--08 {
  position: absolute;
  display: block;
  width: 28.7rem;
  height: 28.7rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: -5%;
  bottom: 10%;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  #flow .p-bg__deco--08 {
    width: 17rem;
    height: 17rem;
  }
}

#price {
  position: relative;
}
#price .p-price__container {
  position: relative;
  z-index: 2;
}
#price .p-bg__deco--09 {
  position: absolute;
  display: block;
  width: 45rem;
  height: 45rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: -10%;
  top: 5%;
  mix-blend-mode: screen;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  #price .p-bg__deco--09 {
    width: 22.5rem;
    height: 22.5rem;
  }
}
#price .p-bg__deco--10 {
  position: absolute;
  display: block;
  width: 50rem;
  height: 50rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: -5%;
  top: 50%;
  mix-blend-mode: screen;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  #price .p-bg__deco--10 {
    width: 25rem;
    height: 25rem;
  }
}
#price .p-bg__deco--11 {
  position: absolute;
  display: block;
  width: 30rem;
  height: 30rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: -5%;
  bottom: 10%;
  mix-blend-mode: screen;
  z-index: 1;
}

#contact {
  position: relative;
}
#contact .p-contact {
  position: relative;
  z-index: 2;
}
#contact .p-bg__deco--12 {
  position: absolute;
  display: block;
  width: 34rem;
  height: 34rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: -5%;
  bottom: -40%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #contact .p-bg__deco--12 {
    bottom: -60rem;
  }
}
@media screen and (max-width: 520px) {
  #contact .p-bg__deco--12 {
    width: 25rem;
    height: 25rem;
    bottom: -40rem;
    left: -15rem;
  }
}
#contact .p-bg__deco--13 {
  position: absolute;
  display: block;
  width: 73rem;
  height: 73rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: -5%;
  top: 10%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #contact .p-bg__deco--13 {
    width: 44rem;
    height: 44rem;
    right: -10rem;
  }
}
@media screen and (max-width: 520px) {
  #contact .p-bg__deco--13 {
    width: 25rem;
    height: 25rem;
  }
}

#info {
  position: relative;
}
#info .p-info {
  position: relative;
  z-index: 2;
}
#info .p-bg__deco--14 {
  position: absolute;
  display: block;
  width: 57rem;
  height: 57rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  left: 5%;
  bottom: -15%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #info .p-bg__deco--14 {
    width: 44rem;
    height: 44rem;
    left: auto;
    right: -10rem;
  }
}
@media screen and (max-width: 520px) {
  #info .p-bg__deco--14 {
    display: none;
  }
}
#info .p-bg__deco--15 {
  position: absolute;
  display: block;
  width: 22rem;
  height: 22rem;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/deco01.webp) no-repeat center center/contain;
  right: 5%;
  bottom: 40%;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  #info .p-bg__deco--15 {
    display: none;
  }
}

.p-mv {
  position: relative;
  margin-bottom: 10rem;
}
@media screen and (max-width: 520px) {
  .p-mv {
    margin-bottom: 5rem;
  }
}
.p-mv__text {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-zen-min);
  font-size: 2.1875vw;
  writing-mode: vertical-rl;
  width: 35.4166666666vw;
  aspect-ratio: 1;
  background: url(/criminal-defense/assets/images/mvText.webp) no-repeat center center/contain;
}
@media screen and (max-width: 520px) {
  .p-mv__text {
    font-size: 1.1rem;
    width: 13.5rem;
  }
}

.p-lead {
  padding-bottom: 10rem;
}
@media screen and (max-width: 520px) {
  .p-lead {
    padding-bottom: 5rem;
  }
}
.p-lead__container {
  position: relative;
  background: rgba(255, 223, 49, 0.11);
  max-width: 110rem;
  margin: 0 auto;
  padding: 12rem 6.2rem 8rem;
}
@media screen and (max-width: 520px) {
  .p-lead__container {
    padding: 4.5rem 2rem 2rem;
  }
}
.p-lead__title {
  position: relative;
  font-family: var(--font-zen-min);
  font-size: 5rem;
  text-align: center;
  margin-bottom: 10rem;
  word-break: keep-all;
}
@media screen and (max-width: 520px) {
  .p-lead__title {
    font-size: 2.6rem;
    margin-bottom: 5rem;
  }
}
.p-lead__titleDeco {
  position: absolute;
  width: 11.2rem;
  height: 7.2rem;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco {
    width: 5rem;
    height: 3rem;
  }
}
.p-lead__titleDeco span:nth-of-type(1) {
  display: block;
  background: #000;
  width: 100%;
  height: 1px;
}
.p-lead__titleDeco span:nth-of-type(2) {
  display: block;
  background: #000;
  width: 1px;
  height: 100%;
}
.p-lead__titleDeco.is-left {
  top: -5rem;
  left: 0;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco.is-left {
    top: -25%;
    left: -5%;
  }
}
.p-lead__titleDeco.is-left span:nth-of-type(1) {
  position: absolute;
  top: 1.5rem;
  left: 0;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco.is-left span:nth-of-type(1) {
    top: 25%;
  }
}
.p-lead__titleDeco.is-left span:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 1.5rem;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco.is-left span:nth-of-type(2) {
    left: 25%;
  }
}
.p-lead__titleDeco.is-right {
  bottom: -5rem;
  right: 0;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco.is-right {
    bottom: -25%;
    right: -5%;
  }
}
.p-lead__titleDeco.is-right span:nth-of-type(1) {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco.is-right span:nth-of-type(1) {
    bottom: 25%;
  }
}
.p-lead__titleDeco.is-right span:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  right: 1.5rem;
}
@media screen and (max-width: 520px) {
  .p-lead__titleDeco.is-right span:nth-of-type(2) {
    right: 25%;
  }
}
.p-lead__text {
  max-width: 73.8rem;
  margin: 0 auto;
}
.p-lead__text strong {
  display: block;
  text-align: center;
  font-size: 3rem;
  padding-top: 3rem;
}
@media screen and (max-width: 520px) {
  .p-lead__text strong {
    font-size: 2.2rem;
  }
}
.p-lead__rockykun {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  right: 0;
  bottom: -12rem;
}
@media screen and (max-width: 1080px) {
  .p-lead__rockykun {
    position: relative;
    bottom: 0;
    width: fit-content;
    margin: 0 auto;
    margin-top: 7rem;
  }
}
@media screen and (max-width: 520px) {
  .p-lead__rockykun {
    margin-top: 5rem;
  }
}
.p-lead__rockykunImage {
  width: 12rem;
}
.p-lead__rockykunImage figcaption {
  position: absolute;
  right: -5rem;
  bottom: 10rem;
  font-size: 1.7rem;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .p-lead__rockykunImage figcaption {
    bottom: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-lead__rockykunImage figcaption {
    font-size: max(1.7rem, 14px);
  }
}
@media screen and (max-width: 520px) {
  .p-lead__rockykunImage figcaption {
    bottom: 9rem;
    font-size: 1.4rem;
  }
}
.p-lead__rockykunImage figcaption::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 11px solid #0391f8;
  border-left: 0;
}
.p-lead__rockykunLink {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  background: #dcffff;
  border: 2.5px solid #76adfa;
  padding: 1rem 2.4rem 1rem 3.4rem;
  border-radius: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-lead__rockykunLink {
    font-size: max(1.6rem, 14px);
  }
}
@media screen and (max-width: 520px) {
  .p-lead__rockykunLink {
    font-size: 1.4rem;
  }
}

.p-case {
  padding-bottom: 10rem;
}
@media screen and (max-width: 520px) {
  .p-case {
    padding: 5rem 0;
  }
}
.p-case__container {
  max-width: 140rem;
  margin: 0 auto;
}
.p-case__title {
  font-family: var(--font-zen-min);
  font-size: 4.4rem;
  text-align: center;
  margin-bottom: 7rem;
}
.p-case__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 1080px) {
  .p-case__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case__content {
    grid-template-columns: 1fr;
  }
}
.p-case__content.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-case__content.is-sp {
    display: block;
  }
}
.p-case__card .js-acBtn.is-open .c-btn--small {
  color: var(--primary-color);
  background: var(--color-white);
}
.p-case__card .js-acContent {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  transform: translateY(-2rem);
}
.p-case__cardHead {
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: grid;
  background: #e8f7fe;
  border-radius: 2rem;
  padding: 2.6rem 1.8rem;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
}
.p-case__cardHead .p-in-title {
  background: var(--primary-color);
  width: fit-content;
  color: var(--color-white);
  padding: 0 0.5em;
  justify-self: center;
  margin-bottom: 2rem;
}
.p-case__cardHead .p-in-image {
  width: 17.2rem;
  justify-self: center;
  margin-bottom: 2rem;
}
.p-case__cardHead .p-in-name {
  text-decoration: underline #fff145 1.2rem;
  text-underline-offset: -0.4rem;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 520px) {
  .p-case__cardHead .p-in-name {
    text-decoration: underline #fff145 1rem;
  }
}
.p-case__cardHead .p-in-text {
  min-height: 22rem;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-case__cardHead .p-in-text {
    min-height: 16rem;
  }
}
.p-case__cardMain {
  position: relative;
  z-index: 1;
  background: #35bcf4;
  border-radius: 0 0 2rem 2rem;
  color: var(--color-white);
  padding: 4.6rem 1.8rem 2.6rem;
}
.p-case__cardMain::before {
  content: "";
  width: 100%;
  height: 2rem;
  position: absolute;
  top: -2rem;
  left: 0;
  background: #35bcf4;
  z-index: -1;
}
.p-case__cardMain .p-in-title {
  font-weight: 700;
}
.p-case__cardMain .p-in-text {
  min-height: 26.4rem;
  padding-bottom: 1em;
}
@media screen and (max-width: 1080px) {
  .p-case__cardMain .p-in-text {
    min-height: 20rem;
  }
}

.caseSwiper {
  width: 100%;
  padding-bottom: 10rem;
}
@media screen and (max-width: 520px) {
  .caseSwiper {
    padding-bottom: 5rem;
  }
}
.caseSwiper .caseSwiper-button-next {
  position: absolute;
  right: 0;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 6rem;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 520px) {
  .caseSwiper .caseSwiper-button-next {
    width: 3rem;
  }
}
.caseSwiper .caseSwiper-button-prev {
  position: absolute;
  left: 0;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 6rem;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 520px) {
  .caseSwiper .caseSwiper-button-prev {
    width: 3rem;
  }
}
.caseSwiper .swiper-pagination-bullet {
  background: #0f218b;
}
.caseSwiper .swiper-pagination-bullet-active {
  background: #0f218b;
}

#strength {
  position: relative;
  overflow: hidden;
}
#strength .c-mask.is-white {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}

.p-strength {
  background: #d8f1ff;
  padding: 10rem 0;
}
@media screen and (max-width: 520px) {
  .p-strength {
    padding: 5rem 0;
  }
}
.p-strength__container {
  max-width: min(164rem, 100% - 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .p-strength__container {
    max-width: 100%;
  }
}
.p-strength__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11.2rem;
}
@media screen and (max-width: 1080px) {
  .p-strength__content {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .p-strength__content {
    margin-bottom: 0;
  }
}
.p-strength__content:nth-of-type(2) {
  flex-direction: row-reverse;
}
.p-strength__content:nth-of-type(2) .p-strength__detail,
.p-strength__content:nth-of-type(2) .p-strength__detailNum {
  right: auto;
  left: 0;
}
@media screen and (max-width: 1080px) {
  .p-strength__content:nth-of-type(2) .p-strength__detail {
    margin: 0 auto 0 0;
  }
  .p-strength__content:nth-of-type(2) .p-strength__image {
    margin: 0 0 0 auto;
  }
}
.p-strength__content:nth-last-of-type(1) {
  margin: 0;
  gap: 9.2rem;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .p-strength__content:nth-last-of-type(1) {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 520px) {
  .p-strength__content:nth-last-of-type(1) {
    gap: 5rem;
  }
}
.p-strength__content:nth-last-of-type(1) .p-strength__image {
  width: 32.737rem;
}
@media screen and (max-width: 1080px) {
  .p-strength__content:nth-last-of-type(1) .p-strength__image {
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .p-strength__content:nth-last-of-type(1) .p-strength__image {
    width: 10rem;
  }
}
.p-strength__content:nth-last-of-type(1) .p-strength__detail {
  position: relative;
  border-radius: 4rem;
}
@media screen and (max-width: 1080px) {
  .p-strength__content:nth-last-of-type(1) .p-strength__detail {
    margin: 0 auto;
    transform: translateY(0);
  }
  .p-strength__content:nth-last-of-type(1) .p-strength__detail .p-strength__detailTitle {
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .p-strength__content:nth-last-of-type(1) .p-strength__detail {
    border-radius: 2rem;
  }
}
.p-strength__content:nth-last-of-type(1) .p-strength__detail::after {
  content: "";
  position: absolute;
  left: -4.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 43px solid #fff;
  border-left: 0;
}
@media screen and (max-width: 1080px) {
  .p-strength__content:nth-last-of-type(1) .p-strength__detail::after {
    top: 98%;
    left: 50%;
    transform: translateX(-50%);
    rotate: -90deg;
    transform: translateY(0);
  }
}
.p-strength__image {
  width: 66.5%;
}
@media screen and (max-width: 1080px) {
  .p-strength__image {
    width: 90%;
  }
}
.p-strength__detail {
  position: absolute;
  right: 0;
  background: var(--color-white);
  padding: 7rem;
}
@media screen and (max-width: 1080px) {
  .p-strength__detail {
    position: relative;
    width: 70%;
    margin: 0 0 0 auto;
    transform: translateY(-5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__detail {
    width: 80%;
  }
}
@media screen and (max-width: 520px) {
  .p-strength__detail {
    padding: 2.5rem;
  }
}
.p-strength__detailNum {
  font-family: var(--font-zen-min);
  font-size: 9rem;
  line-height: 1;
  position: absolute;
  right: 0;
  top: -5rem;
  color: rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 520px) {
  .p-strength__detailNum {
    font-size: 3.6rem;
    top: -2rem;
  }
}
.p-strength__detailTitle {
  font-family: var(--font-zen-min);
  font-size: 4.5rem;
  line-height: 1.5;
  margin-bottom: 3.6rem;
  text-decoration: underline #fff145 1.2rem;
  text-underline-offset: -0.4rem;
  display: inline-block;
}
@media screen and (max-width: 520px) {
  .p-strength__detailTitle {
    text-decoration: underline #fff145 1rem;
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
  }
}
.p-strength__detailText {
  max-width: 50rem;
}
@media screen and (max-width: 1080px) {
  .p-strength__detailText {
    max-width: 100%;
  }
}

.p-flow {
  padding: 10rem 0;
}
@media screen and (max-width: 520px) {
  .p-flow {
    padding: 5rem 0;
  }
}
.p-flow__inner {
  max-width: min(163.2rem, 100% - 4rem);
  margin: 0 auto;
  position: relative;
}
.p-flow__rockykun {
  max-width: 33rem;
  position: absolute;
  right: 20rem;
  top: -10rem;
}
@media screen and (max-width: 1080px) {
  .p-flow__rockykun {
    position: relative;
    right: 0;
    top: 0;
    margin: 0 auto;
    max-width: 33rem;
    transform: translateX(-6rem);
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__rockykun {
    max-width: 26.8rem;
    transform: translateX(-1rem);
    padding-bottom: 5rem;
  }
}
.p-flow__container {
  position: relative;
  margin-bottom: 10rem;
}
.p-flow__container:nth-last-of-type(1) {
  margin: 0;
}
.p-flow__containerTitle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: var(--color-white);
  width: fit-content;
  height: fit-content;
  max-width: 18rem;
}
@media screen and (max-width: 1080px) {
  .p-flow__containerTitle {
    position: relative;
    margin: 0 auto;
    max-width: 24rem;
    top: auto;
    transform: translate(0);
    padding-bottom: 3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__containerTitle {
    max-width: 22.371rem;
  }
}
.p-flow__content {
  display: grid;
  grid-template-columns: repeat(3, 37rem);
  width: fit-content;
  margin: 0 auto;
  gap: 5rem;
}
@media screen and (max-width: 1080px) {
  .p-flow__content {
    grid-template-columns: repeat(1, 70%);
    justify-content: center;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__content {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
.p-flow__card {
  position: relative;
  background: #d8f1ff;
  border-radius: 1.2rem;
  padding: 2.5rem;
}
.p-flow__card::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8%;
  font-size: 3rem;
  color: #1091f8;
}
@media screen and (max-width: 1080px) {
  .p-flow__card::after {
    transform: translateX(-50%);
    content: "\f107";
    top: auto;
    right: auto;
    left: 50%;
    bottom: -12%;
  }
}
.p-flow__card:nth-last-of-type(1)::after {
  display: none;
}
.p-flow__cardNum {
  position: absolute;
  font-family: var(--font-din);
  font-size: 4.5rem;
  font-weight: 700;
  top: -2rem;
  color: #1091f8;
  left: 2rem;
  line-height: 1;
}
.p-flow__cardNum.is-option {
  font-size: 2.5rem;
  font-weight: 700;
  top: -2.7rem;
  left: 0;
  color: var(--color-white);
  background: #1091f8;
  width: 23.4rem;
  height: 5.4rem;
  display: grid;
  place-items: center;
  border-radius: 1.8rem;
}
@media screen and (max-width: 520px) {
  .p-flow__cardNum.is-option {
    font-size: 2.2rem;
    width: 20rem;
    height: 5rem;
  }
}
.p-flow__cardImage {
  max-width: 10.5rem;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}
.p-flow__cardTitle {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #0391f8;
  padding-bottom: 2rem;
}
@media screen and (max-width: 520px) {
  .p-flow__cardTitle {
    font-size: 2.2rem;
  }
}

.p-price {
  background: #d8f1ff;
  padding: 10rem 0;
}
@media screen and (max-width: 1080px) {
  .p-price {
    padding: 10rem 0 20rem;
  }
}
@media screen and (max-width: 520px) {
  .p-price {
    padding: 5rem 0 15rem;
  }
}
.p-price__container {
  background: var(--color-white);
  max-width: min(140rem, 100% - 4rem);
  margin: 0 auto;
  border-radius: 5.6rem;
  padding: 10rem 0;
}
@media screen and (max-width: 520px) {
  .p-price__container {
    padding: 4rem 0;
    border-radius: 2rem;
  }
}
.p-price__content {
  position: relative;
  max-width: min(104rem, 100% - 4rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 1080px) {
  .p-price__content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.p-price__content:nth-last-of-type(1) {
  padding-bottom: 0;
}
.p-price__title {
  font-size: 2.5rem;
  font-weight: 700;
  border-left: 5px solid var(--primary-color);
  height: fit-content;
  padding-left: 0.5em;
}
@media screen and (max-width: 520px) {
  .p-price__title {
    font-size: 2.2rem;
  }
}
.p-price__listItem dt {
  position: relative;
  z-index: 1;
}
.p-price__listItem dt span {
  display: block;
  font-size: 2.3rem;
  font-weight: 500;
  background-color: #fff;
  width: fit-content;
  padding: 0 1em 0 0;
}
@media screen and (max-width: 520px) {
  .p-price__listItem dt span {
    font-size: 2rem;
  }
}
.p-price__listItem dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.p-price__listItem dd {
  padding: 1em 0;
}
.p-price__rockykun {
  position: absolute;
  max-width: 20rem;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1080px) {
  .p-price__rockykun {
    bottom: -25rem;
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 520px) {
  .p-price__rockykun {
    max-width: 15rem;
    bottom: -15rem;
  }
}

.p-slide {
  position: relative;
}
.p-slide .swiper-slide {
  transition: all 0.3s ease;
}
.p-slide .swiper-slide-prev::after,
.p-slide .swiper-slide-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.p-slide .swiper-button-next {
  position: absolute;
  right: 14.5%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 7rem;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-slide .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 1080px) {
  .p-slide .swiper-button-next {
    width: 5rem;
  }
}
@media screen and (max-width: 520px) {
  .p-slide .swiper-button-next {
    right: 13%;
    width: 3rem;
  }
}
.p-slide .swiper-button-prev {
  position: absolute;
  left: 14.5%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 7rem;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-slide .swiper-button-prev::after {
  content: none;
}
@media screen and (max-width: 1080px) {
  .p-slide .swiper-button-prev {
    width: 5rem;
  }
}
@media screen and (max-width: 520px) {
  .p-slide .swiper-button-prev {
    left: 13%;
    width: 3rem;
  }
}
.p-slide__caption {
  position: absolute;
  z-index: 10;
  left: 10%;
  bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  width: 33.5rem;
  height: 7.7rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  padding: 0 2em;
}
@media screen and (max-width: 520px) {
  .p-slide__caption {
    height: 4.2rem;
    width: 18rem;
  }
}

.p-contact {
  padding: 10rem 0;
}
@media screen and (max-width: 520px) {
  .p-contact {
    padding: 5rem 0;
  }
}
.p-contact__lead {
  font-family: var(--font-zen-min);
  font-size: 5.5rem;
  text-align: center;
  text-decoration: underline #fff145 2rem;
  text-underline-offset: -0.4rem;
  text-decoration-skip-ink: none;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__lead {
    text-decoration: underline #fff145 1rem;
    font-size: 2.7rem;
    margin: 0 auto 5rem;
  }
}
.p-contact__card {
  background: var(--primary-color);
  border-radius: 2.5rem;
  color: var(--color-white);
  text-align: center;
  padding: 3rem;
}
.p-contact__cardTitle {
  font-family: var(--font-din);
  font-size: 3.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__cardTitle {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__cardTitle {
    font-size: 2rem;
  }
}
.p-contact__cardTel {
  font-family: var(--font-din);
  font-size: 8.5rem;
  font-weight: 600;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__cardTel {
    font-size: 4.4rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__cardTel {
    font-size: 3.8rem;
    gap: 0.5rem;
  }
}
.p-contact__cardTel:before {
  content: "";
  width: 3.145rem;
  height: 4.976rem;
  display: block;
  background: url(/criminal-defense/assets/images/icon-phone.webp) no-repeat center center/contain;
  transform: translateY(1rem);
}
@media screen and (max-width: 767px) {
  .p-contact__cardTel:before {
    width: 2.2015rem;
    height: 3.4832rem;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__cardTel:before {
    width: 1.613rem;
    height: 2.459rem;
    transform: translateY(0.5rem);
  }
}
.p-contact__cardText {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__cardText {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__cardText {
    font-size: 1.8rem;
  }
}
.p-contact__cardNote {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__cardNote {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__cardNote {
    font-size: 1.8rem;
    text-align: start;
    text-indent: -1em;
    padding-left: 1em;
  }
}

.p-info {
  max-width: 103.6rem;
  margin: 0 auto;
}
.p-info__title {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 520px) {
  .p-info__title {
    font-size: 2.2rem;
  }
}
.p-info__container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-info__container {
    flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-info__container {
    margin-bottom: 5rem;
  }
}
.p-info__table {
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-info__table {
    margin: 0 auto 4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-info__table {
    font-size: 1.6rem;
    max-width: 30rem;
    margin: 0 auto 4rem;
  }
}
.p-info__table th {
  text-align: justify;
  font-weight: 400;
}
.p-info__table td {
  padding-left: 1em;
}
.p-info__btn {
  position: relative;
  display: block;
  font-size: 2rem;
  background: #0391f8;
  color: var(--color-white);
  width: 100%;
  max-width: 26.6rem;
  padding: 1rem 2rem;
  border-radius: 1.8rem;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-info__btn {
    margin: 0 auto 4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-info__btn {
    font-size: 1.8rem;
    max-width: 24rem;
    margin: 0 auto 1.4rem;
  }
}
.p-info__btn::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}
.p-info__map {
  width: 100%;
}
.p-info__map iframe {
  max-width: 48rem;
  height: 100%;
  min-height: 38rem;
}
@media screen and (max-width: 767px) {
  .p-info__map iframe {
    max-width: 100%;
    min-height: 44rem;
  }
}
@media screen and (max-width: 520px) {
  .p-info__map iframe {
    max-width: 100%;
    min-height: 22rem;
  }
}
.p-info__parking {
  max-width: 76.4rem;
  margin: 0 auto 10rem;
}
.p-info__parking h3 {
  position: absolute;
  font-size: 2.5rem;
  background: var(--primary-color);
  color: var(--color-white);
  padding: 0.25em 1em;
}

#pageTop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  max-width: 20rem;
  right: 2%;
  bottom: 5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  #pageTop {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #pageTop {
    max-width: 13rem;
    right: 0;
  }
}
@media screen and (max-width: 520px) {
  #pageTop {
    max-width: 10rem;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #pageTop p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 520px) {
  #pageTop p {
    font-size: 1.2rem;
  }
}
#pageTop a {
  transition: all 0.3s ease;
}
#pageTop.is-active {
  opacity: 1;
  visibility: visible;
}
#pageTop.is-footer {
  position: absolute !important;
  bottom: 0 !important;
}
#pageTop.is-rotate a {
  transform: rotate(15deg);
}

.p-about__image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about__image {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin: 0 auto;
  }
}

.p-history__table {
  width: 100%;
}
.p-history__table tr:nth-of-type(1) th,
.p-history__table tr:nth-of-type(1) td {
  border-top: 1px solid #cad2dc;
}
@media screen and (max-width: 767px) {
  .p-history__table tr:nth-of-type(1) td {
    border-top: none;
  }
}
.p-history__table th,
.p-history__table td {
  padding: 1rem;
  border-bottom: 1px solid #cad2dc;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-history__table th,
  .p-history__table td {
    display: block;
    padding: 0.5rem 0;
  }
}
.p-history__table th {
  min-width: 23rem;
}
@media screen and (max-width: 767px) {
  .p-history__table th {
    border-bottom: none;
  }
}

@media screen and (max-width: 520px) {
  .p-flow__contents {
    overflow-x: scroll;
  }
}
.p-flow__step {
  display: grid;
  gap: 8rem 2rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: min(103rem, 100% - 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    gap: 5.5rem 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step {
    width: 150rem;
    gap: 11rem 2rem;
    max-width: none;
    margin: 0 13rem;
  }
}
.p-flow__step-item {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 1rem;
  position: relative;
}
.p-flow__step-item::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.9rem;
  background: url(/ths/assets/image/top/top-step-arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-flow__step-item::after {
    width: 1.65rem;
    height: 1.35rem;
    bottom: -3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item::after {
    width: 3.3rem;
    height: 2.7rem;
    bottom: -6.7rem;
  }
}
.p-flow__step-item img {
  pointer-events: none;
}
.p-flow__step-item .js-ac-btn {
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-btn {
    max-width: 120px;
  }
}
.p-flow__step-item .js-ac-btn .p-in-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  display: block;
  padding: 3.2rem 2.4rem;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-flow__step-item .js-ac-btn .p-in-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-btn .p-in-text {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-btn .p-in-icon {
  --w: 1.5rem;
  --h: 0.25rem;
  content: "";
  display: block;
  width: var(--w);
  height: var(--h);
  background: var(--primary-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  opacity: 1;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-btn .p-in-icon {
    --w: 10px;
    --h: 1.5px;
  }
}
.p-flow__step-item .js-ac-btn .p-in-icon:after {
  content: "";
  width: var(--w);
  height: var(--h);
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  border-radius: 999px;
  transition: all 0.3s ease;
  opacity: 1;
}
.p-flow__step-item .js-ac-btn.is-open .p-in-text {
  opacity: 0;
}
.p-flow__step-item .js-ac-btn.is-open .p-in-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
.p-flow__step-item .js-ac-inner {
  padding-bottom: 3.2rem;
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-inner {
    max-width: calc(100% - 40px);
  }
}
.p-flow__step-item .js-ac-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.p-flow__step-item .js-ac-content p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-content p {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-content h4 {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__step-item .js-ac-content h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-content h4 {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-content h4::before {
  content: "■";
}
.p-flow__step-item .js-ac-content ul li a {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  padding: 0.25em 0;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-flow__step-item .js-ac-content ul li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-content ul li a {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-content ul li a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 0.86211rem;
  height: 1.3rem;
  display: inline-block;
  margin-right: 0.25em;
  background: url(/ths/assets/image/top/top-news_arrow.png) no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.p-flow__step-item .js-ac-content ul li a[href="javascript:void(0);"] {
  pointer-events: none;
  color: gray;
  text-decoration: none;
}
.p-flow__step-item .js-ac-content ul li a:hover::after {
  right: -0.25em;
}
.p-flow__step .-step01 {
  grid-area: 1/1/2/4;
  max-width: 66%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step01 {
    max-width: 45%;
  }
}
.p-flow__step .-step01::after {
  content: "";
  display: block;
  width: 107%;
  height: 25%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25%;
  background: url(/ths/assets/image/top/top-step-arrow01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step01::after {
    width: 155%;
    height: 35%;
    bottom: -35%;
  }
}
.p-flow__step .-step01 img {
  display: block;
  width: 68.38235%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step01 img {
    width: 100%;
  }
}
.p-flow__step .-step01 .js-ac-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.p-flow__step .-step02-01 {
  grid-area: 2/1/3/2;
}
.p-flow__step .-step02-02 {
  grid-area: 2/2/3/3;
}
.p-flow__step .-step02-03 {
  grid-area: 2/3/3/4;
}
.p-flow__step .-step03-01 {
  grid-area: 3/1/5/2;
  height: fit-content;
}
.p-flow__step .-step03-01::after {
  content: none;
}
.p-flow__step .-step03-02 {
  grid-area: 3/2/4/4;
}
.p-flow__step .-step03-02::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step03-02 {
    grid-area: 3/2/4/3;
  }
}
.p-flow__step .-step03-02--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step03-02--sp {
    display: block;
    grid-area: 3/3/4/4;
  }
}
.p-flow__step .-step04-01 {
  grid-area: 4/2/5/3;
}
.p-flow__step .-step04-01::after {
  bottom: unset;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__step .-step04-01::after {
    top: -3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step04-01::after {
    top: -6.7rem;
  }
}
.p-flow__step .-step04-02 {
  grid-area: 4/3/5/4;
}
.p-flow__step .-step04-02::after {
  bottom: unset;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__step .-step04-02::after {
    top: -3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step04-02::after {
    top: -6.7rem;
  }
}

#skill .p-policy__fig {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig {
    flex-direction: column;
  }
}
#skill .p-policy__fig-image {
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig-image {
    max-width: 56rem;
  }
}
#skill .p-policy__fig-caption {
  flex-basis: 50%;
  max-width: 50rem;
  display: grid;
  gap: 6.4rem;
}
#skill .p-policy__fig-caption-item h4 {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig-caption-item h4 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig-caption-item p {
    text-align: center;
  }
}
#skill .p-event__list {
  display: grid;
  gap: 4rem;
}
#skill .p-event__list-item {
  display: flex;
  gap: 0 3.88%;
}
@media screen and (max-width: 767px) {
  #skill .p-event__list-item {
    flex-direction: column;
    gap: 3.2rem;
  }
}
#skill .p-event__list-item-detail {
  width: 100%;
}
#skill .p-event__list-item-detail h4 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 6.2rem;
}
@media screen and (max-width: 767px) {
  #skill .p-event__list-item-detail h4 {
    text-align: center;
  }
}
#skill .p-event__list-item-image {
  width: 100%;
  max-width: 39rem;
}
@media screen and (max-width: 767px) {
  #skill .p-event__list-item-image {
    max-width: 100%;
  }
}
#skill .p-event__list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#skill .p-achievements__table {
  width: 100%;
  border-bottom: 2px solid #cad2dc;
}
#skill .p-achievements__table thead {
  background: #003552;
}
#skill .p-achievements__table thead th {
  color: var(--color-white);
  font-size: 2.4rem;
  text-align: center;
  border-right: 1px solid #eaecf0;
}
#skill .p-achievements__table tbody th,
#skill .p-achievements__table tbody td {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #cad2dc;
  padding: 0 1em;
}
#skill .p-achievements__table tbody tr:nth-last-of-type(1) th,
#skill .p-achievements__table tbody tr:nth-last-of-type(1) td {
  border: none;
}
#skill .p-achievements__table tbody th {
  background: #cbd1db;
  text-align: start;
}
#skill .p-achievements__table tbody td {
  background: var(--color-white);
}
#skill .p-achievements__table tbody td:nth-of-type(2n - 1) {
  background: #f7f7f7;
}

#course .p-curriculum__contents {
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__contents {
    grid-template-columns: 1fr;
  }
}
#course .p-curriculum__item {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 2rem 4rem;
}
#course .p-curriculum__item:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(1) {
    grid-area: auto;
  }
}
#course .p-curriculum__item:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(2) {
    grid-area: auto;
  }
}
#course .p-curriculum__item:nth-of-type(3) {
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(3) {
    grid-area: auto;
  }
}
#course .p-curriculum__item:nth-of-type(4) {
  grid-area: 3/1/4/3;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(4) {
    grid-area: auto;
  }
}
#course .p-curriculum__item h4 {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: var(--primary-color);
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item h4 {
    font-size: max(4rem, 24px);
    padding-bottom: max(1.6rem, 16px);
  }
}
#course .p-curriculum__item h4 span {
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item h4 span {
    font-size: max(1.8rem, 16px);
  }
}
#course .p-curriculum__item p {
  text-align: center;
  padding-bottom: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item p {
    padding-bottom: max(1.6rem, 16px);
  }
}
#course .p-curriculum__item ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1em;
}
#course .p-curriculum__item ul li {
  width: fit-content;
  min-width: 12rem;
  font-weight: 500;
  text-indent: -1.5em;
  padding-left: 1em;
}
#course .p-curriculum__item ul li::before {
  content: "●";
  margin-right: 0.5em;
}
#course .p-curriculum__item:nth-of-type(3) ul {
  max-width: 57rem;
  margin: 0 auto;
}
#course .p-curriculum__item:nth-of-type(4) ul {
  width: fit-content;
  margin: 0 auto;
}
#course .p-hito__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 4rem;
}
#course .p-hito__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  #course .p-hito__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#course .p-hito__list > div dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  #course .p-hito__list > div dt {
    font-size: max(2.4rem, 18px);
  }
}
#course .p-hito__list > div dt::before {
  content: "●";
  margin-right: 0.5em;
}
#course .p-hito__list > div dd {
  font-weight: 500;
  padding-bottom: 1em;
}
#course .p-hito__image {
  padding: 4.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #course .p-hito__image {
    grid-template-columns: repeat(2, 1fr);
  }
}
#course .p-mono__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #course .p-mono__contents {
    grid-template-columns: 1fr;
  }
}
#course .p-mono__contents-item figure {
  position: relative;
}
#course .p-mono__contents-item figure figcaption {
  position: absolute;
  width: 100%;
  min-height: 7.2rem;
  bottom: 0;
  background: rgba(0, 137, 227, 0.7);
  text-align: center;
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 700;
}
#course .p-requirements__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #course .p-requirements__contents {
    grid-template-columns: 1fr;
  }
}
#course .p-requirements__contents-item {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3rem;
}
#course .p-requirements__contents-item h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  #course .p-requirements__contents-item h4 {
    font-size: max(2.4rem, 18px);
  }
}
#course .p-requirements__contents-item p {
  font-weight: 500;
}

.u-green {
  color: var(--primary-color);
}

.u-white {
  color: var(--color-white);
}

.u-red {
  color: var(--color-red);
}

.u-pb--0 {
  padding-bottom: 0;
}

.u-border {
  border-bottom: 1px solid var(--primary-color);
}

.u-btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .u-btn-col {
    flex-direction: column;
    gap: 3.2rem;
  }
}