@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

.test {
  padding: 100px 0;
  background: rgb(198, 229, 153);
}

@media (min-width: 600px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-screen-locked {
  overflow: hidden;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-desktop-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop-inline {
    display: inline-block;
  }
}

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

@media (hover: hover) {
  .u-hover {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .u-hover:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .u-hover {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .u-hover:hover {
    opacity: 0.7;
  }
}
.u-over-hidden {
  overflow: hidden;
}

.u-scroll-margin {
  scroll-margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .u-scroll-margin {
    scroll-margin-top: 5rem;
  }
}

.u-scroll-padding {
  scroll-padding-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .u-scroll-padding {
    scroll-padding-top: 5rem;
  }
}

.u-fadeInAnime {
  opacity: 0;
  -webkit-animation: 0.5s ease fadeInAnime forwards;
          animation: 0.5s ease fadeInAnime forwards;
}

.u-fadeInAnime2 {
  opacity: 0;
  -webkit-animation: 0.5s ease fadeInAnime 0.1s forwards;
          animation: 0.5s ease fadeInAnime 0.1s forwards;
}

.u-fadeInAnime3 {
  opacity: 0;
  -webkit-animation: 0.5s ease fadeInAnime 0.2s forwards;
          animation: 0.5s ease fadeInAnime 0.2s forwards;
}

.u-fadeInAnime4 {
  opacity: 0;
  -webkit-animation: 0.5s ease fadeInAnime 0.3s forwards;
          animation: 0.5s ease fadeInAnime 0.3s forwards;
}

.u-fadeInAnimeCenter {
  opacity: 0;
  -webkit-animation: 0.5s ease fadeInAnimeCenter forwards;
          animation: 0.5s ease fadeInAnimeCenter forwards;
}

.u-fadeInAnime-scroll {
  opacity: 0;
}

.u-fadeInAnime-scroll2 {
  opacity: 0;
}

.u-fadeInAnime-scroll3 {
  opacity: 0;
}

.u-fadeInAnime-scroll4 {
  opacity: 0;
}

.u-fadeInAnime-scroll5 {
  opacity: 0;
}

.u-fadeInAnime-scroll.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime forwards;
          animation: 0.5s ease fadeInAnime forwards;
}

.u-fadeInAnime-scroll2.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime forwards;
          animation: 0.5s ease fadeInAnime forwards;
}
@media screen and (min-width: 768px) {
  .u-fadeInAnime-scroll2.is-animated {
    -webkit-animation: 0.5s ease fadeInAnime 0.3s forwards;
            animation: 0.5s ease fadeInAnime 0.3s forwards;
  }
}

.u-fadeInAnime-scroll3.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime forwards;
          animation: 0.5s ease fadeInAnime forwards;
}
@media screen and (min-width: 768px) {
  .u-fadeInAnime-scroll3.is-animated {
    -webkit-animation: 0.5s ease fadeInAnime 0.6s forwards;
            animation: 0.5s ease fadeInAnime 0.6s forwards;
  }
}

.u-fadeInAnime-scroll4.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime forwards;
          animation: 0.5s ease fadeInAnime forwards;
}
@media screen and (min-width: 768px) {
  .u-fadeInAnime-scroll4.is-animated {
    -webkit-animation: 0.5s ease fadeInAnime 0.9s forwards;
            animation: 0.5s ease fadeInAnime 0.9s forwards;
  }
}

.u-fadeInAnime-scroll5.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime forwards;
          animation: 0.5s ease fadeInAnime forwards;
}
@media screen and (min-width: 768px) {
  .u-fadeInAnime-scroll5.is-animated {
    -webkit-animation: 0.5s ease fadeInAnime 1.2s forwards;
            animation: 0.5s ease fadeInAnime 1.2s forwards;
  }
}

.u-fadeInAnime-scroll-topUnder {
  opacity: 0;
}

.u-fadeInAnime-scroll-topUnder.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime forwards, 3s topUnder 0.5s infinite;
          animation: 0.5s ease fadeInAnime forwards, 3s topUnder 0.5s infinite;
}

.u-fadeInAnime-scroll-topUnder2.is-animated {
  -webkit-animation: 0.5s ease fadeInAnime3 forwards, 3s topUnder3 0.5s infinite;
          animation: 0.5s ease fadeInAnime3 forwards, 3s topUnder3 0.5s infinite;
}
@media screen and (min-width: 768px) {
  .u-fadeInAnime-scroll-topUnder2.is-animated {
    -webkit-animation: 0.5s ease fadeInAnime2 forwards, 3s topUnder2 0.5s infinite;
            animation: 0.5s ease fadeInAnime2 forwards, 3s topUnder2 0.5s infinite;
  }
}

