@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Bold.ttf") format("truetype");
  src: url("../font/NotoSansJP-Medium.ttf") format("truetype");
  src: url("../font/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.0796221323vw;
  }
}
@media (min-width: 1482px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  color: #000;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

.background-video {
  position: fixed;
  right: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  aspect-ratio: 1512/982;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

input:focus {
  background-color: none;
  outline: none;
}

/*左から右テキストエフェクト*/
.leftAnime {
  opacity: 0;
  overflow: hidden;
  display: inline-block;
}

.leftAnimeInner {
  display: inline-block;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* animation */
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 最初は少し下から */
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* ふわっと上に */
  }
}
.passing .passing-box {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 105%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.passing .passing-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  font-weight: bold;
  line-height: 1.5;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (min-width: 768px) {
  .passing .passing-txt {
    font-size: 4rem;
  }
}

.passing.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 0.6s ease 0s 1 normal forwards;
}

.passing.move .passing-txt {
  -webkit-animation: passing-txt 0s ease 0.5s 1 normal forwards;
  animation: passing-txt 0.8s ease 0s 1 normal forwards;
}

.fadeIn {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.fadeIn:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fadeIn:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.fadeIn:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.fadeIn:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.fadeIn:nth-child(6) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.fadeIn:nth-child(7) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.fadeIn:nth-child(8) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.fadeIn:nth-child(9) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.fadeIn.active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* 1番目の .fadeIn 要素に0.4秒の遅延 */
.p-top-byservice__contents-wrap .fadeIn:nth-child(1) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

/* 2番目の .fadeIn 要素に0.6秒の遅延 */
.p-top-byservice__contents-wrap .fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.p-top-cta_items-wrap .fadeIn:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* 2番目の .fadeIn 要素に0.6秒の遅延 */
.p-top-cta_items-wrap .fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.grecaptcha-badge {
  bottom: 70px !important;
}
@media screen and (min-width: 768px) {
  .grecaptcha-badge {
    bottom: 30px !important;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-container {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
    display: grid;
    gap: 1.625rem;
    grid-template-columns: 18.75rem 1fr;
    overflow: visible;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1482px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-section {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 6.3125rem;
  }
}

.c-article-title {
  font-size: 1.0625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #FD65C9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-article-title {
    font-size: 1.5625rem;
    line-height: 0.68;
    padding-left: 0.625rem;
    padding-bottom: 1.4375rem;
  }
}

.c-article-title::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5.625rem;
  height: 0.3125rem;
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}
@media screen and (min-width: 768px) {
  .c-article-title::after {
    width: 18.75rem;
  }
}

.c-article-title--blue {
  border-bottom: 1px solid #1D88D6;
}

.c-article-title--blue::after {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.c-article-title--orange {
  border-bottom: 1px solid #EF634A;
}

.c-article-title--orange::after {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.c-article-title--green {
  border-bottom: 1px solid #00BD5B;
}

.c-article-title--green::after {
  background: -webkit-gradient(linear, left top, right top, from(#35AC69), to(#A0BE4D));
  background: linear-gradient(90deg, #35AC69 0%, #A0BE4D 100%);
}

.c-article-title--gray {
  border-bottom: 1px solid #C4C4C4;
}

.c-article-title--gray::after {
  background: -webkit-gradient(linear, left top, right top, from(#898989), to(#D3D3D3));
  background: linear-gradient(90deg, #898989 0%, #D3D3D3 100%);
}

.c-article-title--blue2 {
  border-bottom: 1px solid #10E3F9;
}

.c-article-title--blue2::after {
  background: -webkit-gradient(linear, left top, right top, from(#4C9CFF), to(#10E3F9));
  background: linear-gradient(90deg, #4C9CFF 0%, #10E3F9 100%);
}

.c-article-title2 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1333333333;
  background: -webkit-gradient(linear, left top, right top, from(#35AC69), to(#A0BE4D));
  background: linear-gradient(90deg, #35AC69 0%, #A0BE4D 100%);
  padding: 0.625rem 1.875rem;
  color: #fff;
  border-radius: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-article-title2 {
    text-align: left;
    font-size: 1.25rem;
    line-height: 0.85;
    padding: 1.0625rem 1.875rem;
  }
}

.c-article-title2--blue {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  text-align: center;
}

.c-article-title2--green2 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(53, 172, 105, .2)), to(rgba(160, 190, 77, .2)));
  background: linear-gradient(90deg, rgba(53, 172, 105, .2) 0%, rgba(160, 190, 77, .2) 100%);
  color: #000;
}

.c-btn {
  max-width: 21.5625rem;
  background: #000;
  color: #fff;
  padding: 0.625rem 2.5rem;
  margin-left: auto;
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-btn {
    max-width: 100%;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.c-btn2 {
  display: inline-block;
  padding: 1px;
  font-size: 0.8125rem;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.c-btn2 span {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.9375rem 1.1875rem;
  font-weight: 700;
  line-height: 1.3076923077;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-btn2 span {
    padding: 1.25rem 3.25rem;
    font-size: 0.9375rem;
    line-height: 1.1333333333;
    letter-spacing: 0.05em;
  }
}

.c-btn2:hover {
  opacity: 1;
}

.c-btn2.map span {
  padding: 0.5rem 1.125rem 0.5rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-btn2.map span {
    padding: 1.0625rem 2.25rem 1rem;
  }
}

.c-btn2.map span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 1.125rem;
  background: url(../img/common/map.svg) no-repeat center/contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-btn2.map span::before {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .c-btn2.orange {
    background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
    background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
  }
}

@media screen and (min-width: 768px) {
  .c-btn2.pink {
    background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
    background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
  }
}

@media screen and (min-width: 768px) {
  .c-btn2.blue2 {
    background: -webkit-gradient(linear, left top, right top, from(#4C9CFF), to(#10E3F9));
    background: linear-gradient(90deg, #4C9CFF 0%, #10E3F9 100%);
  }
}

.c-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card {
    gap: 1.25rem;
    grid-row: span 3;
  }
}

.c-card__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 160/91;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-card__img img {
    aspect-ratio: 352/200;
  }
}

.c-card__body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card__body {
    gap: 1.25rem;
  }
}

.c-card__body:has(.c-card__btn) {
  grid-template-rows: auto 1fr auto;
}

.c-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: left;
  }
}

.c-card__title span {
  font-size: 0.75rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .c-card__title span {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-card__text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.c-card__btn {
  height: auto;
  padding: 1px 0;
}

.c-card__btn a {
  display: inline-block;
  padding: 1px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1333333333;
  letter-spacing: 0.1em;
  background: #fff;
  position: relative;
  border-radius: 30px;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.c-card__btn a span {
  display: block;
  position: relative;
  background: #fff;
  padding: 1rem 4rem;
  border-radius: 28px;
  color: #858585;
}
@media screen and (min-width: 768px) {
  .c-card__btn a span {
    padding: 1.0625rem 4.375rem;
  }
}

.c-section-title {
  display: inline-block;
  position: relative;
  padding-left: 12rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  color: #fff;
  z-index: 1;
  padding-top: 1.0625rem;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    white-space: nowrap;
    padding-left: 31.875rem;
    padding-top: 5.125rem;
    padding-bottom: 5.0625rem;
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    padding-right: 0.9375rem;
  }
}

.c-section-title span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  padding: 0.1875rem 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-section-title span {
    padding: 0.4375rem 1.5625rem;
  }
}

.c-section-title::before {
  content: attr(data-en);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.0625rem;
  text-transform: uppercase;
  font-size: 3.125rem;
  font-family: "Oswald", serif;
  font-weight: 400;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title::before {
    font-size: 6.5625rem;
    left: 9.1875rem;
  }
}

.c-section-title::after {
  content: attr(data-en);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -0.4375rem;
  text-transform: uppercase;
  font-size: 4.375rem;
  font-family: "Oswald", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .1)), to(rgba(29, 189, 160, .1)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .1) 0%, rgba(29, 189, 160, .1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  mix-blend-mode: normal;
  z-index: -1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title::after {
    font-size: 10.625rem;
    left: -0.8125rem;
  }
}

.c-section-title2 {
  display: inline-block;
  position: relative;
  padding-top: 3.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-section-title2 {
    padding: 0 6.25rem;
    padding-top: 6.25rem;
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.c-section-title2 span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  padding: 0.1875rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-section-title2 span {
    padding: 0.4375rem 1.5625rem;
  }
}

.c-section-title2::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-family: "Oswald", serif;
  font-weight: 400;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title2::before {
    font-size: 5.3125rem;
  }
}

.c-table__title {
  background: -webkit-gradient(linear, left top, right top, from(rgba(53, 172, 105, .2)), to(rgba(160, 190, 77, .2)));
  background: linear-gradient(90deg, rgba(53, 172, 105, .2) 0%, rgba(160, 190, 77, .2) 100%);
  text-align: center;
  padding: 0.625rem 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3076923077;
  letter-spacing: 0.1em;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-table__title {
    padding: 1rem 0 1.0625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.1333333333;
  }
}

.c-table__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-green.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-table__title::after {
    display: none;
  }
}

.c-table__title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.c-table dl {
  display: grid;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  line-height: 1.3076923077;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-table dl {
    grid-template-columns: 12.5rem 1fr;
    gap: 1.875rem;
    font-size: 0.9375rem;
    line-height: 1.1333333333;
  }
}

.c-table dl:nth-child(n+2) {
  margin-top: 1.25rem;
}

.c-table dt {
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .2)), to(rgba(29, 189, 160, .2)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .2) 0%, rgba(29, 189, 160, .2) 100%);
  border-radius: 10px;
  padding: 0.625rem 1.9375rem;
  font-weight: 700;
  height: 100%;
  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;
}
@media screen and (min-width: 768px) {
  .c-table dt {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 1rem 1.9375rem;
  }
}

.c-table dt.purple {
  background: -webkit-gradient(linear, left top, right top, from(rgba(128, 74, 244, .2)), to(rgba(189, 123, 240, .2)));
  background: linear-gradient(90deg, rgba(128, 74, 244, .2) 0%, rgba(189, 123, 240, .2) 100%);
}

.c-table dt.orange {
  background: -webkit-gradient(linear, left top, right top, from(rgba(239, 99, 74, .2)), to(rgba(250, 197, 83, .2)));
  background: linear-gradient(90deg, rgba(239, 99, 74, .2) 0%, rgba(250, 197, 83, .2) 100%);
}

.c-table dt.green {
  background: -webkit-gradient(linear, left top, right top, from(rgba(53, 172, 105, .2)), to(rgba(160, 190, 77, .2)));
  background: linear-gradient(90deg, rgba(53, 172, 105, .2) 0%, rgba(160, 190, 77, .2) 100%);
}

.c-table dt.pink {
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 101, 201, .2)), to(rgba(251, 152, 172, .2)));
  background: linear-gradient(90deg, rgba(253, 101, 201, .2) 0%, rgba(251, 152, 172, .2) 100%);
}

.c-table dt.blue2 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(76, 156, 255, .2)), to(rgba(16, 227, 249, .2)));
  background: linear-gradient(90deg, rgba(76, 156, 255, .2) 0%, rgba(16, 227, 249, .2) 100%);
}

.c-table dd {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  text-align: center;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .c-table dd {
    line-height: 2;
    font-size: 0.9375rem;
    text-align: left;
  }
}

.c-table dd span {
  font-weight: 700;
  display: inline-block;
  margin-top: 0.5rem;
}

.c-table dd.left {
  text-align: left;
}

.c-table dd.left2 {
  text-align: left;
  padding: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-table dd.left2 {
    padding: 0;
  }
}

.c-table dd a {
  display: inline-block;
  text-align: left;
}

.c-table__wrap {
  margin-top: 1.25rem;
}

.c-title {
  background: -webkit-gradient(linear, left top, right top, from(#EDF5FF), to(#E7FCFE));
  background: linear-gradient(90deg, #EDF5FF 0%, #E7FCFE 100%);
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
  border-radius: 5px;
  padding: 0.625rem 3.125rem 0.6875rem;
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.3076923077;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title {
    padding: 1.625rem 3.125rem 1.6875rem;
    font-size: 1.0625rem;
    line-height: 1;
    text-align: left;
  }
}

.p-404 {
  margin-top: 3.75rem;
  margin-bottom: 6.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404 {
    margin-top: 8.75rem;
    margin-bottom: 19.375rem;
  }
}

.error404 .c-section-title::before,
.error404 .c-section-title::after {
  text-transform: unset;
}

.p-404__title {
  display: inline-block;
  font-size: 4.375rem;
  font-family: "Roboto", serif;
  font-weight: 700;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 6.25rem;
  }
}

.p-404__text {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    margin-top: 1.875rem;
    font-size: 1.5625rem;
    line-height: 2;
  }
}

.p-404__btn {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    margin-top: 2.5rem;
  }
}

.about .p-head__title .c-section-title {
  padding-left: 10.4375rem;
}
@media screen and (min-width: 768px) {
  .about .p-head__title .c-section-title {
    padding-left: 17.75rem;
  }
}

.p-about {
  margin-top: 3.125rem;
  margin-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 5rem;
    margin-bottom: 6.25rem;
  }
}

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

.p-about__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-about__top-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-about__top-img {
  width: 65%;
  min-width: 15.4375rem;
}
@media screen and (min-width: 768px) {
  .p-about__top-img {
    width: 50%;
  }
}

.p-about__top-img img {
  border-radius: 0 20px 20px 0;
}

.p-about__top-body {
  margin-left: -6.25rem;
  padding-right: 0.9375rem;
  padding-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-about__top-body {
    margin-left: -6.875rem;
    padding-right: 0;
    padding-top: 0;
  }
}

.p-about__top-name {
  font-size: 3.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.8333333333;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-about__top-name {
    font-size: 9.375rem;
    line-height: 1;
  }
}

.p-about__top-subname {
  margin-top: 0.25rem;
  display: inline-block;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.0833333333;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 0.75rem;
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-about__top-subname {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 2;
    padding: 0.3125rem 1.25rem;
  }
}

.p-about__top-text {
  margin-top: 2.5625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8333333333;
  letter-spacing: 0.5em;
  margin-left: -8.125rem;
}
@media screen and (min-width: 600px) {
  .p-about__top-text {
    margin-left: -4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about__top-text {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7647058824;
    margin-left: 0;
  }
}

.p-about__top-btn {
  margin-top: 1.25rem;
  text-align: right;
}

.p-about__top-btn a {
  display: inline-block;
  padding-left: 3.6875rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.p-about__top-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.6875rem;
  height: 2.6875rem;
  background: url(../img/common/arrow-right.png) no-repeat center/contain;
}

.p-about__img {
  position: relative;
  z-index: -2;
}

.p-about__inner {
  position: relative;
  z-index: 0;
}

.p-about__contents {
  padding: 1.875rem 1.25rem;
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    margin-top: -1.875rem;
    padding: 3.125rem;
    margin-right: unset;
    margin-left: unset;
  }
}

.p-about__table {
  margin-top: 2.5rem;
}

.p-about__table.c-table dd a.map {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-about__table.c-table dd a.map {
    margin-left: 1.875rem;
    margin-top: 0;
  }
}

.p-about__table.c-table dd .c-btn2.map {
  color: #858585;
  padding: 1px;
}

.p-about__table.c-table dd .c-btn2.map span {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0.5rem 1.125rem 0.5rem 1.75rem;
  border-radius: 30px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-about__table.c-table dd .c-btn2.map span {
    padding: 1.0625rem 2.25rem 1rem;
  }
}

.p-about__table.c-table dd .c-btn2::after {
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-about__table2 dl {
    grid-template-columns: 17.5rem 1fr;
  }
}

.p-about__contents-links {
  margin-top: 2.5rem;
  display: grid;
  -webkit-column-gap: 1.375rem;
     -moz-column-gap: 1.375rem;
          column-gap: 1.375rem;
  row-gap: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-about__contents-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-about__contents-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-about__contents-link-img {
  max-width: 6.875rem;
  min-width: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__contents-link-img {
    max-width: 10rem;
  }
}

.p-about__contents-img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-about__contents-img {
    margin-left: unset;
    margin-right: unset;
  }
}

.p-about__contents-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/430;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about__contents-img img {
    aspect-ratio: 1120/580;
  }
}

.p-about__contents-container {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.625rem;
  margin-top: 2.8125rem;
}

.p-about__contents-contents {
  padding: 1.5rem 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .1)), to(rgba(29, 189, 160, .1)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .1) 0%, rgba(29, 189, 160, .1) 100%);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__contents-contents {
    display: grid;
    padding: 2.125rem 3.1875rem 2.625rem;
    grid-template-columns: 15.3125rem 1fr;
    gap: 2.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-about__contents-contents--purple {
  background: -webkit-gradient(linear, left top, right top, from(rgba(128, 74, 244, .1)), to(rgba(189, 123, 240, .1)));
  background: linear-gradient(90deg, rgba(128, 74, 244, .1) 0%, rgba(189, 123, 240, .1) 100%);
}

.p-about__contents-contents--green {
  background: -webkit-gradient(linear, left top, right top, from(rgba(64, 172, 61, .1)), to(rgba(48, 219, 77, .1)));
  background: linear-gradient(90deg, rgba(64, 172, 61, .1) 0%, rgba(48, 219, 77, .1) 100%);
}

.p-about__contents-contents--orange {
  background: -webkit-gradient(linear, left top, right top, from(rgba(239, 99, 74, .1)), to(rgba(250, 197, 83, .1)));
  background: linear-gradient(90deg, rgba(239, 99, 74, .1) 0%, rgba(250, 197, 83, .1) 100%);
}

.p-about__contents-contents--pink {
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 101, 201, .1)), to(rgba(251, 152, 172, .1)));
  background: linear-gradient(90deg, rgba(253, 101, 201, .1) 0%, rgba(251, 152, 172, .1) 100%);
}

