@charset "UTF-8";
/*================================
  SCSS Information
----------------------------------
  File name: _functions.scss
  Summary:   自作関数定義用ファイル
  Author:    coder-ao
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _mixin.scss
  Summary:   汎用定義ファイル
  Author:    coder-ao / konomi0613
================================*/
.l-header {
  position: relative;
  z-index: 997;
  width: 100%;
  background: #fff;
  padding: calc(10 / 16 * 1rem) 0;
  min-height: 50px;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  width: 100%;
  max-width: 300px;
}
.p-header__logo text, .p-header__logo path, .p-header__logo rect {
  fill: #444;
}

.p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5em 3em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: calc(14 / 16 * 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #827E79;
}
.p-nav__list a {
  line-height: 2;
  display: block;
}
.p-nav .menu-item:hover > .p-nav__hover-handler {
  opacity: 1;
  visibility: visible;
  top: 50px;
}
.p-nav__hover-handler {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: calc(50px + 0.5rem);
  background-color: #f2f2f2;
  width: 100%;
  padding: 3em 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 10;
}
.p-nav__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1em 3em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-header-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.p-hamburger {
  display: none;
  position: relative;
  z-index: 999;
  width: 40px;
  height: 40px;
  padding: 0.75em;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: #827E79;
  -webkit-transition: inherit;
  transition: inherit;
}
.p-hamburger__line::before, .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.p-hamburger__line::before {
  top: -11px;
}
.p-hamburger__line::after {
  top: 11px;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  background-color: #fff;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.p-sp-header {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 50px;
  width: 100vw;
  color: #222F44;
  padding: 0 0 4rem;
  height: 100vh;
  overflow-x: hidden;
  z-index: 998;
}
.p-sp-header::before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.p-sp-header__inner {
  max-width: 1024px;
  width: 88%;
  margin: auto;
}
.p-sp-header__nav {
  margin-top: calc(68 / 16 * 1rem);
}
.p-sp-header__nav-list .menu-item {
  position: relative;
  border-bottom: 0.5px dotted;
}
.p-sp-header__nav-list .menu-item a {
  display: block;
  padding: 1.5em;
}

.p-sp-nav__submenuBtn {
  position: absolute;
  top: 1em;
  right: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
}
.p-sp-nav__submenuBtn::after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 0.5px solid;
  border-right: 0.5px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu):hover {
  cursor: pointer;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu)::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu).-open::after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.p-sp-nav__submenu {
  border-top: 1px dashed;
}
.p-sp-nav__submenu .menu-item {
  margin-bottom: 0;
}
.p-sp-nav__submenu .menu-item:last-child {
  border-bottom: none;
}

body.is-drawerActive {
  position: relative;
}
body.is-drawerActive .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
body.is-drawerActive .l-header__logo {
  position: relative;
  z-index: 999;
}
body.is-drawerActive .p-sp-header {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}
body.is-drawerActive .p-hamburger[aria-expanded=true] .p-hamburger__line::before,
body.is-drawerActive .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  background-color: #222F44;
}
body.is-drawerActive .p-header__logo text, body.is-drawerActive .p-header__logo path, body.is-drawerActive .p-header__logo rect {
  fill: #fff;
}

.l-footer {
  background: #87939A;
  margin-top: 0;
}
.l-footer__inner {
  position: relative;
}

.p-footer {
  padding: calc(64 / 16 * 1rem) 0 calc(100 / 16 * 1rem);
  color: #fff;
}
.p-footer__above-img {
  pointer-events: none;
  width: 100%;
  display: block;
}
.p-footer__logo {
  width: 100%;
  max-width: 400px;
  margin-bottom: 2rem;
}
.p-footer__logo path, .p-footer__logo rect {
  fill: #fff;
}
.p-footer__copy {
  text-align: center;
  color: #fff;
  font-size: calc(12 / 16 * 1rem);
  background-color: #222F44;
  line-height: calc(24 / 16 * 1rem);
  letter-spacing: 0.1em;
}

