@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff;
  pointer-events: none;
  z-index: 99999;
  -webkit-animation: pageFadeOverlay 2s ease 0s 1 forwards;
          animation: pageFadeOverlay 2s ease 0s 1 forwards;
}

/* 白いオーバーレイが消えていくアニメーション */
@-webkit-keyframes pageFadeOverlay {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes pageFadeOverlay {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

/*------------------------------------------------------------------------------
  ブラーフェードアニメーション
------------------------------------------------------------------------------*/
.is-blur-fade-ready {
  opacity: 0;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}

.is-blur-fade-active {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__section {
  margin-bottom: 22.4rem;
}
@media screen and (max-width: 767px) {
  .l-main__section {
    margin-bottom: 12.8rem;
  }
}

.l-main__common-container {
  margin: 15.2rem 0 22.4rem;
}
@media screen and (max-width: 767px) {
  .l-main__common-container {
    margin: 8rem 0 11.2rem;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.2rem 5rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .l-header__inner {
    padding: 3.2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 2.4rem 2rem;
  }
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.6rem;
          flex: 0 0 11.6rem;
  padding-right: 1.6rem;
  margin-right: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.2rem;
            flex: 0 0 7.2rem;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a:hover {
  opacity: 0.7;
}

.home .l-header__logo {
  display: none;
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  background-color: #5C5C5C;
  padding: 11.2rem 0 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 8rem 0 2.4rem;
  }
}

.l-footer__inner {
  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: 767px) {
  .l-footer__inner {
    display: block;
  }
}
.l-footer__inner.c-inner {
  max-width: 128.4rem;
}

.l-footer__heading {
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__heading {
    margin: 0 0 3.2rem;
  }
}

.l-footer__logo {
  display: block;
  max-width: 11.8rem;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 11.2rem;
  }
}

.l-footer__copyright {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.12em;
  font-family: "DM Sans", sans-serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-align: center;
    padding: 0 2rem;
    margin-top: 4.4rem;
  }
}

.l-footer__contents {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 3.2rem;
  margin-right: -0.8rem;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 900px) {
  .l-footer__nav {
    gap: 0 2rem;
    margin-right: 0;
    margin-left: -0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.2rem 1.6rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 31%;
            flex: 0 1 31%;
  }
  .l-footer__nav-item:first-child, .l-footer__nav-item:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 25%;
            flex: 0 1 25%;
  }
}

.l-footer__nav-link {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "DM Sans", sans-serif;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.8rem;
}

.l-footer__sns {
  width: 1.8rem;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    margin-left: 0.6rem;
  }
}

/*------------------------------------------------------------------------------
  l-common-contact
------------------------------------------------------------------------------*/
.l-common-contact {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20.4rem 0 17.4rem;
  background-image: url(../img/common-contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .l-common-contact {
    padding: 18.4rem 0 15.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact {
    padding: 11.2rem 0 9.6rem;
  }
}

.l-common-contact__contents {
  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: 900px) {
  .l-common-contact__contents {
    display: block;
    margin: 0 auto;
    max-width: 57rem;
  }
}

.l-common-contact__heading {
  padding-right: 2.4rem;
}
@media screen and (max-width: 900px) {
  .l-common-contact__heading {
    padding-right: 0;
    margin-bottom: 3.2rem;
  }
}

.l-common-contact__text {
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-common-contact__text {
    font-size: 1.3rem;
  }
}

.l-common-contact__btn-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41rem;
          flex: 0 0 41rem;
  max-width: 41rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 900px) {
  .l-common-contact__btn-wrap {
    margin-bottom: 0;
  }
}

/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 120rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5rem;
}
@media screen and (max-width: 900px) {
  .c-inner {
    padding: 0 2rem;
  }
}

.c-inner--sm {
  max-width: 100rem;
}

.c-inner--md {
  max-width: 110rem;
}

.c-inner--lg {
  max-width: 138rem;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.14em;
  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;
  background-color: #8197A8;
  width: 100%;
  max-width: 41rem;
  height: 5.2rem;
  border: 1px solid #8197A8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 2px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.4rem;
    max-width: 38rem;
    height: 4.8rem;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: -20%;
  /* 斜めにしても端が欠けないよう余白を確保 */
  background: #fff;
  /* 最終的に白で塗りつぶし */
  z-index: -1;
  /* 左上を起点に、わずかに左上へ押し上げ・押し出し、先端を斜めにする */
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-10%, -16%) skewX(-45deg) scaleX(0);
          transform: translate(-10%, -16%) skewX(-45deg) scaleX(0);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
@media screen and (max-width: 480px) {
  .c-btn::before {
    content: none;
  }
}
.c-btn:hover {
  color: #8197A8;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .c-btn:hover {
    color: #fff;
    opacity: 0.8;
  }
}
.c-btn:hover::before {
  -webkit-transform: translate(0, 0) skewX(-45deg) scaleX(1.25);
          transform: translate(0, 0) skewX(-45deg) scaleX(1.25);
}

.c-btn-line {
  color: #8197A8;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.14em;
  font-family: "DM Sans", sans-serif;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid #8197A8;
}
@media screen and (max-width: 767px) {
  .c-btn-line {
    font-size: 1.3rem;
  }
}
.c-btn-line:hover {
  opacity: 0.75;
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  position: fixed;
  top: 4.8rem;
  right: 5rem;
  z-index: 9999;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  mix-blend-mode: difference;
  /* ハンバーガーメニューが開いたとき */
}
@media screen and (max-width: 900px) {
  .c-burger-btn {
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-burger-btn {
    top: 3.2rem;
  }
}
.c-burger-btn.cross {
  mix-blend-mode: normal;
}
.c-burger-btn.cross .c-burger-btn__bar {
  background-color: #333;
}
.c-burger-btn.cross .c-burger-btn__bar--top {
  width: 5rem;
  -webkit-transition-delay: 40ms;
          transition-delay: 40ms;
  -webkit-transform: translateY(7px) rotate(135deg);
          transform: translateY(7px) rotate(135deg);
}
@media screen and (max-width: 767px) {
  .c-burger-btn.cross .c-burger-btn__bar--top {
    width: 5rem;
  }
}
.c-burger-btn.cross .c-burger-btn__bar--bottom {
  width: 5rem;
  -webkit-transition-delay: 20ms;
          transition-delay: 20ms;
  -webkit-transform: translateY(-7px) rotate(-135deg);
          transform: translateY(-7px) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    -webkit-transform: translateY(-6px) rotate(-135deg);
            transform: translateY(-6px) rotate(-135deg);
    width: 5rem;
  }
}

.c-burger-btn__bar {
  display: block;
  height: 2px;
  background-color: #fff;
  -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 (max-width: 767px) {
  .c-burger-btn__bar {
    height: 1px;
  }
}

.c-burger-btn__bar--top {
  width: 8rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar--top {
    width: 5.2rem;
  }
}

.c-burger-btn__bar--bottom {
  width: 5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar--bottom {
    width: 3rem;
  }
}

/* マウス操作では出さず、キーボード操作でのみ可視化 */
.c-burger-btn:focus-visible {
  outline: 2px solid #007aff;
  outline-offset: 6px;
  border-radius: 8px;
  /* 任意：角をやわらかく */
}

/* Safari等のフォールバック：focus-visible非対応時 */
.c-burger-btn:focus {
  outline: 2px solid #007aff;
  outline-offset: 6px;
}

.c-burger-btn:focus:not(:focus-visible) {
  outline: none;
}

/*------------------------------------------------------------------------------
  c-burger-menu
------------------------------------------------------------------------------*/
.c-burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  width: 40rem;
  width: 0;
  height: 100vh;
  border-left: 1px solid #c8c8c8;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -2;
}
.c-burger-menu.open {
  visibility: visible;
  display: block;
  opacity: 1;
  width: 40rem;
  background-color: #8197A8;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .c-burger-menu.open {
    width: calc(100% - 2rem);
    border-left: 1px solid #dbdbdb;
  }
}

.c-burger-menu__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 0 1.6rem 5rem 4rem;
  margin: 0 auto;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__inner {
    padding: 0 1.6rem 3.2rem 3.6rem;
  }
}
.c-burger-menu__inner::-webkit-scrollbar {
  display: none;
}

.c-burger-menu__navList {
  margin-top: 14.6rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__navList {
    margin-top: 11.2rem;
    margin-bottom: 4rem;
  }
}

.c-burger-menu__nav-item:not(:last-child) {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-item:not(:last-child) {
    margin-bottom: 4.2rem;
  }
}

.c-burger-menu__nav-link {
  color: #fff;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}

.c-burger-menu__nav-en {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-en {
    font-size: 1.7rem;
    letter-spacing: 0.22em;
  }
}

.c-burger-menu__sns {
  width: 3.2rem;
  opacity: 0.6;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__sns {
    width: 2.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title {
  color: #8197A8;
  font-size: 3.6rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 900px) {
  .c-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 2.8ren;
  }
}

.c-title--lg {
  font-size: 4.4rem;
}
@media screen and (max-width: 900px) {
  .c-title--lg {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--lg {
    font-size: 3rem;
  }
}

/*------------------------------------------------------------------------------
  c-card
------------------------------------------------------------------------------*/
.c-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.6rem 2.6%;
}
@media screen and (max-width: 900px) {
  .c-card-wrap {
    gap: 3.6rem 4%;
  }
}
@media screen and (max-width: 767px) {
  .c-card-wrap {
    gap: 2.4rem 4%;
  }
  .c-card-wrap.u-mt-8 {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 520px) {
  .c-card-wrap {
    gap: 3.2rem 0;
  }
}
.c-card-wrap .c-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.6%;
          flex: 0 1 31.6%;
}
@media screen and (max-width: 900px) {
  .c-card-wrap .c-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media screen and (max-width: 520px) {
  .c-card-wrap .c-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.c-card__link {
  display: block;
}
.c-card__link:hover .c-card__img img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
@media screen and (max-width: 767px) {
  .c-card__link:hover .c-card__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.c-card__link:hover .c-card__title {
  text-decoration: underline;
}

.c-card__img {
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-card__img {
    margin-bottom: 1.4rem;
  }
}
.c-card__img img {
  aspect-ratio: 1/1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.c-card__taxonomy {
  color: #8197A8;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-card__taxonomy {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    gap: 0.2rem 1.2rem;
    margin-bottom: 0.6rem;
  }
}

.c-card__title {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb__list {
  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;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 28px;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  position: absolute;
  top: 8px;
  right: -26px;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}
@media screen and (max-width: 1023px) {
  .c-breadcrumb__item:not(:last-child)::after {
    top: 5.5px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    font-size: 0.9rem;
    top: 5px;
    right: -19px;
  }
}

.c-breadcrumb__link {
  color: #333;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.02em;
  display: inline-block;
  opacity: 0.8;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.02em;
  }
}
.c-breadcrumb__link:hover {
  color: #8197A8;
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-filter
------------------------------------------------------------------------------*/
.c-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -2.4rem;
  gap: 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .c-filter {
    margin: 0 -1.6rem;
    gap: 1.6rem 0;
  }
}

.c-filter__item {
  color: #959595;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-filter__item {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    padding: 0 1.6rem;
  }
}
.c-filter__item:not(:last-child) {
  border-right: 1px solid #D3DAE1;
}
.c-filter__item.is-active {
  color: #8197A8;
  font-weight: 600;
}
.c-filter__item.is-active > span {
  border-bottom: 1px solid #8197A8;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .c-pagination.u-mt-9 {
    margin-top: 4rem !important;
  }
}
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers li {
    margin: 0 0.3rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers a {
  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;
  color: #8197A8;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43px;
  height: 43px;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 1px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #8197A8;
  opacity: 1;
}
.c-pagination .page-numbers .dots {
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 1.25rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .dots {
    width: 26px;
  }
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .prev,
  .c-pagination .page-numbers .next {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------------------
  c-anchor-nav
------------------------------------------------------------------------------*/
.c-anchor-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem 4rem;
}
@media screen and (max-width: 767px) {
  .c-anchor-nav__list {
    gap: 2rem 2rem;
  }
}

.c-anchor-nav__link {
  color: #8197A8;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7;
  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;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-right: 2.4rem;
  min-width: 26rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-anchor-nav__link {
    font-size: 1.4rem;
    padding-bottom: 0.8rem;
    min-width: 22rem;
  }
}
@media screen and (max-width: 520px) {
  .c-anchor-nav__link {
    width: 100%;
  }
}
.c-anchor-nav__link:hover {
  opacity: 1;
}
.c-anchor-nav__link:hover::before {
  width: 100%;
}
.c-anchor-nav__link:hover::after {
  top: 46.5%;
}
.c-anchor-nav__link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 1.6rem;
  height: 1px;
  background-color: #8197A8;
  display: block;
  -webkit-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out;
}
.c-anchor-nav__link::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-B.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-anchor-nav__link::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-prose
------------------------------------------------------------------------------*/
.c-prose h2 {
  color: #8197A8;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  border-left: 4px solid #8197A8;
}
.c-prose h2[style*="text-align: center"], .c-prose h2.has-text-align-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-prose h2[style*="text-align: right"], .c-prose h2.has-text-align-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .c-prose h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-prose h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    border-width: 3px;
    padding-left: 1.2rem;
  }
}
.c-prose h3 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(105, 159, 187, 0.5);
}
@media screen and (max-width: 767px) {
  .c-prose h3 {
    font-size: 1.7rem;
  }
}
.c-prose h4 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-prose h4 {
    font-size: 1.6rem;
  }
}
.c-prose h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-prose h5 {
    font-size: 1.5rem;
  }
}
.c-prose h2,
.c-prose h3,
.c-prose h4,
.c-prose h5,
.c-prose a,
.c-prose p,
.c-prose ul,
.c-prose ol,
.c-prose dl,
.c-prose .wp-block-table,
.c-prose .wp-block-image,
.c-prose .wp-block-media-text,
.c-prose .wp-block-gallery {
  line-height: 2;
  margin: 1.5em 0;
}
.c-prose ul {
  list-style-type: disc;
  list-style-position: inside;
}
.c-prose ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-prose ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.2em;
}
.c-prose ol li {
  text-indent: 0;
  padding-left: 0.3em;
}
.c-prose a:not([class]) {
  color: #09099C;
  text-decoration: underline;
}
.c-prose .wp-block-table table {
  width: 100%;
  table-layout: auto;
}
.c-prose .wp-block-table td,
.c-prose .wp-block-table th {
  min-width: 7rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-prose .wp-block-table td,
  .c-prose .wp-block-table th {
    min-width: 3rem;
    white-space: normal;
  }
}
.c-prose table td:first-child,
.c-prose table th:first-child {
  min-width: 8rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-prose table td:first-child,
  .c-prose table th:first-child {
    min-width: 5rem;
    white-space: normal;
  }
}
.c-prose .wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose .wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose .wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose .wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose figure.wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose figure.wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose figure.wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose figure.wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose img.aligncenter {
  margin-inline: auto;
  display: block;
}
.c-prose img.alignright {
  margin-inline: auto 0;
  display: block;
}
.c-prose img.alignleft {
  margin-inline: 0 auto;
  display: block;
}
.c-prose .rl-gallery-container a {
  margin: 0;
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  width: 100%;
  height: 100vh;
  margin-bottom: 22.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-bottom: 12.8rem;
  }
}