.p-about__contents-contents--gray {
  background: -webkit-gradient(linear, left top, right top, from(rgba(137, 137, 137, .1)), to(rgba(211, 211, 211, .1)));
  background: linear-gradient(90deg, rgba(137, 137, 137, .1) 0%, rgba(211, 211, 211, .1) 100%);
}

.p-about__contents-icon img {
  display: block;
  margin-inline: auto;
  max-width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-about__contents-icon img {
    max-width: 4.5625rem;
  }
}

.p-about__contents-title {
  margin-top: 0.9375rem;
  text-align: center;
  font-size: 1rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-about__contents-title {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-about__contents-items {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-about__contents-items {
    margin-top: 1.25rem;
  }
}

/* 要素が1つしかないときは中央寄せ */
.p-about__contents-items:has(.p-about__contents-item:nth-child(1):nth-last-child(1)) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-about__contents-items:has(.p-about__contents-item:nth-child(1):nth-last-child(1)) {
    display: grid;
  }
}

@media screen and (min-width: 768px) {
  .p-about__contents-item {
    width: 100%;
  }
}

.p-about__contents-item a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  padding: 0 0.625rem;
  padding: 1rem 0.625rem;
  font-size: 0.625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.6666666667;
  text-align: center;
  white-space: nowrap;
  min-width: 9.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__contents-item a {
    padding: 0 3.0625rem;
    font-size: 1rem;
    line-height: 3.125;
    letter-spacing: 0.1em;
    text-align: left;
    width: 100%;
  }
}

.p-about__contents-contents--purple .p-about__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

.p-about__contents-contents--green .p-about__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-about__contents-contents--orange .p-about__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-about__contents-contents--pink .p-about__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-about__contents-contents--gray .p-about__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#898989), to(#D3D3D3));
  background: linear-gradient(90deg, #898989 0%, #D3D3D3 100%);
}

.p-about__project {
  margin-top: 1.5625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__project {
    margin-top: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.p-about__project-item {
  position: relative;
}

.p-about__project-item p {
  content: "";
  position: absolute;
  top: 1.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8461538462;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__project-item p {
    top: 3.125rem;
    left: 0.625rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    font-size: 1.5625rem;
    line-height: 1.6;
    text-align: left;
  }
}

.p-about__project-item p span {
  display: inline-block;
  padding: 0 0.375rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  white-space: nowrap;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about__project-item p span {
    padding: 0 0.625rem;
  }
}

.p-about__project-link {
  padding-top: 0.625rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-about__project-link {
    padding-top: 1.25rem;
    text-align: left;
  }
}

.p-about__project-link a {
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-about__project-link a {
    font-size: 1.25rem;
  }
}

.p-about__project-link a span {
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-article__container {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-article__container {
    display: block;
  }
}

.p-article {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-article {
    margin-top: 5rem;
    display: block;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.p-article .l-inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-article .l-inner {
    max-width: 69.125rem;
    padding: 0;
    padding-right: 1.5625rem;
  }
}

.p-article ul {
  padding-left: 0.9375rem;
  list-style: disc;
  margin: 0.9375rem 0;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-article ul {
    font-size: 1rem;
  }
}

.p-article ol {
  list-style: auto;
  padding-left: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-article ol {
    font-size: 1rem;
  }
}

.p-article a {
  text-decoration: underline;
}

.p-article table {
  margin-top: 1.25rem;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-article table {
    font-size: 0.9375rem;
  }
}

.p-article table th {
  background: #F9F9F9;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #C4C4C4;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-article table th {
    padding: 0.625rem 1.875rem;
  }
}

.p-article table td {
  padding: 0.625rem 1.25rem;
  border: 1px solid #C4C4C4;
}

.p-article__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .p-article__inner {
    max-width: 1482px;
    padding-left: 1.5625rem;
  }
}

.p-article__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 1.875rem;
  text-align: center;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  text-align: left;
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-article__title {
    margin-top: 0;
    font-size: 2.1875rem;
    line-height: 1.4285714286;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    padding: 0;
    padding-left: 0.625rem;
  }
}

.p-article__title span {
  display: inline-block;
  margin-right: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  color: #fff;
  -webkit-text-fill-color: white;
  border-radius: 50%;
  padding: 0.875rem 0.4375rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-article__title span {
    margin-right: 0.9375rem;
  }
}

.p-article__tab-title-list {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid #C4C4C4;
}
@media screen and (min-width: 768px) {
  .p-article__tab-title-list {
    margin-top: 5rem;
  }
}

.p-article__tab-title-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.p-article__tab-title {
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  padding-bottom: 0.875rem;
  padding-right: 2.5rem;
  position: relative;
  cursor: pointer;
  color: #9A9A9A;
}
@media screen and (min-width: 768px) {
  .p-article__tab-title {
    font-size: 1.5625rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: 700;
    line-height: 0.68;
    padding-left: 0.625rem;
    padding-bottom: 1.4375rem;
  }
}

.p-article__tab-title.selected {
  color: #000;
}

.p-article__tab-title::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0.3125rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.p-article__tab-title:nth-child(2):after {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

.p-article__tab-title:nth-child(3):after {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

@media screen and (min-width: 768px) {
  .p-article__tab-title span {
    display: inline;
  }
}

.p-article__tab-contents {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-article__tab-contents {
    margin-top: 2.5rem;
  }
}

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

.p-article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8125rem;
  overflow-x: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  margin-right: calc(50% - 50vw);
  padding-right: 1.25rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-article-list {
    margin-right: unset;
    gap: 1.125rem;
    overflow-x: hidden;
  }
}

/*Google Chrome、Safariへの対応*/
.p-article-list::-webkit-scrollbar {
  display: none;
}

.p-article-list ul {
  padding-left: 0 !important;
}

.p-article-list__item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .1);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, .1);
  border-radius: 0px 0px 5px 5px;
  min-width: 15.5rem;
}

.p-article-list__item a {
  text-decoration: none;
}

.p-article-list__item {
  list-style: none;
}

.p-article__item-wrap {
  padding: 0.9375rem 0.9375rem 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-article__item-wrap {
    padding: 1.25rem 1.25rem 1.9375rem;
  }
}

.p-article__item-wrap time {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 0.9090909091;
  color: #9A9A9A;
}

.p-article__item-title {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-article__item-title {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.p-article__tab-btn {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-article__tab-btn {
    margin-top: 3.125rem;
  }
}

.p-article__tab-btn a {
  text-decoration: none;
}

.p-article__table {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-article__table {
    margin-top: 2.5rem;
  }
}

.p-article__table dd a.map {
  display: inline-block;
  padding: 0.5rem 0.6875rem 0.5rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
  color: #9A9A9A;
  background: #fff;
  position: relative;
  border-radius: 30px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-article__table dd a.map {
    margin-top: 0;
    margin-left: 1.875rem;
    padding: 1rem 1.875rem 1.0625rem 3.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.1333333333;
  }
}

.p-article__table dd a.map:hover {
  opacity: 1;
}

.p-article__table dd a.map::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101%;
  height: 103%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  border-radius: 30px;
}

.p-article__table dd a.map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 1.125rem;
  background: url(../img/common/map.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-article__table dd a.map::before {
    left: 1.3125rem;
    width: 1.0625rem;
    height: 1.625rem;
  }
}

.p-article__table.c-table dd ul {
  display: inline-block;
}

.p-article__table.c-table dd ol {
  display: inline-block;
}

.p-article__table.c-table dd table {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-article__table.c-table dd table {
    margin-inline: unset;
  }
}

.p-article__support-items {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-article__support-items {
    margin-top: 2.5rem;
  }
}

.p-article ul.p-article__support-items {
  padding-left: 0;
}

.p-article__support-item {
  list-style: none;
  display: block;
  background: rgba(196, 196, 196, .2);
  border-radius: 10px;
  padding: 0.625rem 2.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3076923077;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-article__support-item {
    padding: 1.375rem 2.5rem;
    font-size: 1rem;
    line-height: 1.0625;
    text-align: left;
  }
}

.p-article__support-item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.p-article__subtitle {
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article__subtitle {
    margin-top: 3.125rem;
  }
}

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

.p-article__subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-article__subtitle::after {
    display: none;
  }
}

.p-article__subtitle.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-article__subtitle--none::after {
  display: none;
}

.p-article__contents-map {
  margin-top: 1.875rem;
  aspect-ratio: 1097/665;
}
@media screen and (min-width: 768px) {
  .p-article__contents-map {
    margin-top: 2.5rem;
  }
}

.p-article__contents-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1097/665;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-article__cards {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 3.4375rem;
  margin-right: calc(50% - 50vw);
  padding-right: 1.25rem;
  overflow-x: visible;
}
@media screen and (min-width: 768px) {
  .p-article__cards {
    overflow-x: auto;
    padding-right: 6.25rem;
    margin-top: 2.5rem;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
    padding-bottom: 5rem;
  }
}

/*Google Chrome、Safariへの対応*/
.p-article__cards::-webkit-scrollbar {
  display: none;
}

.p-article__contents-3column {
  margin-top: 1.875rem;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 3.4375rem;
  margin-right: calc(50% - 50vw);
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-article__contents-3column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    margin-top: 2.5rem;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
    padding-bottom: 5rem;
  }
}

/*Google Chrome、Safariへの対応*/
.p-article__contents-3column::-webkit-scrollbar {
  display: none;
}

.p-article__contents-3column .swiper-button-prev {
  top: 93%;
  left: 25%;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-article__contents-3column .swiper-button-prev {
    display: none;
  }
}

.p-article__contents-3column .swiper-button-next {
  top: 93%;
  right: 25%;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-article__contents-3column .swiper-button-next {
    display: none;
  }
}

.p-article__contents-3column-item {
  min-width: 14.6875rem;
  max-width: 14.6875rem;
}
@media screen and (min-width: 768px) {
  .p-article__contents-3column-item {
    min-width: 21rem;
    max-width: 21rem;
  }
}

.p-article__contents-3column-item video {
  width: 100%;
  height: 100%;
  aspect-ratio: 235/195;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-article__contents-3column-item video {
    aspect-ratio: 336/280;
  }
}

@media screen and (min-width: 768px) {
  .swiper4,
  .swiper5 {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

.swiper4 .swiper-wrapper {
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .swiper4 .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    padding-right: 5.625rem;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }
}

.swiper5 .swiper-wrapper {
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .swiper5 .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    padding-right: 11.25rem;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }
}

/*Google Chrome、Safariへの対応*/
.swiper4 .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

/*Google Chrome、Safariへの対応*/
.swiper5 .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.p-article__card {
  background: -webkit-gradient(linear, left top, right top, from(rgba(236, 236, 255, .7)), to(rgba(227, 250, 255, .7)));
  background: linear-gradient(90deg, rgba(236, 236, 255, .7) 0%, rgba(227, 250, 255, .7) 100%);
  border-radius: 5px;
  padding: 1.25rem 2.25rem;
  max-width: 17.8125rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-article__card {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 24.375rem;
    max-width: 24.375rem;
    padding: 2.5rem 4.6875rem 5.6875rem;
  }
}

.p-article__card-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .p-article__card-title {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.p-article__card-img {
  margin-top: 1.125rem;
  aspect-ratio: 212/211; /* 20250626 */
}
@media screen and (min-width: 768px) {
  .p-article__card-img {
    margin-top: 1.25rem;
    aspect-ratio: 240/240; /* 20250626 */
  }
}

.p-article__card-img img {
  border-radius: 5px;
  width: 100%;
  height: auto;
  aspect-ratio: 212/211;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-article__card-img img {
    aspect-ratio: 240/240;
  }
}

.p-article__card-text {
  margin-top: 1.0625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-article__card-text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.swiper4 .swiper-button-prev img,
.swiper4 .swiper-button-next img {
  width: 2.1875rem;
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper4 .swiper-button-prev img,
  .swiper4 .swiper-button-next img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.swiper5 .swiper-button-prev img,
.swiper5 .swiper-button-next img {
  width: 2.1875rem;
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper5 .swiper-button-prev img,
  .swiper5 .swiper-button-next img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.swiper4 .swiper-button-prev {
  top: 96%;
  left: 23%;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper4 .swiper-button-prev {
    top: 98%;
    left: 25%;
    width: 2.5rem;
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .swiper4 .swiper-button-prev {
    top: 96%;
  }
}

.swiper5 .swiper-button-prev {
  top: 93%;
  left: 23%;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper5 .swiper-button-prev {
    top: 96%;
    left: 25%;
    width: 2.5rem;
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .swiper5 .swiper-button-prev {
    top: 93%;
  }
}

.swiper4 .swiper-button-next {
  top: 96%;
  right: 23%;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper4 .swiper-button-next {
    top: 98%;
    width: 2.5rem;
    right: 40%;
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .swiper4 .swiper-button-next {
    top: 96%;
  }
}

.swiper5 .swiper-button-next {
  top: 93%;
  right: 23%;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper5 .swiper-button-next {
    top: 96%;
    width: 2.5rem;
    right: 40%;
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .swiper5 .swiper-button-next {
    top: 93%;
  }
}

.swiper4 .swiper-pagination {
  bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .swiper4 .swiper-pagination {
    bottom: 1.25rem;
    left: 50%;
    -webkit-transform: translateX(-57%);
            transform: translateX(-57%);
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .swiper4 .swiper-pagination {
    bottom: 1.125rem;
  }
}

.swiper5 .swiper-pagination {
  bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .swiper5 .swiper-pagination {
    bottom: 1.25rem;
    left: 50%;
    -webkit-transform: translateX(-57%);
            transform: translateX(-57%);
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .swiper5 .swiper-pagination {
    bottom: 1.125rem;
  }
}

.swiper4 .swiper-pagination-bullets span,
.swiper5 .swiper-pagination-bullets span {
  width: 0.1875rem;
  height: 0.1875rem;
}

.swiper4 .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
}
@media screen and (min-width: 768px) {
  .swiper4 .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
  }
}

.swiper5 .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
}
@media screen and (min-width: 768px) {
  .swiper5 .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
  }
}

.p-article__links {
  margin-top: 1.875rem;
  display: grid;
  -webkit-column-gap: 1.625rem;
     -moz-column-gap: 1.625rem;
          column-gap: 1.625rem;
  row-gap: 0.9375rem;
  padding: 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-article__links {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.0625rem;
  }
}

.p-article__link {
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #B3B3B3;
}
@media screen and (min-width: 768px) {
  .p-article__link {
    padding-bottom: 2.25rem;
  }
}

.p-article__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-article__link a {
    gap: 1.375rem;
  }
}

.p-article__link-img {
  max-width: 4.375rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .p-article__link-img {
    max-width: 8rem;
  }
}

.p-article__link-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-article__link-body {
  width: 100%;
  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;
}
@media screen and (min-width: 768px) {
  .p-article__link-body {
    padding-top: 0.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-article__link-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1333333333;
}
@media screen and (min-width: 768px) {
  .p-article__link-title {
    font-size: 1.0625rem;
    line-height: 1;
  }
}

.p-article__link-subtitle {
  margin-top: 0.1875rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .p-article__link-subtitle {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-article__link-btn {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .2)), to(rgba(29, 189, 160, .2)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .2) 0%, rgba(29, 189, 160, .2) 100%);
  border-radius: 100px;
  padding: 0.875rem 1.3125rem 0.8125rem 1.5rem;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 0.32;
  color: #5372B6;
}
@media screen and (min-width: 768px) {
  .p-article__link-btn {
    margin-top: 1.5rem;
  }
}

.p-article__contents-img {
  margin-top: 1.875rem;
}

.p-article__contents-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 343/155;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-article__contents-img img {
    aspect-ratio: 1105/330;
  }
}

.p-article__contents-read {
  padding: 1.875rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}
@media screen and (min-width: 768px) {
  .p-article__contents-read {
    padding: 3.75rem 0.625rem 0;
    font-size: 1.5625rem;
    line-height: 0.68;
  }
}

.p-article__contents-text {
  padding: 1.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6923076923;
}
@media screen and (min-width: 768px) {
  .p-article__contents-text {
    padding: 2.8125rem 0.625rem 0;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-article__contents-text span {
  font-weight: 700;
}

.p-article__contents-text a {
  text-decoration: underline;
}

.p-article__text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
  padding: 0.625rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-article__text {
    padding: 1.5rem 1.875rem 0;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-article__contents table {
  margin-top: 1.25rem;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-article__contents table {
    font-size: 0.9375rem;
  }
}

.p-article__contents table th {
  background: #F9F9F9;
  padding: 0.625rem 0.3125rem;
  border: 1px solid #C4C4C4;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-article__contents table th {
    padding: 0.625rem 1.875rem;
  }
}

.p-article__contents table td {
  padding: 0.625rem 0.3125rem;
  border: 1px solid #C4C4C4;
}
@media screen and (min-width: 768px) {
  .p-article__contents table td {
    padding: 0.625rem 1.25rem;
  }
}

.base .p-head__title .c-section-title {
  padding-left: 6.875rem;
}
@media screen and (min-width: 768px) {
  .base .p-head__title .c-section-title {
    padding-left: 11.75rem;
  }
}

.base .p-head__inner {
  padding: 0 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .base .p-head__inner {
    padding: 1.875rem 0 0;
  }
}

.p-base {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-base {
    padding-top: 2.5rem;
    padding-bottom: 6.25rem;
  }
}

.p-base__container {
  max-width: 64rem;
  margin-inline: auto;
}

.p-base__contents {
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, .2);
  border-radius: 10px;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-base__contents {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 0;
  }
}

.p-base__contents:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-base__contents:nth-child(n+2) {
    margin-top: 3.125rem;
  }
}

.p-base__contents-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-base__contents-head {
    -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: 1.4375rem;
  }
}

.p-base__contents-head::after {
  content: "";
  position: absolute;
  top: 1.1875rem;
  right: 0;
  width: 1.625rem;
  height: 1.625rem;
  background: url(../img/common/arrow-down-circle.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-base__contents-head::after {
    display: none;
  }
}

.p-base__contents-head.open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-base__contents-head a {
  display: contents;
}

.p-base__body-wrap {
  gap: 0.9375rem;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-base__body-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.4375rem;
  }
}

.p-base__body-wrap a {
  display: inline-block;
}

.p-base__img {
  aspect-ratio: 63/63; /* 20250626 and add */
  max-width: 3.9375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-base__img {
    aspect-ratio: 168/168; /* 20250626 and add */
    max-width: 10.5rem;
    min-width: 10.5rem;
  }
}

.p-base__img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  aspect-ratio: 63/63;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-base__img img {
    aspect-ratio: 168/168;
  }
}

.p-base__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-base__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-base__name {
  font-size: 1.0625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-base__name {
    font-size: 1.875rem;
  }
}

.p-base__wrap {
  margin-top: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-base__wrap {
    position: unset;
    margin-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
  }
}

.p-base__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-base__access {
    margin-top: 1.25rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-base__tel {
  font-size: 1rem;
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  line-height: 1.0625;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-base__tel {
    font-size: 1.5625rem;
    line-height: 1;
  }
}

.p-base__map {
  margin-left: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-base__map {
    margin-left: 1.25rem;
  }
}

.p-base__cat {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-base__cat {
    margin-top: 1.375rem;
    width: auto;
  }
}

.p-base__cat-item {
  background: #EDEDED;
  padding: 0.4375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-base__cat-item {
    font-size: 0.8125rem;
    line-height: 1;
  }
}

.p-base__contents-items {
  margin-top: 1.5625rem;
}

.p-base__contents-item {
  margin-left: auto;
  max-width: 52.25rem;
  background: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
  border-radius: 10px;
}

.p-base__contents-item:nth-child(n+2) {
  margin-top: 0.9375rem;
}

.p-base__contents-item a {
  display: block;
  padding: 1.0625rem 3.125rem 1rem 1.3125rem;
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4615384615;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-base__contents-item a {
    padding: 1.0625rem 1.3125rem 1rem;
    padding: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-base__contents-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../img/common/arrow-right.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-base__contents-item a::after {
    right: -1.5rem;
    width: 2.6875rem;
    height: 2.6875rem;
  }
}

.p-base__contents-item a span {
  display: inline-block;
  margin-top: 0.4375rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-base__contents-item a span {
    margin-top: 0.3125rem;
  }
}

.p-base__contents-item p {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5454545455;
  color: #9A9A9A;
}
@media screen and (min-width: 768px) {
  .p-base__contents-item p {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.p-contact-cta {
  margin-top: 3.9375rem;
  padding-bottom: 1.875rem;
  background: url(../img/common/bg_border.png) no-repeat center top 30px/cover;
}
@media screen and (min-width: 768px) {
  .p-contact-cta {
    margin-top: 0;
    padding-bottom: 9.4375rem;
    background: url(../img/common/bg_border.png) no-repeat center top 100px/cover;
  }
}

.p-contact-cta__title {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-contact-cta__title {
    margin-left: unset;
  }
}

.p-contact-cta__title p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.8571428571;
  letter-spacing: 0.1em;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__title p {
    margin-top: -1.875rem;
    font-size: 0.8125rem;
    line-height: 3.0769230769;
    padding-left: 9.75rem;
  }
}

.p-contact-cta__title .c-section-title {
  padding-left: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__title .c-section-title {
    padding-left: 32.875rem;
  }
}

.p-contact-cta__items {
  max-width: 69.8125rem;
  margin-inline: auto;
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__items {
    margin-top: 2.8125rem;
    grid-template-columns: 1fr 1fr;
  }
}

.p-contact-cta__item {
  text-align: center;
  padding: 1.875rem 0 2.1875rem;
  background: rgba(255, 255, 255, .7);
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item {
    padding: 6rem 0 7.625rem;
  }
}

.p-contact-cta__item-title {
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.0666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item-title {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-contact-cta__item-text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item-text {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.p-contact-cta__item-tel {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item-tel {
    margin-top: 1.25rem;
  }
}

.p-contact-cta__item-tel a {
  display: block;
  font-size: 1.25rem;
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item-tel a {
    font-size: 2.5rem;
  }
}

.p-contact-cta__item-btn {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item-btn {
    margin-top: 1.5rem;
  }
}

.p-contact-cta__item-btn a {
  display: inline-block;
  background: #000;
  padding: 0 2.5rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.8571428571;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__item-btn a {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

/* 20250626 and add start */
.p-contact-cta__map {
  aspect-ratio: 375/115;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__map {
    aspect-ratio: 1512/464;
  }
}
/* 20250626 and add end */

.p-contact-cta__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/115;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-contact-cta__map iframe {
    aspect-ratio: 1512/464;
  }
}

.contact .p-head__title .c-section-title {
  padding-left: 12.5rem;
}
@media screen and (min-width: 768px) {
  .contact .p-head__title .c-section-title {
    padding-left: 23.875rem;
  }
}

.p-contact {
  margin-top: 4.375rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .9)), to(rgba(29, 189, 160, .9)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .9) 0%, rgba(29, 189, 160, .9) 100%);
  padding: 1.875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    margin-top: 6.8125rem;
    padding: 4.375rem 0 6.5rem;
  }
}

.p-contact__main {
  margin-top: 3.125rem;
  background: #fff;
  max-width: 70rem;
  margin-inline: auto;
  border-radius: 17px;
  padding: 1.875rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .p-contact__main {
    margin-top: 4.375rem;
    padding: 4.375rem 3.5rem;
  }
}

.p-contact__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact__list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__list {
    margin-top: 2.5rem;
  }
}

.p-contact__list-item {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.8181818182;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .p-contact__list-item {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-contact__list-item:nth-child(n+2) {
  margin-top: 0.625rem;
}

.p-contact__list-item a {
  text-decoration: underline;
}

.p-contact__items {
  max-width: 70rem;
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-contact__items {
    margin-top: 3.125rem;
  }
}

.p-contact__item a {
  display: block;
  background: #fff;
  padding: 2.8125rem 1.25rem 0.8125rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3076923077;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__item a {
    padding: 2.875rem 0 2.9375rem;
    border-radius: 17px;
    font-size: 1.25rem;
    line-height: 0.85;
  }
}

.p-contact__item a span {
  position: relative;
}

.p-contact__item a span::before {
  content: "";
  position: absolute;
  top: -2.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  mask: url(../img/common/general.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/general.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-contact__item a span::before {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    left: -3.125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-contact__item:nth-child(2) a span::before {
  mask: url(../img/common/information.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/information.svg) no-repeat center/contain;
}

.p-contact__item:nth-child(3) a span::before {
  mask: url(../img/common/tel.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/tel.svg) no-repeat center/contain;
}

.p-contact__item:nth-child(4) a span::before {
  mask: url(../img/common/consultation.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/consultation.svg) no-repeat center/contain;
}

.p-contact__item.active a {
  color: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.p-contact__item.active a span::before {
  background: #fff;
}

.p-contact__container {
  margin-top: 3.125rem;
  margin-bottom: 4.375rem;
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__container {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.p-contact__subtitle {
  text-align: left;
}

.p-contact__attention {
  margin: 3.125rem 0;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__attention {
    margin: 3.5rem 0;
    max-width: 70rem;
    margin-inline: auto;
  }
}

.p-contact__attention-wrap {
  background: #fff;
  position: relative;
  border-radius: 8px;
  padding: 0.8125rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__attention-wrap {
    padding: 1.1875rem 0;
  }
}

.p-contact__attention-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101%;
  height: 102%;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(#EF634A), to(#EF634A));
  background: linear-gradient(0deg, #EF634A, #EF634A);
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-contact__attention-wrap::after {
    width: 100.2%;
  }
}

.p-contact__attention-wrap span {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  background: -webkit-gradient(linear, left bottom, left top, from(#EF634A), to(#EF634A));
  background: linear-gradient(0deg, #EF634A, #EF634A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-contact__attention-wrap span {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.p-contact__container2 {
  margin-top: 3.4375rem;
  margin-bottom: 4.375rem;
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__container2 {
    margin-top: 2.5rem;
    margin-bottom: 6.25rem;
  }
}

.p-contact__contents {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents {
    padding: 0;
  }
}

.p-contact__contents:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents:nth-child(n+2) {
    margin-top: 4.375rem;
  }
}

.p-contact__contents-title {
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
  border-radius: 5px;
  padding: 0.6875rem 1.25rem 0.625rem;
  padding: 1.25rem 0.9375rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-title {
    padding: 1.625rem 3.125rem 1.6875rem;
    font-size: 1.0625rem;
    line-height: 1;
    text-align: left;
  }
}

.p-contact__contents-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-title::after {
    display: none;
  }
}

.p-contact__contents-title.open {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-contact__contents-title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-contact__contents-title--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-contact__contents-title--green {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-contact__contents-title--blue {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.p-contact__contents-title--pink {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-contact__contents-title--gray {
  background: -webkit-gradient(linear, left top, right top, from(#888888), to(#C4C4C4));
  background: linear-gradient(90deg, #888888 0%, #C4C4C4 100%);
}

.p-contact__contents-inner {
  padding: 1.25rem 0.625rem 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-inner {
    background: transparent;
    padding: 0;
  }
}

.p-contact__contents-inner--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}
@media screen and (min-width: 768px) {
  .p-contact__contents-inner--orange {
    background: transparent;
  }
}

.p-contact__contents-inner--green {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}
@media screen and (min-width: 768px) {
  .p-contact__contents-inner--green {
    background: transparent;
  }
}

.p-contact__contents-inner--blue {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}
@media screen and (min-width: 768px) {
  .p-contact__contents-inner--blue {
    background: transparent;
  }
}

.p-contact__contents-inner--pink {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}
@media screen and (min-width: 768px) {
  .p-contact__contents-inner--pink {
    background: transparent;
  }
}

.p-contact__contents-inner--gray {
  background: -webkit-gradient(linear, left top, right top, from(#888888), to(#C4C4C4));
  background: linear-gradient(90deg, #888888 0%, #C4C4C4 100%);
}
@media screen and (min-width: 768px) {
  .p-contact__contents-inner--gray {
    background: transparent;
  }
}

.p-contact__contents-items {
  display: grid;
  gap: 1.25rem;
  padding: 0.625rem;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-items {
    margin-top: 1.5625rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}

.p-contact__contents-item {
  background: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
  border-radius: 20px;
  padding: 0.5rem 0.625rem 0.8125rem;
  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;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-item {
    padding: 1.25rem 1.875rem;
    gap: 1.25rem;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
  }
}

.p-contact__contents-img {
  max-width: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-img {
    max-width: 4.0625rem;
  }
}

.p-contact__contents-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  aspect-ratio: 49/49;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-img img {
    aspect-ratio: 65/65;
  }
}

.p-contact__contents-body {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 10.9375rem 3.1875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-body {
    grid-template-columns: 1fr;
  }
}

.p-contact__contents-wrap {
  padding-right: 0.5rem;
  border-right: 1px solid #E9E9E9;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-wrap {
    border-right: none;
  }
}

.p-contact__contents-name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-name {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.p-contact__contents-address {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4545454545;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-address {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.p-contact__contents-tel {
  padding-left: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-tel {
    padding-left: 0;
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.p-contact__contents-tel p {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-tel p {
    display: block;
  }
}

.p-contact__contents-tel img {
  max-width: 2.5rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-contact__contents-tel img {
    display: none;
  }
}

.contact-form {
  width: 100%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  max-width: 980px;
}

.contact-form hr {
  margin-bottom: 24px;
}

.contact-form span.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5em;
}

.contact-form span.wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-bottom: 1em;
}

.contact-form span.wpcf7-list-item.last {
  margin-bottom: 0;
}

.contact-form dl {
  display: table-row;
  margin: 0;
  table-layout: fixed;
}

@media screen and (max-width: 1024px) {
  .contact-form dl {
    display: block;
  }
}
.contact-form dl.-first dt, .contact-form dl.-first dd {
  border-top: none;
}

.contact-form dl dt, .contact-form dl dd {
  display: table-cell;
  border-top: 1px solid #cccccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 24px;
}

@media screen and (max-width: 1024px) {
  .contact-form dl dt, .contact-form dl dd {
    padding: 24px 0;
    margin: 0;
  }
}
.contact-form dl dt {
  width: 280px;
  font-weight: bold;
  vertical-align: top;
  line-height: 2;
  padding-right: 0;
}

@media screen and (max-width: 1024px) {
  .contact-form dl dt {
    display: block;
    width: 100%;
  }
}
.contact-form dl dd {
  width: 700px;
  padding-right: 0;
}

@media screen and (max-width: 1024px) {
  .contact-form dl dd {
    display: block;
    width: 100%;
    border-top: none;
    padding-top: 0;
  }
}
.contact-form dl dd span.example {
  display: block;
  margin-top: 0.5em;
  color: #888;
}

.contact-form dl dt .input-label {
  padding: 4px 8px;
  color: #949494;
  background-color: #F3F3F3;
  margin-left: 1em;
  border-radius: 5px;
}

.contact-form dl dt .input-label.-required {
  color: #fff;
  background-color: #DE3D35;
}

.contact-form form input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-form form input[type=radio] {
  margin-right: 0.5em;
}

.contact-form form input[type=text], .contact-form form input[type=tel], .contact-form form input[type=email], .contact-form form input[type=url] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 15px;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 4px;
}

.contact-form form input[type=text].wpcf7c-conf, .contact-form form input[type=tel].wpcf7c-conf, .contact-form form input[type=email].wpcf7c-conf, .contact-form form input[type=url].wpcf7c-conf {
  background-color: transparent !important;
  border: none;
  cursor: auto;
}

.contact-form form input[type=text].wpcf7c-conf:focus, .contact-form form input[type=tel].wpcf7c-conf:focus, .contact-form form input[type=email].wpcf7c-conf:focus, .contact-form form input[type=url].wpcf7c-conf:focus {
  outline: none;
}

.contact-form form input.narrow {
  max-width: 17rem;
}

.contact-form form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
}

.contact-form form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 15px;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 4px;
  resize: vertical;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-form form textarea.wpcf7c-conf {
  background-color: transparent !important;
  border: none;
  cursor: auto;
}

.contact-form form textarea.wpcf7c-conf:focus {
  outline: none;
}

.contact-form form select {
  padding: 10px 15px;
}

.contact-form form .way span.wpcf7-list-item {
  display: inline-block;
  margin-right: 3em;
  margin-bottom: 0;
}

.contact-form .wpcf7-confirm, .contact-form .wpcf7-back, .contact-form .wpcf7-submit, .contact-form .next-button, .half-button {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  cursor: hand;
  font-size: 1.6rem;
  line-height: 1em;
  padding: 22px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 90%;
  display: block;
  margin: 0 auto;
  text-align: left;
  -webkit-transition: background 0.5s ease-out, color 0.5s ease-out, border 0.5s ease-out;
  transition: background 0.5s ease-out, color 0.5s ease-out, border 0.5s ease-out;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .contact-form .wpcf7-confirm, .contact-form .wpcf7-back, .contact-form .wpcf7-submit {
    font-size: 1.2rem;
    width: 100%;
    padding: 12px 40px;
  }
}
.contact-form .wpcf7-submit {
  background: #000;
  color: #fff;
  border: solid 2px #000 !important;
  letter-spacing: 0.1em;
  text-indent: 0.5em;
}

.contact-form .wpcf7-submit:hover {
  opacity: 0.8;
}

.contact-form .wpcf7-mail-sent-ok {
  display: none !important;
}

.contact-form dd.onerow span input {
  display: inline-block;
  width: 49%;
  max-width: 240px;
  margin-left: 2%;
}

.contact-form dd.onerow span:first-of-type input {
  margin-left: 0;
}

dl.bdr-top-none dt {
  border-top: 0 !important;
  padding-top: 0 !important;
}

dl.bdr-top-none dd {
  border-top: 0 !important;
  padding-top: 0 !important;
}

.contact-form form input[name=your-email-confirm] {
  margin-top: 1rem;
}

.contact-form .attention {
  font-weight: normal;
  font-size: 0.8rem;
  line-height: 1.2;
}

.hide-sp {
  display: block;
}

@media screen and (max-width: 1024px) {
  .hide-sp {
    display: none !important;
  }
}
.u-fwn {
  font-weight: normal;
}

.p-disclosure {
  padding: 4.375rem 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure {
    padding: 10.0625rem 0 6.25rem;
  }
}

.disclosure .p-head {
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .disclosure .p-head {
    padding-top: 11rem;
  }
}

.disclosure .p-head__title .c-section-title {
  padding-left: 0.9375rem;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .disclosure .p-head__title .c-section-title {
    padding-left: 31.875rem;
  }
}

.p-disclosure__inner {
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-disclosure__inner {
    padding: 0;
  }
}

.p-disclosure__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-disclosure__title {
    font-size: 2.1875rem;
    line-height: 1.4285714286;
  }
}

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

.p-disclosure__contents:nth-child(n+2) {
  margin-top: 4.375rem;
}

.p-disclosure__body {
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure__body {
    margin-top: 2.5rem;
  }
}

.p-disclosure__text {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 3.1818181818;
}
@media screen and (min-width: 768px) {
  .p-disclosure__text {
    font-size: 0.9375rem;
    line-height: 2.3333333333;
  }
}

.p-disclosure__text p {
  display: inline-block;
  padding-right: 2.9375rem;
  position: relative;
}

.p-disclosure__text p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6875rem;
  height: 1.875rem;
  background: url(../img/common/icon-pdf.svg) no-repeat center/contain;
}

.p-disclosure__text:nth-child(n+2) {
  margin-top: 1.5625rem;
}

.p-disclosure__wrap {
  margin-top: 2.5rem;
  display: grid;
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-disclosure__wrap-title {
  position: relative;
}

.p-disclosure__wrap-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap-title::after {
    display: none;
  }
}

.p-disclosure__wrap-title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-disclosure__wrap-title .c-title {
  text-align: left;
  padding-left: 1.9375rem;
  font-size: 0.9375rem;
  line-height: 1.1333333333;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .2)), to(rgba(29, 189, 160, .2)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .2) 0%, rgba(29, 189, 160, .2) 100%);
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap-title .c-title {
    text-align: center;
    font-size: 1.25rem;
    line-height: 0.85;
    background: -webkit-gradient(linear, left top, right top, from(#EDF5FF), to(#E7FCFE));
    background: linear-gradient(90deg, #EDF5FF 0%, #E7FCFE 100%);
  }
}

.p-disclosure__wrap-title .c-title span {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.5454545455;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap-title .c-title span {
    font-size: 0.9375rem;
    line-height: 1.1333333333;
    margin-left: 1.25rem;
  }
}

.p-disclosure__wrap-list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap-list {
    margin-top: 2.5rem;
  }
}

.p-disclosure__wrap-item {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.8181818182;
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap-item {
    font-size: 0.9375rem;
    line-height: 2.3333333333;
  }
}

.p-disclosure__wrap-itemcategory {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
}

.p-disclosure__contents a {
  text-decoration: underline;
}

.p-flowchart__mv {
  position: relative;
  padding-bottom: 11.9375rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__mv {
    padding-bottom: 0;
  }
}

.p-flowchart__mv-img {
  position: relative;
}

.p-flowchart__mv-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/295;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-flowchart__mv-img img {
    aspect-ratio: 1512/514;
    opacity: 0.3;
  }
}

.p-flowchart__head {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flowchart__head {
    width: unset;
    top: 56%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-flowchart__head-title {
  font-size: 0.9375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4em;
  line-height: 1.3333333333;
  color: #fff;
  padding: 1rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}
@media screen and (min-width: 768px) {
  .p-flowchart__head-title {
    font-size: 1.5rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 1.6666666667;
    letter-spacing: 0;
    padding: 0.8125rem 7.4375rem;
  }
}

.p-flowchart__head-text {
  padding: 1.25rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .p-flowchart__head-text {
    padding: 0;
    text-align: center;
    margin-top: 1.9375rem;
    font-size: 1rem;
    line-height: 1.5625;
    white-space: nowrap;
  }
}

.p-flowchart {
  position: relative;
  margin-top: -1.25rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart {
    margin-top: -3.75rem;
    padding-bottom: 10.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flowchart__container {
    max-width: 71.5rem;
    margin-inline: auto;
  }
}

.p-flowchart__tab-title-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-flowchart__tab-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5625;
  padding: 0.9375rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, from(#4AB8F4), to(#7BEAF0));
  background: linear-gradient(90deg, #4AB8F4 0%, #7BEAF0 100%);
}
@media screen and (min-width: 768px) {
  .p-flowchart__tab-title {
    padding: 1.5rem;
  }
}

.p-flowchart__tab-title--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-flowchart__contents {
  padding: 0.75rem 0.625rem 0.8125rem 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#4AB8F4), to(#7BEAF0));
  background: linear-gradient(90deg, #4AB8F4 0%, #7BEAF0 100%);
  display: grid;
  gap: 1.25rem;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-flowchart__contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
    padding: 1.375rem 1.875rem 2.5rem;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.p-flowchart__contents:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__contents:nth-child(n+2) {
    margin-top: 0;
  }
}

.p-flowchart__contents--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-flowchart__contents-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5625;
  color: #fff;
  border-radius: 5px;
  position: relative;
  padding-left: 1.0625rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__contents-title {
    padding: 0;
  }
}

.p-flowchart__contents-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/flowchart/arrow-blue.png) no-repeat center/contain;
}

.p-flowchart__contents-title--orange::before {
  background: url(../img/flowchart/arrow-orange.png) no-repeat center/contain;
}

.p-flowchart__contents-title.open::before {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}

.p-flowchart__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5625;
  color: #26ABE0;
  position: relative;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__title {
    text-align: center;
    font-size: 1.5625rem;
    line-height: 1;
    padding-right: 0;
  }
}

.p-flowchart__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/flowchart/arrow-blue2.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-flowchart__title::before {
    display: none;
  }
}

.p-flowchart__title--orange::before {
  background: url(../img/flowchart/arrow-orange2.png) no-repeat center/contain;
}

.p-flowchart__title.open::before {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}

.p-flowchart__contents--orange .p-flowchart__title {
  background: -webkit-gradient(linear, left bottom, left top, from(#EF634A), to(#EF634A));
  background: linear-gradient(0deg, #EF634A, #EF634A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-flowchart__wrapper {
  background: #fff;
  border-radius: 5px;
  padding: 0.75rem 1rem 0.8125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__wrapper {
    padding: 1.8125rem 2.5rem 3.125rem 1.875rem;
  }
}

.p-flowchart__wrapper:nth-child(n+2) {
  margin-top: 1.25rem;
}

.p-flowchart__subtitle {
  margin-top: 1.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#4AB8F4), to(#7BEAF0));
  background: linear-gradient(90deg, #4AB8F4 0%, #7BEAF0 100%);
  border-radius: 20px;
  color: #fff;
  padding: 0.3125rem;
}

.p-flowchart__subtitle:nth-child(n+2) {
  margin-top: 3.125rem;
}

.p-flowchart__contents--orange .p-flowchart__subtitle {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-flowchart__read {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  padding: 1.25rem 0.625rem 0;
}

.p-flowchart__text {
  padding: 1.25rem 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-flowchart__btn {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6666666667;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(74, 184, 244, .2)), to(rgba(123, 234, 240, .2)));
  background: linear-gradient(90deg, rgba(74, 184, 244, .2) 0%, rgba(123, 234, 240, .2) 100%);
}

.p-flowchart__contents--orange .p-flowchart__btn {
  background: -webkit-gradient(linear, left top, right top, from(rgba(239, 99, 74, .2)), to(rgba(250, 197, 83, .2)));
  background: linear-gradient(90deg, rgba(239, 99, 74, .2) 0%, rgba(250, 197, 83, .2) 100%);
}

.p-flowchart__btn a {
  display: block;
  padding: 0.625rem 0.3125rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__btn a {
    padding: 0.6875rem;
    font-size: 1rem;
  }
}

.p-flowchart__btn span {
  position: relative;
  text-decoration: underline;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__btn span {
    padding-right: 1.875rem;
  }
}

.p-flowchart__btn span::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.9375rem;
}

.p-footer {
  padding: 3.75rem 0 4.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#E8F3FB));
  background: linear-gradient(180deg, #F8F8F8 0%, #E8F3FB 100%);
  position: relative;
  overflow: hidden;
  overflow-y: clip;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 6.25rem 0 6.25rem 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.75rem;
    padding-left: 1.5625rem;
  }
}

.p-footer__logo img {
  margin-inline: auto;
  max-width: 9.1875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo img {
    margin-inline: unset;
    max-width: 100%;
  }
}

.p-footer__link {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.75rem;
  }
}

.p-footer__tel {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}

.p-footer__sns img {
  max-width: 1.875rem;
}

.p-footer__address {
  margin-top: 0.625rem;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    white-space: nowrap;
    text-align: left;
  }
}

.p-footer__img {
  margin-top: 2.5rem;
  max-width: 20.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__img {
    margin-top: 1.875rem;
    max-width: 22.25rem;
    margin-left: 0;
  }
}

.p-footer__items {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 0.8125rem;
  max-width: 15.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__items {
    margin-top: 0;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
    row-gap: 1.25rem;
    max-width: 100%;
  }
}

.p-footer__item {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5384615385;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__item {
    font-size: 0.9375rem;
    line-height: 1.5333333333;
  }
}

.p-footer__copyright {
  padding-top: 5.625rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    padding-top: 7.125rem;
  }
}

.p-footer__en {
  position: absolute;
  bottom: 3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 3.5rem;
  font-family: "Oswald", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: #FFFFFF;
  mix-blend-mode: normal;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-footer__en {
    bottom: -4.125rem;
    font-size: 14.375rem;
    font-size: clamp(180px, 15vw, 240px);
  }
}

.p-footer__en span {
  font-weight: 300;
}

.p-footer__bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  color: #fff;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  place-items: center;
  padding: 0.5rem 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    display: none;
  }
}

.p-footer__bottom-item:nth-child(n+2) {
  border-left: 1px solid #fff;
}

.p-footer__bottom-item a {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.1666666667;
  padding: 0.1875rem 3.5rem 0;
}

.p-footer__bottom-item a img {
  margin-inline: auto;
}

.p-greeting__bg {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-greeting__bg {
    height: 100vh;
  }
}

.p-greeting__bg img,
.p-greeting__bg source {
  width: 100%;
  height: 100dvh;
  aspect-ratio: 375/657;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80%;
     object-position: 80%;
}
@media screen and (min-width: 768px) {
  .p-greeting__bg img,
  .p-greeting__bg source {
    height: 100vh;
    aspect-ratio: 1512/982;
  }
}

.p-greeting__bg-en {
  font-size: 3.875rem;
  font-family: "Oswald", serif;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: 3.3125rem;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .2)), to(rgba(29, 189, 160, .2)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .2) 0%, rgba(29, 189, 160, .2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-greeting__bg-en {
    bottom: -0.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 11.875rem;
    font-size: clamp(100px, 12vw, 280px);
  }
}

.p-greeting__bg-name {
  position: absolute;
  bottom: 6.25rem;
  right: 1.375rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-greeting__bg-name {
    bottom: 4.125rem;
    right: 3.75rem;
  }
}

.p-greeting__bg-name {
  max-width: 6.8125rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__bg-name {
    max-width: 10.1875rem;
  }
}

.p-greeting__bg-name img {
  width: 100%;
  height: 100%;
  aspect-ratio: 109/40;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-greeting__bg-name img {
    aspect-ratio: 163/60;
  }
}

.p-greeting__inner {
  position: relative;
  padding-top: 10rem;
  padding-left: 1.25rem;
  padding-right: 8.625rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__inner {
    padding-top: 15.5rem;
    padding-left: 12.25rem;
    padding-right: 32.4375rem;
    padding-bottom: 6.25rem;
  }
}

.p-greeting__catchcopy {
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-greeting__catchcopy {
    margin-right: unset;
  }
}

.p-greeting__catchcopy span {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  font-size: 0.9375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #fff;
  display: inline-block;
  padding: 0.3125rem 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-greeting__catchcopy span {
    font-size: 1.5625rem;
    line-height: 2.4;
    padding: 0.3125rem 1.875rem;
    letter-spacing: 0.4em;
  }
}

.p-greeting__catchcopy span:nth-child(n+2) {
  margin-top: 0.625rem;
}

.p-greeting__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__container {
    margin-top: 4.1875rem;
  }
}

.p-greeting__contents {
  padding: 1.875rem 1.0625rem 1.875rem;
  background: rgba(255, 255, 255, .5);
}
@media screen and (min-width: 768px) {
  .p-greeting__contents {
    padding: 1.875rem 2.5rem 2.3125rem;
  }
}

.p-greeting__contents:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__contents:nth-child(n+2) {
    margin-top: 2.0625rem;
  }
}

.p-greeting__contents-title {
  font-size: 0.875rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-greeting__contents-title {
    font-size: 1.25rem;
    line-height: 2.5;
    letter-spacing: 0.5em;
  }
}

.p-greeting__contents-text {
  margin-top: 1rem;
  font-size: 0.6875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8181818182;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-greeting__contents-text {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    line-height: 2.3076923077;
  }
}

.p-greeting__link {
  position: relative;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__link {
    margin-top: 6.25rem;
  }
}

.p-greeting__link-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 220/120;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60%;
     object-position: 60%;
}
@media screen and (min-width: 768px) {
  .p-greeting__link-img img {
    aspect-ratio: 716/200;
    -o-object-position: unset;
       object-position: unset;
  }
}

.p-greeting__link-container {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-greeting__link-container {
    left: 5.375rem;
  }
}

.p-greeting__link-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-greeting__link-subtitle {
    font-size: 1.0625rem;
    line-height: 2.3529411765;
  }
}

.p-greeting__link-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-greeting__link-title {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-greeting__title {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__title {
    margin-top: 6.25rem;
  }
}

.p-greeting__table {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-greeting__table dl {
    grid-template-columns: 17.5rem 1fr;
  }
}

.p-greeting__table dd {
  text-align: left;
}

.p-greeting__table dt {
  white-space: wrap;
  padding: 0.4375rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__table dt {
    padding: 1rem 1.9375rem;
  }
}

.p-groupinfo {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-groupinfo {
    padding-top: 10.0625rem;
    padding-bottom: 6.25rem;
  }
}

.groupinfo .p-head__title .c-section-title {
  padding-left: 15.625rem;
}
@media screen and (min-width: 768px) {
  .groupinfo .p-head__title .c-section-title {
    padding-left: 31.25rem;
  }
}

.p-groupinfo__inner {
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__inner {
    padding: 0;
  }
}

.p-groupinfo__contents:nth-child(n+2) {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__contents:nth-child(n+2) {
    margin-top: 6.25rem;
  }
}

.p-groupinfo__wrap {
  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;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.5rem;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    gap: 2.5rem;
  }
}

.p-groupinfo__img {
  background: rgba(255, 255, 255, .7);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
  border-radius: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 8rem;
  max-width: 8rem;
  padding: 0.3125rem 0 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__img {
    min-width: 14.5625rem;
    max-width: 14.5625rem;
    padding: 0.625rem 0 2.1875rem;
  }
}

.p-groupinfo__img img {
  max-width: 6.0625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__img img {
    max-width: 11.125rem;
  }
}

.p-groupinfo__table.c-table dd a.map {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__table.c-table dd a.map {
    margin-left: 1.875rem;
    margin-top: 0;
  }
}

.p-groupinfo__table.c-table dd .c-btn2 {
  color: #858585;
}

.p-head {
  padding-top: 9.5625rem;
}
@media screen and (min-width: 768px) {
  .p-head {
    padding-top: 11rem;
  }
}

.p-head__inner {
  padding: 1.875rem 0 0;
  max-width: 70rem;
  margin-inline: auto;
}

.p-head__title .c-section-title {
  padding-left: 15.375rem;
}
@media screen and (min-width: 768px) {
  .p-head__title .c-section-title {
    padding-left: 17.75rem;
  }
}

.p-head__title .c-section-title::before {
  left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-head__title .c-section-title::before {
    left: 0;
  }
}

.p-head__inner p {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-head__inner p {
    margin-top: -2.1875rem;
    padding-left: 0;
    font-size: 0.8125rem;
    line-height: 2.3076923077;
  }
}

.p-head__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
  margin-top: 4.125rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-head__items {
    display: none;
  }
}

.p-head__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -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;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .25));
}

.p-head__item-img {
  background: #fff;
  padding: 0.625rem 0.375rem 0.0625rem 0.4375rem;
  border-radius: 10px;
}

.p-head__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-head__item-title {
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.p-header {
  position: absolute;
  top: 0;
  z-index: 100;
  padding: 1.25rem 1.25rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    padding: 1.125rem 1.875rem 0 5rem;
  }
}

.p-header__logo {
  max-width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 9.25rem;
  }
}

.p-header__nav {
  position: fixed;
  width: 88%;
  top: 0;
  right: 0;
  z-index: 99;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  padding: 1.8125rem 1.25rem 6.25rem;
  -webkit-transform: translateX(125%);
          transform: translateX(125%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    padding: 6.25rem 7.1875rem;
    width: 77.1164021164%;
  }
}

.p-header__nav.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .p-header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-header__left {
    padding-right: 3.3125rem;
    width: 49.8301245753%;
  }
}

.p-header__items {
  max-width: 13.625rem;
}
@media screen and (min-width: 768px) {
  .p-header__items {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-header__item {
    min-width: 24.375rem;
  }
}

.p-header__item:nth-child(n+2) {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-header__item:nth-child(n+2) {
    margin-top: 0.9375rem;
  }
}

.p-header__item a {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.75rem 1.25rem 0.75rem;
  color: #fff;
  background: rgba(255, 255, 255, .2);
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__item a {
    border: 1px solid #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 1.375rem 1.875rem 1.375rem;
  }
}

.p-header__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3125rem;
  height: 0.625rem;
  background: url(../img/common/arrow.svg) no-repeat center/contain;
}

.p-header__search {
  background: #fff;
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  position: fixed;
  z-index: 98;
  right: 0.625rem;
  top: 5.125rem;
  -webkit-box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .p-header__search {
    width: 5rem;
    height: 5rem;
    top: 7.9375rem;
    right: 1.875rem;
  }
}

.p-header__search.active {
  width: 18.125rem;
  border-radius: 40px;
  opacity: 1;
  z-index: 97;
}
@media screen and (min-width: 768px) {
  .p-header__search.active {
    width: 24.375rem;
  }
}

.p-header__search img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__search img {
    max-width: 1.375rem;
  }
}

.p-header__search.active img {
  right: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-header__search.active img {
    right: 2.5rem;
  }
}

.p-header__search.active .p-header__search-img {
  display: none;
}

.p-header__search-box {
  position: fixed;
  z-index: 97;
  right: 0.625rem;
  top: 5.125rem;
  width: 16.25rem;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0s ease-in-out;
  transition: transform 0s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-header__search-box {
    top: 7.9375rem;
    height: 5rem;
    width: 22.5rem;
    right: 1.25rem;
  }
}

.p-header__search-box input {
  border: none;
  width: 90%;
  height: 100%;
  background: transparent;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-header__search-box input {
    width: 80%;
    font-size: 1.0625rem;
  }
}

.p-header__search-box.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

.p-header__search-box.active input {
  opacity: 1;
}

.p-header__search .p-header__searchbox {
  padding: 35%;
}

.p-header__search.active .p-header__searchbox {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-header__nav-right {
    padding-left: 3.125rem;
    border-left: 1px solid #fff;
    width: 47.1121177803%;
  }
}

.p-header__right-search {
  margin-top: 1.25rem;
  background: #fff;
  border-radius: 40px;
  width: 100%;
  height: 3.125rem;
  -webkit-box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, .2);
  padding: 0.625rem 0.75rem 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__right-search {
    margin-top: 0;
    width: 100%;
    height: 5rem;
    padding: 1.875rem 2.5rem;
  }
}

.p-header__right-search button {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.375rem;
  height: 1.6875rem;
}

.p-header__right-search input {
  border: none;
  width: 90%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-header__right-search input {
    font-size: 1.0625rem;
  }
}

.p-header__right-items {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__right-items {
    margin-top: 1.875rem;
    gap: 1.375rem;
  }
}

.p-header__right-item {
  position: relative;
  border-radius: 15px;
  background: #fff;
  aspect-ratio: 184/120; /* 20250626 and add */
}

.p-header__right-item img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  aspect-ratio: 184/120;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__right-item span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-header__right-item span {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-header__right-item1 span {
  color: #fff;
}

.p-header__right-links {
  position: absolute;
  top: 7.5625rem;
  right: 1.25rem;
  padding: 1.875rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header__right-links {
    position: unset;
    margin-top: 1.875rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}

.p-header__link {
  max-width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__link {
    max-width: 2.875rem;
  }
}

.p-header__hamburger {
  background: #fff;
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  position: fixed;
  z-index: 102;
  right: 0.625rem;
  top: 1.25rem;
  -webkit-box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, .2);
  padding-left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    width: 5rem;
    height: 5rem;
    padding-left: 1.875rem;
    right: 1.875rem;
    top: 1.875rem;
  }
}

.p-header__hamburger span {
  width: 0.875rem;
  height: 0.125rem;
  background-color: #00BD5B;
  display: block;
  border-radius: 0.125rem;
  margin-right: auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger span {
    width: 1.25rem;
  }
}

.p-header__hamburger span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger span:nth-child(2) {
    width: 1.625rem;
    margin-top: 6px;
    margin-bottom: 6px;
  }
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger.open span:nth-child(1) {
    top: 8px;
  }
}

.p-header__hamburger--sub.open span:nth-child(1) {
  background-color: #fff;
}

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -5px;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger.open span:nth-child(3) {
    top: -8px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 98;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .p-kirari__head {
    padding-top: 10.875rem;
  }
}

.p-kirari__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-inner {
    -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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-right: calc(50% - 50vw);
    padding-right: 0;
  }
}

.p-kirari__head-container {
  background: rgba(255, 255, 255, .9);
  padding: 1.875rem;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
  border-radius: 20px;
  margin-top: -1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-container {
    width: 40.3355704698%;
    margin-top: 0;
    margin-right: -2.875rem;
    position: relative;
    z-index: 1;
    padding: 1.875rem 1.6875rem 2.5rem;
  }
}

.p-kirari__head-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-title {
    font-size: 3.125rem;
    line-height: 1.44;
  }
}

.p-kirari__head-body {
  margin-top: 0.625rem;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-body {
    margin-top: 1.25rem;
  }
}

.p-kirari__head-body-read {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-body-read {
    font-size: 1.5625rem;
    line-height: 1.68;
  }
}

.p-kirari__head-text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-text {
    margin-top: 3.0625rem;
    font-size: 0.9375rem;
  }
}

.p-kirari__head-img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-kirari__head-img {
    margin-left: unset;
    width: 50.9395973154%;
  }
}

.p-kirari__head-img source,
.p-kirari__head-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/299;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-kirari__head-img source,
  .p-kirari__head-img img {
    border-radius: 20px 0 0 20px;
    aspect-ratio: 759/541;
  }
}

.p-kirari {
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-kirari {
    padding-bottom: 6.25rem;
  }
}

.p-kirari__inner {
  max-width: 70rem;
  margin-inline: auto;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-kirari__inner {
    padding: unset;
  }
}

.p-kirari__container {
  margin-top: 5rem;
}

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

.p-kirari__subtitle {
  margin-top: 2.5rem;
  position: relative;
}

.p-kirari__subtitle .c-title {
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .2)), to(rgba(29, 189, 160, .2)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .2) 0%, rgba(29, 189, 160, .2) 100%);
  text-align: left;
  padding: 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-kirari__subtitle .c-title {
    padding: 1.625rem 1.875rem;
    background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .1)), to(rgba(29, 189, 160, .1)));
    background: linear-gradient(90deg, rgba(29, 136, 214, .1) 0%, rgba(29, 189, 160, .1) 100%);
  }
}

.p-kirari__subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-kirari__subtitle::after {
    display: none;
  }
}

.p-kirari__subtitle.open .c-title {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-kirari__subtitle.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-kirari__wrap {
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .2)), to(rgba(29, 189, 160, .2)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .2) 0%, rgba(29, 189, 160, .2) 100%);
  padding: 1.875rem 0.625rem;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .p-kirari__wrap {
    padding: 0;
    background: none;
  }
}

.p-kirari__items {
  display: grid;
  row-gap: 1.875rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .p-kirari__items {
    padding: 0;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 4.375rem;
  }
}

.p-kirari__items2 {
  display: grid;
  row-gap: 1.875rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .p-kirari__items2 {
    padding: 0;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 2.5rem;
  }
}

.p-kirari__items2 .c-card__img source,
.p-kirari__items2 .c-card__img img {
  aspect-ratio: 254/359;
}

.p-kirari__item.c-card {
  grid-row: span 2;
}

.p-kirari__item .c-card__title {
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-kirari__item .c-card__title {
    font-size: 1.0625rem;
    line-height: 1.7647058824;
  }
}

.local .c-section-title {
  padding-left: 17.5rem;
}
@media screen and (min-width: 768px) {
  .local .c-section-title {
    padding-left: 33.9375rem;
  }
}

.p-local {
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-local {
    padding-bottom: 6.25rem;
  }
}

.p-local__inner {
  max-width: 70rem;
  margin-inline: auto;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-local__inner {
    padding: unset;
  }
}

.p-local__container {
  margin-top: 5rem;
}

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

.p-local__wrap {
  margin-top: 1.875rem;
  gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-local__wrap {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.0625rem;
  }
}

.p-local__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-local__body {
    display: block;
  }
}

.p-local__text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .p-local__text {
    line-height: 2.3333333333;
  }
}

.p-local__text a {
  text-decoration: underline;
}

.p-local__btn {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-local__btn {
    margin-top: 2.5rem;
    margin-inline: unset;
  }
}

.p-local__img {
  max-width: 8.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-local__img {
    max-width: 15.625rem;
  }
}

.p-local__subtitle {
  margin-top: 2.5rem;
}

.p-local__items {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1.6875rem;
     -moz-column-gap: 1.6875rem;
          column-gap: 1.6875rem;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-local__items {
    margin-top: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 2.5rem;
  }
}

.p-local__item .c-card__btn a:hover {
  opacity: 1;
}

.p-local__table {
  margin-top: 1.875rem;
  padding-bottom: 0.625rem;
  max-width: 50rem;
}
@media screen and (min-width: 768px) {
  .p-local__table {
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.p-local__table dl {
  display: grid;
  grid-template-columns: 3fr 2fr 1fr 1fr;
}

.p-local__table dt,
.p-local__table dd {
  padding: 0.9375rem 0.3125rem;
  border: 1px solid #C4C4C4;
  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;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-local__table dt,
  .p-local__table dd {
    font-size: 0.9375rem;
    padding: 0.9375rem 0.625rem;
  }
}

.p-local__table dt {
  text-align: center;
  background: #EDEDED;
  font-weight: 700;
}

.p-mv {
  width: 100%;
  aspect-ratio: 375/648;
  position: relative;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100vh;
    aspect-ratio: 1512/982;
  }
}

.p-mv__en {
  position: absolute;
  bottom: -0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 3.375rem;
  font-size: clamp(30px, 14vw, 54px);
  font-family: "Oswald", serif;
  font-weight: 400;
  white-space: nowrap;
  color: #FFFFFF;
  mix-blend-mode: normal;
  opacity: 0.5;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__en {
    bottom: -4.125rem;
    font-size: 13.75rem;
    font-size: clamp(150px, 14vw, 220px);
  }
}
@media screen and (min-width: 800px) and (max-width: 900px) {
  .p-mv__en {
    font-size: 12.5rem;
  }
}

.p-mv__en span {
  font-weight: 300;
}

.p-mv .swiper-img source,
.p-mv .swiper-img img {
  width: 100%;
  aspect-ratio: 375/648;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  .p-mv .swiper-img source,
  .p-mv .swiper-img img {
    height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .p-mv .swiper-img source,
  .p-mv .swiper-img img {
    aspect-ratio: 1512/982;
  }
}

.p-news {
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-bottom: 6.25rem;
  }
}

.news .p-top-search {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .news .p-top-search {
    margin-top: 6.25rem;
  }
}

.news .p-head__title .c-section-title {
  padding-left: 10.1875rem;
}
@media screen and (min-width: 768px) {
  .news .p-head__title .c-section-title {
    padding-left: 19.125rem;
  }
}

.p-news__inner {
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding: 0;
  }
}

.p-news__items {
  padding-top: 1.25rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-news__items {
    padding-top: 4.375rem;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 4.375rem;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.p-news__item a {
  display: grid;
  grid-template-columns: 7.625rem 1fr;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #EDEDED;
}
@media screen and (min-width: 768px) {
  .p-news__item a {
    padding: 0;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    border-bottom: none;
  }
}

.p-news__item:last-child a {
  border-bottom: none;
}

.p-news__item-img {
  max-width: 7.625rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-img {
    max-width: 100%;
  }
}

.p-news__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 122/69;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news__item-img img {
    aspect-ratio: 352/200;
  }
}

.p-news__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-meta {
    gap: 1.25rem;
  }
}

.p-news__item-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.7272727273;
  color: #fff;
  background: #8E7E40;
  padding: 0 0.9375rem;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .p-news__item-cat {
    font-size: 0.875rem;
    line-height: 2.1428571429;
    padding: 0 0.9375rem;
    border-radius: 5px;
  }
}

.p-news__item-cat--kids {
  background: #F49494;
}

.p-news__item-cat--annual-events {
  background: #189D92;
}

.p-news__item-cat--study {
  background: #1A1357;
}

.p-news__item-cat--lecture {
  background: #E4194F;
}

.p-news__item-cat--event {
  background: #E4C41C;
}

.p-news__item-cat--epa {
  background: #51529B;
}

.pp-news__item-cat--news {
  background: #BD982F;
}

.p-news__item-cat--ground-golf {
  background: #86A224;
}

.p-news__item-cat--sports {
  background: #F38C30;
}

.p-news__item-cat--gateball {
  background: #FD6058;
}

.p-news__item-cat--certification {
  background: #8E7E40;
}

.p-news__item-cat--recruit {
  background: #8855CF;
}

.p-news__item-cat--openning {
  background: #4478DE;
}

.p-news__item-cat--media {
  background: #757575;
}

.p-news__item-cat--donation {
  background: #391F10;
}

.p-news__item-cat--csr {
  background: #399e17;
}

.p-news__item-time {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  color: #666666;
}

.p-news__item-title {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5833333333;
}
@media screen and (min-width: 768px) {
  .p-news__item-title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-news__pagination {
  display: block;
  width: 100%;
  margin-top: 1.875rem;
  text-align: center;
  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;
}
@media screen and (min-width: 768px) {
  .p-news__pagination {
    margin-top: 4.0625rem;
  }
}

.p-news__pagination .page-numbers {
  border-radius: 50%;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 2;
  padding: 0.3125rem 0.8125rem;
  margin: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination .page-numbers {
    margin: 0 0.9375rem;
  }
}

.p-news__pagination .page-numbers.current {
  padding: 0.3125rem 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-news__pagination .page-numbers.current {
    padding: 0.625rem 1.25rem;
  }
}

.p-news__pagination .page-numbers img {
  max-width: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination .page-numbers img {
    max-width: 3.125rem;
  }
}

.p-pagination__info {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.5625;
}

.p-notice {
  display: none;
  overflow-x: hidden;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 186, 49, .7)), to(rgba(244, 159, 255, .7)));
  background: linear-gradient(90deg, rgba(255, 186, 49, .7) 0%, rgba(244, 159, 255, .7) 100%);
}
@media screen and (min-width: 768px) {
  .p-notice {
    display: block;
  }
}

.home .p-notice {
  display: block;
}

.service-template-default.single .p-notice,
.single-branch .p-notice {
  display: block;
}

.p-notice__inner {
  padding: 2rem 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-notice__inner {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3.75rem 0;
    margin-inline: auto;
  }
}

.p-notice__title {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1333333333;
}
@media screen and (min-width: 768px) {
  .p-notice__title {
    font-size: 1.0625rem;
    line-height: 1;
  }
}