.p-footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: calc(14 / 16 * 1rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footerNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(50 / 16 * 1rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: calc(14 / 16 * 1rem);
  font-family: graphie, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 200;
  padding-left: 4.75rem;
  padding-right: 5rem;
}
.p-footerNav .-nolink {
  pointer-events: none;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.p-footer-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  margin: auto;
  margin-top: 3rem;
}
.p-footer-contact > * {
  width: 48%;
  max-width: 457px;
}
.p-footer-contact__sec {
  margin: calc(200 / 16 * 1rem) auto;
}
.p-footer-contact__head img {
  margin-bottom: 1.5rem;
}
.p-footer-contact__head p {
  margin-bottom: 1.5em;
  color: #827E79;
  line-height: 1.5;
}

/*-------------------
	sidebar
-------------------*/
.c-sidebar__head {
  font-size: calc(12 / 16 * 1rem);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid;
}
.c-sidebar-list {
  font-size: calc(14 / 16 * 1rem);
}
.c-sidebar-list__link {
  display: block;
  padding-top: 1rem;
  padding-bottom: calc(12 / 16 * 1rem);
  border-bottom: 1px solid #868686;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  padding-right: 1.5rem;
}
.c-sidebar-list__link:hover {
  background-color: rgba(135, 147, 154, 0.05);
}
.c-sidebar-list__link.-arrow-r::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  content: "";
  width: calc(6 / 16 * 1rem);
  height: calc(6 / 16 * 1rem);
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-sidebar-list__link.-arrow-l::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: calc(6 / 16 * 1rem);
  height: calc(6 / 16 * 1rem);
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.c-sidebar .sub-menu .c-sidebar-list__item .c-sidebar-list__link {
  padding-left: 1rem;
}
.c-sidebar .sub-menu .c-sidebar-list__item:first-child .c-sidebar-list__link {
  padding-top: 1rem;
}

body {
  font-family: "graphie", sans-serif;
  font-weight: 200;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body.is-scrollNone {
  height: var(--js-viewHeight);
  height: 100dvh;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-overflow-scrolling: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/*-----------------------------------
  utility
-----------------------------------*/
.u-font-en__secound {
  font-family: "ivymode", sans-serif;
  font-weight: 200;
  font-style: normal;
}

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

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

.u-font-s {
  font-size: calc(14 / 16 * 1rem);
}

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

/*-----------------------------------
  layout
-----------------------------------*/
.l-root-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

:root {
  --vw: 1vw;
}

.l-wid100vw {
  width: calc(var(--vw) * 100);
  margin: 0 calc(50% - 50vw);
}

.l-content-container {
  width: 90%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.l-content-block {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.l-content-block-s {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.l-content-block-s:not(:has(.l-content-block)), .l-content-block-s:not(:has(.l-content-block-l)) {
  width: 88%;
}

.l-content-block-l {
  width: 88%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.l-column-1 {
  width: 88%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.l-column-1.-wide {
  width: 88%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.l-column-1.-narrow {
  width: 88%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.l-column-2.-sidebar {
  width: 88%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-column-2.-sidebar .l-column-2__content {
  width: 75%;
  max-width: 672px;
}
.l-column-2.-sidebar .l-column-2__sidebar {
  width: 25%;
  max-width: 230px;
}

.aioseo-breadcrumbs {
  width: 88%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25rem 0;
}
.aioseo-breadcrumbs__wrapper {
  background-color: #EFF8FF;
  font-size: calc(11 / 16 * 1rem);
}

@-webkit-keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}

@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.c-youtube {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.c-youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.c-table {
  padding-bottom: 1em;
}
.c-table td, .c-table th {
  border-color: rgba(135, 147, 154, 0.5);
  padding: 0.75em;
  line-height: inherit;
}
.c-table tfoot td,
.c-table th {
  font-weight: 700;
  background-color: rgba(135, 147, 154, 0.1);
}
.c-table thead {
  border-bottom: 1px solid;
}
.c-table tfoot {
  border-top: 1px solid;
}

.c-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.c-modal__open {
  background: none;
  border: none;
  position: relative;
}
.c-modal__content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 50%;
  max-width: 780px;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  -webkit-animation-name: modalopen;
          animation-name: modalopen;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
@-webkit-keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.c-accordion {
  margin-bottom: 1.5em;
}
.c-accordion__title {
  margin: 0 !important;
  padding: 1.25em 1em;
  background-color: #EFF8FF;
  line-height: initial;
}
.c-accordion__title:hover {
  cursor: pointer;
}
.c-accordion__contents {
  margin: 0 !important;
  padding: 1.5em 1em;
}
.c-accordion__contents *:last-child {
  margin-bottom: 0 !important;
}

.c-slider__wrapper {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
  font-size: 1rem !important;
}

p a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
p a:hover {
  opacity: 0.7;
}

.c-heading-1 {
  position: relative;
  text-align: center;
  padding-top: calc(124 / 16 * 1rem);
}
.c-heading-1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: calc(64 / 16 * 1rem);
  background-color: #222F44;
}
.c-heading-1__ttl {
  font-size: 2rem;
}
.c-heading-1__sub {
  position: absolute;
  top: calc(80 / 16 * 1rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: calc(25 / 16 * 1rem);
  text-transform: uppercase;
}

.c-heading-underline {
  font-size: calc(28 / 16 * 1rem);
  border-bottom: 1px dashed;
  padding-bottom: 1.2rem;
  font-weight: 600;
}
.c-heading-underline .sub {
  font-size: calc(15 / 16 * 1rem);
  color: #6EA5FF;
  font-weight: normal;
  vertical-align: middle;
  display: inline-block;
  padding-bottom: 0.5em;
  padding-left: 1.5em;
}

.c-text-strong {
  font-size: calc(22 / 16 * 1rem);
  font-weight: 700;
}

.c-read-button {
  min-width: calc(330 / 16 * 1rem);
  background-color: #FFF;
}
.c-read-button .wp-block-button__link {
  width: 100%;
  display: block;
  background-color: transparent;
  border: 1px solid #6EA5FF;
  font-size: calc(18 / 16 * 1rem);
  padding: 2rem;
  border-radius: 2px;
  color: #222F44;
  -webkit-box-shadow: 10px 10px 0 #C4DBFF;
          box-shadow: 10px 10px 0 #C4DBFF;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-read-button.-pushright .wp-block-button__link:hover {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
  -webkit-box-shadow: 6px 6px 0 #C4DBFF;
          box-shadow: 6px 6px 0 #C4DBFF;
}
.c-read-button.-bgskew {
  position: relative;
  overflow: hidden;
}
.c-read-button.-bgskew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  background: #7CC6C1;
  width: 120%;
  height: 100%;
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-read-button.-bgskew:hover::before {
  -webkit-animation: skewanime 0.4s forwards;
          animation: skewanime 0.4s forwards;
}
.c-read-button.-bgskew .wp-block-button__link {
  position: relative;
  z-index: 3;
}
.c-read-button.-bgskew .wp-block-button__link:hover {
  color: #fff;
}
.c-read-button.-wid-s {
  max-width: 300px;
}
.c-read-button.-center {
  margin-left: auto;
  margin-right: auto;
}

.c-catlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.c-catlist__item {
  margin-bottom: 0.5em;
}
.c-catlist__link {
  font-size: calc(12 / 16 * 1rem);
  color: #6EA5FF;
  padding: calc(3 / 16 * 1rem) 0.5rem;
  display: inline-block;
  background-color: #EFF8FF;
}

.c-prev-next {
  font-size: calc(14 / 16 * 1rem);
  color: #87939A;
  border-top: 1px solid #87939A;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1;
}
.c-prev-next a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-prev-next a:hover {
  opacity: 0.7;
}
.c-prev-next__prev a, .c-prev-next__next a {
  text-transform: capitalize;
  display: inline-block;
  min-width: calc(40 / 16 * 1rem);
  position: relative;
}
.c-prev-next__prev a::before, .c-prev-next__next a::before {
  position: absolute;
  top: 50%;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid;
  border-right: 1px solid;
}
.c-prev-next__next a {
  padding-right: 1.5rem;
}
.c-prev-next__next a::before {
  right: 0.5rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.c-prev-next__prev a {
  padding-left: 1.5rem;
}
.c-prev-next__prev a::before {
  left: 0.5rem;
  -webkit-transform: rotate(225deg) translateY(-50%);
          transform: rotate(225deg) translateY(-50%);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.c-article-heading__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.c-article-heading__meta {
  line-height: calc(20 / 16 * 1rem);
  font-size: calc(12 / 16 * 1rem);
}

.c-btn__link {
  display: block;
  background-color: #222F44;
  color: #fff;
  font-size: 1rem;
  max-width: 250px;
  padding: 12px;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-btn.--center {
  text-align: center;
}

.c-mailForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(30 / 16 * 1rem);
}
.c-mailForm ::-webkit-input-placeholder {
  color: #827E79;
  font-size: 0.875rem;
}
.c-mailForm ::-moz-placeholder {
  color: #827E79;
  font-size: 0.875rem;
}
.c-mailForm :-ms-input-placeholder {
  color: #827E79;
  font-size: 0.875rem;
}
.c-mailForm ::-ms-input-placeholder {
  color: #827E79;
  font-size: 0.875rem;
}
.c-mailForm ::placeholder {
  color: #827E79;
  font-size: 0.875rem;
}
.c-mailForm__cell:not(:last-child) {
  margin-bottom: 2.5rem;
}
.c-mailForm__cell .errmsg {
  color: #A52F2F;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-top: 0.12rem;
}
.c-mailForm textarea,
.c-mailForm select,
.c-mailForm input:not(input[type=file]) {
  font-size: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
  padding: calc(10 / 16 * 1rem);
  font-weight: 200;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-mailForm textarea:hover,
.c-mailForm select:hover,
.c-mailForm input:not(input[type=file]):hover {
  background-color: #F5F5F5;
}
.c-mailForm textarea:-webkit-autofill,
.c-mailForm select:-webkit-autofill,
.c-mailForm input:not(input[type=file]):-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
          box-shadow: 0 0 0 1000px white inset;
}
.c-mailForm textarea:active, .c-mailForm textarea:focus,
.c-mailForm select:active,
.c-mailForm select:focus,
.c-mailForm input:not(input[type=file]):active,
.c-mailForm input:not(input[type=file]):focus {
  border: 1px solid #87939a;
  background-color: #fff;
}
.c-mailForm textarea {
  height: 130px;
}
.c-mailForm input[type=file] {
  font-size: calc(14 / 16 * 1rem);
}
.c-mailForm__btn {
  max-width: 200px;
  display: block;
  margin: calc(30 / 16 * 1rem) auto 0;
}
.c-mailForm__btn .c-btn__link {
  width: 100%;
}
.c-checklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
}
.c-checklist__item {
  position: relative;
  padding-left: calc(1.5rem + 22px);
  line-height: calc(32 / 18);
}
.c-checklist__item::before {
  position: absolute;
  left: 0;
  top: 0.25em;
  content: url(../img/common/icon-check.svg);
  display: inline-block;
  height: 22px;
}

/*================================
  SCSS Information
----------------------------------
  File name: _utility.scss
  Summary:   補助用ファイル
  Author:    konomi0613
================================*/
.u-font-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-font-en {
  font-family: "graphie", sans-serif !important;
  font-weight: 200;
  font-style: normal;
}

.u-font-en2 {
  font-family: "dunbar-low", sans-serif;
}

.u-font-en__serif {
  font-family: "ivymode", sans-serif;
  font-weight: 100 !important;
}

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

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

.u-font-s {
  font-size: calc(14 / 16 * 1rem);
}

.u-fontc-wh {
  color: #fff;
}

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

.u-dn {
  display: none;
}

.u-db {
  display: block;
}

.u-dib {
  display: inline-block;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-sp {
  display: none;
}

.u-tab {
  display: none;
}

.u-attention {
  color: #CC4F1B;
}

.u-bold {
  font-weight: bold;
}

/*
  top
-----------------------------------------------------*/
.l-top-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(200 / 16 * 1rem);
  margin: calc(200 / 16 * 1rem) auto 0;
}

.p-top-intro {
  width: 85%;
}
.p-top-intro__heading {
  margin-bottom: 2rem;
  color: #222F44;
}
.p-top-intro__desc {
  font-size: calc(18 / 16 * 1rem);
  line-height: 2;
  color: #827E79;
  letter-spacing: 0.1em;
}

.p-top-works__heading {
  margin-bottom: calc(52 / 16 * 1rem);
  color: #87939A;
}
.p-top-works.--bg {
  position: relative;
  padding-top: 1.5rem;
}
.p-top-works.--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72%;
  background-color: #87939A;
  display: inline-block;
  z-index: -1;
}
.p-top-works.--bg .p-top-works__heading {
  color: #fff;
}

.l-top-sevice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
.l-top-sevice__itemr {
  max-width: 570px;
}
.l-top-sevice__iteml {
  max-width: 400px;
}

.p-top-sevice .c-heading {
  margin-bottom: calc(47 / 16 * 1rem);
}
.p-top-sevice__ttl {
  font-size: calc(24 / 16 * 1rem);
  margin-bottom: calc(24 / 16 * 1rem);
  line-height: calc(32 / 24);
  letter-spacing: normal;
  color: #827E79;
  font-weight: 200;
}
.p-top-sevice__desc {
  font-size: 1rem;
  line-height: calc(24 / 16);
  margin-bottom: calc(76 / 16 * 1rem);
  letter-spacing: normal;
  color: #827E79;
}

.l-postsList,
.l-worksList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.l-worksList {
  gap: calc(52 / 16 * 1rem);
}
.l-worksList__item {
  width: calc(33.3333333333% - (52 / 16 * 1rem) * 2 / 3);
}

.c-heading {
  font-size: calc(30 / 16 * 1rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-family: "ivymode", sans-serif;
  font-weight: 200;
}

.p-top-aboutus {
  background-color: #CDC7C3;
  padding: calc(118 / 16 * 1rem) 0 calc(52 / 16 * 1rem);
}
.p-top-aboutus__inner {
  max-width: 965px;
  margin: 0 auto;
  position: relative;
}
.p-top-aboutus__ttl {
  font-family: "ivymode", sans-serif;
  font-size: calc(50 / 16 * 1rem);
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 2rem;
  padding-left: 108px;
}
.p-top-aboutus__subttl {
  position: absolute;
  top: -112px;
  left: -155px;
  width: 360px;
  pointer-events: none;
}

.p-us-card {
  max-width: 460px;
  width: 100%;
  background-color: #fff;
  padding: calc(42 / 16 * 1rem) 1rem;
}
.p-us-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(45 / 16 * 1rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-us-card__inner {
  width: calc(100% - 2rem);
  max-width: 346px;
  margin: auto;
}
.p-us-card__illust {
  pointer-events: none;
  margin-bottom: calc(52 / 16 * 1rem);
  display: block;
  max-width: 250px;
  width: 100%;
  margin: 0 auto calc(52 / 16 * 1rem);
}
.p-us-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
  color: #827E79;
}
.p-us-card__info .--name {
  font-size: 1.5rem;
}
.p-us-card__info .--pos {
  font-size: 1rem;
}
.p-us-card__txt {
  color: #827E79;
  font-size: 1rem;
  line-height: 1.5;
}

.p-top-posts {
  position: relative;
  padding: calc(64 / 16 * 1rem) 0;
  background-size: cover;
  background-image: url(../img/common/blog_sec_bg.jpg);
}

.p-postsList__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 300/240;
  width: 100%;
}
.p-postsList__meta {
  margin-top: calc(20 / 16 * 1rem);
  background-color: #fff;
  padding: calc(10 / 16 * 1rem) calc(12 / 16 * 1rem);
  color: #827E79;
}
.p-postsList__ttl {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: calc(36 / 16 * 1rem);
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-postsList .c-catList {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 200;
}

.p-service-intro {
  color: #827E79;
}
.p-service-intro__heading {
  margin-bottom: calc(46 / 16 * 1rem);
  letter-spacing: 0;
  font-weight: 300;
}
.p-service-intro__desc {
  font-size: 1rem;
  line-height: calc(24 / 16);
  font-weight: 200;
  margin-top: 1.5em;
}

.p-service-bgtxt {
  background-image: url(../img/service/service-bg.jpg);
  background-size: cover;
  background-position: 0 34%;
  padding: 1rem 0 calc(48 / 16 * 1rem);
}
.p-service-bgtxt__heading {
  font-size: 2.5rem;
  margin-bottom: calc(40 / 16 * 1rem);
  line-height: calc(52 / 40);
}

.p-service-menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
.p-service-menu__head {
  max-width: 870px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: #87939A;
  letter-spacing: 0.1em;
}
.p-service-menu__head.-margin {
  margin-top: calc(52 / 16 * 1rem);
  margin-bottom: calc(45 / 16 * 1rem);
}
.p-service-menu__head .-ttl {
  font-size: 1.5rem;
}
.p-service-menu__head .-ttl.-small {
  font-size: 1.125rem;
}
.p-service-menu__head .-detail {
  line-height: calc(24 / 16);
}
.p-service-menu__body {
  color: #827E79;
  font-weight: 300;
}
.p-service-menu__body .-desc {
  margin-bottom: calc(32 / 16 * 1rem);
  margin-top: calc(32 / 16 * 1rem);
  letter-spacing: 0.1em;
  line-height: calc(24 / 16);
}
.p-service-menu__body .-include dt {
  letter-spacing: 0.05em;
  font-size: calc(22 / 16 * 1rem);
  line-height: 26px;
  font-weight: 300;
  margin-bottom: calc(20 / 16 * 1rem);
}
.p-service-menu__body .-include dd {
  letter-spacing: 0.1em;
  line-height: calc(24 / 16);
}

/*
  common parts
-----------------------------------------------------*/
.p-gotop {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  color: #fff;
  width: 86px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.p-gotop:hover {
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
}

/*
  post type page
-----------------------------------------------------*/
.p-page-mv {
  margin-bottom: calc(80 / 16 * 1rem);
}
.p-page-mv__img {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.p-page-mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-mv__img:not(.-noimg) {
  padding-top: 29.2825768668%;
}
.p-page-mv__img.-commonImg {
  padding-top: 21.9619326501%;
}
.p-page-mv__img.-noimg {
  height: calc(40 / 16 * 1rem);
}

/*
  post type page & post
-----------------------------------------------------*/
.p-article-contents h2:not([class]), .p-article-contents h3:not([class]), .p-article-contents h4:not([class]), .p-article-contents ul:not([class]), .p-article-contents ol:not([class]), .p-article-contents p:not([class]) {
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.1em;
}
.p-article-contents h2:not([class]):not(:first-child), .p-article-contents h3:not([class]):not(:first-child), .p-article-contents h4:not([class]):not(:first-child), .p-article-contents ul:not([class]):not(:first-child), .p-article-contents ol:not([class]):not(:first-child), .p-article-contents p:not([class]):not(:first-child) {
  margin-bottom: 1.5em;
}
.p-article-contents h2, .p-article-contents h3, .p-article-contents h4 {
  margin-bottom: 1em;
  margin-top: 2em;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.1em;
}
.p-article-contents h2 {
  font-size: 150%;
}
.p-article-contents h3 {
  font-size: 130%;
}
.p-article-contents h4 {
  font-size: 120%;
}
.p-article-contents a {
  -webkit-text-decoration: underline 1px gray;
          text-decoration: underline 1px gray;
  text-underline-offset: 4px;
}
.p-article-contents table:not([class]), .p-article-contents ul:not([class]), .p-article-contents ol:not([class]), .p-article-contents p:not([class]) {
  line-height: calc(24 / 14);
  font-size: 1rem;
}
.p-article-contents .wp-block-columns {
  margin-top: 2em;
  margin-bottom: 2em;
}
.p-article-contents .wp-block-column > h3:first-child {
  margin-top: 0;
}
.p-article-contents > *:last-child {
  margin-bottom: 0 !important;
}

/*
  single
-----------------------------------------------------*/
.p-entry-content {
  margin-top: 2rem;
}

.p-article-heading {
  margin-bottom: calc(40 / 16 * 1rem);
  font-size: calc(14 / 16 * 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 1.5rem;
}
.p-article-heading__main {
  font-size: calc(28 / 16 * 1rem);
  line-height: 1.25;
  font-weight: 400;
  opacity: 0.7;
}
.p-article-heading__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-article-heading__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-article-heading__img img {
  width: 100%;
}

/*
  archive
-----------------------------------------------------*/
.p-postlist {
  border-bottom: 1px solid #C4DBFF;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.p-postlist .c-article-heading__info {
  margin-bottom: 0.5rem;
}
.p-postlist__ttl {
  font-weight: 600;
  margin-bottom: calc(24 / 16 * 1rem);
}
.p-postlist__ttl a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.p-postlist__ttl a:hover {
  opacity: 0.7;
}
.p-postlist__excerpt {
  font-size: calc(12 / 16 * 1rem);
}
.p-postlist__excerpt a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.p-postlist__excerpt a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  line-height: 1.5em;
}
.p-pagination .icon-next, .p-pagination .icon-prev, .p-pagination .icon-first, .p-pagination .icon-last {
  min-width: 1.5em;
  display: inline-block;
  position: relative;
}
.p-pagination .icon-next::before, .p-pagination .icon-prev::before, .p-pagination .icon-first::before, .p-pagination .icon-last::before {
  position: absolute;
  top: 50%;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid;
  border-right: 1px solid;
}
.p-pagination .icon-next::before {
  right: 0;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.p-pagination .icon-prev::before {
  right: 0;
  -webkit-transform: rotate(225deg) translateY(-50%);
          transform: rotate(225deg) translateY(-50%);
  -webkit-transform-origin: top;
          transform-origin: top;
}

/*****************************************
* 基本ファイル
*****************************************/
/*****************************************
* ページごと
*****************************************/
@media screen and (max-width:1080px) {
  .p-footerNav__list {
    padding-left: 0;
  }
  .l-content-block {
    width: 90%;
  }
  .p-us-card__wrap {
    width: 90%;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width:767px) {
  .l-header {
    position: absolute;
    background: transparent;
    padding: calc(10 / 16 * 1rem) 0;
    min-height: 50px;
  }
  .p-header__logo {
    max-width: 224px;
  }
  .p-header__nav {
    display: none;
  }
  .p-hamburger {
    display: block;
  }
  .p-sp-header {
    top: 50px;
  }
  .p-sp-header__logo {
    top: 50px;
  }
  .p-sp-header .menu-item {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: calc(14 / 16 * 1rem);
  }
  .p-footer__logo {
    max-height: 29px;
    width: calc(100% - 29px - 1.5rem);
  }
  .p-footerNav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-footerNav__list {
    font-size: calc(14 / 16 * 1rem);
    width: 100%;
    padding-right: 0;
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.75rem;
    padding-left: 1rem;
  }
  .p-footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
  }
  .p-footer-contact__sec {
    margin: calc(64 / 16 * 1rem) auto;
  }
  .p-footer-contact > * {
    width: 100%;
    max-width: 100%;
  }
  .p-footer-contact__head p {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 0;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .p-footer-sns {
    position: absolute;
    top: 0;
    right: 0;
  }
  body {
    font-family: "poppins", sans-serif;
    font-weight: 400;
  }
  .u-font-s {
    font-size: calc(15 / 16 * 1rem);
  }
  .l-column-1 {
    margin-top: 3.5rem;
  }
  .l-column-2.-sidebar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(80 / 16 * 1rem);
  }
  .l-column-2.-sidebar .l-column-2__sidebar,
  .l-column-2.-sidebar .l-column-2__content {
    width: 100%;
    max-width: 100%;
  }
  .js-scroll {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .js-scroll:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .js-scroll table {
    width: 767px;
    overflow: scroll;
  }
  .c-heading-underline {
    font-size: calc(22 / 16 * 1rem);
  }
  .c-heading-underline .sub {
    font-size: calc(12 / 16 * 1rem);
  }
  .c-prev-next {
    padding-top: 1rem;
  }
  .c-btn__link {
    line-height: 1.25;
  }
  .c-checklist {
    font-size: calc(12 / 16 * 1rem);
    gap: 0.5rem;
  }
  .c-checklist__item {
    padding-left: 23px;
  }
  .c-checklist__item::before {
    -webkit-transform: scale(0.5) translateY(-50%);
            transform: scale(0.5) translateY(-50%);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .u-font-en {
    font-family: "poppins", sans-serif !important;
    font-weight: 400;
  }
  .u-font-s {
    font-size: calc(15 / 16 * 1rem);
  }
  .u-tab {
    display: block;
  }
  .u-pc {
    display: none;
  }
  .l-top-sec {
    gap: calc(64 / 16 * 1rem);
    margin: calc(64 / 16 * 1rem) auto 0;
  }
  .p-top-intro__desc {
    font-size: 1rem;
  }
  .p-top-works__heading {
    margin-bottom: 1.5rem;
  }
  .p-top-works.--bg {
    padding-top: 0.75rem;
  }
  .l-top-sevice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: auto;
    gap: 1.5rem;
  }
  .l-top-sevice .c-btn__link {
    margin: auto;
  }
  .p-top-sevice .c-heading {
    margin-bottom: 1.5rem;
  }
  .p-top-sevice__heading {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-sevice__ttl {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
  .p-top-sevice__desc {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
  }
  .l-top-posts {
    width: 80%;
  }
  .l-worksList {
    gap: 1.5rem;
  }
  .l-worksList__item {
    width: calc(33.3333333333% - 1rem);
  }
  .c-heading {
    font-size: calc(22 / 16 * 1rem);
  }
  .p-top-posts .swiper-button-prev {
    left: 5px !important;
  }
  .p-top-posts .swiper-button-next {
    right: 5px !important;
  }
  .p-top-posts .swiper-button-prev.swiper-button-disabled,
  .p-top-posts .swiper-button-next.swiper-button-disabled {
    opacity: 0;
  }
  .p-top-aboutus {
    padding: calc(70 / 16 * 1rem) 0 1.5rem;
  }
  .p-top-aboutus__ttl {
    padding-left: 0;
    font-size: calc(22 / 16 * 1rem);
    width: 90%;
    margin: 0 auto 14px;
  }
  .p-top-aboutus__subttl {
    width: 30%;
    left: 4%;
    top: 0;
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
  .p-us-card {
    padding: 1.5rem 1rem;
  }
  .p-us-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: auto;
    gap: 1.5rem;
  }
  .p-us-card__inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-us-card__inner > div {
    width: 90%;
  }
  .p-us-card__illust {
    width: 46%;
    margin-bottom: 1rem;
    max-width: 160px;
  }
  .p-us-card__info {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-us-card__info .--name {
    font-size: 1rem;
  }
  .p-us-card__info .--pos {
    font-size: calc(11 / 16 * 1rem);
    vertical-align: baseline;
  }
  .p-us-card__txt {
    font-size: calc(13 / 16 * 1rem);
    letter-spacing: 0.08em;
  }
  .p-top-posts {
    padding: 1.5rem 0;
  }
  .p-postsList__ttl {
    font-size: calc(14 / 16 * 1rem);
  }
  .p-postsList .c-catList {
    font-size: calc(10 / 16 * 1rem);
  }
  .p-service-intro__heading {
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    line-height: calc(60 / 40);
    font-size: calc(20 / 16 * 1rem);
  }
  .p-service-intro__desc {
    letter-spacing: 0.1em;
    margin-top: 1em;
  }
  .p-service-bgtxt {
    padding: 1rem 0;
  }
  .p-service-bgtxt__heading {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 1rem;
    font-family: "poppins", sans-serif;
  }
  .p-service-menu__wrap {
    gap: 1.5rem;
  }
  .p-service-menu__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .p-service-menu__head.-margin {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .p-service-menu__head.-submenu {
    padding: 0 0.5rem;
  }
  .p-service-menu__head .-ttl {
    font-size: calc(20 / 16 * 1rem);
    margin-bottom: 0.5rem;
  }
  .p-service-menu__head .-ttl.-small {
    font-size: 1rem;
  }
  .p-service-menu__head .-detail {
    font-size: calc(12 / 16 * 1rem);
    line-height: calc(36 / 24);
  }
  .p-service-menu__body .-desc {
    font-size: calc(12 / 16 * 1rem);
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .p-service-menu__body .-include dt {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 0.5rem;
  }
  .p-service-menu__body .-include dd {
    font-size: calc(12 / 16 * 1rem);
  }
  .p-page-mv {
    margin-bottom: calc(42 / 16 * 1rem);
  }
  .p-page-mv__img:not(.-noimg) {
    padding-top: 140%;
  }
  .p-article-contents h2:not([class]), .p-article-contents h3:not([class]), .p-article-contents h4:not([class]), .p-article-contents ul:not([class]), .p-article-contents ol:not([class]), .p-article-contents p:not([class]) {
    font-size: calc(14 / 16 * 1rem);
  }
  .p-article-contents h2 {
    font-size: 130%;
  }
  .p-article-contents h3 {
    font-size: 120%;
  }
  .p-article-contents h4 {
    font-size: 110%;
  }
  .p-article-heading {
    gap: 1rem;
  }
  .p-article-heading__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .p-article-heading__main {
    font-size: 1.35rem;
  }
  .p-article-heading__img img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 300/240;
  }
}
@media screen and (max-width: 767px) {
  .c-modal__content {
    width: 80%;
  }
}
@media screen and (max-width:480px) {
  .p-sp-header {
    top: 50px;
  }
  .p-sp-header__logo {
    top: 50px;
  }
  .js-scroll table {
    width: 480px;
  }
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */