@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}
@media (max-width: 1160px) {
  html {
    font-size: 1.3793103448vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

body.is-active {
  overflow: hidden;
}

main {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}

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

/*****************************
* 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 */
/* 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;
            animation-duration: 0.01ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

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

.l-pt128 {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .l-pt128 {
    padding-top: 5rem;
  }
}

.l-pb128 {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .l-pb128 {
    padding-bottom: 5rem;
  }
}

.l-pt180 {
  padding-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .l-pt180 {
    padding-top: 7.5rem;
  }
}

.l-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.5rem;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 16.875rem;
  padding: 0.5rem 0;
  border: 1px solid #4a7eba;
  border-radius: 50vh;
  position: relative;
}
.c-btn:after {
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #4a7eba;
  border-radius: 50%;
  position: absolute;
  right: 2.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn:before {
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 2.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

@media (hover: hover) {
  .c-btn:hover {
    opacity: 1;
  }
  .c-btn:hover:after {
    width: 0.875rem;
    height: 0.875rem;
    right: 1.9375rem;
  }
  .c-btn:hover:before {
    opacity: 1;
  }
}
.c-btn__top {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: #4a7eba;
}

.c-btn__bottom {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0.25rem;
  color: #666;
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 21.25rem;
}
@media screen and (max-width: 768px) {
  .c-card {
    max-width: none;
    max-width: initial;
  }
}

@media (hover: hover) {
  .c-card a:hover .c-card__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* 拡大 */
  }
  .c-card a:hover {
    opacity: 1;
  }
}
.c-card__img {
  width: 100%;
  max-width: 21.25rem;
  aspect-ratio: 340/239;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-card__img {
    max-width: none;
    max-width: initial;
  }
}

.c-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.c-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-card__title:after {
  display: block;
  content: "»";
  font-size: 1.5rem;
}

.c-card__title2 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-card__title2:after {
  display: block;
  content: "»";
  font-size: 1.5rem;
}

.c-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.c-card__tag {
  font-size: 0.75rem;
  display: inline-block;
  height: 1.625rem;
  padding: 0.25rem 0.5rem;
  color: white;
  background: #a3c1e2;
  border-radius: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.c-card__tag:before {
  display: block;
  content: "#";
  font-size: 0.875rem;
}

.c-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.25rem 2.25rem;
}
@media screen and (max-width: 768px) {
  .c-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-category-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 5.375rem;
  height: 1.4375rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-category-btn {
    width: 6.25rem;
    font-size: 0.75rem;
  }
}

.c-category-btn--news {
  color: #4a7eba;
  border: 1px solid #4a7eba;
}

.c-category-btn--hojyokin {
  color: #0c7c95;
  border: 1px solid #0c7c95;
}

.c-category-btn--others {
  color: #425763;
  border: 1px solid #425763;
}

.c-category-btn--uncategorized {
  display: none;
}

.c-hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 4.375rem;
  height: 4.375rem;
  outline: none;
  background-color: #4a7eba;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-hamburger:hover {
  opacity: 1;
}

.c-hamburger__bar {
  position: relative;
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.c-hamburger__bar:nth-child(1) {
  top: 0;
}

.c-hamburger__bar:nth-child(2) {
  margin: 0.5rem 0;
}

.c-hamburger__bar:nth-child(3) {
  top: 0;
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(1) {
  top: 0.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(2) {
  margin: 0;
  opacity: 0;
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(3) {
  top: -0.125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-insta:before {
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/common/insta_icon.svg) center top/contain no-repeat;
}

.c-lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-section-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: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-section-title--en {
  font-family: "Noto Serif JP", serif;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.3;
  color: #425763;
}

.c-section-title--en span:first-child {
  text-transform: capitalize;
  color: #4a7eba;
}

.c-section-title--ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: #425763;
  margin-top: 0.25rem;
}

.c-section-title2--en {
  font-family: "Noto Serif JP", serif;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: capitalize;
  color: #425763;
}
.c-section-title2--en::first-letter {
  color: #4a7eba;
}

.c-section-title2--ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: #425763;
  margin-top: 0.25rem;
}

.c-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-tel:before {
  display: block;
  content: "";
  width: 0.9375rem;
  height: 1.1875rem;
  background: url(../images/common/tel_icon.webp) center top/contain no-repeat;
}

.c-tel--white:before {
  background: url(../images/common/tel_icon2.webp) center top/contain no-repeat;
}

.c-text16 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-text16 {
    font-size: 0.875rem;
  }
}

.c-text14 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
}

.wp-pagenavi { /* 全体 */
  font-size: 1rem;
}

.wp-pagenavi a { /* フォント色 */
  color: #fff;
}

.pages { /* 左の表記 */
  margin-right: 1.25rem;
}

.wp-pagenavi .current,
.wp-pagenavi a.page { /* ボタン */
  margin: 0 0.375rem 0.375rem 0;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5625rem 0;
  text-align: center;
  background: #d1d1d1;
  border: none;
}

.wp-pagenavi .current { /* カレント数字 */
  border: none;
  background: #4a7eba;
  color: #fff;
}

.wp-pagenavi a.page {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wp-pagenavi a.page:hover { /* マウスオーバー */
  opacity: 0.7;
}

.wp-pagenavi .first,
.wp-pagenavi .extend { /* ... */
  margin-right: 0.625rem;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink { /* 記号の削除 */
  display: none;
}

.p-404 {
  width: 100%;
  padding-top: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 18.75rem);
}
@media screen and (max-width: 768px) {
  .p-404 {
    padding-top: 6.25rem;
  }
}

.p-404__title {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-404__title {
    font-size: 1.25rem;
  }
}

.p-404__text {
  margin-top: 2.5rem;
}

.p-404__link {
  text-decoration: underline;
  color: #4a7eba;
  margin-top: 1.25rem;
}

.p-footer {
  background-color: #333;
  color: #fff;
  padding: 5rem 0;
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.p-footer__logo {
  width: 100%;
  max-width: 15rem;
}

.p-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-footer__insta {
  width: 1.875rem;
  aspect-ratio: 1/1;
}

.p-footer__insta img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__address {
  margin-top: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-footer__tel {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-footer__tel {
    margin-top: 1.5rem;
  }
}

.p-footer__time {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-footer__items {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__item {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.p-footer__item:after {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  left: 0;
  bottom: -0.3125rem;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.p-footer__item a:hover {
  opacity: 1;
}

@media (hover: hover) {
  .p-footer__item:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-footer__copyright {
  margin-top: 3.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4166666667;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    margin-top: 4rem;
  }
}

.p-header {
  height: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 4.375rem;
  }
}

.p-header__inner {
  width: 100%;
  padding-left: 5.25rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding-left: 1.25rem;
  }
}

.p-header__flex {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.p-header__logo-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .p-header__logo-text {
    font-size: 0.5625rem;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 21.25rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: 12.5rem;
    margin-top: 0;
  }
}

.p-header__logo img {
  display: block;
  width: 100%;
}

.p-header__right-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__right-wrap {
    display: none;
  }
}

.p-header__right {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.625rem;
}

.p-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__time {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}

.p-header__insta {
  width: 1.875rem;
  height: 100%;
  aspect-ratio: 30/29.95;
  margin-left: 0.9375rem;
}

.p-header__insta img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__pc-nav {
  height: 100%;
}

.p-header__pc-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1240px) {
  .p-header__pc-items {
    gap: 1.25rem;
  }
}

.p-header__pc-item {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.p-header__pc-item:after {
  content: "";
  display: inline-block;
  background-color: #4a7eba;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  left: 0;
  bottom: -0.3125rem;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.p-header__pc-item a:hover {
  opacity: 1;
}

@media (hover: hover) {
  .p-header__pc-item:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.header__contact-btn {
  width: 10rem;
  height: 100%;
  background-color: #4a7eba;
}

.header__contact-btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.header__contact-btn a:after {
  display: block;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  position: absolute;
  left: 50%;
  bottom: 1.875rem;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__contact-btn a:hover {
  opacity: 1;
}

@media (hover: hover) {
  .header__contact-btn a:hover:after {
    bottom: 1.5625rem;
  }
}
.p-header__sp-global-menu {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  background-color: rgba(235, 234, 234, .94);
  z-index: 1;
  padding-bottom: 1.25rem;
}

.p-header__sp-nav {
  width: 18.4375rem;
  margin-inline: auto;
  margin-top: 7.5rem;
}

.p-header__sp-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 0.625rem;
}

.p-header__sp-item {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.p-header__sp-item:before {
  display: block;
  content: "";
  width: 1rem;
  height: 1.04rem;
  background: url(../images/common/logo.webp) center top/contain no-repeat;
}

.p-header__sp-contact-btn {
  margin-top: 1.625rem;
}

.p-header__sp-contact-btn a {
  margin-inline: auto;
  display: block;
  width: 18.4375rem;
  padding: 1.25rem 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  background: #4a7eba;
  position: relative;
}
.p-header__sp-contact-btn a:before {
  display: block;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  position: absolute;
  left: 3rem;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.p-header__sp-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__sp-info .p-header__insta {
  margin-left: 0;
  margin-top: 1.625rem;
}

.is-drawerActive .p-header__sp-global-menu {
  visibility: visible;
  opacity: 1;
  overflow: scroll;
}

.is-drawerActive {
  overflow: hidden;
}

.p-loading__inner {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #a3c1e2;
}

.p-loading__logo-wrap {
  overflow: hidden;
}

.p-loading__logo {
  width: 21.25rem;
  -webkit-transform: translateY(80%);
          transform: translateY(80%); /* 初期状態は下に配置 */
}
.p-loading__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-news__tab-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
  max-width: 50rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-news__tab-items {
    margin-top: 2.5rem;
  }
}

.p-news__tab-item {
  width: 23%;
}

.p-news__tab-item a {
  background-color: #fff;
  border: 1px solid #4a7eba;
  color: #4a7eba;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0.5rem 0.5rem;
  text-align: center;
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-news__tab-item a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-news__tab-item a {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }
}
.p-news__tab-item a:hover {
  background-color: #4a7eba;
  color: #fff;
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
}

.p-news__tab-item.active a {
  background-color: #4a7eba;
  color: #fff;
}

.p-news__container {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-news__container {
    margin-top: 2rem;
  }
}

.p-news__content {
  display: none;
}

.p-news__btn {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-parts-contact {
  background: url(../images/common/contact_bg.webp) center top/cover no-repeat;
}

.p-parts-contact__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem 1.25rem;
  background-color: rgba(255, 255, 255, .9);
}
@media screen and (max-width: 768px) {
  .p-parts-contact__inner {
    padding: 3.5rem 1.25rem;
  }
}

.p-parts-contact_lead {
  margin-top: 2.5rem;
  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 (max-width: 768px) {
  .p-parts-contact_lead {
    text-align: left;
  }
}

.p-parts-contact_lead span {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-parts-contact_lead span {
    font-size: 1rem;
    text-align: center;
  }
}

.p-parts-contact__btns {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-parts-contact__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}

.p-parts-contact__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 17.5rem;
  height: 4.375rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  background: #e1ecf2;
}

.p-parts-contact__time {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-recruit .l-inner {
  max-width: 55rem;
}

.p-recruit__closed-message {
  margin-top: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #3e3a39;
}
@media screen and (max-width: 768px) {
  .p-recruit__closed-message {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__closed-message {
    text-align: left;
  }
}

.p-recruit__lead-title {
  margin-top: 2.5rem;
}

.p-recruit__lead-text {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-recruit__lead-text {
    text-align: left;
  }
}

.p-recruit__section {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__section {
    margin-top: 3rem;
  }
}

.p-recruit__subheading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #3e3a39;
  padding-left: 1rem;
  border-left: 0.375rem solid #4a7eba;
}
@media screen and (max-width: 768px) {
  .p-recruit__subheading {
    font-size: 1.25rem;
    padding-left: 0.75rem;
    border-left-width: 0.25rem;
  }
}

.p-recruit__requirements-items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-items {
    margin-top: 1.5rem;
  }
}

.p-recruit__requirements-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0;
  border: 1px solid #ccc;
  border-bottom: none;
}
.p-recruit__requirements-item:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-recruit__requirements-item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
  max-width: 22%;
  margin: 0;
  padding: 1.25rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #3e3a39;
  background-color: #e1ecf2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-item dt {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #ccc;
  }
}

.p-recruit__requirements-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 78%;
          flex: 1 1 78%;
  max-width: 78%;
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3e3a39;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-item dd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-left: none;
  }
}

.p-recruit__requirements-note {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-recruit__requirements-note {
    font-size: 0.75rem;
    padding-left: 0;
  }
}

.p-recruit__apply {
  margin-top: 1.5rem;
}

.p-recruit__apply-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: #3e3a39;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit__apply-text {
    font-size: 0.875rem;
  }
}

.p-recruit__apply-text + .p-recruit__apply-text {
  margin-top: 1rem;
}

.p-recruit__apply-tel {
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-recruit__apply-tel {
    font-size: 1rem;
  }
}
.p-recruit__apply-tel a {
  font-size: 1.375rem;
  color: #4a7eba;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-recruit__apply-tel a {
    font-size: 1.25rem;
  }
}
.p-recruit__apply-tel a:hover {
  text-decoration: underline;
}

.p-recruit__apply-note {
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #4a7eba;
}
@media screen and (max-width: 768px) {
  .p-recruit__apply-note {
    font-size: 1.125rem;
  }
}

.p-recruit__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-recruit__imgs {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__imgs {
    grid-template-columns: 1fr;
  }
}

.p-recruit__img {
  width: 100%;
  aspect-ratio: 4/3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-recruit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}

.p-single-works__inner {
  width: 100%;
  max-width: 55rem;
}

.p-single-works__title {
  border-bottom: solid 0.1875rem #a3c1e2;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.5rem 0.5rem;
  position: relative;
}
.p-single-works__title:after {
  display: block;
  content: "";
  width: 20%;
  border-bottom: solid 0.1875rem #4a7eba;
  bottom: -3px;
  width: 20%;
  position: absolute;
  left: 0;
  top: 0;
}

.p-single-works__date {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

.p-single-works .c-card__tags {
  margin-top: 0.625rem;
  padding-left: 0.5rem;
}

.p-single-works__img {
  width: 100%;
  max-width: 55rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2rem;
}

.p-single-works__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-works__layout {
  margin-top: 2rem;
}

.p-single-works__head {
  font-size: 1.375rem;
  position: relative;
  padding: 0.25rem;
  background: #a3c1e2;
  color: #fff;
  position: relative;
}
.p-single-works__head:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 0.9375rem transparent;
  border-right: solid 1.25rem #959e9b;
}

.p-single-works__text {
  margin-top: 1.5rem;
}

.p-single-works__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}

.p-single-works__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .p-single-works__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-single-works__img-wrap--before {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-single-works__img-wrap--before {
    width: 80%;
  }
}

.p-single-works__img-wrap--after {
  width: 100%;
}

.p-single-works__img--before {
  position: relative;
}
.p-single-works__img--before:before {
  display: block;
  content: "Before";
  width: 100%;
  height: 1.5rem;
  line-height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #4a7eba;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.p-single-works__arrow {
  display: block;
  width: 0;
  height: 0;
  border-width: 1rem 1rem 0 1rem;
  border-style: solid;
  border-color: #959e9b transparent transparent transparent;
}

.p-single-works__column .p-single-works__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0 1rem 1rem;
  border-color: transparent transparent transparent #959e9b;
}
@media screen and (max-width: 600px) {
  .p-single-works__column .p-single-works__arrow {
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    border-color: #959e9b transparent transparent transparent;
  }
}

.p-single-works__img--after {
  width: 100%;
  position: relative;
}
.p-single-works__img--after:before {
  display: block;
  content: "After";
  width: 100%;
  height: 2rem;
  line-height: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #4a7eba;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.p-single-works__img-text {
  margin-top: 1rem;
  font-size: 1rem;
}

.p-single-works__img-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.125rem, 1fr));
  gap: 0.625rem;
  width: 100%;
}

.p-single-works__item {
  width: 100%;
}

.p-single-works__img {
  width: 100%;
  max-width: 55rem;
}

.p-single__inner {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
}

.p-single__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.125rem 1rem;
  background-color: #4a7eba;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-single__title {
    border-left: 0.375rem solid #4a7eba;
    font-size: 1.5rem;
    padding: 0 0.9375rem;
    line-height: 1.2;
    padding: 0.625rem 0.5rem;
  }
}

.p-single__title-wrapper {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  padding-left: 1rem;
}

.p-single__date {
  font-size: 1rem;
  font-weight: 400;
}

.p-single__img {
  width: 100%;
  max-width: 55rem;
  height: auto;
  aspect-ratio: 16/9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2rem;
}

.p-single__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__body {
  margin-top: 3.5rem;
}

.p-single__page-link {
  margin-top: 3.5rem;
}

.p-single__page-link-inner {
  width: 100%;
  max-width: 50rem;
  text-align: center;
}

.p-single__page-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-single__page-link--prev {
  width: 40%;
  text-align: left;
}

.p-single__page-link--next {
  width: 40%;
  text-align: right;
}

.p-single__page-link-archive {
  display: inline-block;
  margin-top: 2.8125rem;
}

.p-single__btn {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-single__btn {
    margin-top: 2.5rem;
  }
}

.p-single h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 0.5rem;
  border-left: 0.3125rem solid #4a7eba;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-single h2 {
    border-left: 0.3125rem solid #4a7eba;
    font-size: 1.5rem;
    padding: 0 0.9375rem;
  }
}

.p-single h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 0.5rem;
  border-left: 0.25rem solid #4a7eba;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-single h3 {
    font-size: 1.125rem;
    padding: 0 0.9375rem;
  }
}

.p-single p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 1.5rem;
}

.p-top-about {
  background-color: #e5ebef;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-about {
    padding-top: 2.5rem;
  }
}
.p-top-about:after {
  display: block;
  content: "";
  width: 24.1875rem;
  height: 19.8rem;
  position: absolute;
  right: 4.6%;
  bottom: 10rem;
  background: url(../images/top/about_icon.webp) center top/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-top-about:after {
    width: 15rem;
    height: 12.27875rem;
    left: 1.2%;
    bottom: 1.875rem;
  }
}

.p-top-about__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-about__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-about__media-img {
  width: 100%;
  position: relative;
}
.p-top-about__media-img:before {
  display: block;
  content: "";
  width: 3.75rem;
  height: 3.75rem;
  border-top: 0.125rem solid #fff;
  border-left: 0.125rem solid #fff;
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-about__media-img:before {
    width: 2rem;
    height: 2rem;
    left: 0.40625rem;
    top: 0.40625rem;
  }
}
.p-top-about__media-img:after {
  display: block;
  content: "";
  width: 3.75rem;
  height: 3.75rem;
  border-bottom: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__media-img:after {
    width: 2rem;
    height: 2rem;
    right: 0.40625rem;
    bottom: 0.40625rem;
  }
}

.p-top-about__media-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-about__media-img--big {
  max-width: 34.375rem;
  aspect-ratio: 550/372;
}
@media screen and (max-width: 768px) {
  .p-top-about__media-img--big {
    width: auto;
    width: initial;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
  }
}

.p-top-about__media-img--small {
  max-width: 23.393125rem;
  aspect-ratio: 374.29/223;
  margin-top: -2.3125rem;
  margin-left: -3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__media-img--small {
    margin-top: -4.5625rem;
    margin-left: 0;
    margin-left: calc(50% - 50vw);
  }
}

.p-top-about__media-body {
  width: 100%;
  max-width: 29.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__media-body {
    max-width: none;
    max-width: initial;
  }
}

.p-top-about__media-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.003em;
  color: #0c7c95;
  margin-top: -3.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__media-title {
    font-size: 2rem;
    margin-top: 3.75rem;
  }
}

.p-top-about__media-text {
  margin-top: 1.5rem;
}

.p-top-about__lixil {
  margin-top: 2.5rem;
  padding: 2rem 0;
  border-top: 0.0625rem solid #ccc;
}
@media screen and (max-width: 768px) {
  .p-top-about__lixil {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }
}

.p-top-about__lixil-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #3e3a39;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-top-about__lixil-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-top-about__lixil-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3e3a39;
  margin: 1rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-about__lixil-text {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.8;
  }
}

.p-top-about__lixil-logo {
  margin-top: 1.25rem;
  width: 7.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-about__lixil-logo {
    margin-top: 1rem;
  }
}
.p-top-about__lixil-logo img {
  display: block;
  width: 100%;
}

.p-top-about__bg-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin-top: 4.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__bg-text-wrap {
    margin-top: 3.75rem;
  }
}

.p-top-about__bg-text {
  font-family: "Noto Serif JP", serif;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
  color: #eaf0f2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-top-about__bg-text {
    font-size: 5rem;
  }
}

.p-top-about__bg-text1 {
  -webkit-animation: anim--first 40s infinite linear 0.1s both;
          animation: anim--first 40s infinite linear 0.1s both;
}

.p-top-about__bg-text2 {
  -webkit-animation: anim--second 40s infinite linear 0.1s both;
          animation: anim--second 40s infinite linear 0.1s both;
}

@-webkit-keyframes anim--first {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes anim--first {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes anim--second {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes anim--second {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-top-about2 {
  background: url(../images/common/blue_bg.webp) center top/contain repeat;
}

.p-top-about2__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #425763;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-about2__title {
    font-size: 1.25rem;
  }
}

.p-top-about2__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-about2__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.4375rem;
    gap: 0.5rem;
  }
}

.p-top-about2__item {
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-about2__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 20.9375rem;
    text-align: left;
    padding: 0.78125rem 0.5rem 0.78125rem 0;
  }
}

.p-top-about2__item-img {
  width: 100%;
  max-width: 8.75rem;
  aspect-ratio: 140/101;
}

.p-top-about2__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-about2__item-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top-about2__item-text {
    font-size: 1rem;
  }
}

.p-top-business {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-top-business {
    padding-bottom: 1.5rem;
  }
}

.p-top-business__text1 {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-top-business__text2 {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-top-business__text2 {
    text-align: left;
  }
}

.p-top-business__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.3125rem 2.8125rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-business__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem 1.875rem;
  }
}

.p-top-business__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.004em;
}

.p-top-business__item:nth-child(n+9) {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-top-business__item:nth-child(n+9) {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-top-business__item:not(:nth-child(5)):not(:nth-child(6)) {
    margin-top: 1rem;
  }
}

.p-top-business_item-img {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 240/180;
}
@media screen and (max-width: 768px) {
  .p-top-business_item-img {
    max-width: none;
    max-width: initial;
  }
}

.p-top-business_item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-top-business__item-title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-top-business__item-title {
    font-size: 0.75rem;
  }
}

.p-top-business__medias {
  margin-top: 6.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-business__medias {
    margin-top: 3.5rem;
  }
}

.p-top-business__media {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-business__media {
    position: static;
    position: initial;
  }
}
.p-top-business__media:after {
  display: block;
  content: "";
  width: 100vw;
  height: 15.625rem;
  position: absolute;
  left: 50%;
  top: 18.6875rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-business__media:after {
    display: none;
  }
}

.p-top-business__media:nth-child(1):after {
  background: url(../images/top/business_bg-line01.webp) center top/cover no-repeat;
}

.p-top-business__media:nth-child(2) {
  margin-top: 14.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-business__media:nth-child(2) {
    margin-top: 0;
  }
}
.p-top-business__media:nth-child(2):after {
  background: url(../images/top/business_bg-line02.webp) center top/cover no-repeat;
}

.p-top-business__media:nth-child(3) {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .p-top-business__media:nth-child(3) {
    margin-top: 0;
  }
}
.p-top-business__media:nth-child(3):after {
  background: url(../images/top/business_bg-line03.webp) center top/cover no-repeat;
}

.p-top-business__media:nth-child(2) .p-top-business__media-img {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-top-business__media:nth-child(2) .p-top-business__media-img {
    margin-left: 0;
    margin-left: initial;
  }
}

.p-top-business__media-img {
  width: 38.9375rem;
  height: auto;
  aspect-ratio: 623/392;
}
@media screen and (max-width: 768px) {
  .p-top-business__media-img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    aspect-ratio: 375/200;
  }
}

.p-top-business__media-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-business__media-body {
  width: 35.8125rem;
  background-color: #fff;
  padding: 2.5rem 3.5rem;
  position: absolute;
  right: 0;
  top: 7.5rem;
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.25rem rgba(0, 0, 0, .1);
}
@media screen and (max-width: 768px) {
  .p-top-business__media-body {
    position: relative;
    width: 100%;
    right: auto;
    right: initial;
    top: auto;
    top: initial;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-shadow: initial;
            box-shadow: initial;
    padding: 2.5rem 0 3.5rem 0;
  }
}
.p-top-business__media-body:before {
  display: block;
  content: "";
  width: 7.6875rem;
  height: 9rem;
  position: absolute;
  left: -1.6875rem;
  top: -4.375rem;
}
@media screen and (max-width: 768px) {
  .p-top-business__media-body:before {
    left: 0;
    top: -5rem;
  }
}

.p-top-business__media:nth-child(1) .p-top-business__media-body::before {
  background: url(../images/top/business_num01.webp) center top/cover no-repeat;
}

.p-top-business__media:nth-child(2) .p-top-business__media-body {
  left: 0;
}
.p-top-business__media:nth-child(2) .p-top-business__media-body:before {
  background: url(../images/top/business_num02.webp) center top/cover no-repeat;
}

.p-top-business__media:nth-child(3) .p-top-business__media-body::before {
  background: url(../images/top/business_num03.webp) center top/cover no-repeat;
}

.p-top-business__media-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #4a7eba;
}
@media screen and (max-width: 768px) {
  .p-top-business__media-title {
    font-size: 1.625rem;
  }
}

.p-top-business__media-text {
  margin-top: 1rem;
}

.p-top-business__media-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin-top: 1rem;
}

.p-top-business__media-item {
  font-size: 0.75rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-business__media-item:before {
  display: block;
  content: "●";
  color: #a3c1e2;
}

.p-top-company {
  position: relative;
}
.p-top-company:after {
  display: block;
  content: "";
  width: 100%;
  height: 18.125rem;
  background-color: #61a3c9;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.p-top-company__info {
  width: 100%;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-top-company__info-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-top-company__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-company__info-term {
  width: 20%;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  padding: 2.5rem 1.25rem 0.625rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-company__info-term {
    font-size: 0.875rem;
    width: 100%;
    padding: 1rem 1rem 0.25rem 1rem;
    border: none;
  }
}

.p-top-company__info-description {
  width: 80%;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 2.5rem 2.5rem 0.625rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-company__info-description {
    font-size: 0.875rem;
    width: 100%;
    padding: 0.25rem 1rem 0.625rem 1rem;
  }
}

.p-top-company__map {
  margin-top: 5rem;
  width: 100%;
  max-width: 68.75rem;
  height: auto;
  aspect-ratio: 1100/390;
}
@media screen and (max-width: 768px) {
  .p-top-company__map {
    margin-top: 3.125rem;
    aspect-ratio: 335/380;
  }
}

.p-top-company__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-faq {
  background: url(../images/top/faq_bg.webp) center top/cover repeat;
}

.p-top-faq__lead {
  margin-top: 2rem;
  text-align: center;
}

.p-top-faq__accordion {
  width: 100%;
  max-width: 55rem;
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top-faq__accordion {
    margin-top: 2rem;
  }
}

.p-top-faq__accordion-item {
  width: 100%;
}

.p-top-faq__accordion-title {
  width: 100%;
  background-color: #fff;
  color: #4a7eba;
  padding: 1.125rem 4rem 1.125rem 1.5rem;
  cursor: pointer;
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #4a7eba;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-faq__accordion-title {
    padding: 0.625rem 2.75rem 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}
.p-top-faq__accordion-title::before, .p-top-faq__accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #999;
}
.p-top-faq__accordion-title::before {
  right: 1rem;
  width: 1rem;
  height: 0.125rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-top-faq__accordion-title::after {
  right: 1.5rem;
  width: 0.125rem;
  height: 1rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.p-top-faq__accordion-title p,
.p-top-faq__accordion-content p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-faq__accordion-title p,
  .p-top-faq__accordion-content p {
    gap: 1rem;
  }
}
.p-top-faq__accordion-title p:before,
.p-top-faq__accordion-content p:before {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #4a7eba;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  aspect-ratio: 1/1;
  text-align: center;
}

.p-top-faq__accordion-title p:before {
  content: "Q";
}

.p-top-faq__accordion-content p:before {
  content: "A";
}

.p-top-faq__accordion-title.is-active {
  background-color: #e3e3e3;
}

.p-top-faq__accordion-title::-webkit-details-marker {
  display: none;
}

.p-top-faq__accordion-title.is-active::after {
  opacity: 0;
}

.p-top-faq__accordion-item + .p-top-faq__accordion-item {
  margin-top: 0.5rem;
}

.p-top-faq__accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 1.125rem 1.5rem;
  display: none;
}

.p-top-insta .c-section-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-top-insta .c-section-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-insta__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-insta__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.p-top-insta__left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top-insta__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.p-top-insta__btn {
  margin-top: 1rem;
}

.p-top-insta__btn a {
  width: 7.5rem;
  height: 1.875rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-top-insta__btn a:after {
  display: block;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 0.625rem;
}

.p-top-insta__btn a:hover:after {
  right: 0.3125rem;
}

.p-top-insta__btn a:hover {
  opacity: 1;
}

.p-top-insta__right {
  width: 100%;
  max-width: 25rem;
}
@media screen and (max-width: 768px) {
  .p-top-insta__right {
    margin-top: 2.5rem;
  }
}

.p-top-lixil-logo {
  display: block;
  width: 100%;
  max-width: 11.25rem;
  margin-bottom: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top-lixil-logo {
    max-width: 8.75rem;
    margin-bottom: 2rem;
  }
}

.p-top-lixil-logo img {
  display: block;
  width: 100%;
}

.p-top-mv {
  background: url(../images/top/fv_bg-pc.webp) center top/contain no-repeat;
  padding-top: 10.1875rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    padding-top: 6.6875rem;
  }
}

.p-top-mv__inner {
  width: 100%;
  max-width: 90rem;
  padding-left: 7.5rem;
  padding-right: 2.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__inner {
    padding-left: 6rem;
    padding-right: 2.8125rem;
  }
}
@media screen and (max-width: 1300px) and (max-width: 768px) {
  .p-top-mv__inner {
    padding-right: 2.5rem;
    padding-left: 1.25rem;
  }
}

.p-top-mv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-mv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-top-mv__left {
  max-width: 32.5rem;
  width: 100%;
  margin-top: auto;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__left {
    max-width: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__left {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
}

.p-top-mv__right {
  width: 100%;
  max-width: 40.375rem;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__right {
    max-width: 32.3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__right {
    width: 77.7777777778%;
    margin-left: auto;
  }
}

.p-top-mv__copy-wrap {
  margin-top: 7.5rem;
  position: relative;
  z-index: 1;
  margin-left: -3.0625rem;
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__copy-wrap {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy-wrap {
    margin-left: 0;
    margin-top: 2.875rem;
  }
}

.p-top-mv__copy-top {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #4a7eba;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4375rem;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__copy-top {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy-top {
    font-size: 0.875rem;
    gap: 1rem;
  }
}
.p-top-mv__copy-top:before {
  display: block;
  content: "";
  width: 2.875rem;
  height: 2.875rem;
  background: url(../images/common/logo2.svg) center top/cover no-repeat;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__copy-top:before {
    width: 2.5875rem;
    height: 2.5875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy-top:before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-top-mv__copy {
  font-family: "Noto Serif JP", serif;
  font-size: 3.1875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #4a7eba;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__copy {
    font-size: 2.86875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy {
    font-size: 2rem;
  }
}

.p-top-mv__copy span {
  font-size: 2.625rem;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__copy span {
    font-size: 2.3625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy span {
    font-size: 1.5rem;
  }
}

.p-top-mv_splide2 {
  margin-top: -1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv_splide2 {
    margin-top: 0;
    width: 53.3333333333%;
    margin-top: 1.25rem;
    margin-left: 1.25rem;
  }
}

.p-top-mv__hojyokin {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -9.875rem;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__hojyokin {
    margin-top: -7.9rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin {
    margin-top: -7.25rem;
    margin-right: 7%;
    position: relative;
    z-index: 1;
  }
}

.p-top-mv__hojyokin-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #61b6c9;
  width: 13.125rem;
  height: 9.625rem;
  -webkit-clip-path: polygon(0 32%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 32%, 100% 0, 100% 100%, 0% 100%);
  padding: 0 0.5rem 1rem 0.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin-btn {
    width: 11.25rem;
    height: 8.5625rem;
  }
}
.p-top-mv__hojyokin-btn:before {
  display: block;
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  position: absolute;
  right: 2.25rem;
  bottom: 1.375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin-btn:before {
    display: none;
  }
}

.p-top-mv__hojyokin-btn:hover {
  opacity: 1;
}

@media (hover: hover) {
  .p-top-mv__hojyokin-btn:hover:before {
    right: 1.9375rem;
  }
}
.p-top-mv__hojyokin-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin-title {
    font-size: 1rem;
  }
}

.p-top-mv__hojyokin-detail {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: right;
  padding-right: 1.0625rem;
  margin-top: 0.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin-detail {
    font-size: 0.75rem;
    position: relative;
  }
}
.p-top-mv__hojyokin-detail:after {
  display: block;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.1875rem;
}
.p-top-mv__hojyokin-detail:before {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin-detail:before {
    display: block;
    content: "";
    width: 0.4375rem;
    height: 0.4375rem;
    border-right: 0.125rem solid #fff;
    border-bottom: 0.125rem solid #fff;
    position: absolute;
    right: 0.125rem;
    top: 50%;
    -webkit-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
  }
}

.p-top-mv__hojyokin-comment {
  font-size: 0.75rem;
  font-weight: 400;
  text-align: right;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__hojyokin-comment {
    font-size: 0.625rem;
  }
}

.p-top-mv__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #43658c;
}
@media screen and (max-width: 768px) {
  .p-top-mv__news {
    -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;
    font-size: 0.875rem;
  }
}

.p-top-mv__news-head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-mv__news-head {
  border-right: 1px solid #ccc;
  padding-right: 1.125rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #43658c;
}
@media screen and (max-width: 768px) {
  .p-top-mv__news-head {
    font-size: 0.875rem;
  }
}

.p-top-mv__news-body a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-mv__news-body a {
    margin-top: 0.75rem;
  }
}

@media (hover: hover) {
  .p-top-mv__news-body a:hover span {
    -webkit-transform: translateX(0.3125rem);
            transform: translateX(0.3125rem);
  }
}
.p-top-mv__news-body a:hover {
  opacity: 1;
}

.p-top-mv__news-date {
  padding-left: 1.125rem;
}

.p-top-mv__news-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-mv__news-title {
  padding-left: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__news-title {
    padding-left: 0;
  }
}

.p-top-mv__news-title-wrapper span {
  display: inline-block;
  padding-left: 1.125rem;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-top-news {
  background: url(../images/top/news_bg.webp) center bottom/cover no-repeat;
}

.p-top-news__inner {
  width: 100%;
  background-color: rgba(255, 255, 255, .85);
  padding: 5rem 3.75rem;
  -webkit-box-shadow: 0px 0px 0.625rem rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 0.625rem rgba(0, 0, 0, .08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-news__inner {
    padding: 3.5rem 1.25rem;
  }
}

.p-top-news__lead {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-news__lead {
    text-align: left;
  }
}

.p-top-news__contents {
  max-width: 61.25rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-top-news__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-news__date {
  width: 25%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0.5rem 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .p-top-news__date {
    border: none;
    width: 100%;
    padding: 1rem 0 0.25rem 0;
  }
}

.p-top-news__text {
  width: 75%;
  text-align: left;
  padding: 1rem 1.5rem 1rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ddd;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-news__text {
    width: 100%;
    padding: 0.25rem 0.5rem 1.5rem 0;
    font-size: 1rem;
  }
}

.p-top-news__text a {
  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;
  gap: 1.5rem;
}
.p-top-news__text a:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #4a7eba;
  border-bottom: 0.125rem solid #4a7eba;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-top-news__text:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .p-top-news__text.c-text16 {
    line-height: 1.4;
  }
}

.p-top-news__btn {
  display: inline-block;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top-news__btn {
    margin-top: 3.5rem;
  }
}

.p-top-works {
  background: url(../images/top/works_bg.webp) center top/cover no-repeat;
}

.p-top-works__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-works__inner {
    max-width: 37.5rem;
  }
}

.p-top-works__lead {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-works__lead {
    text-align: left;
  }
}

.p-top-works__cards {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-works__cards {
    margin-top: 2.5rem;
  }
}

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

.p-works__wrap {
  margin-top: 5rem;
  width: 100%;
}

.p-works__tags-wrap {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-works__text {
  text-align: center;
}

.p-works__tag-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-works__tag-item a {
  font-size: 0.75rem;
  display: inline-block;
  height: 1.625rem;
  padding: 0.25rem 0.5rem;
  color: #4a7eba;
  border: 1px solid #4a7eba;
  border-radius: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.p-works__tag-item a:before {
  display: block;
  content: "#";
  font-size: 0.875rem;
}

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

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

.js-text span {
  display: inline-block;
}

.slide {
  width: 100%;
  position: relative;
}
.slide:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.slide1 {
  max-width: 37.5rem;
  aspect-ratio: 600/780;
}
.slide1:before {
  background-color: #d1e0f1;
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
}

.slide2 {
  max-width: 25.8125rem;
  aspect-ratio: 413/571;
}
.slide2:before {
  background-color: #e5f0f3;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
}
@media screen and (max-width: 768px) {
  .slide2 {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
}

.slide-media {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slide-media1 {
  position: relative;
}
.slide-media1:before {
  display: block;
  content: "";
  width: 5rem;
  height: 5rem;
  border-top: 0.125rem solid #fff;
  border-left: 0.125rem solid #fff;
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .slide-media1:before {
    width: 2rem;
    height: 2rem;
  }
}
.slide-media1:after {
  display: block;
  content: "";
  width: 5rem;
  height: 5rem;
  border-bottom: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}

.slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: -webkit-transform 6s linear;
  transition: -webkit-transform 6s linear;
  transition: transform 6s linear;
  transition: transform 6s linear, -webkit-transform 6s linear;
  -webkit-transform: scale(1) rotate(0.2deg);
          transform: scale(1) rotate(0.2deg);
}

.splide__slide[class*=-active] .slide-media img {
  -webkit-transform: scale(1.1) rotate(0.2deg);
          transform: scale(1.1) rotate(0.2deg);
}

.splide__track {
  overflow: visible;
}
/*# sourceMappingURL=styles.css.map */