.p-mv__logo {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  width: 17.8rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 14.4rem;
  }
}

.p-mv__slider {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  z-index: 0;
}
.p-mv__slider .swiper-wrapper {
  overflow: hidden;
}
.p-mv__slider .slide-img {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.135);
            transform: scale(1.135);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.135);
            transform: scale(1.135);
  }
}
.p-mv__slider .swiper-slide-active .slide-img,
.p-mv__slider .swiper-slide-duplicate-active .slide-img,
.p-mv__slider .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 6s linear 0s normal both;
          animation: zoomUp 6s linear 0s normal both;
}

/*------------------------------------------------------------------------------
  p-top-about
------------------------------------------------------------------------------*/
.p-top-about__contents {
  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: 767px) {
  .p-top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-about__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 56rem;
          flex: 0 1 56rem;
  margin-top: 3.6rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__text-wrap {
    margin-top: 0;
    padding-right: 0;
    display: contents;
  }
}

.p-top-about__title {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__title {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
    margin-bottom: 2.8rem;
  }
}

.p-top-about__title-en {
  color: #8197A8;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .p-top-about__title-en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__title-en {
    font-size: 1.4rem;
  }
}
.p-top-about__title-en span {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__title-en span {
    padding-right: 1.4rem;
  }
}
.p-top-about__title-en span::after {
  content: "";
  position: absolute;
  top: 1.3rem;
  right: -4.8rem;
  background-color: #8197A8;
  width: 4.8rem;
  height: 1px;
  opacity: 0.55;
}
@media screen and (max-width: 900px) {
  .p-top-about__title-en span::after {
    top: 1rem;
    right: -4rem;
    width: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__title-en span::after {
    top: 0.8rem;
    right: -3.2rem;
    width: 3.2rem;
  }
}

.p-top-about__title-ja {
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 900px) {
  .p-top-about__title-ja {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__title-ja {
    font-size: 2.4rem;
  }
}

.p-top-about__lead {
  color: #383838;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 1100px) {
  .p-top-about__lead {
    font-size: 1.9rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 900px) {
  .p-top-about__lead {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__lead {
    font-size: 1.6rem;
    letter-spacing: 0.12rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 2rem;
  }
  .p-top-about__lead br {
    display: none;
  }
}

.p-top-about__texts {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__texts {
    margin-bottom: 3.2rem;
  }
}
.p-top-about__texts p {
  line-height: 2.4;
  letter-spacing: 0.1em;
}
.p-top-about__texts p:not(:last-child) {
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__texts p:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}

.p-top-about__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 56.7rem;
          flex: 0 1 56.7rem;
  margin-right: -12rem;
}
@media screen and (max-width: 1340px) {
  .p-top-about__img {
    margin-right: -7vw;
  }
}
@media screen and (max-width: 1100px) {
  .p-top-about__img {
    margin-right: -2rem;
  }
}
@media screen and (max-width: 900px) {
  .p-top-about__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48rem;
            flex: 0 1 48rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

/*------------------------------------------------------------------------------
  p-top-service
------------------------------------------------------------------------------*/
.p-top-service {
  background-color: #F2F5F6;
  padding: 22.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding: 12.8rem 0;
  }
}

.p-top-service__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-wrap {
    margin-top: 3.2rem;
    display: block;
  }
}

.p-top-service__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.18%;
          flex: 0 1 48.18%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D0D9DF;
  padding: 4rem;
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-top-service__card {
    padding: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__card {
    padding: 2rem 2rem 2.8rem;
  }
  .p-top-service__card:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
.p-top-service__card:hover {
  opacity: 0.8;
}
.p-top-service__card:hover .p-top-service__card-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .p-top-service__card:hover .p-top-service__card-img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-top-service__card:hover .p-top-service__card-btn {
  padding-right: 4.8rem;
}
.p-top-service__card:hover .p-top-service__card-btn::after {
  right: -4px;
}

.p-top-service__card-img {
  width: 100%;
  margin-bottom: 3.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-img {
    margin-bottom: 2.4rem;
  }
}
.p-top-service__card-img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-top-service__card-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 900px) {
  .p-top-service__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__card-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.p-top-service__card-text {
  font-size: 1.5rem;
  line-height: 2.1;
  letter-spacing: 0.12em;
  text-align: justify;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 900px) {
  .p-top-service__card-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__card-text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1.2rem;
  }
}

.p-top-service__card-btn {
  color: #8197A8;
  font-weight: normal;
  letter-spacing: 0.16em;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  display: block;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-right: 5.4rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-btn {
    padding-right: 4.8rem;
  }
}
.p-top-service__card-btn::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  background-image: url(../img/arrow-R.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 9px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-btn::after {
    top: 1px;
    width: 34px;
    height: 8px;
  }
}

/*------------------------------------------------------------------------------
  p-top-works
------------------------------------------------------------------------------*/
.p-top-works__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5rem;
  width: calc(120rem + (100% - 120rem) / 2);
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .p-top-works__inner {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-top-works__inner {
    padding-left: 2rem;
  }
}

.p-top-works__slider {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
  margin-top: 4rem;
  margin-bottom: 6.4rem;
  overflow: hidden;
}
.p-top-works__slider.swiper-initialized {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-top-works__slider {
    margin-top: 3.2rem;
    margin-bottom: 5.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-top-info
------------------------------------------------------------------------------*/
.p-top-info__contents {
  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: 767px) {
  .p-top-info__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-info__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__heading {
    display: contents;
    padding-right: 0;
  }
}
.p-top-info__heading .c-title {
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__heading .c-title {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-info__heading .c-btn-line {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.p-top-info__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 67rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__list {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    max-width: 100%;
    margin-bottom: 3.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-page-mv
------------------------------------------------------------------------------*/
.p-page-mv {
  margin-top: 24rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv {
    margin-top: 20rem;
  }
}
.p-page-mv .c-breadcrumb {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv .c-breadcrumb {
    margin-top: 1.4rem;
  }
}

.p-page-mv__inner {
  max-width: 138rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv__inner {
    display: block;
  }
}

.p-page-mv__title-ja {
  color: #8197A8;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: 0.15em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.2em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-ja {
    font-size: 1.2rem;
    padding-left: 0.1rem;
    margin-bottom: 0.8rem;
  }
}

.p-page-mv__title-en {
  font-size: 4.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-en {
    font-size: 3.6rem;
    letter-spacing: 0.1em;
  }
}
.p-page-mv__title-en::first-letter {
  text-transform: uppercase;
}

.p-page-mv__line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #D9D9D9;
  height: 1px;
  display: block;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv__line {
    margin-top: 2.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-concept
------------------------------------------------------------------------------*/
.p-concept {
  margin-bottom: 15.2rem;
}
@media screen and (max-width: 767px) {
  .p-concept {
    margin-bottom: 9.6rem;
  }
}

.p-concept__inner {
  max-width: 131rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
}
@media screen and (min-width: 1500px) {
  .p-concept__inner {
    max-width: 138rem;
    padding: 0 2rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__inner {
    padding-left: 2rem;
  }
}

.p-concept__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-concept__contents {
    display: block;
  }
}

.p-concept__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51.2%;
          flex: 0 1 51.2%;
  margin-right: 7rem;
}
@media screen and (max-width: 1100px) {
  .p-concept__img {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .p-concept__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
    margin-right: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__img {
    margin: 0 0 3.2rem;
  }
}

.p-concept__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 52rem;
  margin-top: 5.6rem;
}
@media screen and (max-width: 1100px) {
  .p-concept__text-wrap {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__text-wrap {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 0;
  }
}

.p-concept__texts {
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-concept__texts {
    line-height: 1.9;
    letter-spacing: 0.07em;
    margin-top: 2.8rem;
  }
}
.p-concept__texts p:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-concept__texts p:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-overview
------------------------------------------------------------------------------*/
.p-overview__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-overview__contents {
    display: block;
    margin-top: 4rem;
  }
}

.p-overview__detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-overview__detail {
    padding-right: 0;
  }
  .p-overview__detail:first-child {
    margin-bottom: 3.2rem;
  }
}

.p-overview__detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-overview__detail-item:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-overview__detail-item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
.p-overview__detail-item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20rem;
          flex: 0 1 20rem;
  margin-right: 2.4rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .p-overview__detail-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 16rem;
            flex: 0 1 16rem;
  }
}
@media screen and (max-width: 900px) {
  .p-overview__detail-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 15rem;
            flex: 0 1 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-overview__detail-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12.8rem;
            flex: 0 1 12.8rem;
    margin-right: 1.6rem;
  }
}
.p-overview__detail-item dt span {
  background-color: #fff;
  padding-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-overview__detail-item dt span {
    padding-right: 1.6rem;
  }
}
.p-overview__detail-item dt::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E8E8E8;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .p-overview__detail-item dt::before {
    top: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-overview__detail-item dt::before {
    top: 1.2rem;
  }
}
.p-overview__detail-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-overview__detail-item dd > span {
    display: inline-block !important;
  }
}

/*------------------------------------------------------------------------------
  p-service
------------------------------------------------------------------------------*/
.p-service-wrap {
  margin-top: 18.4rem;
}
@media screen and (max-width: 767px) {
  .p-service-wrap {
    margin-top: 9.6rem;
  }
}

.p-service {
  position: relative;
}
.p-service:not(:last-child) {
  margin-bottom: 28rem;
}
@media screen and (max-width: 767px) {
  .p-service:not(:last-child) {
    margin-bottom: 9.6rem;
  }
}

.p-service__number {
  position: absolute;
  top: -5.6rem;
  left: 0.8rem;
  color: #8197A8;
  font-size: 11.2rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: "DM Sans", sans-serif;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service__number {
    font-size: 5.6rem;
    top: -2.8rem;
    left: 0.6rem;
  }
}

.p-service__img {
  width: 100%;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    margin-bottom: 2rem;
  }
}

.p-service__title {
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-service__title {
    margin-bottom: 1.2rem;
  }
}

.p-service__title-en {
  color: #8197A8;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.12em;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-service__title-en {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }
}
.p-service__title-en span {
  position: relative;
}
.p-service__title-en span::before {
  content: "";
  position: absolute;
  top: 55%;
  right: -5.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 0.5px;
  background-color: #8197A8;
}
@media screen and (max-width: 767px) {
  .p-service__title-en span::before {
    top: 50%;
    right: -4.2rem;
    width: 3.2rem;
  }
}

.p-service__title-ja {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-service__title-ja {
    font-size: 2rem;
  }
}

.p-service__text {
  line-height: 2.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    line-height: 2;
    text-align: justify;
  }
  .p-service__text br {
    display: none;
  }
}