@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInAnime2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) rotate(20deg);
            transform: translateY(20px) rotate(20deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(20deg);
            transform: translateY(0) rotate(20deg);
  }
}
@keyframes fadeInAnime2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) rotate(20deg);
            transform: translateY(20px) rotate(20deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(20deg);
            transform: translateY(0) rotate(20deg);
  }
}
@-webkit-keyframes fadeInAnime3 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) rotate(27deg);
            transform: translateY(20px) rotate(27deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(27deg);
            transform: translateY(0) rotate(27deg);
  }
}
@keyframes fadeInAnime3 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) rotate(27deg);
            transform: translateY(20px) rotate(27deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(27deg);
            transform: translateY(0) rotate(27deg);
  }
}
@-webkit-keyframes fadeInAnimeCenter {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@keyframes fadeInAnimeCenter {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.u-topUnder {
  -webkit-animation: 3s topUnder infinite;
          animation: 3s topUnder infinite;
}

@-webkit-keyframes topUnder {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes topUnder {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes topUnder2 {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(20deg);
            transform: translateY(0) rotate(20deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(20deg);
            transform: translateY(-20px) rotate(20deg);
  }
}
@keyframes topUnder2 {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(20deg);
            transform: translateY(0) rotate(20deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(20deg);
            transform: translateY(-20px) rotate(20deg);
  }
}
@-webkit-keyframes topUnder3 {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(27deg);
            transform: translateY(0) rotate(27deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(27deg);
            transform: translateY(-20px) rotate(27deg);
  }
}
@keyframes topUnder3 {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(27deg);
            transform: translateY(0) rotate(27deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(27deg);
            transform: translateY(-20px) rotate(27deg);
  }
}
@-webkit-keyframes topUnderCenter {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes topUnderCenter {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes appearance {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes appearance {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.u-leftRight {
  opacity: 0;
  -webkit-animation: 1s leftRight 0.3s forwards;
          animation: 1s leftRight 0.3s forwards;
}

.u-leftRight-scroll {
  opacity: 0;
}

.u-leftRight-scroll.is-animated {
  -webkit-animation: 1s leftRight 0.3s forwards;
          animation: 1s leftRight 0.3s forwards;
}

@-webkit-keyframes leftRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes leftRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

[type=tel].wpcf7-not-valid,
[type=text].wpcf7-not-valid,
[type=email].wpcf7-not-valid,
textarea.wpcf7-not-valid {
  background: #FFDCDC;
}

.wpcf7-not-valid-tip {
  color: #FF5757;
  font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
  font-weight: initial;
  font-size: medium;
  font-size: initial;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-inner {
  width: 100%;
  max-width: 500px;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--large {
    max-width: 1310px;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--xl {
    max-width: 1400px;
  }
}

@media screen and (min-width: 451px) {
  .l-inner--xl2 {
    max-width: 1400px;
  }
}
@media screen and (min-width: 768px) {
  .l-inner--xl2 {
    max-width: 1400px;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--xxl {
    max-width: 1450px;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--small {
    max-width: 650px;
  }
}

.l-recommend {
  padding: 30px 0 40px;
  padding: 1.875rem 0 2.5rem;
  background: url(../images/common/bg-recommend.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .l-recommend {
    padding: 7.5rem 0 9.375rem;
    background: url(../images/common/bg-recommend-pc.jpg) no-repeat center center/cover;
  }
}

.l-sub-container {
  margin-top: 56px;
  margin-top: 3.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-sub-container {
    margin-top: 4.5rem;
  }
}

.l-sub-container::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(155deg, #E5EBF4 50%, transparent 50%);
}
@media screen and (min-width: 768px) {
  .l-sub-container::before {
    padding-top: 40%;
    background: linear-gradient(160deg, #E5EBF4 50%, transparent 50%);
  }
}

.l-target {
  position: absolute;
  top: -100px;
  top: -6.25rem;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .l-target {
    top: -12.5rem;
  }
}

.l-target--2 {
  top: -70px;
  top: -4.375rem;
}

.c-btn-angle {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  max-width: 120px;
  max-width: 7.5rem;
  display: inline-block;
  padding: 2px 0 4px;
  padding: 0.125rem 0 0.25rem;
  border-radius: 16px;
  text-align: center;
}
.c-btn-angle svg {
  width: 7px;
  margin-left: 5px;
  margin-left: 0.3125rem;
  vertical-align: middle;
  display: inline-block;
}

.c-btn-angle--white {
  border: 1px solid #0F3985;
  background: #fff;
  color: #0F3985;
}
.c-btn-angle--white svg {
  stroke: #0F3985;
}

.c-btn-angle--blue {
  border: 1px solid #FFC32C;
  background: #0F3985;
  color: #FFC32C;
}
.c-btn-angle--blue svg {
  stroke: #FFC32C;
}

.c-btn-image {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: #0F3985;
  width: 100%;
  max-width: 325px;
  max-width: 20.3125rem;
  border: 2px solid #0F3985;
  border-radius: 8px;
  padding: 14px;
  padding: 0.875rem;
  text-align: center;
  background: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn-image {
    max-width: 37.5rem;
    font-size: 2rem;
    padding: 2.375rem;
  }
}
@media (hover: hover) {
  .c-btn-image:hover {
    opacity: 0.7;
  }
}
.c-btn-image span {
  display: inline-block;
  position: relative;
}
.c-btn-image span::after {
  content: "";
  display: block;
  background: url(../images/common/icon-angle-blue.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -40px;
  right: -2.5rem;
  width: 22px;
  width: 1.375rem;
  height: 10px;
  height: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-btn-image span::after {
    background: url(../images/common/icon-angle-blue-pc.svg) no-repeat center center/contain;
    width: 5.25rem;
    height: 0.875rem;
    right: -6rem;
  }
}

.c-btn-image--ceo {
  position: relative;
}
.c-btn-image--ceo::before {
  content: "";
  display: block;
  width: 83px;
  width: 5.1875rem;
  height: 102px;
  height: 6.375rem;
  background: url(../images/common/img-ceo-s.png) no-repeat center center/contain;
  position: absolute;
  left: -10px;
  left: -0.625rem;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-btn-image--ceo::before {
    width: 9.625rem;
    height: 12.8125rem;
    left: -3.625rem;
  }
}

.c-btn-image--staff {
  position: relative;
}
.c-btn-image--staff::before {
  content: "";
  display: block;
  width: 122px;
  width: 7.625rem;
  height: 122px;
  height: 7.625rem;
  background: url(../images/common/img-staff-s.png) no-repeat center center/contain;
  position: absolute;
  left: -22px;
  left: -1.375rem;
  bottom: -22px;
  bottom: -1.375rem;
}
@media screen and (min-width: 768px) {
  .c-btn-image--staff::before {
    width: 12.5625rem;
    height: 12.5625rem;
    left: -3.125rem;
  }
}

.c-btn-image--hero {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-image--hero {
    max-width: 36.25rem;
  }
}
.c-btn-image--hero::before {
  content: "";
  display: block;
  width: 116px;
  width: 7.25rem;
  height: 80px;
  height: 5rem;
  background: url(../images/common/img-hero-s.png) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -90%);
          transform: translate(-50%, -90%);
}
@media screen and (min-width: 768px) {
  .c-btn-image--hero::before {
    width: 14.6875rem;
    height: 10.125rem;
    left: 0;
    -webkit-transform: translate(-30%, -50%);
            transform: translate(-30%, -50%);
  }
}
.c-btn-image--hero span::after {
  right: -40px;
  right: -2.5rem;
  width: 22px;
  width: 1.375rem;
  height: 10px;
  height: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-btn-image--hero span::after {
    width: 5.25rem;
    height: 0.875rem;
    right: -6.0625rem;
  }
}

.c-btn-navi {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  width: 100%;
  max-width: 96px;
  max-width: 6rem;
  border-radius: 18px;
  border: 2px solid #000;
  text-align: center;
  padding: 3.5px;
  padding: 0.21875rem;
  background: #fff;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-btn-navi {
    font-size: 1rem;
    padding: 0.3125rem;
    max-width: 10rem;
  }
}

.c-btn-navi--red {
  border: 2px solid #DC0006;
}

.c-btn-navi--pink {
  border: 2px solid #D64E9F;
}

.c-btn-navi--blue {
  border: 2px solid #289CCB;
}

.c-btn-navi--green {
  border: 2px solid #00948E;
}

.c-btn-navi--yellow {
  border: 2px solid #FFC32C;
}

.c-btn-title {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  display: inline-block;
  padding: 11px 28px 9px 10px;
  padding: 0.6875rem 1.75rem 0.5625rem 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-title {
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  }
}
.c-btn-title span:nth-child(1) {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn-title span:nth-child(1) {
    font-size: 1.25rem;
  }
}
.c-btn-title span:nth-child(2) {
  font-size: 8px;
  font-weight: bold;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn-title span:nth-child(2) {
    font-size: 0.75rem;
  }
}
.c-btn-title svg {
  position: absolute;
  width: 8px;
  width: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-btn-title svg {
    width: 0.5rem;
    right: 0.9375rem;
  }
}

.c-btn {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  background: #BEBEBE;
  border-radius: 20px;
  padding: 8px;
  padding: 0.5rem;
  color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1.25rem;
    max-width: 15rem;
    padding: 0.8125rem;
    border-radius: 42px;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

.c-btn-prev {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #0F3985;
  padding: 8px;
  padding: 0.5rem;
  color: #0F3985;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn-prev {
    font-size: 1.25rem;
    max-width: 15rem;
    padding: 0.8125rem;
    border-radius: 42px;
  }
}
@media (hover: hover) {
  .c-btn-prev:hover {
    opacity: 0.7;
  }
}

input[type=submit]:focus {
  outline: 2px solid #289CCB;
}

.c-card {
  display: block;
  width: 100%;
  background: #fff;
  position: relative;
  padding-top: 100%;
  border-radius: 32px 12px 32px 16px;
}
@media screen and (min-width: 768px) {
  .c-card {
    border-radius: 40px 16px 40px 16px;
  }
}
.c-card::before {
  content: "";
  display: block;
  width: 36%;
  height: 36%;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  right: 10px;
  right: 0.625rem;
}

.c-card--1::before {
  background: url(../images/common/bg-dot-red.svg) no-repeat center center/contain;
}

.c-card--2::before {
  background: url(../images/common/bg-dot-pink.svg) no-repeat center center/contain;
}

.c-card--3::before {
  background: url(../images/common/bg-dot-blue.svg) no-repeat center center/contain;
}

.c-card--4::before {
  background: url(../images/common/bg-dot-green.svg) no-repeat center center/contain;
}

.c-card--5::before {
  background: url(../images/common/bg-dot-yellow.svg) no-repeat center center/contain;
}

.c-card__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.4em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 2rem;
  }
}

.c-card__title--1 {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 16px;
  left: 1rem;
}
.c-card__title--1 span {
  color: #DC0006;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-card__title--1 {
    top: 1.125rem;
    left: 0.625rem;
  }
}

.c-card__title--2 {
  position: absolute;
  bottom: 10px;
  bottom: 0.625rem;
  right: 16px;
  right: 1rem;
}
.c-card__title--2 span {
  color: #D64E9F;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-card__title--2 {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

.c-card__title--3 {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 16px;
  left: 1rem;
}
.c-card__title--3 span {
  color: #289CCB;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-card__title--3 {
    top: 1.125rem;
    left: 0.625rem;
  }
}

.c-card__title--4 {
  position: absolute;
  bottom: 10px;
  bottom: 0.625rem;
  right: 16px;
  right: 1rem;
}
.c-card__title--4 span {
  color: #00948E;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-card__title--4 {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

.c-card__title--5 {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 16px;
  left: 1rem;
}
.c-card__title--5 span {
  color: #FFC32C;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-card__title--5 {
    top: 1.125rem;
    left: 0.625rem;
  }
}

.c-card__img {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .c-card:hover .c-card__img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.c-card__img--1 {
  width: 80%;
  top: 25%;
  right: 0;
}

.c-card__img--2 {
  width: 90%;
  top: 0;
  left: -14%;
}

.c-card__img--3 {
  width: 68%;
  top: 12%;
  right: 8%;
}

.c-card__img--4 {
  width: 105%;
  top: -5%;
  right: 8%;
}

.c-card__img--5 {
  width: 57%;
  top: 11%;
  right: 14%;
}

.c-card__text {
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  text-transform: uppercase;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    font-size: 0.8125rem;
  }
}

.c-card__text--1 {
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-card__text--1 {
    bottom: 1.5rem;
  }
}

.c-card__text--2 {
  bottom: 20px;
  bottom: 1.25rem;
  left: 20px;
  left: 1.25rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-card__text--2 {
    bottom: 1.5rem;
    text-align: left;
  }
}

.c-card__text--3 {
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-card__text--3 {
    bottom: 1.5rem;
  }
}

.c-card__text--4 {
  top: 11px;
  top: 0.6875rem;
  left: 9px;
  left: 0.5625rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-card__text--4 {
    top: 0.75rem;
    left: 0.71875rem;
  }
}

.c-card__text--5 {
  bottom: 20px;
  bottom: 1.25rem;
  left: 20px;
  left: 1.25rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-card__text--5 {
    bottom: 0.8125rem;
  }
}

.c-hamburger {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 74px;
  width: 4.625rem;
  height: 17px;
  height: 1.0625rem;
  outline: none;
  padding: 0 15px;
  padding: 0 0.9375rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-hamburger__text {
  width: 50px;
  width: 3.125rem;
  display: inline-block;
  margin-right: auto;
}

.c-hamburger__line {
  position: absolute;
  top: -6px;
  top: -0.375rem;
  right: 15px;
  right: 0.9375rem;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before {
  top: -5px;
}

.c-hamburger__line::after {
  top: 5px;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line::before, .c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  top: 0;
  background-color: #fff;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-list {
  display: block;
}

.c-list__date {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.666;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-list__date {
    font-size: 0.8125rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    font-weight: 500;
  }
}

.c-list__title {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.666;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .c-list__title {
    font-size: 0.8125rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    font-weight: 500;
  }
}

.c-list2 {
  display: block;
}

.c-list2__date {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.666;
  letter-spacing: 0.08em;
}

.c-list2__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.666;
  color: #0F3985;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-list2__title {
    font-size: 1.25rem;
  }
}

.c-list2__text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-top: 0.75rem;
}
.c-list2__text img {
  display: inline-block;
  width: 15px;
  width: 0.9375rem;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-list2__text img {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@media screen and (min-width: 768px) {
  .c-list2__text {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 0.3125rem;
    letter-spacing: 0.08em;
  }
  .c-list2__text img {
    width: 1.5625rem;
  }
}

.c-list2 p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-list2 p {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 0.3125rem;
    letter-spacing: 0.08em;
  }
}

.c-sub-head {
  display: inline-block;
}

.c-sub-head__en {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .c-sub-head__en {
    font-size: 3rem;
  }
}

.c-sub-head__jp {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-sub-head__jp {
    margin-top: 0.1875rem;
    font-size: 1.5rem;
  }
}

.p-accordion {
  background: #0F3985;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-accordion {
    padding-bottom: 0.625rem;
  }
}

.p-accordion__btn {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFC32C;
  display: block;
  width: 100%;
  position: relative;
}
.p-accordion__btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-accordion__btn {
    font-size: 1.5rem;
    padding-top: 2.8125rem;
    padding-bottom: 2.5rem;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.p-accordion__btn span {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background: #FFC32C;
  margin-left: 5px;
  margin-left: 0.3125rem;
  vertical-align: middle;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (min-width: 768px) {
  .p-accordion__btn span {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.p-accordion__btn span::before, .p-accordion__btn span::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  background: #0F3985;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-accordion__btn span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-accordion__btn span::after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-accordion__btn.is-active span::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-accordion__btn.is-active span::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}

.p-accordion__body {
  padding: 0 25px 20px;
  padding: 0 1.5625rem 1.25rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-accordion__body {
    padding: 0 1.5625rem 3.125rem;
    display: block;
  }
}

.p-accordion__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-accordion__body ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.9375rem 3rem;
    width: 100%;
    max-width: 62.5rem;
    margin-inline: auto;
  }
}

.p-accordion__body li {
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  padding-left: 13px;
  padding-left: 0.8125rem;
  position: relative;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-accordion__body li {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
    padding-left: 1.25rem;
    width: calc(50% - 1.5rem);
  }
}
.p-accordion__body li::before {
  content: "";
  display: block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #00948E;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-accordion__body li::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.6875rem;
  }
}

.p-cards {
  width: 100%;
  max-width: 278px;
  max-width: 17.375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-cards {
    max-width: 60rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.6875rem 1.1875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .p-cards__item {
    width: calc(33.3% - 0.79167rem);
  }
}

.p-conduct {
  background: #fff;
  border-radius: 4px;
  width: 100%;
  padding: 40px 23px;
  padding: 2.5rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-conduct {
    padding: 5rem;
    border-radius: 24px;
  }
}

.p-conduct__content {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-conduct__content {
    max-width: 44.6875rem;
  }
}

.p-conduct__title-en {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-conduct__title-en {
    font-size: 3rem;
  }
}

.p-conduct__title-jp {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-conduct__title-jp {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}

.p-conduct__main-text {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  color: #0F3985;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  margin-top: 22px;
  margin-top: 1.375rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-conduct__main-text {
    font-size: 2rem;
    margin-top: 1.375rem;
  }
}

.p-conduct__text-lists {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-conduct__text-lists {
    margin-top: 1.875rem;
  }
}

.p-conduct__text-list {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  line-height: 1.8;
  border-bottom: 1px solid #0F3985;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-conduct__text-list {
    font-size: 1.5rem;
    padding-bottom: 0.9375rem;
  }
}

.p-conduct__text-list + .p-conduct__text-list {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-conduct__text-list + .p-conduct__text-list {
    margin-top: 1.625rem;
  }
}

.p-contact-text {
  width: 100%;
}

.p-contact-text__text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #000;
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-text__text {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

.p-contact-text__text:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 2px solid #289CCB;
}

.p-contact-text__text::-webkit-input-placeholder {
  color: #AAAAAA;
}

.p-contact-text__text::-moz-placeholder {
  color: #AAAAAA;
}

.p-contact-text__text::-ms-input-placeholder {
  color: #AAAAAA;
}

.p-contact-text__text::placeholder {
  color: #AAAAAA;
}

.p-contact-text__text:focus::-webkit-input-placeholder {
  color: transparent;
}

.p-contact-text__text:focus::-moz-placeholder {
  color: transparent;
}

.p-contact-text__text:focus::-ms-input-placeholder {
  color: transparent;
}

.p-contact-text__text:focus::placeholder {
  color: transparent;
}

.p-contact-textarea__text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #000;
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  font-size: 0.75rem;
  height: 278px;
  height: 17.375rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  width: 100%;
  resize: none;
}
@media screen and (min-width: 768px) {
  .p-contact-textarea__text {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    height: 15rem;
  }
}

.p-contact-textarea__text:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 2px solid #289CCB;
}

.p-contact-textarea__text::-webkit-input-placeholder {
  color: #AAAAAA;
}

.p-contact-textarea__text::-moz-placeholder {
  color: #AAAAAA;
}

.p-contact-textarea__text::-ms-input-placeholder {
  color: #AAAAAA;
}

.p-contact-textarea__text::placeholder {
  color: #AAAAAA;
}

.p-contact-textarea__text:focus::-webkit-input-placeholder {
  color: transparent;
}

.p-contact-textarea__text:focus::-moz-placeholder {
  color: transparent;
}

.p-contact-textarea__text:focus::-ms-input-placeholder {
  color: transparent;
}

.p-contact-textarea__text:focus::placeholder {
  color: transparent;
}

.p-contact-textarea p {
  white-space: pre-wrap;
}

.p-contact__content + .p-contact__content {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content + .p-contact__content {
    margin-top: 0.75rem;
  }
}

.p-contact__title {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1rem;
  }
}

.p-contact__title::before {
  content: "";
  display: inline-block;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background: red;
  margin-right: 3px;
  margin-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-contact__title--privacy {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
}
.p-contact__title--privacy::before {
  content: none;
}
@media screen and (min-width: 768px) {
  .p-contact__title--privacy {
    font-size: 0.75rem;
  }
}

.p-contact__item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    margin-top: 0.625rem;
  }
}

.p-contact__content.p-contact__content--privacy {
  margin-top: -11px;
  margin-top: -0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content.p-contact__content--privacy {
    margin-top: -0.3125rem;
  }
}

.p-contact__content.p-contact__content--button {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content.p-contact__content--button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-contact__content.p-contact__content--button > p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__content.p-contact__content--button > p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.p-contact__content.p-contact__content--checkbox {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content.p-contact__content--checkbox {
    margin-top: 1.25rem;
  }
}

.p-content {
  position: relative;
  scroll-margin-top: 9.0625rem;
}
@media screen and (min-width: 768px) {
  .p-content {
    scroll-margin-top: 11.875rem;
  }
}

.p-content::before {
  content: "";
  display: block;
  width: 48%;
  padding-top: 21%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-content::before {
    padding-top: 14%;
    width: 39%;
  }
}

.p-content--1::before {
  background: linear-gradient(156deg, #DC0006 50%, transparent 50%);
}
@media screen and (min-width: 768px) {
  .p-content--1::before {
    background: linear-gradient(160deg, #DC0006 50%, transparent 50%);
  }
}

.p-content--2::before {
  background: linear-gradient(203deg, #D64E9F 50%, transparent 50%);
  left: auto;
  left: initial;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-content--2::before {
    padding-top: 17%;
    background: linear-gradient(200deg, #D64E9F 46%, transparent 46%);
  }
}

.p-content--3::before {
  background: linear-gradient(156deg, #289CCB 50%, transparent 50%);
}
@media screen and (min-width: 768px) {
  .p-content--3::before {
    background: linear-gradient(160deg, #289CCB 50%, transparent 50%);
  }
}

.p-content--4::before {
  background: linear-gradient(203deg, #00948E 50%, transparent 50%);
  left: auto;
  left: initial;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-content--4::before {
    padding-top: 17%;
    background: linear-gradient(200deg, #00948E 46%, transparent 46%);
  }
}

.p-content--5::before {
  background: linear-gradient(156deg, #EA9D40 50%, transparent 50%);
}
@media screen and (min-width: 768px) {
  .p-content--5::before {
    background: linear-gradient(160deg, #EA9D40 50%, transparent 50%);
  }
}

.p-content__top {
  width: 100%;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-content__top {
    padding: 10rem 0 5rem;
    overflow: hidden;
  }
}

.p-content__top::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  bottom: 0.625rem;
  right: 10px;
  right: 0.625rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 114px;
  width: 7.125rem;
  height: 114px;
  height: 7.125rem;
}
@media screen and (min-width: 768px) {
  .p-content__top::before {
    width: 20vw;
    height: 20vw;
    bottom: 2.5rem;
    right: 2.5rem;
    max-width: 22.9375rem;
    max-height: 22.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-content__top::after {
    content: "";
    display: block;
    width: 130vw;
    max-width: 156.6875rem;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 42%;
    -webkit-transform: translate(-52%, -50%) rotate(159.5deg);
            transform: translate(-52%, -50%) rotate(159.5deg);
  }
}

.p-content__top--1::before {
  background: url(../images/common/bg-dot-red.svg) no-repeat center center/contain;
}
.p-content__top--1::after {
  background: #DC0006;
}

@media screen and (min-width: 768px) {
  .p-content__top--2 {
    padding: 10rem 0 7.9375rem;
  }
}
.p-content__top--2::before {
  background: url(../images/common/bg-dot-pink.svg) no-repeat center center/contain;
}
.p-content__top--2::after {
  background: #D64E9F;
}

@media screen and (min-width: 768px) {
  .p-content__top--3 {
    padding: 10rem 0 5.1875rem;
  }
}
.p-content__top--3::before {
  background: url(../images/common/bg-dot-blue.svg) no-repeat center center/contain;
}
.p-content__top--3::after {
  background: #289CCB;
}

@media screen and (min-width: 768px) {
  .p-content__top--4 {
    padding: 10rem 0 7.5rem;
  }
}
.p-content__top--4::before {
  background: url(../images/common/bg-dot-green.svg) no-repeat center center/contain;
}
.p-content__top--4::after {
  background: #00948E;
}
@media screen and (min-width: 768px) {
  .p-content__top--4::after {
    background: #00948E;
  }
}

.p-content__top--5::before {
  background: url(../images/common/bg-dot-yellow.svg) no-repeat center center/contain;
}
.p-content__top--5::after {
  background: #EA9D40;
}

.p-content__inner {
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 3;
  padding: 48px 0 170px;
  padding: 3rem 0 10.625rem;
}
@media screen and (min-width: 768px) {
  .p-content__inner {
    max-width: 106.25rem;
    padding: 0;
    padding: initial;
  }
}

.p-content__block {
  padding-left: 75px;
  padding-left: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-content__block {
    max-width: 81.25rem;
    padding-left: 6.5625rem;
  }
}

.p-content__text-block {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-content__text-block {
    max-width: 45.625rem;
    padding-left: 2.1875rem;
    padding-right: 5.3125rem;
    background: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .p-content__text-block {
    max-width: 47.5rem;
    padding-left: 2.5625rem;
    padding-right: 5.1875rem;
  }
}

.p-content__title {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: -26px;
  top: -1.625rem;
  left: -65px;
  left: -4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-content__title {
    white-space: nowrap;
    font-size: 5rem;
    top: -6.5625rem;
    left: -6.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-content__title {
    left: -9.0625rem;
  }
}
.p-content__title::first-letter {
  color: #fff;
}

.p-content__title-en {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Galvji", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: #E4EBF5;
}
@media screen and (min-width: 768px) {
  .p-content__title-en {
    font-size: 2rem;
  }
}

.p-content__main-text {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: #0F3985;
  margin-top: 5px;
  margin-top: 0.3125rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-content__main-text {
    font-size: 2.5rem;
    margin-top: 0.625rem;
    white-space: normal;
    white-space: initial;
  }
}

.p-content__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin-top: 21px;
  margin-top: 1.3125rem;
}
.p-content__text strong {
  font-size: 14px;
  font-size: 0.875rem;
  background: #E2EBF6;
  line-height: 1.7142;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-content__text {
    font-size: 1rem;
    line-height: 2.3;
    margin-top: 2.4375rem;
  }
  .p-content__text strong {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-content__img {
  position: absolute;
  pointer-events: none;
}

.p-content__img--1 {
  width: 199px;
  width: 12.4375rem;
  bottom: -20px;
  bottom: -1.25rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-content__img--1 {
    max-width: 33.625rem;
    width: 32%;
    bottom: 1.875rem;
    right: 0;
  }
}

.p-content__img--2 {
  width: 199px;
  width: 12.4375rem;
  bottom: -58px;
  bottom: -3.625rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-content__img--2 {
    max-width: 33.625rem;
    width: 32%;
    bottom: -5rem;
    left: -0.75rem;
  }
}

.p-content__img--3 {
  width: 149px;
  width: 9.3125rem;
  bottom: -20px;
  bottom: -1.25rem;
  right: 40px;
  right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-content__img--3 {
    max-width: 28.625rem;
    width: 28%;
    bottom: -2.8125rem;
    right: 2.625rem;
  }
}

.p-content__img--4 {
  width: 199px;
  width: 12.4375rem;
  bottom: -67px;
  bottom: -4.1875rem;
  left: -50px;
  left: -3.125rem;
  -webkit-transform: rotate(26deg);
          transform: rotate(26deg);
}
@media screen and (min-width: 768px) {
  .p-content__img--4 {
    max-width: 42rem;
    width: 41%;
    bottom: -6.5rem;
    left: -8.25rem;
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
}

.p-content__img--5 {
  width: 120px;
  width: 7.5rem;
  bottom: -66px;
  bottom: -4.125rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-content__img--5 {
    max-width: 21.25rem;
    width: 20%;
    bottom: -2.875rem;
    right: 6.3125rem;
  }
}

.p-content:nth-child(even) .p-content__top::before {
  right: auto;
  right: initial;
  left: 10px;
  left: 0.625rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-content:nth-child(even) .p-content__top::before {
    right: auto;
    right: initial;
    left: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-content:nth-child(even) .p-content__top::after {
    content: "";
    display: block;
    width: 130vw;
    max-width: 156.6875rem;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 57%;
    -webkit-transform: translate(-47%, -50%) rotate(20.4deg);
            transform: translate(-47%, -50%) rotate(20.4deg);
  }
}
.p-content:nth-child(even) .p-content__block {
  padding-right: 75px;
  padding-right: 4.6875rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-content:nth-child(even) .p-content__block {
    padding-right: 6.5625rem;
    padding-left: 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-content:nth-child(even) .p-content__text-block {
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 2.5rem;
  }
}
.p-content:nth-child(even) .p-content__title {
  right: -65px;
  right: -4.0625rem;
  top: -29px;
  top: -1.8125rem;
  left: auto;
  left: initial;
}
@media screen and (min-width: 768px) {
  .p-content:nth-child(even) .p-content__title {
    right: -5.9375rem;
    top: -7.1875rem;
    left: auto;
    left: initial;
  }
}
@media screen and (min-width: 1400px) {
  .p-content:nth-child(even) .p-content__title {
    right: -8.75rem;
  }
}

.p-contact-checkArea {
  margin-top: 3px;
  margin-top: 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-contact-checkArea {
    padding-left: 0.625rem;
    gap: 1rem;
    margin-top: 1.0625rem;
  }
}
.p-contact-checkArea .p-contact-checkArea__box > span > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 10px;
  gap: 0.5rem 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-contact-checkArea .p-contact-checkArea__box > span > span {
    gap: 1rem 1.625rem;
    padding-left: 0.3125rem;
  }
}
.p-contact-checkArea .p-contact-checkArea__box > p > span > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 10px;
  gap: 0.5rem 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-contact-checkArea .p-contact-checkArea__box > p > span > span {
    gap: 1rem 1.625rem;
    padding-left: 0.3125rem;
  }
}
.p-contact-checkArea .p-contact-checkArea__item label {
  position: relative;
}
.p-contact-checkArea input[type=checkbox] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  z-index: 10;
}
.p-contact-checkArea input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 20px;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .p-contact-checkArea input[type=checkbox] + span {
    font-size: 1rem;
    padding: 0 0 0 35px;
  }
}
.p-contact-checkArea input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #000;
  border-radius: 2px;
  content: "";
  display: block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 8px;
  top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-checkArea input[type=checkbox] + span::before {
    top: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-contact-checkArea input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  content: "";
  display: block;
  width: 1.2em;
  height: 0.6em;
  position: absolute;
  left: 2px;
  left: 0.125rem;
  top: 8px;
  top: 0.5rem;
  opacity: 0;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-contact-checkArea input[type=checkbox] + span::after {
    top: 0.5rem;
  }
}
.p-contact-checkArea input[type=checkbox]:checked + span::before {
  background: #fff;
}
.p-contact-checkArea input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-contact-checkArea input[type=checkbox]:focus + span {
  outline: 2px solid #289CCB;
}

.p-contact-checkbox .p-contact-checkbox__item label {
  position: relative;
}
.p-contact-checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  z-index: 10;
}
.p-contact-checkbox input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 20px;
  position: relative;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .p-contact-checkbox input[type=checkbox] + span {
    font-size: 0.75rem;
    padding: 0 0 0 24px;
  }
}
.p-contact-checkbox input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #000;
  border-radius: 2px;
  content: "";
  display: block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 8px;
  top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-checkbox input[type=checkbox] + span::before {
    top: 0.625rem;
  }
}
.p-contact-checkbox input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  content: "";
  display: block;
  width: 1.2em;
  height: 0.6em;
  position: absolute;
  left: 2px;
  left: 0.125rem;
  top: 8px;
  top: 0.5rem;
  opacity: 0;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-contact-checkbox input[type=checkbox] + span::after {
    top: 0.5rem;
  }
}
.p-contact-checkbox input[type=checkbox]:checked + span::before {
  background: #fff;
}
.p-contact-checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-contact-checkbox input[type=checkbox]:focus + span {
  outline: 2px solid #289CCB;
}

.p-drawer-menu {
  position: fixed;
  z-index: 4;
  width: 100%;
  max-width: 520px;
  max-width: 32.5rem;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  background-color: #000;
  color: #fff;
  -webkit-transform: translateX(520px);
          transform: translateX(520px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.is-drawerActive .p-drawer-menu {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-drawer-menu__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.p-footer {
  background: #011A53;
  padding: 24px 24px 40px;
  padding: 1.5rem 1.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50%, #011A53));
    background: linear-gradient(90deg, #fff 50%, #011A53 50%);
    padding: 0;
    padding: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    width: 100%;
    max-width: 120rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__top {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
    background: #011A53;
    padding: 9.0625rem 1.5625rem 0 1.5625rem;
  }
}
@media screen and (min-width: 1738px) {
  .p-footer__top {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 61%;
            flex: 0 1 61%;
    background: #011A53;
    padding: 9.0625rem 1.5625rem 0 8.75rem;
  }
}

.p-footer__top-btn {
  background: #FFC32C;
  border-radius: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__top-btn {
    max-width: 38.75rem;
  }
}
.p-footer__top-btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  padding: 0.9375rem;
  position: relative;
}
.p-footer__top-btn a span:nth-child(1) {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__top-btn a span:nth-child(1) {
    font-size: 1.5rem;
  }
}
.p-footer__top-btn a span:nth-child(2) {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  display: block;
}
.p-footer__top-btn a svg {
  width: 10px;
  stroke: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top-btn a svg {
    width: 12px;
  }
}

.p-footer__top-body {
  margin-top: 21px;
  margin-top: 1.3125rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top-body {
    margin-top: 2.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem 2.5rem;
    padding: 0 0.625rem;
  }
}
@media screen and (min-width: 1230px) {
  .p-footer__top-body {
    gap: 1.25rem 1.8125rem;
  }
}

@media screen and (min-width: 1230px) {
  .p-footer__top-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12.5rem;
            flex: 0 1 12.5rem;
  }
}

.p-footer__top-block + .p-footer__top-block {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top-block + .p-footer__top-block {
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__top-block:last-child {
    margin-top: 1.5625rem;
  }
}

.p-footer__top-head {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__top-head {
    font-size: 1rem;
  }
}

.p-footer__top-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5px;
  margin-top: 0.3125rem;
  gap: 6px 25px;
  gap: 0.375rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top-lists {
    display: block;
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__top-list + .p-footer__top-list {
    margin-top: 0.625rem;
  }
}

.p-footer__top-list a {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-footer__top-list a {
    font-size: 1rem;
    white-space: nowrap;
  }
}

.p-footer__bottom {
  background: #fff;
  padding: 40px 24px 24px;
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    padding: 4.375rem 1.5625rem 0;
    margin-top: 0;
    margin-top: initial;
  }
}
@media screen and (min-width: 1738px) {
  .p-footer__bottom {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 39%;
            flex: 0 1 39%;
    padding: 4.375rem 5rem 0;
  }
}

.p-footer__bottom-head {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-head {
    text-align: left;
    text-align: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5625rem;
    padding: 0 0.625rem 0 0.625rem;
  }
}
@media screen and (min-width: 1320px) {
  .p-footer__bottom-head {
    padding: 0 0.625rem 0 3.875rem;
  }
}

.p-footer__bottom-logo {
  width: 105px;
  width: 6.5625rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-logo {
    width: 10.625rem;
  }
}

.p-footer__bottom-text-block {
  width: 100%;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-text-block {
    margin-top: 0;
    margin-top: initial;
    width: auto;
    width: initial;
  }
}

.p-footer__bottom-name {
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-name {
    font-size: 1.5rem;
  }
}

.p-footer__bottom-address {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  line-height: 2.14;
  font-style: normal;
  font-style: initial;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-address {
    font-size: 1rem;
    margin-top: 0;
  }
}

.p-footer__bottom-body {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-body {
    margin-top: 3.125rem;
  }
}

.p-footer__map {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p-footer__map::after {
  content: "";
  display: block;
  padding-top: 60.9318996416%;
}
@media screen and (min-width: 768px) {
  .p-footer__map::after {
    padding-top: 44.1275167785%;
  }
}

.p-footer__map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.p-footer__copy {
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  padding-top: 20px;
  padding-top: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    width: 100%;
    font-size: 0.75rem;
    padding-top: 0;
    padding-top: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: right;
  }
  .p-footer__copy span:nth-child(1) {
    display: block;
    width: 45%;
    background: #fff;
  }
  .p-footer__copy span:nth-child(2) {
    display: block;
    width: 55%;
    background: #011A53;
    padding-bottom: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (min-width: 1738px) {
  .p-footer__copy span:nth-child(1) {
    width: 39%;
  }
  .p-footer__copy span:nth-child(2) {
    width: 61%;
  }
}

.p-header-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s, visibility 0.4s, background-color 0.4s;
  transition: opacity 0.4s, visibility 0.4s, background-color 0.4s;
  z-index: -9999;
  padding: 110px 0;
  padding: 6.875rem 0;
}
@media screen and (min-width: 768px) {
  .p-header-menu {
    width: 100%;
    position: static;
    position: initial;
    max-width: none;
    max-width: initial;
    overflow: visible;
    overflow: initial;
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    opacity: 1;
    opacity: initial;
    visibility: visible;
    visibility: initial;
    pointer-events: initial;
    -webkit-transition: none;
    transition: none;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}

.is-drawerActive .p-header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  background-color: #011A53;
  z-index: 200;
}

.p-header-menu__items {
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-header-menu__items {
    margin: 0;
    margin: initial;
    max-width: none;
    max-width: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__item {
    height: inherit;
  }
}

.p-header-menu__item + .p-header-menu__item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-header-menu__item + .p-header-menu__item {
    margin-left: min(15px, 0.7vw);
    margin-top: 0;
    margin-top: initial;
  }
}
@media screen and (min-width: 830px) {
  .p-header-menu__item + .p-header-menu__item {
    margin-left: min(25px, 1.3vw);
  }
}
@media screen and (min-width: 1660px) {
  .p-header-menu__item + .p-header-menu__item {
    margin-left: 2.5rem;
  }
}

.p-header-menu__item a {
  width: 100%;
  height: 100%;
  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;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  padding: 8px;
  padding: 0.5rem;
  border: 1px solid #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header-menu__item a {
    border: none;
    padding: 0;
    padding: initial;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 811px) {
  .p-header-menu__item a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1600px) {
  .p-header-menu__item a {
    font-size: 1rem;
  }
}

.p-header-menu__tel {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header-menu__tel {
    display: block;
    width: 150px;
    border: 1px solid #fff;
    border-radius: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .p-header-menu__tel {
    width: 11.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__tel a {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.28125rem 0;
  }
}
@media screen and (min-width: 1600px) {
  .p-header-menu__tel a {
    font-size: 0.875rem;
  }
}
.p-header-menu__tel a img {
  width: 14px;
  width: 0.875rem;
  display: inline-block;
  margin-right: 9px;
  margin-right: 0.5625rem;
}

.p-header {
  height: 56px;
  height: 3.5rem;
  background: #011A53;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 4.5rem;
  }
}

.p-header__inner {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 11.5625rem;
    padding-right: 14.0625rem;
  }
}
@media screen and (min-width: 1660px) {
  .p-header__inner {
    padding-left: 21.25rem;
    padding-right: 19.6875rem;
  }
}

.p-header__logo {
  width: 102px;
  width: 6.375rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 201;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 12.5rem;
  }
}
@media screen and (min-width: 1660px) {
  .p-header__logo {
    width: 19.375rem;
  }
}

.p-header__logo img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.p-header__logo-link {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  left: 10px;
  left: 0.625rem;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  display: block;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .p-header__logo-link {
    top: 1rem;
    left: 2rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1660px) {
  .p-header__logo-link {
    top: 2.5rem;
    left: 3.75rem;
    width: 5rem;
    height: 5rem;
  }
}

.p-header__drawer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71428571;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  height: inherit;
  z-index: 201;
}
@media screen and (min-width: 768px) {
  .p-header__drawer {
    display: none;
  }
}

.p-header__overlay {
  position: fixed;
  z-index: 3;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: #000;
  color: #fff;
  visibility: hidden;
  opacity: 0;
}

.is-drawerActive .p-header__overlay {
  visibility: visible;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .p-header__menu {
    height: inherit;
  }
}

.p-header__contact {
  width: 85px;
  width: 5.3125rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  background: #FFC32C;
  position: relative;
  z-index: 201;
}
@media screen and (min-width: 768px) {
  .p-header__contact {
    position: absolute;
    top: 0;
    right: 0;
    width: 13.4375rem;
    height: 5.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    border-radius: 0 0 0 40px;
    border-left: 4px solid #000;
    border-bottom: 4px solid #000;
  }
}
@media screen and (min-width: 1660px) {
  .p-header__contact {
    width: 17.6875rem;
  }
}

.p-header__contact-logo {
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__contact-logo {
    width: 1.5625rem;
  }
}
@media screen and (min-width: 1600px) {
  .p-header__contact-logo {
    width: 1.9375rem;
  }
}

.p-header__contact-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-header__contact-text span {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .p-header__contact-text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1660px) {
  .p-header__contact-text {
    font-size: 1.5rem;
  }
}

.p-info {
  width: 100%;
  margin-inline: auto;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  padding: 6px 20px;
  padding: 0.375rem 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding: 1.25rem 3.1875rem;
    border-radius: 16px;
  }
}

.p-info__head.u-desktop {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  -ms-flex: 0 0 5rem;
      flex: 0 0 5rem;
}

.p-info__title-jp {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.p-info__title-en {
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.p-info__btn {
  margin-top: 5px;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-info__btn {
    margin-top: 0;
    text-align: left;
  }
}

.p-info__link {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #0F3985;
}
@media screen and (min-width: 768px) {
  .p-info__link {
    font-size: 1.1875rem;
  }
}
.p-info__link svg {
  width: 7px;
  margin-left: 5px;
  margin-left: 0.3125rem;
  vertical-align: middle;
  display: inline-block;
  stroke: #0F3985;
}
@media screen and (min-width: 768px) {
  .p-info__link svg {
    width: 10px;
    margin-left: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-info__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45rem;
            flex: 0 1 45rem;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .p-info__item + .p-info__item {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 4px dotted #0F3985;
  }
}

.p-media {
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 451px) {
  .p-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    max-width: none;
    max-width: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-media {
    gap: 2.375rem;
  }
}

.p-media__head {
  display: none;
}
@media screen and (min-width: 600px) {
  .p-media__head {
    display: block;
    font-size: 3.75rem;
    font-family: "Galvji", sans-serif;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #0F3985;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: -2.625rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.75rem;
            flex: 0 0 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-media__head {
    font-size: 7.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.75rem;
            flex: 0 0 8.75rem;
  }
}

.p-media__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 920px;
          flex: 0 1 920px;
  -ms-flex: 0 1 57.5rem;
      flex: 0 1 57.5rem;
}

.p-media__top {
  position: relative;
}

.p-media__top-text1 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  color: #0F3985;
  display: block;
  text-align: center;
}
@media screen and (min-width: 451px) {
  .p-media__top-text1 {
    font-weight: 700;
    line-height: 1.666;
    text-align: left;
    max-width: 25rem;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-media__top-text1 {
    font-size: 1.5rem;
    max-width: 25.625rem;
  }
}

.p-media__top-text2 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 190px;
  max-width: 11.875rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 451px) {
  .p-media__top-text2 {
    margin-top: 1.875rem;
    max-width: 12.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-media__top-text2 {
    font-size: 1rem;
    max-width: 25rem;
    margin-top: 1.0625rem;
  }
}

.p-media__top-img {
  position: absolute;
  top: 108px;
  top: 6.75rem;
  right: -20px;
  right: -1.25rem;
  width: 243px;
  width: 15.1875rem;
  height: 464px;
  height: 29rem;
  border-radius: 16px 0 0 16px;
}
.p-media__top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 0 0 16px;
  zoom: 1.1;
}
@media screen and (min-width: 451px) {
  .p-media__top-img {
    overflow: visible;
    overflow: initial;
    width: 78%;
    right: 0;
    height: auto;
    top: -1.25rem;
    border-radius: 24px;
  }
  .p-media__top-img img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
  }
}

.p-media__top-name {
  position: absolute;
  left: 55%;
  bottom: -125px;
  bottom: -7.8125rem;
  -webkit-transform: translate(-50%, 90%);
          transform: translate(-50%, 90%);
  width: 77px;
  width: 4.8125rem;
}
.p-media__top-name img {
  border-radius: 0;
}
@media screen and (min-width: 451px) {
  .p-media__top-name {
    top: 2rem;
    right: 0.625rem;
    width: 14vw;
    max-width: 4.8125rem;
    left: auto;
    left: initial;
    bottom: auto;
    bottom: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-media__top-name {
    width: 6.25rem;
    max-width: none;
    max-width: initial;
    right: 2.1875rem;
    top: 5.9375rem;
  }
}

.p-media__top-name2 {
  width: 200px;
  width: 12.5rem;
  background: #fff;
  padding: 10px;
  padding: 0.625rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: -105px;
  bottom: -6.5625rem;
}
@media screen and (max-width: 300px) {
  .p-media__top-name2 {
    bottom: -6.875rem;
  }
}
@media screen and (min-width: 451px) {
  .p-media__top-name2 {
    right: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-media__top-name2 {
    position: absolute;
    width: 18.75rem;
    left: -5.4375rem;
    bottom: 25%;
    background: transparent;
    margin-left: 0;
    margin-left: initial;
  }
}

.p-media__top-name2-head {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: right;
  padding-right: 3px;
  padding-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-media__top-name2-head {
    text-align: center;
    font-size: 1rem;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-media__top-name2-body {
  margin-top: 11px;
  margin-top: 0.6875rem;
}
.p-media__top-name2-body img {
  width: 79%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-media__top-name2-body {
    margin-top: 0.6875rem;
    letter-spacing: 0.01em;
  }
  .p-media__top-name2-body img {
    width: 95%;
    height: 95%;
    margin-left: 0;
    margin-left: initial;
  }
}

.p-media__bottom {
  position: relative;
  z-index: 2;
  margin-top: 277px;
  margin-top: 17.3125rem;
}
@media screen and (min-width: 451px) {
  .p-media__bottom {
    margin-top: 25vw;
    gap: 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-media__bottom {
    gap: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 18.75rem;
  }
}

.p-media__bottom-img {
  margin-top: 125px;
  margin-top: 7.8125rem;
  width: 190px;
  width: 11.875rem;
}
.p-media__bottom-img img {
  width: 100%;
  border-radius: 12px;
}
@media screen and (min-width: 451px) {
  .p-media__bottom-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  .p-media__bottom-img img {
    border-radius: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-media__bottom-img {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28rem;
            flex: 0 0 28rem;
  }
}

.p-media__bottom-text-box {
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (min-width: 768px) {
  .p-media__bottom-text-box {
    margin-top: 9.0625rem;
  }
}

.p-media__bottom-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (min-width: 451px) {
  .p-media__bottom-title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-media__bottom-title {
    font-size: 2rem;
  }
}

.p-media__bottom-text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 451px) {
  .p-media__bottom-text {
    margin-top: 0.625rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-media__bottom-text {
    font-size: 1rem;
    margin-top: 0.0625rem;
  }
}

.p-mind {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-mind {
    max-width: 49.375rem;
  }
}

.p-mind__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px 50px;
  gap: 1.125rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-mind__items {
    gap: 0.875rem;
  }
}

.p-mind__item {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-mind__item {
    font-size: 1.25rem;
  }
}
.p-mind__item span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mind__item span {
    font-size: 2rem;
  }
}

.p-mind__item::before {
  content: "";
  display: block;
  width: 77px;
  width: 4.8125rem;
  height: 77px;
  height: 4.8125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .p-mind__item::before {
    width: 9.125rem;
    height: 9.125rem;
  }
}

.p-mind__item:nth-child(1) {
  width: 100%;
}
.p-mind__item:nth-child(1)::before {
  -webkit-transform: translate(-34%, -42%) rotate(290deg);
          transform: translate(-34%, -42%) rotate(290deg);
  background: url(../images/common/bg-dot-pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-mind__item:nth-child(1) {
    width: calc(33.3% - 2.33333rem);
  }
  .p-mind__item:nth-child(1)::before {
    -webkit-transform: translate(-72%, -50%) rotate(278deg);
            transform: translate(-72%, -50%) rotate(278deg);
  }
}

.p-mind__item:nth-child(2) {
  width: calc(50% - 1.875rem);
}
.p-mind__item:nth-child(2)::before {
  -webkit-transform: translate(-79%, -56%) rotate(58deg);
          transform: translate(-79%, -56%) rotate(58deg);
  background: url(../images/common/bg-dot-blue.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-mind__item:nth-child(2)::before {
    width: 10.4375rem;
    height: 10.4375rem;
  }
  .p-mind__item:nth-child(2)::before::before {
    -webkit-transform: translate(-69%, -56%) rotate(58deg);
            transform: translate(-69%, -56%) rotate(58deg);
  }
}
@media screen and (min-width: 768px) {
  .p-mind__item:nth-child(2) {
    width: calc(33.3% - 2.33333rem);
  }
}

.p-mind__item:nth-child(3) {
  width: calc(50% - 1.875rem);
}
.p-mind__item:nth-child(3)::before {
  -webkit-transform: translate(-27%, -65%) rotate(159deg);
          transform: translate(-27%, -65%) rotate(159deg);
  background: url(../images/common/bg-dot-yellow.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-mind__item:nth-child(3)::before {
    width: 10.4375rem;
    height: 10.4375rem;
    -webkit-transform: translate(-12%, -80%) rotate(146deg);
            transform: translate(-12%, -80%) rotate(146deg);
  }
}
@media screen and (min-width: 768px) {
  .p-mind__item:nth-child(3) {
    width: calc(33.3% - 2.33333rem);
  }
}

.p-navi-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-navi-items {
    gap: 1rem;
  }
}

.p-news__item {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #C7C7C7;
}
@media screen and (min-width: 768px) {
  .p-news__item {
    padding-bottom: 1.75rem;
  }
}

.p-news__item + .p-news__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news__item + .p-news__item {
    margin-top: 1.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-overview__head {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-overview__head {
    display: block;
    font-size: 7.5rem;
    font-family: "Galvji", sans-serif;
    font-weight: 700;
    color: #fff;
    -webkit-text-stroke: 2px #0F3985;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: nowrap;
    text-transform: uppercase;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.75rem;
            flex: 0 0 8.75rem;
    letter-spacing: 0.07em;
    line-height: 1.2;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-overview__title {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-overview__title {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview--reverse .p-overview__title {
    font-size: 2.5rem;
    margin-top: -0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__dd {
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-overview--reverse .p-overview__dd {
    margin-top: 2.75rem;
  }
}

.p-overview__year {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
  color: #0F3985;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-overview__year {
    font-size: 2.5rem;
  }
}

.p-overview__row {
  padding: 10px 0 7px;
  padding: 0.625rem 0 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #0F3985;
}
@media screen and (min-width: 768px) {
  .p-overview__row {
    padding: 0.9375rem 0 0.6875rem;
    gap: 2.1875rem;
  }
}

.p-overview__row--reverse {
  border-top: 1px solid #0F3985;
  border-bottom: none;
  display: block;
}

.p-overview__row-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-overview__row-inner {
    gap: 2.1875rem;
  }
}

.p-overview__row--reverse .p-overview__row-inner {
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-overview__row--reverse .p-overview__row-inner {
    gap: 2.1875rem;
  }
}

.p-overview__row-inner + .p-overview__row-inner {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-overview__row--reverse .p-overview__row-inner + .p-overview__row-inner {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-overview__row--reverse .p-overview__row-inner + .p-overview__row-inner {
    margin-top: 0.1875rem;
  }
}

.p-overview__category {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  -ms-flex: 0 0 5rem;
      flex: 0 0 5rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0F3985;
}
@media screen and (min-width: 768px) {
  .p-overview__category {
    font-size: 1.25rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.125rem;
            flex: 0 0 8.125rem;
    line-height: 2;
  }
}

.p-overview__row--reverse {
  padding: 7px 0 6px;
  padding: 0.4375rem 0 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-overview__row--reverse {
    padding: 1.25rem 0 1.25rem;
  }
}
.p-overview__row--reverse .p-overview__category {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45px;
          flex: 0 0 45px;
  -ms-flex: 0 0 2.8125rem;
      flex: 0 0 2.8125rem;
}

.p-overview__description {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-overview__description {
    font-size: 1.25rem;
    line-height: 2;
  }
}
.p-overview__description img {
  display: inline-block;
  width: 18px;
  width: 1.125rem;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-overview__description img {
    width: 1.875rem;
  }
}

.p-overview__row--reverse .p-overview__description {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-overview__row--reverse .p-overview__description {
    line-height: 2;
  }
}

.p-overview__map {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-overview__map {
    margin-top: 3.4375rem;
  }
}

.p-overview__map::after {
  content: "";
  display: block;
  padding-top: 61.4678899083%;
}
@media screen and (min-width: 768px) {
  .p-overview__map::after {
    padding-top: 61.7%;
  }
}

.p-overview__map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.p-overview__bottom {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-overview__bottom {
    margin-top: 3.75rem;
  }
}

.p-overview__license__title {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-overview__license__title {
    font-size: 2rem;
  }
}

.p-overview__license-lists {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-overview__license-lists {
    margin-top: 1.25rem;
  }
}

.p-overview__license-list {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  border-bottom: 1px solid #0F3985;
}
.p-overview__license-list img {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-overview__license-list img {
    width: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-overview__license-list {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-overview__license-list + .p-overview__license-list {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-overview__license-list + .p-overview__license-list {
    margin-top: 1.25rem;
  }
}

.p-privacy-policy {
  width: 100%;
  height: 189px;
  height: 11.8125rem;
  border: 1px solid #000;
  border-radius: 4px;
  background: #fff;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy {
    height: 13.3125rem;
  }
}

.p-privacy-policy__content {
  height: inherit;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content {
    padding: 0.75rem 1rem;
  }
}

.p-privacy-policy__content p {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content p {
    font-size: 0.75rem;
  }
}

.p-privacy-policy__content p:nth-child(2),
.p-privacy-policy__content p:nth-child(4),
.p-privacy-policy__content p:nth-child(6),
.p-privacy-policy__content p:nth-child(9),
.p-privacy-policy__content p:nth-child(11),
.p-privacy-policy__content p:nth-child(14),
.p-privacy-policy__content p:nth-child(16),
.p-privacy-policy__content p:nth-child(18) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content p:nth-child(2),
  .p-privacy-policy__content p:nth-child(4),
  .p-privacy-policy__content p:nth-child(6),
  .p-privacy-policy__content p:nth-child(9),
  .p-privacy-policy__content p:nth-child(11),
  .p-privacy-policy__content p:nth-child(14),
  .p-privacy-policy__content p:nth-child(16),
  .p-privacy-policy__content p:nth-child(18) {
    margin-top: 0.75rem;
  }
}

.p-privacy-policy__content p:nth-child(20) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content p:nth-child(20) {
    margin-top: 1.5rem;
  }
}

.p-recommend__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, .5);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    font-size: 2rem;
  }
}

.p-recommend__body {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__body {
    margin-top: 1.5rem;
  }
}

.p-recommend__body-sub {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__body-sub {
    margin-top: 1.5rem;
  }
}

.p-recommend__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 8px;
  gap: 0.9375rem 0.5rem;
  width: 100%;
  max-width: 328px;
  max-width: 20.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recommend__items {
    max-width: 66.875rem;
    padding: 0 1.5625rem;
    gap: 1.25rem;
  }
}

.p-recommend__item {
  width: 100%;
  max-width: 160px;
  max-width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item {
    max-width: 15rem;
  }
}

.p-sub-company {
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company {
    padding-bottom: 5rem;
  }
}

.p-sub-company__title {
  padding-top: 30px;
  padding-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-company__title {
    padding-top: 3.125rem;
  }
}

.p-sub-company__body1 {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__body1 {
    margin-top: 4.0625rem;
    padding-bottom: 7.5rem;
  }
}

.p-sub-company__body2 {
  background: #E5EBF4;
  padding: 24px 0;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-sub-company__body2 {
    padding: 5rem 0;
  }
}

.p-sub-company__body3 {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__body3 {
    margin-top: 5.3125rem;
  }
}

.p-sub-contact {
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact {
    padding-bottom: 5rem;
  }
}

.p-sub-contact__title {
  padding-top: 30px;
  padding-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__title {
    padding-top: 3.125rem;
  }
}

.p-sub-contact__top {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__top {
    margin-top: 1.0625rem;
  }
}

.p-sub-contact__top-text {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-sub-contact__top-text strong {
  display: inline-block;
  color: #DC0006;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__top-text {
    font-size: 0.75rem;
  }
}

.is-404 {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .is-404 {
    font-size: 1.25rem;
    text-align: center;
  }
}

.p-sub-contact__top-thanks {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.04em;
  padding-top: 50px;
  padding-top: 3.125rem;
  text-align: center;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.p-sub-contact__top-thanks strong {
  display: inline-block;
  color: #DC0006;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__top-thanks {
    padding-top: 6.25rem;
    font-size: 1.25rem;
    text-align: center;
  }
}

.p-sub-contact__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__body {
    margin-top: 1.5625rem;
  }
}

.p-sub-contact__copy {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
}
.p-sub-contact__copy a {
  color: #0F3985;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__copy {
    font-size: 0.75rem;
  }
}

.p-sub-contact__btn {
  margin-top: 80px;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__btn {
    margin-top: 9.375rem;
  }
}

.p-sub-message {
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-message {
    padding-bottom: 5rem;
  }
}

.p-sub-message__title {
  padding-top: 30px;
  padding-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-message__title {
    padding-top: 3.125rem;
  }
}

.p-sub-message__body {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 451px) {
  .p-sub-message__body {
    margin-top: 4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sub-message__body {
    margin-top: 6.25rem;
  }
}

.p-sub-message__btn {
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-message__btn {
    margin-top: 11.25rem;
  }
}

.p-sub-news {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-news {
    padding-bottom: 5.625rem;
  }
}

.p-sub-news__title {
  padding-top: 30px;
  padding-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-news__title {
    padding-top: 3.125rem;
  }
}

.p-sub-news__body {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-news__body {
    margin-top: 1.875rem;
  }
}

.p-sub-news__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-news__pagination {
    margin-top: 2.9375rem;
  }
}
.p-sub-news__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-sub-news__pagination .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 50%;
}
.p-sub-news__pagination .pagination .current {
  background: #0F3985;
  color: #fff;
}
.p-sub-news__pagination .pagination .prev,
.p-sub-news__pagination .pagination .next {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0F3985;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
.p-sub-news__pagination .pagination .dots {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (hover: hover) {
  .p-sub-news__pagination .pagination a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .p-sub-news__pagination .pagination a:hover {
    opacity: 0.7;
  }
}

.p-sub-news__else {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.666;
  text-align: center;
  color: #0F3985;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-news__else {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
  }
}

.p-sub-philosophy {
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy {
    padding-bottom: 5rem;
  }
}

.p-sub-philosophy__bg-img {
  max-width: 216px;
  max-width: 13.5rem;
  position: absolute;
  top: 83px;
  top: 5.1875rem;
  left: -82px;
  left: -5.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__bg-img {
    width: 34.8vw;
    max-width: 41.5rem;
    top: 21%;
    left: -8%;
  }
}

.p-sub-philosophy__inner {
  position: relative;
}

.p-sub-philosophy__bg-title {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__bg-title {
    display: block;
    font-size: 7.5rem;
    font-family: "Galvji", sans-serif;
    font-weight: 700;
    color: #fff;
    -webkit-text-stroke: 2px #0F3985;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.2;
    position: absolute;
    top: 11.875rem;
    right: 0;
  }
}

.p-sub-philosophy__title {
  padding-top: 32px;
  padding-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__title {
    padding-top: 3.125rem;
  }
}

.p-sub-philosophy__top {
  margin-top: 23px;
  margin-top: 1.4375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__top {
    margin-top: 0.8125rem;
  }
}

.p-sub-philosophy__main-text {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.666;
  letter-spacing: 0.04em;
  color: #0F3985;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__main-text {
    font-size: 4rem;
    line-height: 1.5625;
    letter-spacing: 0.08em;
  }
}

.p-sub-philosophy__middle {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__middle {
    margin-top: 7.1875rem;
  }
}

.p-sub-philosophy__body {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__body {
    margin-top: 8.125rem;
  }
}

.p-sub-philosophy__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__text {
    font-size: 1rem;
    line-height: 3;
  }
}

.p-sub-philosophy__btn {
  margin-top: 90px;
  margin-top: 5.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-philosophy__btn {
    margin-top: 11.875rem;
  }
}

.p-sub-privacy {
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy {
    padding-bottom: 5rem;
  }
}

.p-sub-privacy__title {
  padding-top: 30px;
  padding-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy__title {
    padding-top: 3.125rem;
  }
}

.p-sub-privacy__top {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy__top {
    margin-top: 4.0625rem;
  }
}

.p-sub-privacy__top p {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy__top p {
    font-size: 1rem;
  }
}

.p-sub-privacy__top p:nth-child(n+2) {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy__top p:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.p-sub-privacy__top p:last-child {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-privacy__top p:last-child {
    margin-top: 2rem;
  }
}

.p-sub-service__head {
  background: #E5EBF4;
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .p-sub-service__head {
    padding: 2.5rem 0 2.8125rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.js-sub-service__head {
  position: fixed;
  top: -9px;
  top: -0.5625rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .js-sub-service__head {
    top: -4.6875rem;
  }
}

.js-sub-service__head.is-fixed {
  display: block;
  padding: 15px 0 8px;
  padding: 0.9375rem 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .js-sub-service__head.is-fixed {
    padding: 2.5rem 0 1.5rem;
  }
}

.p-sub-service__title {
  text-align: center;
}

.p-sub-service__support {
  text-align: center;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-service__support {
    margin-top: 1.5rem;
  }
}

.p-sub-service__btn {
  background: #fff;
}

.p-sub-service__btn-items {
  padding: 89px 0 50px;
  padding: 5.5625rem 0 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 70px;
  gap: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-service__btn-items {
    padding: 6.875rem 0 4.0625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.125rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-sub-service__btn-items {
    gap: 1.25rem;
  }
}

.p-sub-service__btn-item {
  width: 100%;
}

.p-top-mv {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  min-height: 556px;
  min-height: 34.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    height: 100dvh;
    min-height: 52.375rem;
    max-height: none;
    max-height: initial;
  }
}

.p-top-mv__inner {
  margin-top: 56px;
  margin-top: 3.5rem;
  width: 100%;
  height: calc(100% - 3.5rem);
}
@media screen and (min-width: 768px) {
  .p-top-mv__inner {
    margin-top: 4.5rem;
    height: calc(100% - 4.5rem);
  }
}

.p-top-mv__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-top-mv__content {
  position: absolute;
  top: 37%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 310px;
  height: 19.375rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-mv__content {
    top: 39%;
    height: 33.75rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-top-mv__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #FFC32C;
  letter-spacing: 0.13em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-mv__title {
    font-size: 2.25rem;
    letter-spacing: 0.13em;
  }
}

.p-top-mv__title1,
.p-top-mv__title2,
.p-top-mv__title3 {
  opacity: 0;
}

.p-top-mv__title1 {
  opacity: 1;
  color: #fff;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.p-top-mv__title2,
.p-top-mv__title3 {
  display: inline-block;
}

.p-top-mv__body {
  margin-top: 36px;
  margin-top: 2.25rem;
  position: relative;
  max-width: 375px;
  max-width: 23.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-mv__body {
    max-width: 50rem;
  }
}

.p-top-mv__hero {
  opacity: 0;
  position: absolute;
}

.p-top-mv__hero.p-top-mv__hero--1 {
  width: 100px;
  width: 6.25rem;
  top: 9px;
  top: 0.5625rem;
  left: 4px;
  left: 0.25rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__hero.p-top-mv__hero--1 {
    width: 12.5rem;
    top: -0.75rem;
    left: 3rem;
  }
}

.p-top-mv__hero.p-top-mv__hero--2 {
  width: 192px;
  width: 12rem;
  top: -15px;
  top: -0.9375rem;
  right: -34px;
  right: -2.125rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__hero.p-top-mv__hero--2 {
    width: 28.9375rem;
    top: -3.9375rem;
    right: -5.75rem;
  }
}

.p-top-mv__hero.p-top-mv__hero--3 {
  width: 124px;
  width: 7.75rem;
  top: 100px;
  top: 6.25rem;
  left: 25px;
  left: 1.5625rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__hero.p-top-mv__hero--3 {
    width: 17.0625rem;
    top: 9.875rem;
    left: 0.5rem;
  }
}

.p-top-mv__hero.p-top-mv__hero--4 {
  width: 161px;
  width: 10.0625rem;
  top: 91px;
  top: 5.6875rem;
  right: 33px;
  right: 2.0625rem;
  z-index: 2;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__hero.p-top-mv__hero--4 {
    width: 21.875rem;
    top: 8.375rem;
    right: 5.375rem;
  }
}

.p-top-mv__hero.p-top-mv__hero--5 {
  width: 154px;
  width: 9.625rem;
  top: 137px;
  top: 8.5625rem;
  left: 38%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__hero.p-top-mv__hero--5 {
    width: 20.6875rem;
    top: 13.4375rem;
    left: 32%;
  }
}

.p-top-mv__logo {
  width: 176px;
  width: 11rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-top-mv__news {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__news {
    max-width: 62.5rem;
    bottom: 3.5rem;
  }
}

.p-top-mv__img {
  width: 100vw;
  height: 100dvh;
  min-height: 556px;
  min-height: 34.75rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-mv__img {
    height: 100dvh;
    min-height: 47.4375rem;
    max-height: none;
    max-height: initial;
  }
}

.p-top-mv__img-inner {
  margin-top: 56px;
  margin-top: 3.5rem;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-mv__img-inner {
    margin-top: 4.5rem;
  }
}

.p-top-mv__img-wrap {
  width: 100%;
  height: 100%;
}
.p-top-mv__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-top-unit {
  text-align: center;
  position: relative;
}

.p-top-unit--scroll-margin {
  scroll-margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit--scroll-margin {
    scroll-margin-top: 4.375rem;
  }
}

.p-top-unit__title-en {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-top-unit__title-en {
    font-size: 2rem;
  }
}

.p-top-unit__title-en--yellow {
  color: #FFC32C;
}

.p-top-unit__title-jp {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit__title-jp {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.p-top-unit__title-jp--yellow {
  color: #FFC32C;
}

.p-top-unit__main-text {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #0F3985;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit__main-text span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-top-unit__main-text {
    font-size: 2.5rem;
    line-height: 2;
    margin-top: -0.625rem;
  }
}

.p-top-unit__main-text2 {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #0F3985;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit__main-text2 span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-top-unit__main-text2 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-top: 0.25rem;
  }
}

.p-top-unit__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.04em;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit__text {
    margin-top: 1.75rem;
    font-size: 1rem;
  }
}

.p-top-unit__text2 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.04em;
  margin-top: 23px;
  margin-top: 1.4375rem;
  padding: 0 8px;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit__text2 {
    margin-top: 2.3125rem;
    font-size: 1rem;
  }
}

.p-top-unit__text--white {
  color: #fff;
}

.p-top-unit__card {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-unit__card {
    margin-top: 2.3125rem;
  }
}

.p-top-unit__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-unit__btn {
    margin-top: 4.125rem;
  }
}

.p-top-unit__btn2 {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-unit__btn2 {
    margin-top: 4.125rem;
  }
}

.p-top {
  overflow: hidden;
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, .7);
}

.p-top__philosophy {
  margin-top: -1px;
  margin-top: -0.0625rem;
  padding-top: 128px;
  padding-top: 8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__philosophy {
    padding-top: 29.0625rem;
  }
}
.p-top__philosophy::before {
  content: "";
  display: block;
  width: 100%;
  height: 121px;
  height: 7.5625rem;
  background: #0F3985;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 23%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 23%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top__philosophy::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    width: 100%;
    height: 29.4375rem;
  }
}
.p-top__philosophy::after {
  content: "";
  display: block;
  width: 100%;
  height: 356px;
  height: 22.25rem;
  background: #E5EBF4;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 58%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 58%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
}
.p-top-philosophy__deco-border {
  width: 100%;
  height: 323px;
  height: 20.1875rem;
  background: #0F3985;
  -webkit-clip-path: polygon(0 42%, 100% 0, 100% 58%, 0 100%);
          clip-path: polygon(0 42%, 100% 0, 100% 58%, 0 100%);
  margin-top: -260px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__deco-border {
    height: 62.1875rem;
    -webkit-clip-path: polygon(0 72%, 100% 0%, 100% 28%, 0 100%);
            clip-path: polygon(0 72%, 100% 0%, 100% 28%, 0 100%);
    margin-top: -260px;
  }
}

.p-top-philosophy__deco {
  width: 291px;
  width: 18.1875rem;
  position: relative;
  left: -17%;
  bottom: -55%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__deco {
    width: 100%;
    height: 73.0625rem;
    position: absolute;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 38%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 38%, 0% 100%);
    background: #E5EBF4;
    top: 0;
    left: 0;
    right: 0;
    z-index: -2;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .p-top-philosophy__deco img {
    width: 46vw;
    max-width: 55.3125rem;
    position: absolute;
    bottom: -4%;
    left: -12%;
  }
}

.p-top__service {
  background: #0F3985;
  padding-top: 58px;
  padding-top: 3.625rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__service {
    margin-top: -4.9375rem;
    padding-top: 10.5rem;
    padding-bottom: 7.25rem;
  }
}
.p-top__service::before {
  content: "";
  display: block;
  width: 100%;
  height: 174px;
  height: 10.875rem;
  background: #0F3985;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transform: translateY(-99%);
          transform: translateY(-99%);
}
@media screen and (min-width: 768px) {
  .p-top__service::before {
    content: none;
  }
}

.p-top__message {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__message {
    margin-top: -6rem;
  }
}
.p-top__message::before {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  height: 25rem;
  background: #E5EBF4;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
  -webkit-transform: translateY(-34%);
          transform: translateY(-34%);
}
@media screen and (min-width: 768px) {
  .p-top__message::before {
    content: none;
  }
}

.p-top-message__deco {
  width: 162px;
  width: 10.125rem;
  position: absolute;
  bottom: 0;
  left: 47%;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-message__deco {
    width: 100%;
    height: 79.625rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 64%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 64%);
    -webkit-clip-path: polygon(0% 50%, 100% 0, 100% 100%, 0 64%);
            clip-path: polygon(0% 50%, 100% 0, 100% 100%, 0 64%);
    background: #E5EBF4;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -3;
    -webkit-transform: translate(0, -75%);
            transform: translate(0, -75%);
  }
  .p-top-message__deco img {
    width: 21vw;
    max-width: 26.25rem;
    position: absolute;
    bottom: -1%;
    right: 3%;
  }
}
@media screen and (min-width: 1600px) {
  .p-top-message__deco img {
    right: 8%;
  }
}

.p-top-message__name {
  width: 71px;
  width: 4.4375rem;
  position: absolute;
  bottom: -55%;
  right: calc(50% + 31px);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-top-message__name {
    width: 6vw;
    max-width: 7.4375rem;
    right: 5%;
    bottom: -23%;
  }
}

.p-top__recommend {
  margin-top: 285px;
  margin-top: 17.8125rem;
  padding: 55px 0 50px;
  padding: 3.4375rem 0 3.125rem;
  background: #0F3985;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__recommend {
    margin-top: 25rem;
    padding: 0 0 10.1875rem;
  }
}
.p-top__recommend::before {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  height: 9.375rem;
  background: #0F3985;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transform: translateY(-99%);
          transform: translateY(-99%);
}
@media screen and (min-width: 768px) {
  .p-top__recommend::before {
    height: 29.875rem;
  }
}
/*# sourceMappingURL=styles.css.map */
