@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
html.js-open {
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 519px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  background: #DFE5E2;
  font-family: "Noto Sans JP", sans-serif;
  color: #31494A;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
}
body.js-open {
  overflow: hidden;
  height: 100%;
}

a {
  text-decoration: none;
  color: #31494A;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

/*=========================================================================
# アニメーション
========================================================================= */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* 遅延付きクラス */
.scroll_up--01.on {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.scroll_up--02.on {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.scroll_up--03.on {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-header {
  position: fixed;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 103;
  padding-left: 1.5625vw;
  padding-right: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
    padding-left: 20px;
    padding-right: 16px;
  }
}

.l-header__container {
  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;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .l-header__container {
    height: 60px;
    width: 100%;
  }
}

.l-header__logoMark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__logoMark {
    gap: 12px;
  }
}
.l-header__logoMark svg {
  width: 83px;
  height: auto;
  aspect-ratio: 83/53;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__logoMark svg {
    width: 46px;
  }
}
.l-header__logoMark.white svg {
  fill: #FFFFFF;
}

.l-header__logoText {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .l-header__logoText {
    font-size: 10px;
  }
}
.l-header__logoText.js-white {
  color: #FFFFFF !important;
}

.l-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 80px;
    position: fixed;
    top: 60px;
    right: -120%;
    width: 300px;
    height: calc(100svh - 60px);
    z-index: 103;
    background: #CDC4BA;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .l-header__wrapper.js-open {
    right: 0;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-header__link {
  font-family: "century-gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  position: relative;
}
.l-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  bottom: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__link:hover::after {
  visibility: visible;
  bottom: -6px;
  opacity: 1;
}

.l-header__btn a {
  display: inline-block;
  width: 130px;
  text-align: center;
  height: 34px;
  line-height: 34px;
  font-family: "century-gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  background: #000000;
  border: 1px solid #000000;
}
.l-header__btn a:hover {
  background: #FFFFFF;
  color: #000000;
  opacity: 1;
}

.l-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__tel {
  display: grid;
  place-content: center;
  background: #31494A;
  width: 60px;
}
.l-header__tel img {
  width: 25px;
}

.l-header__mail {
  display: grid;
  place-content: center;
  background: #4680ad;
  width: 60px;
}
.l-header__mail img {
  width: 25px;
}

@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}

.l-main--top {
  overflow: hidden;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: inherit;
  padding: 0 2.5rem;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 560px;
    padding: 0 18px;
  }
}
.l-inner--middle {
  max-width: 1220px;
}
@media screen and (max-width: 767px) {
  .l-inner--middle {
    width: 100%;
    max-width: 560px;
    padding: 0 18px;
  }
}
.l-inner--narrow {
  max-width: 1120px;
}
@media screen and (max-width: 767px) {
  .l-inner--narrow {
    width: 100%;
    max-width: 560px;
    padding: 0 18px;
  }
}
.l-inner--wide {
  max-width: 1380px;
}
@media screen and (max-width: 767px) {
  .l-inner--wide {
    width: 100%;
    max-width: 560px;
    padding: 0 18px;
  }
}
.l-inner .ashirai-head01 {
  position: absolute;
  width: 320px;
  bottom: -160px;
  right: -240px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai-head01 {
    width: 200px;
    bottom: 0;
    right: -110px;
  }
}
.l-inner .ashirai-head02 {
  position: absolute;
  width: 100px;
  top: -20px;
  left: -110px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai-head02 {
    width: 50px;
    top: 0;
    left: -40px;
  }
}
.l-inner .ashirai-head02--up {
  z-index: 2;
  top: 0;
}
.l-inner .ashirai-head03 {
  position: absolute;
  width: 90px;
  bottom: 90px;
  left: -20px;
  z-index: 2;
  -webkit-animation: fuwafuwa01 2.5s infinite;
          animation: fuwafuwa01 2.5s infinite;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai-head03 {
    width: 30px;
    bottom: 20px;
    left: 10px;
  }
}
.l-inner .ashirai-head04 {
  position: absolute;
  width: 180px;
  bottom: -20px;
  left: 90px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai-head04 {
    width: 80px;
    bottom: -10px;
    left: 50px;
  }
}
.l-inner .ashirai03 {
  position: absolute;
  width: 100px;
  bottom: 100px;
  right: 0px;
  -webkit-animation: fuwafuwa01 2.5s infinite;
          animation: fuwafuwa01 2.5s infinite;
}
.l-inner .ashirai04 {
  position: absolute;
  width: 300px;
  top: -200px;
  left: -220px;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai04 {
    width: 180px;
    top: -180px;
    left: -100px;
  }
}
.l-inner .ashirai04--up {
  z-index: 2;
}
.l-inner .ashirai05 {
  position: absolute;
  width: 200px;
  top: 200px;
  right: -200px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai05 {
    width: 160px;
    top: 160px;
    right: -160px;
  }
}
.l-inner .ashirai06 {
  position: absolute;
  width: 60px;
  top: 100px;
  left: -120px;
  rotate: 90deg;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai06 {
    width: 30px;
    top: -80px;
    left: 0;
  }
}
.l-inner .ashirai06--up {
  z-index: 2;
}
.l-inner .ashirai07 {
  position: absolute;
  width: 240px;
  top: 240px;
  right: -240px;
  z-index: -1;
}
.l-inner .ashirai07--up {
  z-index: 2;
}
.l-inner .ashirai08 {
  position: absolute;
  width: 300px;
  top: 100px;
  left: -220px;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai08 {
    width: 200px;
    left: -100px;
  }
}
.l-inner .ashirai08--up {
  z-index: 2;
}
.l-inner .ashirai09 {
  position: absolute;
  width: 200px;
  top: 100px;
  right: -200px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai09 {
    width: 160px;
    top: 0;
    right: -130px;
  }
}
.l-inner .ashirai09--up {
  z-index: 2;
}
.l-inner .ashirai10 {
  position: absolute;
  width: 120px;
  top: 240px;
  left: -160px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-inner .ashirai10 {
    top: 120px;
    left: -120px;
  }
}
.l-inner .ashirai10--up {
  z-index: 2;
}

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

@keyframes fuwafuwa01 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes fuwafuwa02 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes fuwafuwa02 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.c-btn {
  display: inline-block;
  width: 240px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #31494A;
  border: 1px solid #31494A;
  font-family: "century-gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 150px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
  }
}
.c-btn span {
  font-size: 14px;
}
.c-btn--wide {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .c-btn--wide {
    width: 150px;
  }
}
.c-btn--whiteBorder {
  border-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .c-btn--tel {
    font-size: 14px;
    height: 43px;
    line-height: 15px;
    padding-top: 8px;
  }
  .c-btn--tel span {
    font-size: 10px;
    display: block;
    line-height: 15px;
  }
}
.c-btn--drawer {
  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: 150px;
  line-height: 15px;
  min-height: 38px;
  height: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: "century-gothic", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 12px;
}
.c-btn--drawer--tel {
  font-size: 14px;
}
.c-btn--drawer--tel span {
  font-size: 10px;
}
.c-btn:hover {
  color: #31494A;
  background: #FFFFFF;
  opacity: 1;
}

.c-lead {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 26px;
  }
}

.c-lead__text {
  margin-top: 40px;
}
.c-lead__text p {
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .c-lead__text p {
    font-size: 14px;
  }
}
.c-lead__text p + p {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .c-lead__text p + p {
    margin-top: 14px;
  }
}

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

.c-head__en {
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  color: #CDC4BA;
  text-align: center;
  font-size: 60px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-head__en {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.c-head__en--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-head__en--left {
    text-align: center;
  }
  .c-head__en--left::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-head__en--under {
  color: #31494A;
}

.c-head__ttl {
  padding-top: 20px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-head__ttl {
    padding-top: 14px;
    font-size: 13px;
  }
}
.c-head__ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 53px;
  height: 3px;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .c-head__ttl::after {
    width: 26px;
    height: 2px;
  }
}
.c-head__ttl--left {
  text-align: left;
}
.c-head__ttl--left::after {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .c-head__ttl--left::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-head__ttl--under {
  color: #31494A;
  line-height: 1.9285714286;
}
.c-head__ttl--under::after {
  background: #CDC4BA;
}

.c-breadcrumb {
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  margin-top: 50px;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 6px 26px;
  font-size: 14px;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.c-breadcrumb .home {
  color: #AAAAAA;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 8px;
}
.c-breadcrumb .post {
  margin-left: 8px;
}
.c-breadcrumb .post-post {
  margin-right: 8px;
}
.c-breadcrumb .post-page {
  margin-right: 8px;
}
.c-breadcrumb .current-item {
  margin-left: 8px;
}

.c-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-loop {
    gap: 17px;
  }
}

.c-loop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .c-loop__list {
    gap: 17px;
  }
}
.c-loop__list--left {
  -webkit-animation: infinity-scroll-left 60s infinite linear 0.5s both;
          animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
@media screen and (max-width: 767px) {
  .c-loop__list--left {
    -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
            animation: infinity-scroll-left 30s infinite linear 0.5s both;
  }
}
.c-loop__list--right {
  -webkit-animation: infinity-scroll-right 60s infinite linear 0.5s both;
          animation: infinity-scroll-right 60s infinite linear 0.5s both;
}
@media screen and (max-width: 767px) {
  .c-loop__list--right {
    -webkit-animation: infinity-scroll-right 30s infinite linear 0.5s both;
            animation: infinity-scroll-right 30s infinite linear 0.5s both;
  }
}

.c-loop__item {
  width: 34.3055555556vw;
  height: auto;
  aspect-ratio: 498/350;
}
@media screen and (max-width: 767px) {
  .c-loop__item {
    width: 67.4418604651vw;
  }
}
.c-loop__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.c-section-ttl {
  text-align: center;
  background: #CDC4BA;
  color: #FFFFFF;
  padding: 22px;
  border-radius: 999px;
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-section-ttl {
    font-size: 22px;
  }
}

.p-drawer__iconWrap {
  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;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid #31494A;
}
.p-drawer__iconWrap.white {
  border: 1px solid #FFFFFF;
}
.p-drawer__iconWrap.js-open {
  border: 1px solid #FFFFFF;
}

.p-drawer__icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}
.p-drawer__icon .bar {
  width: 14px;
  height: 1px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  left: 14px;
}
.p-drawer__icon .bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-drawer__icon .bar2 {
  display: none;
}
.p-drawer__icon .bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-drawer__icon.js-open {
  display: block;
}

.p-drawer__iconMenu {
  font-family: "baskerville-no2", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-drawer__iconMenu.white {
  color: #FFFFFF;
}
.p-drawer__iconMenu.js-open {
  display: none;
}

.p-drawer__bg {
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100svh;
  z-index: 101;
  background: #DFE5E2;
  opacity: 0;
}
.p-drawer__bg.js-open {
  right: 0;
  opacity: 0.9;
}

.p-drawer__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__menu {
    display: block;
    padding-top: 100px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100;
    overflow: auto;
    z-index: 102;
    background: #31494A;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .p-drawer__menu.js-open {
    right: 0;
  }
}

.p-drawer__circle {
  position: absolute;
  width: auto;
  aspect-ratio: 1;
  height: 300px;
  top: -100px;
  right: -100px;
}
.p-drawer__circle img {
  width: 100%;
  height: 100%;
}

.p-drawer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 50px;
}
.p-drawer__link a {
  display: inline-block;
  padding-left: 15px;
  font-family: "century-gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
}
.p-drawer__link a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 7px;
  height: 2px;
  background: #FFFFFF;
}

.p-drawer__head {
  margin-top: 65px;
  position: relative;
}
.p-drawer__head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: calc(100% - 110px);
  height: 1px;
  background: #FFFFFF;
}
.p-drawer__head span {
  font-size: 20px;
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  width: 110px;
}

.p-drawer__wrapper {
  margin-top: 18px;
  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;
  gap: 12px;
}

.p-drawer__contact {
  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;
}

.p-drawer__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100px;
}
.p-drawer__meta img {
  height: 17px;
}
.p-drawer__meta p {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  color: #CDC4BA;
}

.p-drawer__btn a {
  width: 150px;
  min-height: 36px;
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
}

.p-cta {
  padding-top: 100px;
  padding-bottom: 140px;
  position: relative;
  border-bottom: 1px solid #CDC4BA;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.p-cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-cta__wrapper {
    -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-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .p-cta__body {
    gap: 20px;
  }
}

.p-cta__card {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 92px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__card {
    height: 82px;
  }
}
.p-cta__card:first-of-type::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -60px;
  width: 1px;
  height: 100%;
  background: #CDC4BA;
}
@media screen and (max-width: 767px) {
  .p-cta__card:first-of-type::before {
    display: none;
  }
}

.p-cta__ttl {
  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;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl {
    gap: 14px;
  }
}
.p-cta__ttl img {
  height: 18px;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl img {
    height: 16px;
  }
}
.p-cta__ttl p {
  color: #CDC4BA;
  font-size: 20px;
  font-family: "century-gothic", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl p {
    font-size: 16px;
  }
}

.p-footer {
  background: #31494A;
  position: relative;
  overflow: hidden;
}

.p-footer__circle {
  position: absolute;
  width: auto;
  height: 820px;
  aspect-ratio: 1;
  top: -420px;
  left: calc(50% + 600px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-footer__circle {
    height: 300px;
    top: -130px;
    right: -130px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: unset;
  }
}
.p-footer__circle img {
  width: 100%;
  height: 100%;
}

.p-footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  margin-top: 45px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 22px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-footer__upper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: radial-gradient(circle, #cdc4ba 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 9px 2px;
}

.p-footer__logo svg {
  fill: #FFFFFF;
  width: 103px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo svg {
    width: 72px;
  }
}

.p-footer__text {
  color: #FFFFFF;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: 10px;
  }
}

.p-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 48px;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding-top: 30px;
    gap: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.p-footer__name {
  color: #FFFFFF;
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__name {
    font-size: 17px;
  }
}

.p-footer__address {
  margin-top: 16px;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    margin-top: 10px;
    font-size: 10px;
  }
}

.p-footer__privacy {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    font-size: 12px;
  }
}