/*------------------------------------------------------------------------------
  p-workflow
------------------------------------------------------------------------------*/
.p-workflow {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-workflow {
    margin-top: 4.2rem;
  }
}
.p-workflow .c-title {
  margin-bottom: -0.6rem;
}

.p-workflow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #B9C6CF;
  padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-workflow__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3.2rem 0;
  }
}
.p-workflow__item:first-child {
  border-top: 1px solid #B9C6CF;
}

.p-workflow__number {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14.6rem;
          flex: 0 0 14.6rem;
  color: #8197A8;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "DM Sans", sans-serif;
  padding-top: 0.4rem;
  display: block;
}
@media screen and (max-width: 900px) {
  .p-workflow__number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9rem;
            flex: 0 0 9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5.4rem;
            flex: 0 0 5.4rem;
    font-size: 2.8rem;
    padding-top: 0.2rem;
  }
}

.p-workflow__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40.4rem;
          flex: 0 0 40.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
}
@media screen and (max-width: 1100px) {
  .p-workflow__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36rem;
            flex: 0 0 36rem;
  }
}
@media screen and (max-width: 900px) {
  .p-workflow__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34rem;
            flex: 0 0 34rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -ms-flex: 0 1 calc(100% - 5.4rem);
        flex: 0 1 calc(100% - 5.4rem);
    font-size: 1.6rem;
    padding-right: 0;
  }
}