.p-notice__text {
  max-width: 65.3125rem;
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-notice__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-privacypolicy {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy {
    padding-top: 10.0625rem;
    padding-bottom: 11.25rem;
  }
}

.privacypolicy .p-head {
  padding-top: 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .privacypolicy .p-head {
    padding-top: 11rem;
  }
}

.privacypolicy .p-head__title .c-section-title {
  padding-left: 0.9375rem;
  padding-top: 6.25rem;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .privacypolicy .p-head__title .c-section-title {
    padding-left: 41.25rem;
    padding-top: 5.125rem;
    padding-bottom: 5.0625rem;
  }
}

.p-privacypolicy__inner {
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__inner {
    padding: 0;
  }
}

.p-privacypolicy__contents:nth-child(n+2) {
  margin-top: 4.375rem;
}

.p-privacypolicy__text {
  padding: 1.875rem 0.625rem 0;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.8181818182;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__text {
    padding: 2.5rem 0 0;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-privacypolicy__text span {
  font-weight: 700;
}

.p-privacypolicy__text2 {
  padding: 0 0.625rem;
  margin-top: 1.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__text2 {
    padding: 2.5rem 0 0;
    margin-top: 4.375rem;
    font-size: 0.9375rem;
    line-height: 2.6666666667;
  }
}

.p-recruit__contents {
  padding: 1.25rem 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__contents {
    padding: 4.375rem 0 6.25rem;
  }
}

.p-robot__mv {
  overflow-x: hidden;
}

.p-robot__mv-img {
  position: relative;
}

.p-robot__mv-img img {
  width: 100%;
  height: 100vh;
  aspect-ratio: 375/607;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-robot__mv-img img {
    aspect-ratio: 1512/984;
  }
}

.p-robot__mv-container {
  content: "";
  position: absolute;
  top: 48%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 17.875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-robot__mv-container {
    top: 50%;
    left: 15%;
    max-width: 44.8125rem;
  }
}

.p-robot__mv-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .p-robot__mv-title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.p-robot__mv-title span {
  display: inline-block;
  margin-top: 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .p-robot__mv-title span {
    margin-top: 0;
    font-size: 1.25rem;
  }
}

.p-robot__mv-text {
  margin-top: 0.9375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-robot__mv-text {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    line-height: 2.3333333333;
  }
}

.p-robot__mv-en {
  content: "";
  position: absolute;
  top: 80%;
  left: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3.375rem;
  font-family: "Oswald", serif;
  font-weight: 400;
  white-space: nowrap;
  color: #FFFFFF;
  mix-blend-mode: normal;
  opacity: 0.1;
  max-width: 96%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-robot__mv-en {
    font-size: 13.5625rem;
    left: -0.625rem;
    max-width: 100%;
  }
}

.p-robot {
  margin-top: 3.75rem;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-robot {
    margin-top: 11.1875rem;
  }
}

.p-robot__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-robot__contents {
    margin-left: calc(50% - 50vw);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-robot__contents:nth-child(n+2) {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-robot__contents:nth-child(n+2) {
    margin-top: 13.5rem;
  }
}

.p-robot__contents:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: unset;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-robot__contents:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-robot__img {
  position: relative;
  padding: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-robot__img {
    padding: 0;
    padding-left: 2.5rem;
    width: 63.6971046771%;
  }
}

@media screen and (min-width: 768px) {
  .p-robot__img::after {
    content: "";
    position: absolute;
    top: -6.25rem;
    left: 0;
    width: 39.8125rem;
    height: 36.25rem;
    background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
    background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
    opacity: 0.1;
    z-index: -1;
  }
}

.p-robot__img source,
.p-robot__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 818/580;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-robot__contents:nth-child(even) .p-robot__img {
  padding-right: 2.5rem;
}

.p-robot__contents:nth-child(even) .p-robot__img::after {
  left: unset;
  right: 0;
}

.p-robot__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: rgba(255, 255, 255, .7);
  padding: 1.625rem 2rem 1.1875rem 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-robot__body {
    margin-left: -10.0625rem;
    margin-right: 7.8125rem;
    width: 48.2553823311%;
    padding: 3.125rem 2rem 1.1875rem 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-robot__contents:nth-child(even) .p-robot__body {
    margin-right: -10.0625rem;
  }
}

.p-robot__body-cat {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-robot__body-cat {
    text-align: left;
  }
}

.p-robot__body-cat span {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.4375rem 0.625rem;
  background: #EDEDED;
}

.p-robot__body-title {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-robot__body-title {
    text-align: left;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

.p-robot__body-text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-robot__body-text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 2.3333333333;
  }
}

.p-robot__wrap {
  margin-top: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  color: #fff;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-robot__wrap {
    margin-top: 1.25rem;
  }
}

.p-robot__wrap-title {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  padding-bottom: 0.6875rem;
  padding-right: 1.8125rem;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-robot__wrap-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75;
    padding-bottom: 0.9375rem;
    padding-right: 0.625rem;
  }
}

.p-robot__wrap-title2 {
  padding-right: 0;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-robot__wrap-title2 {
    margin-top: 1.25rem;
  }
}

.p-robot__wrap-text {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.8181818182;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-robot__wrap-text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.service .p-head__title .c-section-title {
  padding-left: 6.875rem;
}
@media screen and (min-width: 768px) {
  .service .p-head__title .c-section-title {
    padding-left: 11.75rem;
  }
}

.service .p-head__inner {
  padding: 0 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .service .p-head__inner {
    padding: 1.875rem 0 0;
  }
}

.p-service {
  padding-top: 2.5rem;
  padding-bottom: 4.375rem;
}

.p-service__container {
  max-width: 68.75rem;
  margin-inline: auto;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__container {
    margin-top: 0;
  }
}

.p-service__title {
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
  border-radius: 5px;
  padding: 0.6875rem 3.125rem 0.625rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  color: #fff;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    padding: 1.625rem 3.125rem 1.6875rem;
    font-size: 1.0625rem;
    line-height: 1;
    text-align: left;
  }
}

.p-service__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-service__title::after {
    display: none;
  }
}

.p-service__title.open {
  border-radius: 5px 5px 0 0;
}

.p-service__title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-service__title--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-service__title--green {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-service__title--blue {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.p-service__title--pink {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-service__title--gray {
  background: -webkit-gradient(linear, left top, right top, from(#888888), to(#C4C4C4));
  background: linear-gradient(90deg, #888888 0%, #C4C4C4 100%);
}

.p-service__read {
  padding: 1.25rem 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-service__read {
    padding: 1.875rem 3.125rem 0 3.3125rem;
  }
}

.p-service__items {
  padding: 1.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-service__items {
    padding: 3.125rem 3.125rem 6.25rem;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 3.125rem;
  }
}

.p-service__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-service__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.p-service__item-img {
  max-width: 3.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__item-img {
    max-width: 4.0625rem;
    min-width: 4.0625rem;
  }
}

.p-service__item-img img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 50/50;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-service__item-img img {
    aspect-ratio: 65/65;
  }
}

.p-service__item-body {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__item-body {
    text-align: left;
  }
}

.p-service__item-name {
  font-size: 0.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .p-service__item-name {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.p-service__item-area {
  margin-top: 0.9375rem;
  display: inline-block;
  background: #EDEDED;
  padding: 0.4375rem 0.625rem;
  font-size: 0.6875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-service__item-area {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1;
  }
}

.p-sidebar {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  border-radius: 10px;
  padding: 0.9375rem 0.9375rem 0.9375rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 1.875rem;
  margin-right: 1.25rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sidebar {
    position: sticky;
    top: 0.625rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 4.3125rem 1.25rem 1.9375rem;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.p-sidebar__title {
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5384615385;
  color: #fff;
  text-align: left;
  position: relative;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sidebar__title {
    font-family: "Oswald", serif;
    text-align: right;
    font-weight: 400;
    font-size: 2.1875rem;
    line-height: 0.5714285714;
  }
}

@media screen and (min-width: 768px) {
  .p-sidebar__title::before {
    content: "MENU";
    position: absolute;
    right: -1.5625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 7.5rem;
    font-family: "Oswald", serif;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    line-height: 0.8333333333;
    color: #fff;
    mix-blend-mode: normal;
    opacity: 0.1;
  }
}

.p-sidebar__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-sidebar__title::after {
    right: -0.25rem;
    width: 0.5rem;
    height: 0.8125rem;
    background: url(../img/common/arrow.svg) no-repeat center/contain;
  }
}

.p-sidebar__title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-sidebar__title.open::after {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-sidebar__items {
  margin-top: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-sidebar__items {
    margin-top: 4.25rem;
    grid-template-columns: 1fr;
    gap: 0.3125rem;
  }
}

.p-sidebar__item {
  background: rgba(255, 255, 255, .2);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-sidebar__item {
    background: rgba(255, 255, 255, .9);
  }
}

.p-sidebar__item a {
  display: block;
  padding: 0.75rem 1.25rem 0.75rem;
  font-size: 0.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-sidebar__item a {
    color: #000;
    padding: 0.875rem 1.25rem 0.8125rem;
    font-size: 0.8125rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-single-base {
    padding-top: 11rem;
    padding-bottom: 6.25rem;
  }
}

.p-single-base__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-base__img {
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 1.25rem;
  }
}

.p-single-base__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/250;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-base__img img {
    border-radius: 40px;
    aspect-ratio: 1432/613;
  }
}

.p-single-base__head {
  margin-top: -2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  max-width: 70rem;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-single-base__head {
    margin-top: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.p-single-base__head-img {
  max-width: 5rem;
  aspect-ratio: 80/80; /* 20250626 and add */
}
@media screen and (min-width: 768px) {
  .p-single-base__head-img {
    max-width: 10.5rem;
    min-width: 10.5rem;
    aspect-ratio: 168/168; /* 20250626 and add */
  }
}

.p-single-base__head-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  aspect-ratio: 80/80;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-base__head-img img {
    aspect-ratio: 168/168;
  }
}

.p-single-base__wrap {
  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;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-single-base__wrap {
    margin-top: 1.25rem;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.p-single-base__name {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-single-base__name {
    text-align: left;
    font-size: 1.875rem;
    line-height: 1;
  }
}

.p-single-base__tel {
  font-family: "Roboto Condensed", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 0.85;
}
@media screen and (min-width: 768px) {
  .p-single-base__tel {
    font-size: 1.5625rem;
    line-height: 0.68;
  }
}

.p-single-base__map {
  margin-left: 1.25rem;
}

.p-single-base__cat {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-base__cat {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.p-single-base__cat-item {
  background: #EDEDED;
  padding: 0.4375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-single-base__cat-item {
    font-size: 0.8125rem;
    line-height: 1;
  }
}

.p-single-base__items {
  margin-top: 1.875rem;
  max-width: 25rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.375rem;
     -moz-column-gap: 0.375rem;
          column-gap: 0.375rem;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-base__items {
    max-width: 56.875rem;
    margin-top: 3.4375rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
    row-gap: 1.875rem;
  }
}

.p-single-base__item {
  height: 100%;
}

.p-single-base__item a {
  display: inline-block;
  background: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, .2);
  border-radius: 10px;
  padding: 1.6875rem 0.625rem 2.5625rem;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-single-base__item a {
    padding: 2.125rem 0.9375rem 3.375rem;
  }
}

.p-single-base__item a::before {
  content: "";
  position: absolute;
  bottom: -1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.0625rem;
  height: 2.0625rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}
@media screen and (min-width: 768px) {
  .p-single-base__item a::before {
    bottom: -1.5625rem;
    width: 2.6875rem;
    height: 2.6875rem;
  }
}

.p-single-base__item--orange .p-single-base__item a::before {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-single-base__item--purple .p-single-base__item a::before {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

.p-single-base__item--pink .p-single-base__item a::before {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-single-base__item--green .p-single-base__item a::before {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-single-base__item--gray .p-single-base__item a::before {
  background: -webkit-gradient(linear, left top, right top, from(#898989), to(#D3D3D3));
  background: linear-gradient(90deg, #898989 0%, #D3D3D3 100%);
}

.p-single-base__item a::after {
  content: "";
  position: absolute;
  bottom: -0.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1rem;
  height: 0.6875rem;
  background: url(../img/common/arrow-white.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-single-base__item a::after {
    bottom: -0.6875rem;
    width: 1.3125rem;
    height: 0.875rem;
  }
}

.p-single-base__item-icon {
  max-width: 2.6875rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-single-base__item-icon {
    max-width: 3.5rem;
  }
}

.p-single-base__item-subtitle {
  margin-top: 1.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  color: #9A9A9A;
}
@media screen and (min-width: 768px) {
  .p-single-base__item-subtitle {
    margin-top: 1.875rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.p-single-base__item-title {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5333333333;
}
@media screen and (min-width: 768px) {
  .p-single-base__item-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-single-base__item--orange .p-single-base__item-title {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-single-base__item--purple .p-single-base__item-title {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

.p-single-base__item--pink .p-single-base__item-title {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-single-base__item--green .p-single-base__item-title {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-single-base__item--gray .p-single-base__item-title {
  background: -webkit-gradient(linear, left top, right top, from(#898989), to(#D3D3D3));
  background: linear-gradient(90deg, #898989 0%, #D3D3D3 100%);
}

.p-single-base__item--orange .p-single-base__item-title,
.p-single-base__item--pink .p-single-base__item-title,
.p-single-base__item--green .p-single-base__item-title,
.p-single-base__item--blue .p-single-base__item-title,
.p-single-base__item--gray .p-single-base__item-title,
.p-single-base__item--purple .p-single-base__item-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-single-base__container {
  max-width: 68.75rem;
  margin-inline: auto;
}

.p-single-base__contents {
  margin-top: 6.25rem;
}

.p-single-base__table {
  margin-top: 2.5rem;
}

.p-single-base__subtitle {
  margin-top: 4.375rem;
}

.p-single-base__table-title {
  margin-top: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(53, 172, 105, .2)), to(rgba(160, 190, 77, .2)));
  background: linear-gradient(90deg, rgba(53, 172, 105, .2) 0%, rgba(160, 190, 77, .2) 100%);
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 10px;
  padding: 1rem 0 1.0625rem;
}

.p-single-news {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-single-news {
    padding-top: 9.375rem;
    padding-bottom: 6.25rem;
  }
}

.p-single-news__inner {
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-single-news__inner {
    padding: 0;
  }
}

.single-news .p-head__title .c-section-title {
  padding-left: 10.1875rem;
}
@media screen and (min-width: 768px) {
  .single-news .p-head__title .c-section-title {
    padding-left: 19.125rem;
  }
}

.p-single-news__btn {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-news__btn {
    margin-top: 6.25rem;
  }
}

.p-single-news__cat {
  text-align: center;
}

.p-single-news__cat a {
  display: inline-block;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.1428571429;
  background: #ECECEC;
  border-radius: 5px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__cat a {
    margin-top: 1.875rem;
  }
}

.p-single-news__item-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-single-news__item-title {
    font-size: 2.1875rem;
    line-height: 1.4285714286;
  }
}

.p-single-news__content {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__content {
    margin-top: 4.375rem;
  }
}

.p-single-news h4 {
  margin-top: 1.875rem;
  font-size: 1.0625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4705882353;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #1D88D6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single-news h4 {
    margin-top: 4.375rem;
    font-size: 1.5625rem;
    line-height: 1.48;
    padding-left: 0.625rem;
    padding-bottom: 1.4375rem;
  }
}

.p-single-news h4::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5.625rem;
  height: 0.3125rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}
@media screen and (min-width: 768px) {
  .p-single-news h4::after {
    width: 12.5rem;
  }
}

.p-single-news h5 {
  margin: 2.5rem 0 0;
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
  border-radius: 5px;
  padding: 0.625rem 0.625rem 0.6875rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4705882353;
  background: -webkit-gradient(linear, left top, right top, from(#EDF5FF), to(#E7FCFE));
  background: linear-gradient(90deg, #EDF5FF 0%, #E7FCFE 100%);
}
@media screen and (min-width: 768px) {
  .p-single-news h5 {
    margin: 3.75rem 0 0;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 1.625rem 1.875rem 1.6875rem;
  }
}

.p-single-news h6 {
  margin: 3.125rem 0 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4705882353;
}
@media screen and (min-width: 768px) {
  .p-single-news h6 {
    margin: 3.75rem 0 0;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-single-news p {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .p-single-news p {
    margin-top: 2.5rem;
    line-height: 2.3333333333;
  }
}

.p-single-news__content a {
  text-decoration: underline;
}

.p-single-news__content ul {
  list-style: disc;
  padding-left: 0.9375rem;
}

.p-single-news__content ol {
  list-style: auto;
  padding-left: 0.9375rem;
}

.p-single-news__content table {
  margin-top: 1.25rem;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__content table {
    font-size: 0.9375rem;
  }
}

.p-single-news__content table th {
  background: #F9F9F9;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #C4C4C4;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-single-news__content table th {
    padding: 0.625rem 1.875rem;
  }
}

.p-single-news__content table td {
  padding: 0.625rem 1.25rem;
  border: 1px solid #C4C4C4;
}

.p-single-news img {
  padding: 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-single-news img {
    padding: 2.5rem 0 0;
  }
}

.p-single-news .gallery {
  margin-top: 0.625rem !important;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-single-news .gallery {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
}

.p-single-news .gallery br {
  display: none;
}

.p-single-news .gallery-item {
  float: unset !important;
  width: unset !important;
}

.p-single-news .gallery-icon img {
  padding: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 290/200;
  -o-object-fit: cover;
     object-fit: cover;
  border: none !important;
}

@media screen and (min-width: 768px) {
  .single-service .p-header {
    padding-top: 1.25rem;
    padding-left: 3.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .single-service .p-header {
    padding-left: 4.0625rem;
  }
}

.p-single-service {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-single-service {
    padding-top: 11rem;
  }
}

.p-single-service2 {
  overflow: clip;
}

.p-single-service__top {
  padding-bottom: 1.25rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-single-service__top {
    -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;
    margin-left: unset;
  }
}

.p-single-service__left {
  margin-top: -5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1.25rem;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__left {
    margin-top: 0;
    padding: 0;
    position: absolute;
    max-width: 28rem;
    min-width: 28rem;
    gap: 3.75rem;
  }
}

.p-single-service__main {
  padding: 1.875rem;
  display: inline-block;
  background: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-single-service__main {
    padding: 1.875rem 1.6875rem 1.25rem 2.375rem;
  }
}

.p-single-service__name {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-single-service__name {
    font-size: 1.875rem;
    line-height: 1.1666666667;
  }
}

.p-single-service__cat {
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.p-single-service__cat-item a {
  display: inline-block;
  background: #EDEDED;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.0833333333;
  letter-spacing: 0.1em;
  padding: 0.4375rem 0.625rem;
}

.p-single-service__main-wrap {
  margin-top: 0.5625rem;
  padding-bottom: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__main-wrap {
    margin-top: 0.9375rem;
    padding-bottom: 1.25rem;
  }
}

.p-single-service__tel a {
  font-size: 1.25rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  line-height: 1.3;
}

.p-single-service__map img {
  width: 1.0625rem;
  height: 1.625rem;
}

.p-single-service__people {
  padding-top: 0.8125rem;
  border-top: 1px solid #C4C4C4;
}
@media screen and (min-width: 768px) {
  .p-single-service__people {
    padding-top: 0.6875rem;
  }
}

.p-single-service__people p {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 0.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4166666667;
}

.p-single-service__people-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  margin-top: 0.1875rem;
}

.p-single-service__people-left {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
}

.p-single-service__people-left p {
  font-size: 0.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-single-service__people-right {
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-single-service__people-right span {
  font-size: 2.5rem;
  font-family: "Roboto", serif;
  font-weight: 500;
  line-height: 1;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__people-right span {
    font-size: 2.5rem;
    line-height: 1;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

.p-single-service__sub {
  padding: 0.3125rem 1.25rem;
  display: inline-block;
  background: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
  border-radius: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single-service__sub {
    padding: 0 1.25rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-service__sub::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px -1px 0px rgba(0, 0, 0, .2);
            box-shadow: 0px -1px 0px rgba(0, 0, 0, .2);
  }
}

.p-single-service__sub-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  position: relative;
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__sub-wrap {
    display: contents;
  }
}

.p-single-service__sub-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-single-service__sub-wrap::after {
    display: none;
  }
}

.p-single-service__sub-wrap.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-single-service__sub-img {
  max-width: 2.5rem;
  max-height: 2.5rem;
  aspect-ratio: 1/1; /* 20250626 */
}
@media screen and (min-width: 768px) {
  .p-single-service__sub-img {
    margin-inline: auto;
    position: relative;
    top: -1.875rem;
    max-width: 3.75rem;
    max-height: 3.75rem;
  }
}

.p-single-service__sub-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.p-single-service__sub-name {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1333333333;
}
@media screen and (min-width: 768px) {
  .p-single-service__sub-name {
    margin-top: -1.25rem;
  }
}

.p-single-service__sub-cat {
  margin-top: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__sub-cat {
    padding-bottom: 0;
  }
}

.p-single-service__sub-cat a {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  opacity: 0.8;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #fff;
  padding: 0.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__sub-cat a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4166666667;
    color: #fff;
    padding: 0.25rem 0.9375rem;
  }
}

.p-single-service__sub-cat a.active {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

.p-single-service__img {
  margin-right: unset;
  position: relative;
  max-width: 48rem;
}
@media screen and (min-width: 768px) {
  .p-single-service__img {
    margin-left: auto;
    max-width: unset;
    min-width: 75rem;
    width: 82%;
  }
}

/* 20250626 and add start */
.p-single-service__img .swiper-img {
  aspect-ratio: 375/300;
}
@media screen and (min-width: 768px) {
  .p-single-service__img .swiper-img {
    aspect-ratio: 1200/613;
  }
}
/* 20250626 and add end */

.p-single-service__img .swiper-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-service__img .swiper-img img {
    border-radius: 40px 0 0 40px;
    aspect-ratio: 1200/613;
  }
}

.p-single-service__img .swiper-pagination {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-service__img .swiper-pagination {
    display: block;
    position: absolute;
    bottom: 1.25rem;
  }
}

.p-single-service__btn {
  text-align: center;
  margin-top: 2.3125rem;
}

.p-single-service__name-small {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.3076923077;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-single-service__name-small {
    line-height: 3.0769230769;
  }
}

.p-single-service__comment {
  margin-top: 0.625rem;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .p-single-service__comment {
    margin-top: 0;
    font-size: 0.625rem;
    line-height: 1.7;
  }
}

.p-sitepolicy {
  margin-top: 4.375rem;
  margin-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-sitepolicy {
    margin-top: 10.0625rem;
    margin-bottom: 6.25rem;
  }
}

.sitepolicy .p-head__title .c-section-title {
  padding-left: 15rem;
}
@media screen and (min-width: 768px) {
  .sitepolicy .p-head__title .c-section-title {
    padding-left: 28.75rem;
  }
}

.p-sitepolicy__container {
  max-width: 70rem;
  margin-inline: auto;
}

.p-sitepolicy__contents:nth-child(n+2) {
  margin-top: 4.375rem;
}

.p-sitepolicy__wrap {
  margin-top: 1.875rem;
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sitepolicy__wrap {
    margin-top: 2.5rem;
    padding: 0;
  }
}

.p-sitepolicy__wrap2 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .1)), to(rgba(29, 189, 160, .1)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .1) 0%, rgba(29, 189, 160, .1) 100%);
  border-radius: 17px;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sitepolicy__wrap2 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.p-sitepolicy__text {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.8181818182;
}
@media screen and (min-width: 768px) {
  .p-sitepolicy__text {
    font-size: 0.9375rem;
    line-height: 2.6666666667;
  }
}

.p-sitepolicy__text a {
  text-decoration: underline;
  color: red;
}

.p-sitepolicy__text2 {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.8181818182;
}
@media screen and (min-width: 768px) {
  .p-sitepolicy__text2 {
    font-size: 0.9375rem;
    line-height: 2.6666666667;
  }
}

.p-top-area .passing .passing-box {
  text-align: center;
}

.p-top-area__title {
  text-align: center;
}

.p-top-area__container {
  margin-top: 1.875rem;
  padding: 2rem 1.0625rem 2.8125rem;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 98, 130, .1)), to(rgba(0, 98, 189, .1)));
  background: linear-gradient(270deg, rgba(0, 98, 130, .1) 0%, rgba(0, 98, 189, .1) 100%);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-area__container {
    margin-top: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 5.875rem 9.75rem 3.8125rem;
  }
}

.p-top-area__en {
  position: absolute;
  top: 6.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 5.5rem;
  font-family: "Oswald", serif;
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  mix-blend-mode: normal;
  opacity: 0.4;
  z-index: -1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-area__en {
    font-size: 15.8125rem;
    line-height: 0.9802371542;
    text-align: left;
    top: -2.1875rem;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-top-area__en span {
  font-weight: 400;
  font-size: 6.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__en span {
    font-size: 15.8125rem;
  }
}

.p-top-area__left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-top-area__left {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-top-area__left ul {
    display: contents;
  }
}

@media screen and (min-width: 768px) {
  .p-top-area__left .p-top-area__items-wrap {
    display: contents;
  }
}

@media screen and (min-width: 768px) {
  .p-top-area__left .p-top-area__wrap2 {
    display: grid;
    grid-auto-flow: column; /* 縦に並べてから折り返し */
    grid-template-rows: repeat(12, auto);
  }
}

.p-top-area__wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-area__wrap {
    gap: 0.625rem;
    display: grid;
  }
}

.p-top-area__items {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__items {
    padding: 0 1.25rem;
  }
}

.p-top-area__items:nth-child(n+2) {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-top-area__items:nth-child(n+2) {
    margin-top: 1.375rem;
  }
}

.p-top-area__items-wrap {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__items-wrap {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
}

.p-top-area__items-wrap2 {
  margin-top: 1.25rem;
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-area__items-wrap2 {
    display: grid;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
    row-gap: 0.625rem;
    padding: 0 1.25rem;
    margin-top: 1.25rem;
    grid-auto-flow: column; /* 縦に並べてから折り返し */
    grid-template-rows: repeat(11, auto);
  }
}

.p-top-area__items-title {
  margin-top: 1.25rem;
  display: block;
  border-radius: 16px;
  background: #E0E0E0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-area__items-title {
    margin-top: 0;
    background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
    background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
    display: inline-block;
  }
}

.p-top-area__items-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-top-area__items-title::before {
    display: none;
  }
}

.p-top-area__items-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-area__items-title::after {
    display: none;
  }
}

.p-top-area__items-title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-top-area__items-title {
  display: block;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
  padding: 0.1875rem 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-area__items-title {
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .p-top-area__items-title--orange {
    background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
    background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
  }
}

.p-top-area__items-title--orange::before {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

@media screen and (min-width: 768px) {
  .p-top-area__items-title--green {
    background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
    background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
  }
}

.p-top-area__items-title--green::before {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

@media screen and (min-width: 768px) {
  .p-top-area__items-title--purple {
    background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
    background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  }
}

.p-top-area__items-title--purple::before {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

@media screen and (min-width: 768px) {
  .p-top-area__items-title--pink {
    background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
    background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
  }
}

.p-top-area__items-title--pink::before {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

@media screen and (min-width: 768px) {
  .p-top-area__items-title--red {
    background: -webkit-gradient(linear, left top, right top, from(#FF0000), to(#FA5757));
    background: linear-gradient(90deg, #FF0000 0%, #FA5757 100%);
  }
}

.p-top-area__items-title--red::before {
  background: -webkit-gradient(linear, left top, right top, from(#FF0000), to(#FA5757));
  background: linear-gradient(90deg, #FF0000 0%, #FA5757 100%);
}

.p-top-area__item a {
  display: block;
  font-size: 0.8125rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 0.9230769231;
  letter-spacing: 0.1em;
  background: #fff;
  padding: 0.9375rem 0.3125rem;
  border-radius: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-area__item a {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2.6666666667;
    padding: 0;
    background: transparent;
    text-align: left;
    white-space: nowrap;
  }
}

.p-top-area__center {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0 0.8125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__center {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    padding: 0;
  }
}

.p-top-area__center img {
  max-width: 16.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__center img {
    max-width: 29.75rem;
    margin-top: 1.875rem;
  }
}

.p-top-area__right {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__right {
    margin-top: 0;
    margin-left: 2.125rem;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.p-top-area__subtitle {
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
}

.p-top-area__subtitle:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__subtitle:nth-child(n+2) {
    margin-top: 1.6875rem;
  }
}

.p-top-area__subtitle a, .p-top-area__subtitle span  {
  display: block;
  color: #fff;
  font-size: 1.0625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.3529411765;
  letter-spacing: 0.1em;
  padding: 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__subtitle a, .p-top-area__subtitle span {
    padding: 0.3125rem 5rem;
  }
}

.p-top-byservice {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice {
    padding-top: 5.25rem;
  }
}

.p-top-byservice .passing .passing-box {
  text-align: center;
}

.p-top-byservice__title {
  text-align: center;
}

.p-top-byservice__container {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.8125rem;
  }
}

.p-top-byservice__contents-wrap {
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-wrap {
    grid-template-rows: 1fr 1fr;
  }
}

.p-top-byservice__contents {
  padding: 1.5rem 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 136, 214, .1)), to(rgba(29, 189, 160, .1)));
  background: linear-gradient(90deg, rgba(29, 136, 214, .1) 0%, rgba(29, 189, 160, .1) 100%);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents {
    padding: 2.125rem 3.1875rem 2.625rem;
  }
}

.p-top-byservice__contents--purple {
  background: -webkit-gradient(linear, left top, right top, from(rgba(128, 74, 244, .1)), to(rgba(189, 123, 240, .1)));
  background: linear-gradient(90deg, rgba(128, 74, 244, .1) 0%, rgba(189, 123, 240, .1) 100%);
}

.p-top-byservice__contents--green {
  background: -webkit-gradient(linear, left top, right top, from(rgba(64, 172, 61, .1)), to(rgba(48, 219, 77, .1)));
  background: linear-gradient(90deg, rgba(64, 172, 61, .1) 0%, rgba(48, 219, 77, .1) 100%);
}

.p-top-byservice__contents--orange {
  background: -webkit-gradient(linear, left top, right top, from(rgba(239, 99, 74, .1)), to(rgba(250, 197, 83, .1)));
  background: linear-gradient(90deg, rgba(239, 99, 74, .1) 0%, rgba(250, 197, 83, .1) 100%);
}

.p-top-byservice__contents--pink {
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 101, 201, .1)), to(rgba(251, 152, 172, .1)));
  background: linear-gradient(90deg, rgba(253, 101, 201, .1) 0%, rgba(251, 152, 172, .1) 100%);
}

.p-top-byservice__contents--gray {
  background: -webkit-gradient(linear, left top, right top, from(rgba(137, 137, 137, .1)), to(rgba(211, 211, 211, .1)));
  background: linear-gradient(90deg, rgba(137, 137, 137, .1) 0%, rgba(211, 211, 211, .1) 100%);
}

.p-top-byservice__contents--blue2 {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

/* @media screen and (min-width: 768px) {
  .p-top-byservice__contents--blue2 img {
    display: none;
  }
} */

.p-top-byservice__contents-icon img {
  margin-inline: auto;
  max-width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-icon img {
    max-width: 4.5625rem;
  }
}

.p-top-byservice__contents--blue2 .p-top-byservice__contents-icon img {
  max-width: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents--blue2 .p-top-byservice__contents-icon img {
    max-width: 4.8125rem;
  }
}

.p-top-byservice__contents-title {
  margin-top: 0.9375rem;
  text-align: center;
  font-size: 1rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-title {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-top-byservice__contents--blue2 .p-top-byservice__contents-title {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents--blue2 .p-top-byservice__contents-title {
    margin-top: 1.1875rem;
  }
}
.p-top-byservice__contents-text{
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.53846154;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-text{
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.33333333;
  }
}
.p-top-byservice__contents-btn{
  display: block;
  margin-top: 1.25rem;
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.01em;
  padding: 0.3125rem 1.125rem;
  color: #1E8AD6;
  text-align: center;
  max-width: 15.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-btn{
    margin-top: 1.625rem;
    padding: 0.3125rem 5rem;
    max-width: 100%;
  }
}
.p-top-byservice__contents-items {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(152px, 1fr));
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-items {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
  }
}

/* 要素が1つしかないときは中央寄せ */
.p-top-byservice__contents-items:has(.p-top-byservice__contents-item:nth-child(1):nth-last-child(1)) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-top-byservice__contents-item {
    width: 100%;
  }
}

.p-top-byservice__contents-item a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  padding: 0 0.625rem;
  padding: 1rem 0.625rem;
  font-size: 0.625rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.6666666667;
  text-align: center;
  min-width: 9.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-byservice__contents-item a {
    padding: 0 3.0625rem;
    font-size: 1rem;
    line-height: 3.125;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

.p-top-byservice__contents--purple .p-top-byservice__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
}

.p-top-byservice__contents--green .p-top-byservice__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-top-byservice__contents--orange .p-top-byservice__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-top-byservice__contents--pink .p-top-byservice__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-top-byservice__contents--gray .p-top-byservice__contents-item a {
  background: -webkit-gradient(linear, left top, right top, from(#898989), to(#D3D3D3));
  background: linear-gradient(90deg, #898989 0%, #D3D3D3 100%);
}

.p-top-cta {
  position: relative;
  z-index: 11;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-cta {
    margin-top: -0.625rem;
  }
}

.p-top-cta__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-cta__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8125rem;
  }
}

.p-top-cta_items-wrap {
  display: grid;
  gap: 0.125rem;
  width: 39.1044776119%;
}
@media screen and (min-width: 768px) {
  .p-top-cta_items-wrap {
    width: unset;
    display: contents;
    gap: 0.3125rem;
  }
}

.p-top-cta__item {
  position: relative;
}

.p-top-cta__item span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-top-cta__item span {
    font-size: 1.5625rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.p-top-cta__item img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  aspect-ratio: 131/62;
}
@media screen and (min-width: 768px) {
  .p-top-cta__item img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 458/269;
  }
}

.p-top-cta__item1 {
  width: 57.9104477612%;
}
@media screen and (min-width: 768px) {
  .p-top-cta__item1 {
    width: unset;
  }
}

.p-top-cta__item1 img {
  width: 100%;
  height: 100%;
  aspect-ratio: 194/129;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-top-cta__item1 img {
    border-radius: 10px;
    aspect-ratio: 458/269;
  }
}

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

.p-top-facility {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-facility {
    padding-top: 6.3125rem;
  }
}

.p-top-facility__title {
  display: inline-block;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-facility__title {
    margin-left: unset;
  }
}

.p-top-facility__title p {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-facility__title p {
    margin-top: -1.5rem;
    padding-left: 9.75rem;
    font-size: 0.8125rem;
    line-height: 3.0769230769;
    letter-spacing: 0.1em;
  }
}

.p-top-group {
  padding: 5rem 0 1.5rem;
  background: url(../img/top/bg_group.png) no-repeat center/cover;
  overflow: hidden;
  z-index: 11;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-group {
    padding: 10.5625rem 0 8.5625rem;
  }
}

.p-top-group__title .c-section-title {
  text-align: center;
  display: block;
  padding-top: 6.5rem;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-top-group__title .c-section-title {
    padding-top: 16.75rem;
  }
}

.p-top-group__title .c-section-title span {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-group__title .c-section-title span {
    display: inline-block;
  }
}

.p-top-group__title .c-section-title::before {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: break-spaces;
}

.p-top-group__title .c-section-title::after {
  left: 0;
  -webkit-transform: translate(-50%, -38%) rotate(-180deg);
          transform: translate(-50%, -38%) rotate(-180deg);
  font-size: 3.25rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (min-width: 768px) {
  .p-top-group__title .c-section-title::after {
    font-size: clamp(180px, 14vw, 231px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
}

.p-top-group__link {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  gap: 1rem;
  position: relative;
  z-index: 1;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .p-top-group__link {
    margin-right: unset;
    margin-left: unset;
    padding: unset;
    margin-top: 1.875rem;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: hidden;
  }
}

/*Google Chrome、Safariへの対応*/
.p-top-group__link::-webkit-scrollbar {
  display: none;
}

.p-top-group__link-item {
  max-width: 5.9375rem;
  height: 100%;
  background: rgba(255, 255, 255, .7);
  border-radius: 10px;
  padding: 0.375rem 0.5rem 0.375rem 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-group__link-item {
    min-width: 14.5625rem;
    padding: 2.5rem 1.75rem 2.5rem 1.6875rem;
  }
}

.p-top-group__link-item img {
  max-width: 4.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-group__link-item img {
    max-width: 11.0625rem;
  }
}

.p-top-instagram {
  overflow: hidden;
}

.p-top-instagram__title .c-section-title {
  text-align: center;
  display: block;
  padding-top: 4.625rem;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__title .c-section-title {
    padding-top: 5.4375rem;
    padding-bottom: 0.875rem;
    padding-left: 0;
  }
}

.p-top-instagram__title .c-section-title img {
  max-width: 5.125rem;
  margin-inline: auto;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__title .c-section-title img {
    max-width: 9.125rem;
  }
}

.p-top-instagram__title .c-section-title::before {
  top: 39%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 0.96;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__title .c-section-title::before {
    font-size: 6.5625rem;
    line-height: 1.8666666667;
  }
}

.p-top-instagram__title .c-section-title::after {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 4.375rem;
  line-height: 0.8571428571;
  top: 37%;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__title .c-section-title::after {
    white-space: nowrap;
    font-size: 14.375rem;
    font-size: clamp(150px, 12vw, 230px);
    letter-spacing: -0.03em;
    line-height: 1.1529411765;
    top: 60%;
  }
}

.p-top-instagram__container {
  margin-top: 1.25rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__container {
    margin-top: 2.5rem;
  }
}

#sbi_images,
.p-top-instagram__items {
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow-x: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  #sbi_images,
  .p-top-instagram__items {
    gap: 1.25rem;
    padding-left: 2.5rem;
  }
}

/*Google Chrome、Safariへの対応*/
#sbi_images::-webkit-scrollbar,
.p-top-instagram__items::-webkit-scrollbar {
  display: none;
}

.sbi_item,
.p-top-instagram__item {
  width: 7rem !important;
}
@media screen and (min-width: 768px) {
  .sbi_item,
  .p-top-instagram__item {
    width: 19.125rem !important;
  }
}

.sbi_item .sbi_photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-top-instagram__bottom {
  margin-top: 3.75rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  padding: 2.5rem 0 8.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom {
    margin-top: 4.375rem;
    padding: 2.5rem 0 13.4375rem;
  }
}

.p-top-instagram__bottom-title {
  text-align: center;
  font-size: 2.4375rem;
  font-family: "Oswald", serif;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, .2);
  mix-blend-mode: normal;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-title {
    font-size: 3.625rem;
  }
}

.p-top-instagram__bottom-title span {
  font-weight: 300;
}

.p-top-instagram___bottom-items {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  position: absolute;
  left: 50%;
  bottom: -51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
@media screen and (min-width: 768px) {
  .p-top-instagram___bottom-items {
    gap: 3.75rem;
    bottom: -62%;
  }
}

.p-top-instagram__bottom-item {
  text-align: center;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  position: relative;
  padding: 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-item {
    padding: 0 1.25rem;
  }
}

.p-top-instagram__bottom-item p {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-item p {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.p-top-instagram__bottom-item img {
  margin-top: 1.5rem;
  max-width: 3.625rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-item img {
    max-width: 5.75rem;
  }
}

.p-top-instagram__bottom-item:hover .p-top-instagram__bottom-link {
  display: block;
}

.p-top-instagram__bottom-link {
  content: "";
  position: absolute;
  top: 20%;
  right: -260%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  background: #fff;
  padding: 0.9375rem 1.375rem;
  border-radius: 20px;
  display: none;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-link {
    padding: 0.9375rem 1.875rem;
    right: -177%;
    top: 30%;
  }
}

.p-top-instagram__bottom-link2 {
  right: -340%;
  top: -43%;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-link2 {
    right: -244%;
    top: -30%;
  }
}

.p-top-instagram__bottom-link::before {
  content: "";
  position: absolute;
  top: 78%;
  left: -0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4375rem;
  height: 1.4375rem;
  background: url(../img/common/polygon.png) no-repeat center/contain;
}

.p-top-instagram__bottom-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3076923077;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-link a {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-top-instagram__bottom-link a:nth-child(n+2) {
  margin-top: 0.625rem;
}

.p-top-instagram__bottom-link span {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.p-top-instagram__bottom-link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0.0625rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-link span::after {
    bottom: 5px;
  }
}

.p-top-instagram__bottom-link img {
  margin-top: 0;
  max-width: 1.625rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .p-top-instagram__bottom-link img {
    max-width: 1.875rem;
  }
}

.p-top-link {
  margin-top: 1.875rem;
  padding-bottom: 1.5rem;
  background: url(../img/common/bg_border.png) no-repeat center top 30px/cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-link {
    margin-top: 13rem;
    padding-bottom: 4.125rem;
    background: url(../img/common/bg_border.png) no-repeat center top 100px/cover;
  }
}

.p-top-link__title {
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-link__title {
    margin-left: unset;
  }
}

.p-top-link__title .c-section-title {
  padding-left: 8rem;
}
@media screen and (min-width: 768px) {
  .p-top-link__title .c-section-title {
    padding-left: 22rem;
  }
}

.p-top-link__title p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-link__title p {
    margin-top: -1.75rem;
    padding-left: 9.75rem;
    font-size: 0.8125rem;
    line-height: 3.0769230769;
    letter-spacing: 0.1em;
  }
}

.p-top-link__items {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-link__items {
    padding-left: 2.5rem;
    margin-top: 3.125rem;
    gap: 1.4375rem;
  }
}

/*Google Chrome、Safariへの対応*/
.p-top-link__items::-webkit-scrollbar {
  display: none;
}

.p-top-link__items .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-link__items .swiper-wrapper {
    gap: 2.0625rem;
  }
}

.p-top-link__item {
  min-width: 9.6875rem;
  max-width: 9.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-link__item {
    min-width: 21.6875rem;
    max-width: 21.6875rem;
  }
}

.p-top-news {
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: 6.3125rem;
  }
}

.p-top-news__title .c-section-title {
  padding-left: 10.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__title .c-section-title {
    padding-left: 27.8125rem;
  }
}

.p-top-news__title {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-news__title {
    margin-left: unset;
  }
}

.p-top-news__title p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__title p {
    margin-top: -1.5rem;
    padding-left: 9.75rem;
    font-size: 0.8125rem;
    line-height: 3.0769230769;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 768px) {
  .p-top-news__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12.0625rem;
  }
}

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

.tab-contents {
  max-width: 69.8125rem;
  margin-inline: auto;
}

.tab-title-list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .tab-title-list {
    margin-top: 0;
    padding-left: 0;
    gap: 0.625rem;
  }
}

.tab-title {
  list-style: none;
  text-align: center;
  background: transparent;
  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.375rem;
  font-size: 1rem;
  letter-spacing: -0.24px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  background: #ddd;
  padding: 0.3125rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .tab-title {
    font-size: 0.9375rem;
    line-height: 2.5333333333;
    padding: 0.625rem 1.4375rem;
  }
}

.tab-title.selected {
  background: #000;
  color: #fff;
}

.tab-list {
  margin-top: 1.5rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-list {
    margin-top: 3.75rem;
  }
}

.tab-list.show {
  display: block;
}

.article-list__item {
  padding: 0.9375rem 0;
  border-bottom: 1px solid #C4C4C4;
}
@media screen and (min-width: 768px) {
  .article-list__item {
    padding: 1.875rem 0;
  }
}

.article-list__item:first-child {
  border-top: 1px solid #C4C4C4;
}
@media screen and (min-width: 768px) {
  .article-list__item:first-child {
    border-top: none;
  }
}

.article-list__item a:hover .p-news__tab-title {
  text-decoration: underline;
}

.article-list__item a time {
  font-size: 0.75rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 3.3333333333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .article-list__item a time {
    font-size: 0.9375rem;
    line-height: 2.6666666667;
  }
}
.p-top-news .article-list__item a time {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top-news .article-list__item a time {
    line-height: 2.6666666667;
  }
}


.article-list__item span {
  padding: 0.1875rem 0.9375rem;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2.5384615385;
  display: inline-block;
  width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .article-list__item span {
    font-size: 0.8125rem;
    width: 9.5625rem;
  }
}

.article-list__item a {
  position: relative;
}
.p-top-news .article-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-news .article-list__item a {
    gap: 2.1875rem;
  }
}

.p-top-news .p-news__item-img {
  max-width: 6.4375rem;
  min-width: 6.4375rem;
}

.p-top-news .p-news__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 103/69;
  -o-object-fit: cover;
     object-fit: cover;
}



.p-news__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-wrap {
    gap: 2.375rem;
  }
}

.p-top-news .p-news__item-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top-news .p-news__item-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.75rem;
  }
}

.p-top-news .p-news__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-top-news .p-news__item-meta {
    display: contents;
  }
}

.p-news__new {
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #F40082;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__new {
    padding: 0.4375rem 0.9375rem;
    font-size: 0.75rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-bottom: 0.3125rem;
    margin-left: -0.5rem;
  }
}



.p-news__item-wrap time {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 3.3333333333;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-news__item-wrap time {
    font-size: 0.9375rem;
    line-height: 2.6666666667;
  }
}

.all {
  background: #000;
  color: #fff;
}

.p-news__tab-title {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news__tab-title {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-top-other {
  padding-top: 3.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-other {
    padding-top: 5.9375rem;
  }
}

.p-top-other__title .c-section-title {
  padding-left: 9.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-other__title .c-section-title {
    padding-left: 27.0625rem;
  }
}

.p-top-other__title {
  margin-left: calc(50% - 50vw);
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .p-top-other__title {
    margin-left: unset;
  }
}

.p-top-other__title p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-other__title p {
    margin-top: -1rem;
    padding-left: 9.75rem;
    font-size: 0.8125rem;
    line-height: 3.0769230769;
    letter-spacing: 0.1em;
  }
}

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

.p-top-other__items {
  max-width: 21.5625rem;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6875rem;
  place-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .p-top-other__items {
    max-width: 31.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-other__items {
    max-width: 100%;
    margin-top: 1.25rem;
    gap: 1.875rem;
  }
}

.p-top-other__item {
  position: relative;
  background: #fff;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  aspect-ratio: 104/96;
  border: 1px solid #C4C4C4;
  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;
  max-width: 6.5rem;
}
@media screen and (min-width: 600px) {
  .p-top-other__item {
    max-width: 9.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-other__item {
    aspect-ratio: 458/269;
    max-width: 28.625rem;
  }
}

.p-top-other__item img {
  aspect-ratio: 104/96;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 90%;
}
@media screen and (min-width: 768px) {
  .p-top-other__item img {
    aspect-ratio: 458/269;
  }
}

.p-top-search {
  padding: 0.75rem 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-top-search {
    margin-top: 6.25rem;
    padding: 0.9375rem 0;
  }
}

.p-top-search__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -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-top-search__btn {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    max-width: 70rem;
    margin-inline: auto;
    gap: 1.875rem;
  }
}

.p-top-search__category-btn {
  display: inline-block;
  background: #fff;
  padding: 0.5rem 1.875rem 0.5rem 0.9375rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  border-radius: 20px;
  border: 1px solid #000;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-top-search__category-btn {
    padding: 0.6875rem 3.5625rem 0.625rem 3.5625rem;
  }
}

.p-top-search__category-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 0.8125rem;
  height: 1px;
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-top-search__category-btn::before {
    right: 0.9375rem;
  }
}

.p-top-search__category-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.8125rem;
  height: 1px;
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-top-search__category-btn::after {
    right: 0.9375rem;
  }
}

.p-top-search__btn .p-top-search__refine-btn {
  display: inline-block;
  background: #000;
  padding: 0.625rem 1.375rem 0.5625rem 3rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  color: #fff;
  border-radius: 5px;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-top-search__btn .p-top-search__refine-btn {
    padding: 0.75rem 1.375rem 0.8125rem 3rem;
  }
}

.p-top-search__btn .p-top-search__refine-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0625rem;
  height: 0.875rem;
  background: url(../img/common/search2.svg) no-repeat center/contain;
}

.p-top-search__btn.open .p-top-search__refine-btn {
  background: #fff;
  border: 1px solid #666;
  color: #666;
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .1);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .1);
}

.p-top-search__btn.open .p-top-search__refine-btn::before {
  background: url(../img/common/search2-black.svg) no-repeat center/contain;
}

.p-top-search__contents {
  display: none;
  text-align: center;
  padding-bottom: 1.25rem;
  padding-top: 1.875rem;
  margin-top: 0.9375rem;
  border-top: 1px solid #DDDDDD;
}
@media screen and (min-width: 768px) {
  .p-top-search__contents {
    padding: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.1875rem;
  }
}

.p-top-search__wrap {
  border-top: 1px solid #DDDDDD;
  margin-top: 1.875rem;
  padding-top: 1.25rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-search__wrap {
    padding: 0;
    margin-top: 3.125rem;
  }
}

.p-top-search__title {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
  border-radius: 5px;
  padding: 1.25rem 0.9375rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  color: #fff;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-top-search__title {
    display: none;
  }
}

.p-top-search__title.open {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-top-search__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-top-search__title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-top-search__title:nth-child(n+2) {
  margin-top: 1.875rem;
}

.p-top-search__title--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-top-search__title--green {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-top-search__title--blue {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.p-top-search__title--pink {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-top-search__title--gray {
  background: -webkit-gradient(linear, left top, right top, from(#888888), to(#C4C4C4));
  background: linear-gradient(90deg, #888888 0%, #C4C4C4 100%);
}

.p-top-search__items {
  display: grid;
  max-width: 68.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-search__items {
    gap: 1.4375rem;
    margin-top: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top-search__item a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  padding: 0.9375rem 0.9375rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-top-search__item a {
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
            box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
    padding: 1.625rem 3.125rem 1.6875rem;
    font-size: 1.0625rem;
    line-height: 1;
    text-align: center;
  }
}

.p-top-search__item:last-child a {
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .p-top-search__item:last-child a {
    border-radius: 5px;
  }
}

.p-top-search__items--orange .p-top-search__item a {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-top-search__items--green .p-top-search__item a {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}

.p-top-search__items--blue .p-top-search__item a {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}

.p-top-search__items--pink .p-top-search__item a {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}

.p-top-search__items--gray .p-top-search__item a {
  background: -webkit-gradient(linear, left top, right top, from(#888888), to(#C4C4C4));
  background: linear-gradient(90deg, #888888 0%, #C4C4C4 100%);
}

.p-top-search__contents input {
  background: -webkit-gradient(linear, left top, right top, from(#EDF5FF), to(#E7FCFE));
  background: linear-gradient(90deg, #EDF5FF 0%, #E7FCFE 100%);
  -webkit-box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .25);
          box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .25);
  border-radius: 5px;
  border: none;
  padding: 0.9375rem 3.125rem 0.9375rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .p-top-search__contents input {
    padding: 1.4375rem 16.25rem 1.3125rem 3.5625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1;
  }
}

.p-top-search__contents button {
  background: #000;
  color: #fff;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-top-search__contents button {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-top-search__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  max-width: 70rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-search__category {
    margin-top: 2.5rem;
  }
}

.p-top-search__category-item a {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  border-radius: 5px;
  color: #fff;
  background: #000;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.3076923077;
}
@media screen and (min-width: 768px) {
  .p-top-search__category-item a {
    padding: 0.625rem 1.875rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2;
  }
}

.p-top-search__category-item--kids a {
  background: #F49494;
}

.p-top-search__category-item--annual-events a {
  background: #189D92;
}

.p-top-search__category-item--study a {
  background: #1A1357;
}

.p-top-search__category-item--lecture a {
  background: #E4194F;
}

.p-top-search__category-item--event a {
  background: #E4C41C;
}

.p-top-search__category-item--epa a {
  background: #51529B;
}

.p-top-search__category-item--news a {
  background: #BD982F;
}

.p-top-search__category-item--ground-golf a {
  background: #86A224;
}

.p-top-search__category-item--sports a {
  background: #F38C30;
}

.p-top-search__category-item--gateball a {
  background: #FD6058;
}

.p-top-search__category-item--certification a {
  background: #8E7E40;
}

.p-top-search__category-item--recruit a {
  background: #8855CF;
}

.p-top-search__category-item--openning a {
  background: #4478DE;
}

.p-top-search__category-item--media a {
  background: #757575;
}

.p-top-search__category-item--donation a {
  background: #391F10;
}

.p-top-search__category-item--csr a {
  background: #399e17;
}

.p-vacant {
  padding-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-vacant {
    padding-top: 2.5rem;
  }
}

.p-vacant__container {
  max-width: 68.75rem;
  margin-inline: auto;
  margin-top: 1.875rem;
  margin-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__container {
    margin-top: 0;
    margin-bottom: 6.25rem;
  }
}

.p-vacant__contents:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__contents:nth-child(n+2) {
    margin-top: 4.375rem;
  }
}

.p-vacant__title {
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
          box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, .05);
  border-radius: 10px;
  padding: 0.6875rem 3.125rem 0.625rem;
  padding: 1.25rem 0.9375rem 1.25rem;
  font-size: 0.9375rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.1333333333;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-vacant__title {
    padding: 1.625rem 3.125rem 1.6875rem;
    font-size: 1.0625rem;
    line-height: 1;
    text-align: left;
    border-radius: 5px;
  }
}

.p-vacant__title.open {
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-vacant__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url(../img/common/arrow-down-white.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-vacant__title::after {
    display: none;
  }
}

.p-vacant__title.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-vacant__contents-wrap {
  padding: 1.25rem 0.625rem 1.25rem;
  display: grid;
  gap: 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#804AF4), to(#BD7BF0));
  background: linear-gradient(90deg, #804AF4 0%, #BD7BF0 100%);
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .p-vacant__contents-wrap {
    padding: 3.125rem 0 0;
    background: transparent;
  }
}

.p-vacant__contents-wrap--orange {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}
@media screen and (min-width: 768px) {
  .p-vacant__contents-wrap--orange {
    background: transparent;
  }
}

.p-vacant__contents-wrap--green {
  background: -webkit-gradient(linear, left top, right top, from(#40AC3D), to(#30DB4D));
  background: linear-gradient(90deg, #40AC3D 0%, #30DB4D 100%);
}
@media screen and (min-width: 768px) {
  .p-vacant__contents-wrap--green {
    background: transparent;
  }
}

.p-vacant__contents-wrap--blue {
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
}
@media screen and (min-width: 768px) {
  .p-vacant__contents-wrap--blue {
    background: transparent;
  }
}

.p-vacant__contents-wrap--pink {
  background: -webkit-gradient(linear, left top, right top, from(#FD65C9), to(#FB98AC));
  background: linear-gradient(90deg, #FD65C9 0%, #FB98AC 100%);
}
@media screen and (min-width: 768px) {
  .p-vacant__contents-wrap--pink {
    background: transparent;
  }
}

.p-vacant__contents-wrap--gray {
  background: -webkit-gradient(linear, left top, right top, from(#888888), to(#C4C4C4));
  background: linear-gradient(90deg, #888888 0%, #C4C4C4 100%);
}
@media screen and (min-width: 768px) {
  .p-vacant__contents-wrap--gray {
    background: transparent;
  }
}

.p-vacant__items {
  background: #fff;
  border-radius: 10px;
  padding: 0.625rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__items {
    padding: 0;
    background: transparent;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 1.25rem;
  }
}

.p-vacant__item {
  padding: 1.875rem 0.625rem 1.375rem;
  display: inline-block;
  background: #fff;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-vacant__item {
    padding: 1.875rem 1.6875rem 1.25rem 2.375rem;
    border-radius: 20px;
    display: grid;
    grid-template-rows: 1fr;
  }
}

.p-vacant__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4375rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-head {
    gap: 1.25rem;
    padding-bottom: 1.3125rem;
  }
}

.p-vacant__item-img {
  max-width: 3.9375rem;
  min-width: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-img {
    max-width: 6.25rem;
    min-width: 6.25rem;
  }
}

.p-vacant__item-img img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-vacant__item-name {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.9230769231;
  background: -webkit-gradient(linear, left top, right top, from(#1D88D6), to(#1DBDA0));
  background: linear-gradient(90deg, #1D88D6 0%, #1DBDA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-name {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-vacant__item-cat {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-cat {
    margin-top: 0.9375rem;
  }
}

.p-vacant__item-cat-item a {
  display: inline-block;
  background: #EDEDED;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 0.1em;
  padding: 0.4375rem 0.625rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-cat-item a {
    font-size: 0.8125rem;
    line-height: 1;
  }
}

.p-vacant__item-main-wrap {
  margin-top: 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-main-wrap {
    margin-top: 0.9375rem;
  }
}

.p-vacant__item-tel a {
  font-size: 0.8125rem;
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  line-height: 1.3076923077;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-tel a {
    font-size: 1.5625rem;
    line-height: 1;
  }
}

.p-vacant__item-map img {
  width: 0.75rem;
  height: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-vacant__item-map img {
    width: 1.0625rem;
    height: 1.625rem;
  }
}

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

.u-mt0 {
  margin-top: 0;
}

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

.u-uline {
  text-decoration: underline;
}
/*# sourceMappingURL=styles.css.map */


/* 20250612 and add */
.p-groupinfo__table.c-table dd .c-btn2.map {
  color: #858585;
  padding: 1px;
}

.p-groupinfo__table.c-table dd .c-btn2.map span {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0.5rem 1.125rem 0.5rem 1.75rem;
  border-radius: 30px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-groupinfo__table.c-table dd .c-btn2.map span {
    padding: 1.0625rem 2.25rem 1rem;
  }
}

.p-groupinfo__table.c-table dd .c-btn2::after {
  z-index: 0;
}

/* 20250716 and add */
.p-news__yearlist-box {
  background: linear-gradient(to right, #e3f2fd, #e0f7fa, #e0f2f1);
  border-radius: 10px;
  padding: 30px 20px 15px 20px;
  display: inline-block;
  width: 100%;
  margin-top: 4rem;
}

.p-news__yearlist-title {
  font-weight: bold;
  margin-left: 3%;
  margin-bottom: 1rem;
}

.p-news__yearlist {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.p-news__yearlist a {
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  width: 10%;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media (max-width: 540px) {
  .p-news__yearlist a {
    width: 25%;
  }
}