.p-footer__copy {
  margin-top: 36px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 6px;
    padding-bottom: 22px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-footer__copy small {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-footer__copy small {
    font-size: 10px;
  }
}

.p-page-fv {
  padding-top: 220px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-fv {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.p-page-fv--single {
  background: #FFFFFF;
  position: relative;
}
.p-page-fv--single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #DFE5E2;
  border-radius: 0 0 100px 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-fv--single::before {
    border-radius: 0 0 50px 0;
  }
}
.p-page-fv--single .l-inner {
  position: relative;
  z-index: 2;
}

.p-page-fv__head p {
  font-family: "century-gothic", sans-serif;
  color: #31494A;
  font-size: 40px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-page-fv__head p {
    font-size: 38px;
  }
}
.p-page-fv__head h1 {
  margin-top: 18px;
  font-size: 60px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-fv__head h1 {
    font-size: 35px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-fv__head--under p {
    font-size: 26px;
  }
  .p-page-fv__head--under h1 {
    font-size: min(26px, 6.9333333333vw);
  }
}

.p-page-fv__lead {
  margin-top: 50px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-page-fv__lead {
    margin-top: 30px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-fv__lead--under {
    font-size: 18px;
  }
}

.p-page-fv__thumb {
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
  height: 600px;
}
@media screen and (max-width: 767px) {
  .p-page-fv__thumb {
    height: 200px;
  }
}
.p-page-fv__thumb img {
  border-radius: 50px 0 0 50px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-page-fv__thumb img {
    border-radius: 20px 0 0 20px;
  }
}

.page-fv__bigText {
  position: absolute;
  top: 220px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-fv__bigText {
    top: 60px;
  }
}
.page-fv__bigText p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-family: "century-gothic", sans-serif;
  color: rgba(29, 161, 230, 0.05);
  font-size: 300px;
  font-weight: 300;
  -webkit-animation: MoveLeft 24s -12s infinite linear;
          animation: MoveLeft 24s -12s infinite linear;
}
@media screen and (max-width: 767px) {
  .page-fv__bigText p {
    font-size: 180px;
    -webkit-animation: MoveLeft 18s -9s infinite linear;
            animation: MoveLeft 18s -9s infinite linear;
  }
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-page-fv__singleMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-page-fv__singleDate {
  font-family: "century-gothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #31494A;
}

.p-page-fv__singleTag {
  display: inline-block;
  width: 58px;
  height: 22px;
  background: #f45959;
  border-radius: 10px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  font-family: "century-gothic", sans-serif;
  color: #FFFFFF;
}

.p-page-fv__singleTtl {
  margin-top: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.p-under {
  padding-top: 210px;
}
@media screen and (max-width: 767px) {
  .p-under {
    padding-top: 40px;
  }
}

.p-under__desc {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-under__desc {
    margin-top: 18px;
    text-align: left;
    font-size: 11px;
  }
}

.p-news {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-top: 50px;
    padding-bottom: 75px;
  }
}

.p-news__article {
  border-top: 1px solid #A2ABAC;
}
.p-news__article:last-of-type {
  border-bottom: 1px solid #A2ABAC;
}
.p-news__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
.p-news__article a p, .p-news__article a h2 {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-news__article a p, .p-news__article a h2 {
    font-size: 12px;
  }
}
.p-news__article a p {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .p-news__article a p {
    width: 100px;
  }
}
.p-news__article a h2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-top-fv {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1060;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    aspect-ratio: 375/590;
  }
}

.p-top-fv__imgMain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-top-fv__imgMain {
    width: calc(100% - 32px);
    top: 0px;
    left: 16px;
  }
}
.p-top-fv__imgMain img {
  width: 100%;
}

.p-top-fv__imgWire {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-fv__imgWire {
    width: calc(100% - 32px);
    left: 16px;
  }
}
.p-top-fv__imgWire img {
  width: 100%;
}

.p-top-fv__circle {
  width: 4.9%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4e7d3;
  position: absolute;
  top: 53%;
  left: 22%;
  z-index: 5;
  mix-blend-mode: color;
}
@media screen and (max-width: 767px) {
  .p-top-fv__circle {
    width: 8.5%;
    top: 78%;
    left: 20.3%;
  }
}

.p-top-fv__circleGreen {
  width: 32.8%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 0 0 999px 999px;
  background: green;
  position: absolute;
  rotate: -30deg;
  top: 48.5%;
  left: 35%;
  z-index: 3;
  overflow: hidden;
  background-image: url(../img/img-green.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 105%;
  -webkit-animation: bgSlide 2.3s ease-in-out infinite alternate;
          animation: bgSlide 2.3s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__circleGreen {
    rotate: -90deg;
    width: 61%;
    top: 43.5%;
    left: 24.8%;
  }
}

@-webkit-keyframes bgSlide {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right top;
  }
}

@keyframes bgSlide {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right top;
  }
}
.p-top-fv__circleWhite {
  width: 28%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 999px 999px 0 0;
  background: lightgoldenrodyellow;
  position: absolute;
  rotate: 330deg;
  top: 35.5%;
  left: 21.5%;
  z-index: 3;
  overflow: hidden;
  background-image: url(../img/img-white.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 110%;
  -webkit-animation: bgSlideWhite 2s ease-in-out infinite alternate;
          animation: bgSlideWhite 2s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__circleWhite {
    rotate: 270deg;
    width: 53%;
    top: 57%;
    left: 0.3%;
  }
}

@-webkit-keyframes bgSlideWhite {
  0% {
    background-position: right bottom;
  }
  100% {
    background-position: left bottom;
  }
}

@keyframes bgSlideWhite {
  0% {
    background-position: right bottom;
  }
  100% {
    background-position: left bottom;
  }
}
.p-top-fv__sq01 {
  width: 1.25vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 8.59375vw;
  z-index: 5;
  -webkit-animation: sq01 3s ease-in-out infinite alternate;
          animation: sq01 3s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq01 {
    width: 2.7%;
    left: 68%;
    -webkit-animation: sq01-sp 3s ease-in-out infinite alternate;
            animation: sq01-sp 3s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes sq01 {
  0% {
    top: 35.4166666667vw;
  }
  100% {
    top: 36.9791666667vw;
  }
}

@keyframes sq01 {
  0% {
    top: 35.4166666667vw;
  }
  100% {
    top: 36.9791666667vw;
  }
}
@-webkit-keyframes sq01-sp {
  0% {
    top: 67%;
  }
  100% {
    top: 74%;
  }
}
@keyframes sq01-sp {
  0% {
    top: 67%;
  }
  100% {
    top: 74%;
  }
}
.p-top-fv__sq02 {
  width: 0.5208333333vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 13.0208333333vw;
  z-index: 5;
  -webkit-animation: sq02 1.6s ease-in-out infinite alternate;
          animation: sq02 1.6s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq02 {
    width: 1.2%;
    left: 77%;
    -webkit-animation: sq02-sp 1.6s ease-in-out infinite alternate;
            animation: sq02-sp 1.6s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes sq02 {
  0% {
    top: 34.8958333333vw;
  }
  100% {
    top: 33.8541666667vw;
  }
}

@keyframes sq02 {
  0% {
    top: 34.8958333333vw;
  }
  100% {
    top: 33.8541666667vw;
  }
}
@-webkit-keyframes sq02-sp {
  0% {
    top: 64%;
  }
  100% {
    top: 66%;
  }
}
@keyframes sq02-sp {
  0% {
    top: 64%;
  }
  100% {
    top: 66%;
  }
}
.p-top-fv__sq03 {
  width: 0.7291666667vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 15.1041666667vw;
  z-index: 5;
  -webkit-animation: sq03 2.4s ease-in-out infinite alternate;
          animation: sq03 2.4s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq03 {
    width: 1.5%;
    left: 81%;
    -webkit-animation: sq03-sp 2.4s ease-in-out infinite alternate;
            animation: sq03-sp 2.4s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes sq03 {
  0% {
    top: 34.375vw;
  }
  100% {
    top: 33.8541666667vw;
  }
}

@keyframes sq03 {
  0% {
    top: 34.375vw;
  }
  100% {
    top: 33.8541666667vw;
  }
}
@-webkit-keyframes sq03-sp {
  0% {
    top: 66%;
  }
  100% {
    top: 70%;
  }
}
@keyframes sq03-sp {
  0% {
    top: 66%;
  }
  100% {
    top: 70%;
  }
}
.p-top-fv__sq04 {
  width: 1.25vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 20.8333333333vw;
  z-index: 5;
  -webkit-animation: sq04 3s ease-in-out infinite alternate;
          animation: sq04 3s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq04 {
    width: 2.7%;
    left: 19%;
    -webkit-animation: sq04-sp 5s ease-in-out infinite alternate;
            animation: sq04-sp 5s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes sq04 {
  0% {
    top: 19.7916666667vw;
  }
  100% {
    top: 21.3541666667vw;
  }
}

@keyframes sq04 {
  0% {
    top: 19.7916666667vw;
  }
  100% {
    top: 21.3541666667vw;
  }
}
@-webkit-keyframes sq04-sp {
  0% {
    top: 50%;
  }
  100% {
    top: 58%;
  }
}
@keyframes sq04-sp {
  0% {
    top: 50%;
  }
  100% {
    top: 58%;
  }
}
.p-top-fv__sq05 {
  width: 0.5208333333vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 23.4375vw;
  z-index: 5;
  -webkit-animation: sq05 2s ease-in-out infinite alternate;
          animation: sq05 2s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq05 {
    width: 1.2%;
    left: 25%;
    -webkit-animation: sq05-sp 2s ease-in-out infinite alternate;
            animation: sq05-sp 2s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes sq05 {
  0% {
    top: 21.875vw;
  }
  100% {
    top: 22.9166666667vw;
  }
}

@keyframes sq05 {
  0% {
    top: 21.875vw;
  }
  100% {
    top: 22.9166666667vw;
  }
}
@-webkit-keyframes sq05-sp {
  0% {
    top: 58%;
  }
  100% {
    top: 62%;
  }
}
@keyframes sq05-sp {
  0% {
    top: 58%;
  }
  100% {
    top: 62%;
  }
}
.p-top-fv__sq06 {
  width: 0.5208333333vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 77.6041666667vw;
  z-index: 5;
  -webkit-animation: sq06 2s ease-in-out infinite alternate;
          animation: sq06 2s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq06 {
    width: 1%;
    left: 69%;
    -webkit-animation: sq06-sp 4s ease-in-out infinite alternate;
            animation: sq06-sp 4s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes sq06 {
  0% {
    top: 15.625vw;
  }
  100% {
    top: 16.6666666667vw;
  }
}

@keyframes sq06 {
  0% {
    top: 15.625vw;
  }
  100% {
    top: 16.6666666667vw;
  }
}
@-webkit-keyframes sq06-sp {
  0% {
    top: 9%;
  }
  100% {
    top: 15%;
  }
}
@keyframes sq06-sp {
  0% {
    top: 9%;
  }
  100% {
    top: 15%;
  }
}
.p-top-fv__sq07 {
  width: 0.7291666667vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 80.2083333333vw;
  z-index: 5;
  -webkit-animation: sq07 4s ease-in-out infinite alternate;
          animation: sq07 4s ease-in-out infinite alternate;
  -webkit-animation: sq07-sp 3s ease-in-out infinite alternate;
          animation: sq07-sp 3s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq07 {
    width: 1.5%;
    left: 73%;
  }
}

@-webkit-keyframes sq07 {
  0% {
    top: 14.5833333333vw;
  }
  100% {
    top: 13.5416666667vw;
  }
}

@keyframes sq07 {
  0% {
    top: 14.5833333333vw;
  }
  100% {
    top: 13.5416666667vw;
  }
}
@-webkit-keyframes sq07-sp {
  0% {
    top: 16%;
  }
  100% {
    top: 11%;
  }
}
@keyframes sq07-sp {
  0% {
    top: 16%;
  }
  100% {
    top: 11%;
  }
}
.p-top-fv__sq08 {
  width: 1.25vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 85.4166666667vw;
  z-index: 5;
  -webkit-animation: sq08 3s ease-in-out infinite alternate;
          animation: sq08 3s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq08 {
    width: 2.3%;
    -webkit-animation: sq08-sp 5s ease-in-out infinite alternate;
            animation: sq08-sp 5s ease-in-out infinite alternate;
    left: 80%;
  }
}

@-webkit-keyframes sq08 {
  0% {
    top: 19.7916666667vw;
  }
  100% {
    top: 21.875vw;
  }
}

@keyframes sq08 {
  0% {
    top: 19.7916666667vw;
  }
  100% {
    top: 21.875vw;
  }
}
@-webkit-keyframes sq08-sp {
  0% {
    top: 12%;
  }
  100% {
    top: 20%;
  }
}
@keyframes sq08-sp {
  0% {
    top: 12%;
  }
  100% {
    top: 20%;
  }
}
.p-top-fv__sq09 {
  width: 0.5208333333vw;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  background: #000000;
  position: absolute;
  left: 86.4583333333vw;
  z-index: 5;
  -webkit-animation: sq09 2s ease-in-out infinite alternate;
          animation: sq09 2s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .p-top-fv__sq09 {
    width: 1.2%;
  }
}

@-webkit-keyframes sq09 {
  0% {
    top: 11.4583333333vw;
  }
  100% {
    top: 12.5vw;
  }
}

@keyframes sq09 {
  0% {
    top: 11.4583333333vw;
  }
  100% {
    top: 12.5vw;
  }
}
.p-top-fv__name {
  font-size: 3.3854166667vw;
  color: #000000;
  font-family: "century-gothic", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
  position: absolute;
  bottom: 3.125vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-top-fv__name {
    font-size: 6.4vw;
    bottom: 6vw;
    width: 100%;
  }
}

.p-top-fv__since {
  font-size: 1.5625vw;
  font-family: "baskerville-no2", sans-serif;
  text-align: center;
  font-weight: 500;
  font-style: italic;
  color: #000000;
  letter-spacing: 0.06em;
  bottom: 0.625vw;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-top-fv__since {
    font-size: 4.8vw;
    bottom: 0;
  }
}

.p-top-fv__scroll {
  position: absolute;
  bottom: -110px;
  right: 2.6041666667vw;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-top-fv__scroll {
    display: none;
  }
}
.p-top-fv__scroll p {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -250px;
  font-family: "century-gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.p-top-fv__scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  -webkit-animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
          animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
  z-index: 10;
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 200px;
  }
  100% {
    bottom: -50px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 200px;
  }
  100% {
    bottom: -50px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.p-top-fv__scroll::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 1px;
  height: 254px;
  background: #000000;
  z-index: 5;
}

.p-top-service {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(49, 73, 74)), to(rgb(223, 229, 226)));
  background-image: linear-gradient(0deg, rgb(49, 73, 74), rgb(223, 229, 226));
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-top: 12px;
  }
}

.p-top-service__inner {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-service__inner {
    padding-left: 20px;
  }
}

.p-top-service__wrapper {
  position: relative;
  padding-top: 175px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-top-service__wrapper {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}

.p-top-service__main {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-service__main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-top-service__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 120px;
  border-bottom: 1px solid #31494A;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-service__head {
    gap: 25px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 25px;
  }
}
.p-top-service__head p:first-of-type {
  width: 440px;
  font-size: 28px;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-top-service__head p:first-of-type {
    text-align: center;
    font-size: 16px;
  }
}
.p-top-service__head p:last-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 645px;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-top-service__head p:last-of-type {
    font-size: 12px;
  }
}

.p-top-service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 140px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-top-service__body {
    padding-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.p-top-service__card {
  width: calc((100% - 40px) / 2);
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .p-top-service__card {
    width: 100%;
  }
}
.p-top-service__card--wide {
  width: 100%;
  max-width: 100%;
}

.p-top-service__meta h2 {
  font-size: 60px;
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  line-height: 69px;
  padding-bottom: 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__meta h2 {
    font-size: 30px;
    line-height: 1;
    padding-bottom: 15px;
  }
}
.p-top-service__meta h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 53px;
  height: 3px;
  background: #31494A;
}
@media screen and (max-width: 767px) {
  .p-top-service__meta h2::after {
    width: 30px;
  }
}
.p-top-service__meta p {
  margin-top: 20px;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-top-service__meta p {
    margin-top: 12px;
    font-size: 12px;
  }
}

.p-top-service__slide {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-service__slide {
    margin-top: 20px;
  }
}

.p-top-service__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -25px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-top-service__btn {
    margin-top: -12px;
  }
}

.p-top-service__others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-service__others {
    gap: 4px;
    margin-top: 20px;
  }
}

.p-top-service__other {
  width: calc((100% - 42px) / 4);
  height: 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__other {
    width: calc((100% - 4px) / 2);
    height: 76px;
  }
}
.p-top-service__other img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-service__other p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0px 3px 6px #000029;
}
@media screen and (max-width: 767px) {
  .p-top-service__other p {
    font-size: 15px;
  }
}

.p-top-service__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100vw - 100%) / 2 + 100% + 210px);
  height: 100%;
  margin-right: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .p-top-service__bg {
    width: 98vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__bg {
    width: 100%;
    margin-right: 0;
  }
}

.p-top-flow {
  padding-top: 150px;
  padding-bottom: 150px;
  background: #31494A;
}
@media screen and (max-width: 767px) {
  .p-top-flow {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.p-top-flow__container {
  position: relative;
  overflow: hidden;
}

.p-top-flow__circle {
  position: absolute;
  width: auto;
  height: 1096px;
  aspect-ratio: 1;
  top: 400px;
  left: calc(50% - 500px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-flow__circle {
    height: 348px;
    top: 330px;
    left: -130px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-top-flow__circle img {
  width: 100%;
  height: 100%;
}

.p-top-flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px;
    margin-top: 32px;
    overflow-x: scroll;
    width: 100vw;
  }
}

.p-top-flow__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: calc((100% - 42px) / 4);
  background: #f4ffff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 140px;
    height: 140px;
    padding: 10px;
  }
}

.p-top-flow__meta p {
  text-align: center;
  color: #CDC4BA;
  font-size: 30px;
  font-family: #CDC4BA;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-flow__meta p {
    font-size: 12px;
  }
}
.p-top-flow__meta h3 {
  margin-top: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-flow__meta h3 {
    margin-top: 8px;
    font-size: 11px;
  }
}

.p-top-flow__thumb {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__thumb {
    width: 80px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 10px;
  }
  .p-top-flow__thumb img {
    width: 100%;
    height: 100%;
  }
}

.p-top-flow__message {
  margin-top: 44px;
  position: relative;
  padding: 4px 20px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__message {
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-top-flow__message::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 100%;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-flow__message::before {
    width: 5px;
  }
}
.p-top-flow__message::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 100%;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-top-flow__message::after {
    width: 5px;
  }
}
.p-top-flow__message p {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.875;
  color: #FFFFFF;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top-flow__message p {
    text-align: left;
    font-size: 10px;
  }
}

.p-top-flow__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__btn {
    margin-top: 25px;
  }
}

.p-top-company {
  padding-bottom: 150px;
  background: #31494A;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    padding-bottom: 50px;
  }
}

.p-top-company__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-top-company__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 60px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.p-top-company__wrapper {
  width: calc((100% - 40px) / 2);
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrapper {
    width: 100%;
  }
}

.p-top-company__ttl {
  color: #CDC4BA;
  font-size: 30px;
  letter-spacing: 0.1em;
  font-family: "century-gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-company__ttl {
    font-size: 20px;
  }
}

.p-top-company__list {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .p-top-company__list {
    margin-top: 16px;
  }
}

.p-top-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CDC4BA;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-top-company__row {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.p-top-company__row:first-of-type {
  border-top: 1px solid #CDC4BA;
}
.p-top-company__row dt {
  width: 150px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #CDC4BA;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-top-company__row dt {
    width: 92px;
    font-size: 12px;
  }
}
.p-top-company__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-top-company__row dd {
    font-size: 12px;
    line-height: 1.6666666667;
  }
}

.p-top-founder {
  background: #f4ffff;
  padding-top: 30px;
  padding-bottom: 60px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-founder {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-left: 4px;
  }
}

.p-top-founder__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-founder__head {
    display: block;
  }
}
.p-top-founder__head h3 {
  width: 360px;
  height: 100px;
  padding: 14px 34px;
  margin-left: -30px;
  background: #8B7C72;
  color: #FFFFFF;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 300;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-founder__head h3 {
    width: 170px;
    height: 53px;
    font-size: 17px;
    margin-left: -4px;
    padding: 9px 12px 9px 18px;
    line-height: 1.5;
  }
}
.p-top-founder__head h3 span {
  display: block;
  color: #CDC4BA;
  font-size: 14px;
  font-family: "baskerville-no2", sans-serif;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 9px;
  line-height: 10px;
}
.p-top-founder__head h3::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 30px; /* 底辺 */
  height: 12px; /* 高さ */
  background: #CDC4BA; /* 好きな色 */
  /* 直角を右下にしたポリゴン ‑‑>
     (100% 100%) = 右下
     (0 100%)   = 左下
     (100% 0)   = 右上
  */
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
@media screen and (max-width: 767px) {
  .p-top-founder__head h3::before {
    width: 4px;
    height: 3px;
    top: -3px;
  }
}
.p-top-founder__head p {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.06em;
  color: #8B7C72;
}
@media screen and (max-width: 767px) {
  .p-top-founder__head p {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    line-height: 2.1666666667;
  }
}

.p-top-founder__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 660px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-founder__body {
    margin-top: 20px;
    gap: 10px;
  }
}

.p-top-founder__video {
  width: 100%;
  height: auto;
  aspect-ratio: 600/335;
}
.p-top-founder__video iframe {
  width: 100%;
  height: 100%;
}

.p-top-founder__bnr a {
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-top-founder__bnr {
    margin-top: 10px;
  }
}

.p-top-map {
  width: 100vw;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .p-top-map {
    height: 240px;
  }
}
.p-top-map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.p-top-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  background: #31494A;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 25px;
  min-width: 470px;
  margin-bottom: -35px;
  position: relative;
  z-index: 5;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    margin-top: 20px;
    margin-bottom: 0;
    height: 60px;
    padding-left: 12px;
    min-width: 290px;
  }
}
.p-top-news h2 {
  font-family: "century-gothic", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #CDC4BA;
}
@media screen and (max-width: 767px) {
  .p-top-news h2 {
    font-size: 20px;
  }
}

.p-top-news__slide {
  height: inherit;
}
.p-top-news__slide a {
  padding-left: 25px;
  padding-right: 20px;
  display: block;
  height: inherit;
}
.p-top-news__slide a article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-news__slide a article {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
  }
}
.p-top-news__slide a p, .p-top-news__slide a h3 {
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-news__slide a p, .p-top-news__slide a h3 {
    font-size: 12px;
    line-height: 1.5;
  }
}

.p-contact {
  padding-top: 110px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 40px;
    padding-bottom: 75px;
  }
}

.p-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-contact__row + .p-contact__row {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact__row + .p-contact__row {
    margin-top: 20px;
  }
}

.p-contact__head {
  display: inline-block;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    width: 100%;
  }
}
.p-contact__head label {
  display: inline-block;
  margin-top: 16px;
  color: #31494A;
  font-size: 18px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-contact__head label {
    font-size: 12px;
  }
}

.p-contact__head--required label::after {
  content: "　※必須";
  color: #8B7C72;
  letter-spacing: 0.06em;
}

.p-contact__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    width: 100%;
  }
}
.p-contact__body input[type=text],
.p-contact__body input[type=tel],
.p-contact__body input[type=email],
.p-contact__body textarea {
  width: 100%;
  font-size: 18px;
  color: #31494A;
  font-family: "Noto Sans JP", sans-serif;
  border: 0px;
  padding: 10px 20px;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-contact__body input[type=text],
  .p-contact__body input[type=tel],
  .p-contact__body input[type=email],
  .p-contact__body textarea {
    font-size: 14px;
  }
}
.p-contact__body input[type=text],
.p-contact__body input[type=tel],
.p-contact__body input[type=email] {
  height: 50px;
}
@media screen and (max-width: 767px) {
  .p-contact__body input[type=text],
  .p-contact__body input[type=tel],
  .p-contact__body input[type=email] {
    height: 40px;
    padding: 10px;
  }
}
.p-contact__body textarea {
  resize: vertical;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .p-contact__body textarea {
    height: 120px;
  }
}
.p-contact__body .wpcf7-form-control-wrap:has(input[type=file]) {
  display: block;
}
.p-contact__body .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  color: #f45959;
}
.p-contact__body .wpcf7-file {
  padding-left: 0;
}

.p-contact__privacy {
  margin-top: 60px;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy {
    margin-top: 40px;
  }
}
.p-contact__privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  border-top: 1px solid #31494A;
  border-bottom: 1px solid #31494A;
  border-left: 1px solid #31494A;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy::before {
    width: 5px;
  }
}
.p-contact__privacy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  border-top: 1px solid #31494A;
  border-bottom: 1px solid #31494A;
  border-right: 1px solid #31494A;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy::after {
    width: 5px;
  }
}
.p-contact__privacy p:first-of-type {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy p:first-of-type {
    font-size: 13px;
    text-align: left;
  }
}
.p-contact__privacy p:nth-of-type(2) {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy p:nth-of-type(2) {
    margin-top: 20px;
    font-size: 10px;
    text-align: left;
  }
}
.p-contact__privacy a {
  display: block;
  text-align: center;
  color: #8B7C72;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy a {
    margin-top: 20px;
    font-size: 13px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-contact__check {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__check {
    margin-top: 20px;
  }
}
.p-contact__check p:first-of-type {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-contact__check p:first-of-type {
    font-size: 12px;
    text-align: left;
  }
}
.p-contact__check p:last-of-type {
  margin-top: 22px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__check p:last-of-type {
    margin-top: 30px;
  }
}
.p-contact__check .wpcf7-list-item {
  margin-left: 0;
}
.p-contact__check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #31494A;
  cursor: pointer;
  position: relative;
  padding-left: 27px;
}
@media screen and (max-width: 767px) {
  .p-contact__check label {
    font-size: 14px;
  }
}
.p-contact__check label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.p-contact__check label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: auto;
  aspect-ratio: 1;
  background-color: #FFFFFF;
  border: 1px solid #31494A;
}
@media screen and (max-width: 767px) {
  .p-contact__check label .wpcf7-list-item-label::before {
    width: 16px;
  }
}
.p-contact__check label input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 59%;
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
  width: 7px;
  height: 14px;
  border: solid #31494A;
  border-width: 0 3px 3px 0;
}
@media screen and (max-width: 767px) {
  .p-contact__check label input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
    left: 6px;
    width: 5px;
    height: 12px;
  }
}