.p-workflow__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
  letter-spacing: 0.09em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-workflow__texts {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-top: 0.8rem;
    line-height: 1.9;
  }
}
.p-workflow__texts a {
  color: #8197A8;
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  p-info-list
------------------------------------------------------------------------------*/
.p-info-list__item:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-info-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}

.p-info-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-info-list__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3.2rem 0;
    border-bottom: 1px solid #CCD5DC;
  }
}
.p-info-list__link:hover {
  opacity: 0.75;
}
.p-info-list__link:hover .p-info-list__title {
  text-decoration: underline;
}

.p-info-list__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.2rem;
          flex: 0 0 11.2rem;
  color: #4F4F4F;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  border-right: 1px solid #CCD5DC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-info-list__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.8rem;
            flex: 0 0 7.8rem;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    font-size: 1.8rem;
    min-height: 0rem;
    margin-right: 2rem;
    border: none;
  }
}

.p-info-list__year {
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
  letter-spacing: 0.2em;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-info-list__year {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
}

.p-info-list__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #8197A8;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.5;
  min-width: 8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.6rem;
  padding-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-info-list__category {
    font-size: 1.4rem;
    padding-top: 1.3rem;
  }
}

.p-info-list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  padding-top: 2rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-info-list__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 1.5rem;
    padding-top: 0.8rem;
  }
}
.p-info-list__title::after {
  content: "";
  position: absolute;
  top: 2.35rem;
  top: 69%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-R.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 15px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-info-list__title::after {
    top: 64%;
    width: 11px;
    height: 13px;
  }
}