.p-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-top: 20px;
  }
}
.p-contact__btn input[type=submit] {
  display: inline-block;
  width: 240px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #31494A;
  border: 1px solid #31494A;
  text-decoration: none;
  font-size: 18px;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__btn input[type=submit] {
    width: 150px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    line-height: 1;
  }
}
.p-contact__btn input[type=submit]:disabled {
  opacity: 0.5;
}
.p-contact__btn input[type=submit]:not(:disabled):hover {
  background: #FFFFFF;
  color: #31494A;
}
.p-contact__btn .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-contact__recapcha {
  text-align: center;
  margin-top: 100px;
  font-size: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact__recapcha {
    text-align: left;
    margin-top: 50px;
  }
}
.p-contact__recapcha a {
  font-size: 10px;
  color: #8B7C72;
  text-decoration: underline;
  line-height: 1.5;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7-not-valid-tip {
  font-size: 0.8em;
}

.p-privacy__lead {
  line-height: 1.7777777778;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-privacy__lead {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-privacy__wrapper + .p-privacy__wrapper {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-privacy__wrapper + .p-privacy__wrapper {
    margin-top: 50px;
  }
}

.p-privacy__heading {
  height: 60px;
  line-height: 60px;
  padding-left: 53px;
  padding-right: 20px;
  background: #CDC4BA;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: min(18px, 4.8vw);
    padding-left: 44px;
  }
}
.p-privacy__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-privacy__heading::before {
    left: 15px;
  }
}

.p-privacy__body {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-privacy__body {
    margin-top: 20px;
  }
}
.p-privacy__body p {
  font-size: 18px;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .p-privacy__body p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.p-privacy__body li {
  font-size: 18px;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .p-privacy__body li {
    font-size: 16px;
    line-height: 1.75;
  }
}
.p-privacy__body li::before {
  content: "・";
}

.p-archive {
  margin-top: 136px;
  padding-bottom: 230px;
}
@media screen and (max-width: 767px) {
  .p-archive {
    margin-top: 40px;
    padding-bottom: 80px;
  }
}

.p-archive__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-archive__tab {
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-archive__tab li {
  width: 300px;
  height: 57px;
  border: 1px solid #31494A;
  background: #31494A;
  color: #7f908b;
  text-align: center;
  line-height: 57px;
  font-family: "century-gothic", sans-serif;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__tab li {
    width: 150px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.p-archive__tab li span {
  font-family: "baskerville-no2", sans-serif;
  font-style: italic;
}
.p-archive__tab li.active {
  background: #FFFFFF;
  color: #31494A;
}
.p-archive__tab li:hover {
  background: #FFFFFF;
  color: #31494A;
}

.p-archive__works {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-archive__works {
    margin-top: 15px;
  }
}
.p-archive__works li {
  display: none;
}
.p-archive__works li.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 30px;
}
@media screen and (max-width: 767px) {
  .p-archive__works li.active {
    gap: 20px 8px;
  }
}

.p-archive__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: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-archive__card {
    width: calc((100% - 8px) / 2);
  }
}
.p-archive__card:hover {
  opacity: unset;
}
.p-archive__card:hover .p-archive__thumb > img {
  scale: 1.05;
}
.p-archive__card:hover .p-archive__thumb::after {
  opacity: 1;
}
.p-archive__card:hover .p-archive__ttl {
  opacity: 0.7;
}
.p-archive__card:hover .p-archive__detail p {
  opacity: 0.7;
}

.p-archive__thumb {
  overflow: hidden;
  position: relative;
}
.p-archive__thumb img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-archive__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 73, 74, 0.2); /* マスクの色(黒の50%) */
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-archive__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-archive__ttl {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5454545455;
  }
}

.p-archive__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-archive__detail p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__detail p {
    font-size: 11px;
    line-height: 1.5454545455;
  }
}
.p-archive__detail p:not(:first-of-type)::before {
  content: "/";
}

.p-archive__attention {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.875;
  padding-top: 3px;
  padding-bottom: 3px;
  position: relative;
  padding-left: 25px;
  padding-right: 24px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .p-archive__attention {
    margin-top: 60px;
    text-align: left;
    font-size: 10px;
    max-width: 320px;
  }
}
.p-archive__attention::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  border-left: 1px solid #31494A;
  border-top: 1px solid #31494A;
  border-bottom: 1px solid #31494A;
}
@media screen and (max-width: 767px) {
  .p-archive__attention::before {
    width: 5px;
  }
}
.p-archive__attention::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  border-right: 1px solid #31494A;
  border-top: 1px solid #31494A;
  border-bottom: 1px solid #31494A;
}
@media screen and (max-width: 767px) {
  .p-archive__attention::after {
    width: 5px;
  }
}

.p-works {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding-top: 32px;
    padding-bottom: 75px;
  }
}

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

.p-works__meta {
  width: 400px;
  height: 500px;
  padding-top: 75px;
  padding-left: 48px;
  padding-right: 10px;
  background: #31494A;
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 767px) {
  .p-works__meta {
    width: 100%;
    height: auto;
    position: relative;
    top: unset;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 50px;
    width: 100%;
    padding: 26px 20px 100px 20px;
  }
}
.p-works__meta::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 188px;
  height: auto;
  aspect-ratio: 188/120;
  background: url(../img/img_turtle.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-works__meta::after {
    bottom: -20px;
    left: 0;
    width: 106px;
  }
}

.p-works__ttl {
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-works__ttl {
    font-size: 16px;
  }
}

.p-works__detail {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-works__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
}
.p-works__detail p {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .p-works__detail p {
    font-size: 10px;
  }
}

.p-works__url {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-works__url {
    margin-top: 24px;
  }
}

.p-works__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .p-works__main {
    display: contents;
  }
}

.p-works__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-works__images {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    gap: 13px;
  }
}
.p-works__btn {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-works__btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 50px;
  }
}
.p-works__btn img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .p-works__btn img {
    width: 20px;
  }
}

.p-single {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-top: 50px;
    padding-bottom: 75px;
  }
}

.p-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #a2abac;
}
@media screen and (max-width: 767px) {
  .p-single__head {
    gap: 18px;
    padding-bottom: 16px;
  }
}
.p-single__head p,
.p-single__head h1 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-single__head p,
  .p-single__head h1 {
    font-size: 14px;
  }
}

.p-single__body {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-single__body {
    margin-top: 25px;
  }
}
.p-single__body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2.2222222222;
  margin-top: 60px;
}
.p-single__body h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-single__body h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-single__body h2 {
    margin-top: 40px;
  }
}
.p-single__body p,
.p-single__body a, .p-single__body li {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 2.2222222222;
}
@media screen and (max-width: 767px) {
  .p-single__body p,
  .p-single__body a, .p-single__body li {
    font-size: 12px;
  }
}
.p-single__body a {
  color: #007acc;
  text-decoration: underline;
}
.p-single__body p + p {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-single__body p + p {
    margin-top: 20px;
  }
}
.p-single__body ul {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-single__body ul {
    margin-top: 20px;
  }
}
.p-single__body li {
  list-style: disc;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .p-single__body li {
    margin-left: 18px;
  }
}

.p-single__btn {
  margin-top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-single__btn {
    margin-top: 50px;
  }
}
.p-single__btn img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .p-single__btn img {
    width: 20px;
  }
}

.p-404 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.p-404 p {
  line-height: 1.7777777778;
}

.p-404__btn {
  margin-top: 50px;
}

@media screen and (max-width: 519px) {
  .u-hidden--sp {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .u-hidden--pc {
    display: none;
  }
}

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

.u-text {
  overflow: hidden;
}
.u-text > span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.u-text--space {
  margin-left: 0.5em;
}
.u-text--design {
  font-family: "baskerville-no2", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.u-text.js-text > span {
  -webkit-animation: showText 0.5s both;
          animation: showText 0.5s both;
}

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

@keyframes showText {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.test {
  color: #295282;
  font-size: 5rem;
  position: relative;
  padding: 100px 200px;
  font-weight: 700;
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

.image {
  background-image: url(image@1x.png);
}