/*------------------------------------------------------------------------------
  p-article
------------------------------------------------------------------------------*/
.p-article {
  margin: 12rem 0 22.4rem;
}
@media screen and (max-width: 767px) {
  .p-article {
    margin: 8.8rem 0 11.2rem;
  }
}
.p-article .c-breadcrumb {
  margin-left: 5rem;
}
@media screen and (max-width: 900px) {
  .p-article .c-breadcrumb {
    margin-left: 2rem;
  }
}

.p-article__container {
  max-width: 100rem;
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-article__container {
    margin-top: 6.4rem;
  }
}

.p-article__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 0.8rem;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 3.2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-article__heading {
    gap: 0.6rem 0.4rem;
    padding-bottom: 2.4rem;
    margin-bottom: 3.2rem;
  }
}

.p-article__date {
  color: #4F4F4F;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-article__date {
    font-size: 1.3rem;
    margin-right: 2rem;
  }
}

.p-article__category {
  color: #8197A8;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-top: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-article__category {
    font-size: 1.3rem;
  }
}

.p-article__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-article__title {
    font-size: 2rem;
  }
}

.p-article__contents {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-article__contents {
    margin-bottom: 4rem;
  }
}

.p-article__main-img {
  margin-bottom: 3.2rem;
}

.p-article__taxonomy {
  color: #8197A8;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-article__taxonomy {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    gap: 0.6rem 1.6rem;
    margin-bottom: 0.6rem;
  }
}

.p-article--works .p-article__title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .p-article--works .p-article__title {
    font-size: 1.9rem;
  }
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact__text {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*------------------------------------------------------------------------------
  p-contact-form
------------------------------------------------------------------------------*/
.p-contact-form {
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 4.8rem;
  }
}

.p-contact-form__list {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item {
  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: 767px) {
  .p-contact-form__item {
    display: block;
  }
}
.p-contact-form__item:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}

.p-contact-form__item-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28.4rem;
          flex: 0 1 28.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-contact-form__item-heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 24rem;
            flex: 0 1 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-heading {
    padding-right: 0;
    margin: 0 0 1.2rem;
  }
}

.p-contact-form__required {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  background-color: #8197A8;
  text-align: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: inline-block;
  border-radius: 1px;
  padding: 0.6rem 1.2rem;
  margin-top: 0.4rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__required {
    margin-top: 0.1rem;
    margin-right: 1.4rem;
  }
}
.p-contact-form__required.--any {
  background-color: #aaa;
}

.p-contact-form__item-title {
  font-size: 1.7rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    font-size: 1.4rem;
  }
}

.p-contact-form__input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #333;
  font-size: 1.6rem !important;
  width: 100%;
  padding: 14px 12px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #E6E6E6;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::placeholder,
  .p-contact-form__input-wrap input[type=email]::placeholder,
  .p-contact-form__input-wrap input[type=tel]::placeholder,
  .p-contact-form__input-wrap select::placeholder,
  .p-contact-form__input-wrap textarea::placeholder {
    font-size: 1.4rem;
  }
}
.p-contact-form__input-wrap textarea {
  resize: none;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 20rem;
  }
}
.p-contact-form__input-wrap input[type=radio],
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #E6E6E6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
}
.p-contact-form__input-wrap input[type=radio]:checked,
.p-contact-form__input-wrap input[type=checkbox]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  outline: none !important;
  outline-offset: none;
  border-radius: 50%;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.p-contact-form__agree {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  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;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 1.4rem;
    margin-bottom: 4.8rem;
  }
}
.p-contact-form__agree input {
  margin-right: 1.4rem;
}
.p-contact-form__agree a {
  text-decoration: underline;
}

.p-contact-form__btn {
  height: 5.2rem;
  width: 100%;
  max-width: 41rem;
  margin: 0 auto;
  display: block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn {
    height: 4.6rem;
  }
  .p-contact-form__btn:hover {
    opacity: 1;
    color: #fff;
    background-color: #8197A8;
  }
}
.p-contact-form__btn input[type=submit] {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
}
.p-contact-form__btn input[type=submit]:hover {
  color: #8197A8;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit]:hover {
    color: #fff;
    background-color: #8197A8;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit] {
    font-size: 1.6rem;
  }
}
.p-contact-form__btn:has(:disabled) {
  opacity: 0.4;
  background: #999;
}
.p-contact-form__btn:has(:disabled):hover::before {
  content: none;
}
.p-contact-form__btn:has(:disabled):hover input[type=submit] {
  color: #fff;
}

.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}

.p-contact-form__radio-wrap .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap .wpcf7-radio {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap .wpcf7-radio label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

/*------------------------------------------------------------------------------
  privacy-policy
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #8197A8;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

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

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mt-8 {
  margin-top: 64px !important;
}

.u-mt-9 {
  margin-top: 72px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

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

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */