@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height, 60px);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #333;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #333;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #333;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  -webkit-transition: .3s ease-out 0s;
  transition: .3s ease-out 0s;
  -webkit-transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  cursor: pointer;
  border: 1px solid #E83828;
  border-radius: 999em;
  background-color: #E83828;
  padding: .9em 2em 1.2em;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5625;
  text-align: center;
  text-decoration: none;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  outline: none;
  -webkit-box-shadow: 0 4px 12px rgba(232, 56, 40, .4);
  box-shadow: 0 4px 12px rgba(232, 56, 40, .4);
}

form button[type=submit]:hover::after, form button[type=submit]:focus-visible::after,
form input[type=submit]:hover::after,
form input[type=submit]:focus-visible::after,
form input[type=button]:hover::after,
form input[type=button]:focus-visible::after {
  -webkit-transform: translateY(-50%) translateX(3px);
  transform: translateY(-50%) translateX(3px);
}

form button[type=submit]::after,
form input[type=submit]::after,
form input[type=button]::after {
  aspect-ratio: 54/23;
  position: absolute;
  top: 50%;
  right: 1.2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url('../img/common/right-arrow.svg');
  mask-image: url('../img/common/right-arrow.svg');
  -webkit-mask-position: center right;
  mask-position: center right;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  background-color: #fff;
  width: 25px;
  width: 1.5625rem;
  content: '';
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #00B2ED;
  border-radius: .5rem;
  background-image: none;
  padding: 9px 16px;
  padding: .5625rem 1rem;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

textarea {
  height: 250px;
  height: 15.625rem;
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #004F9D;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #004F9D;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #00B2ED;
  border-radius: 50%;
  background: #fff;
  width: 1.45em;
  height: 1.45em;
  content: '';
}

input[type=radio] + span::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease-out 0s;
  transition: opacity .3s ease-out 0s;
  border-radius: 50%;
  background: #00B2ED;
  width: .45em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 2.175em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #00B2ED;
  width: 1.45em;
  height: 1.45em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease-out 0s;
  transition: opacity .3s ease-out 0s;
  border-right: .25em solid #00B2ED;
  border-bottom: .25em solid #00B2ED;
  width: .725em;
  height: 1.45em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #00B2ED;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #004F9D;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-radio {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wpcf7-list-item {
  margin: 0;
}

.l-company {
  padding-top: 80px;
  padding-top: 5rem;
}

.l-container {
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
  max-width: 660px;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-cta {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-footer {
  padding-top: 58px;
  padding-top: 3.625rem;
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.l-lead {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

.l-news {
  padding-top: 80px;
  padding-top: 5rem;
}

.l-page-about {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.l-page-contact {
  margin-top: 44px;
  margin-top: 2.75rem;
}

.l-page-faq {
  margin-top: 96px;
  margin-top: 6rem;
}

.l-page-flow {
  margin-top: 38px;
  margin-top: 2.375rem;
}

.l-page-lead {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.l-page-price {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.l-page-service {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.l-page-story {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.l-pen-line {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-section {
  margin-top: 48px;
  margin-top: 3rem;
}

.l-wave-bg {
  margin-top: clamp(150px, 63.904px + 22.96vw, 240px);
  margin-top: clamp(9.375rem, 3.994rem + 22.96vw, 15rem);
  margin-bottom: clamp(64px, -18.272px + 21.94vw, 150px);
  margin-bottom: clamp(4rem, -1.142rem + 21.94vw, 9.375rem);
}

.c-blueline {
  position: relative;
  border-bottom: 3px solid #00B2ED;
  border-bottom: .1875rem solid #00B2ED;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00B2ED;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
}

.c-blueline::before {
  position: absolute;
  bottom: -6px;
  bottom: -.375rem;
  left: 47%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-blueline::after {
  position: absolute;
  bottom: -10px;
  bottom: -.625rem;
  left: 47%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  z-index: -1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid;
  border: .1875rem solid;
  border-color: #00B2ED #00B2ED transparent transparent;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-blueline--padding {
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.c-blueline--small {
  font-size: 20px;
  font-size: 1.25rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  -webkit-transition: .3s ease-out 0s;
  transition: .3s ease-out 0s;
  -webkit-transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 999em;
  background-color: #EE859D;
  background-image: none;
  padding: .9em 2em 1.2em;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5625;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  outline: none;
  -webkit-box-shadow: 0 4px 12px rgba(238, 133, 157, .4);
  box-shadow: 0 4px 12px rgba(238, 133, 157, .4);
}

.c-btn::after {
  aspect-ratio: 54/23;
  position: absolute;
  top: 50%;
  right: 1.2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url('../img/common/right-arrow.svg');
  mask-image: url('../img/common/right-arrow.svg');
  -webkit-mask-position: center right;
  mask-position: center right;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  background-color: #fff;
  width: 25px;
  width: 1.5625rem;
  content: '';
}

.c-btn:hover::after, .c-btn:focus::after {
  -webkit-transform: translateY(-50%) translateX(3px);
  transform: translateY(-50%) translateX(3px);
}

/************************************************************************
* modifier
************************************************************************/
.c-btn--contact {
  padding: .5em 1em;
  width: 200px;
  width: 12.5rem;
}

.c-btn--contact::after {
  content: none;
}

.c-btn--blue {
  background-color: #00B2ED;
}

.c-btn--blue:hover, .c-btn--blue:focus-visible {
  -webkit-box-shadow: 0 4px 12px rgba(0, 178, 237, .4);
  box-shadow: 0 4px 12px rgba(0, 178, 237, .4);
}

.c-btn--blue::after {
  background-color: #fff;
}

.c-btn--border {
  border: 2px solid #EE859D;
  background-color: #fff;
  color: #EE859D;
}

.c-btn--border:hover, .c-btn--border:focus-visible {
  -webkit-box-shadow: 0 4px 12px rgba(238, 133, 157, .3);
  box-shadow: 0 4px 12px rgba(238, 133, 157, .3);
}

.c-btn--border::after {
  background-color: #EE859D;
}

/************************************************************************
* ペンの下線装飾コンポーネント
************************************************************************/
.c-pen-line {
  position: relative;
  min-height: 33px;
  min-height: 2.0625rem;
  overflow-x: clip;
}

.c-pen-line::after {
  aspect-ratio: 1712/67;
  position: absolute;
  top: 0;
  right: -82px;
  right: -5.125rem;
  background-image: url(../img/page/title-pen_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 822px;
  width: 51.375rem;
  content: '';
}

.c-pen-line--no-clip {
  overflow-x: visible;
}

.c-tag {
  display: inline-block;
  display: grid;
  place-items: center;
  border-radius: 999em;
  padding: 4px 16px;
  padding: .25rem 1rem;
  min-width: 130px;
  min-width: 8.125rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
}

.c-tag--yellow {
  background-color: #FFFCCF;
  color: #fbb03b;
}

.c-tag--pink {
  background-color: #FDECEF;
  color: #EE7893;
}

.c-tag--blue {
  background-color: #E5F7FD;
  color: #00B2ED;
}

.c-totop {
  display: block;
  position: fixed;
  right: 50%;
  bottom: 30px;
  bottom: 1.875rem;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  width: 95px;
  width: 5.9375rem;
  height: 95px;
  height: 5.9375rem;
}

.c-totop.is-active {
  visibility: visible;
  opacity: 1;
}

body.u-overflowHidden .c-totop {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* 中央の黄色い円 */
.c-totop__center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-radius: 50%;
  background-color: #FFF23F;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
}

/* 矢印アイコン */
.c-totop__arrow {
  aspect-ratio: 23/30;
  position: relative;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 20px;
  width: 1.25rem;
}

.c-totop__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-mask-image: url('../img/common/top-arrow.svg');
  mask-image: url('../img/common/top-arrow.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #00B2ED;
  width: 100%;
  height: 100%;
  content: '';
}

/* 回転するSVGテキスト */
.c-totop__rotating {
  inset: 0;
  position: absolute;
  -webkit-animation: rotate 8s linear infinite;
  animation: rotate 8s linear infinite;
  width: 100%;
  height: 100%;
}

.c-totop__svg {
  width: 100%;
  height: 100%;
}

.c-totop__text {
  fill: #00B2ED;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* 回転アニメーション */
@-webkit-keyframes rotate {

  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {

  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.p-archive__wrap {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-archive__footer {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-article__inner {
  margin-inline: auto;
  max-width: 900px;
  max-width: 56.25rem;
}

.p-article__meta {
  gap: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-article__date {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2em;
}

.p-article__metaTaxonomies {
  gap: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__title {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 2px solid #00B2ED;
  padding-top: 20px;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  border-left: 5px solid #00B2ED;
  background-color: #FFFCCF;
  padding: .5em .6em;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h3 {
  border-left: 5px solid #00B2ED;
  padding-left: .5em;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body h4 {
  border-bottom: 2px solid #00B2ED;
  padding-bottom: .3em;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #333;
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #333;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body table th:last-child {
  border-right: none;
}

.p-article__body > * + * {
  margin-top: 25px;
}

.p-article__body > *:first-child {
  margin-top: 0;
}

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  margin-left: 10px;
  margin-left: .625rem;
  padding-left: 1.25em;
}

.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #333;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #333;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font-size: 2em;
  font-weight: 900;
  line-height: 1;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .3em;
  content: '“';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .3em;
  bottom: 0;
  content: '”';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__footer {
  margin-top: 58px;
  margin-top: 3.625rem;
  text-align: center;
}

/************************************************************************
* CTAセクション
************************************************************************/
.p-cta__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-cta__block {
  display: grid;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  place-content: center;
  z-index: 1;
  padding: 44px 25px 54px;
  padding: 2.75rem 1.5625rem 3.375rem;
  text-align: center;
}

.p-cta__block-inner {
  margin-inline: auto;
  max-width: 472px;
  max-width: 29.5rem;
}

.p-cta__block--contact {
  background-color: #D9F4FC;
}

.p-cta__block--contact::before {
  aspect-ratio: 29/25;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../img/common/mail-img.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 33.8666666667vw;
  content: '';
}

.p-cta__block--faq {
  background-color: #FFFCCF;
}

.p-cta__block--faq::before {
  aspect-ratio: 139/150;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../img/common/question-img.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30.4vw;
  content: '';
}

.p-cta__heading {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  color: #00B2ED;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.p-cta__heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF23F;
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-cta__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.6666666667;
  text-align: left;
}

.p-cta__btn {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 41;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  cursor: pointer;
  border-radius: 50%;
  background-color: #EE859D;
  padding: 14px 12.5px;
  padding: .875rem .78125rem;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon.is-opened {
  background-color: transparent;
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #fff;
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  inset: 0;
  -webkit-overflow-scrolling: touch;
  display: grid;
  position: fixed;
  place-content: center;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #00B2ED;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #fff;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding: 40px 30px;
  padding: 2.5rem 1.875rem;
  width: 100%;
}

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

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-drawer__navLink {
  display: block;
  position: relative;
  padding: 10px 0;
  padding: .625rem 0;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
}

.p-drawer__navLink::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width .3s;
  transition: width .3s;
  background: #fff;
  width: 0;
  height: 2px;
  content: '';
}

.p-faq__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-faq__list {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-faq__item {
  display: grid;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  background: #FFFCCF;
  padding: 40px 25px;
  padding: 2.5rem 1.5625rem;
  min-height: 280px;
  min-height: 17.5rem;
  color: #004F9D;
}

.p-faq__item:nth-child(even) {
  background: #F2FBFE;
}

.p-faq__question {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3888888889;
}

.p-faq__question-head {
  color: #00B2ED;
  letter-spacing: .12em;
}

.p-faq__answer {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-faq__answer-head {
  color: #EE859D;
  font-weight: 700;
  letter-spacing: .12em;
}

.p-flow-list {
  gap: 90px;
  gap: 5.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-flow-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-flow-list__item::before {
  aspect-ratio: 60/32;
  position: absolute;
  bottom: -60px;
  bottom: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #EE859D;
  width: 60px;
  width: 3.75rem;
  content: '';
}

.p-flow-list__item:last-child::before {
  display: none;
}

.p-flow-list__item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #00B2ED;
  padding: 20px;
  padding: 1.25rem;
  text-align: center;
}

.p-flow-list__item-number {
  color: #FFF23F;
  font-family: 'Jost', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
}

.p-flow-list__item-title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-flow-list__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #FFFCCF;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
}

.p-flow-list__item-text {
  color: #004F9D;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

/************************************************************************
* フッターセクション
************************************************************************/
.p-footer__inner {
  gap: 54px;
  gap: 3.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__info {
  display: contents;
}

.p-footer__logo {
  margin-inline: auto;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 10px;
  margin-top: .625rem;
  width: 135px;
  width: 8.4375rem;
  height: auto;
}

.p-footer__logo-link {
  display: inline-block;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
  width: 100%;
  height: 100%;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__content {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.p-footer__items {
  gap: 18px;
  gap: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-footer__link {
  display: block;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.75;
}

.p-footer__link:focus-visible {
  color: #00B2ED;
}

.p-footer__sub-items {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-footer__sub-link {
  display: block;
  position: relative;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
  padding-left: 8px;
  padding-left: .5rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.75;
}

.p-footer__sub-link:focus-visible {
  color: #00B2ED;
}

.p-footer__sub-link::before {
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #E83828;
  width: 4px;
  width: .25rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-footer__copyright {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
}

.p-form ::-webkit-input-placeholder {
  color: #B3B3B3;
}

.p-form ::-moz-placeholder {
  color: #B3B3B3;
}

.p-form ::-ms-input-placeholder {
  color: #B3B3B3;
}

.p-form ::placeholder {
  color: #B3B3B3;
}

.p-form__list {
  margin: 0;
  padding: 0;
}

.p-form__item + .p-form__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-form__itemHead {
  color: #004F9D;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-form__label {
  font-weight: 700;
}

.p-form__label.is-required::after {
  display: inline-block;
  margin-left: .8em;
  background-color: #E83828;
  padding: 0 .8em;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.2;
  content: '必須';
}

.p-form__label.is-optional::after {
  display: inline-block;
  margin-left: .8em;
  background-color: #FFFCCF;
  padding: 0 .8em;
  color: #00B2ED;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.2;
  content: '任意';
}

.p-form__itemBody {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-form__itemBody--radio {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-form__privacyWrap {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-form__privacy {
  margin-inline: auto;
  border-radius: .5rem;
  background-color: #FFFCCF;
  padding: 42px 18px;
  padding: 2.625rem 1.125rem;
  max-width: 800px;
  max-width: 50rem;
  height: 340px;
  height: 21.25rem;
  overflow-y: auto;
  color: #004F9D;
}

.p-form__privacy-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.p-form__privacy-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-form__privacy-list {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-form__privacy-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-form__privacy-item-text {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-form__privacy-footer {
  margin-top: 30px;
  margin-top: 1.875rem;
  border-top: 1px solid #004F9D;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-form__privacy-footer-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-form__privacy-footer-items {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-form__privacy-footer-text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-form__privacyAgree {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  text-align: center;
}

.p-form__footer {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-form__footer--confirm {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__errorMsg {
  display: block;
  color: #E83828;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-form__input.is-error {
  border-color: #E83828;
  background-color: #FDECEF;
}

.p-form__itemBody.is-error input[type=radio] + span::before {
  border-color: #E83828;
}

.p-form__confirm {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
  white-space: pre-wrap;
  word-break: break-all;
}

.p-form__submit {
  border-color: #E83828;
  background-color: #E83828;
}

.p-form__submit--back {
  border-color: transparent;
  background-color: #b2b2b2;
}

.p-form__submit--back:hover, .p-form__submit--back:focus-visible {
  -webkit-box-shadow: 0 4px 12px rgba(178, 178, 178, .4);
  box-shadow: 0 4px 12px rgba(178, 178, 178, .4);
}

.p-form__submit--back::after {
  content: none;
}

.p-form__privacyPrependText {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.p-fv__bg {
  aspect-ratio: 751/1217;
  width: 100%;
  overflow: hidden;
}

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

.p-fv__content {
  position: absolute;
  top: 14%;
  left: 6.8%;
  width: 100%;
}

.p-fv__content-main {
  aspect-ratio: 658/187;
  width: 84.8%;
  overflow: hidden;
}

.p-fv__content-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-fv__content-sub {
  aspect-ratio: 648/350;
  margin-top: 4.5%;
  width: 86.4%;
  overflow: hidden;
}

.p-fv__content-sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header {
  background-color: #fff;
  padding-top: 7.5px;
  padding-top: .46875rem;
  padding-bottom: 7.5px;
  padding-bottom: .46875rem;
}

.p-header .l-container {
  padding-right: 10px;
  padding-right: .625rem;
  padding-left: 15px;
  padding-left: .9375rem;
}

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

.p-header__logo {
  z-index: 40;
  width: 87px;
  width: 5.4375rem;
  height: auto;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-loading {
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  background-color: #fff;
}

.p-loading__logo {
  aspect-ratio: 480/281;
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  width: 160px;
  width: 10rem;
}

.p-loading__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-lowerFv {
  position: relative;
  padding-top: 87px;
  padding-top: 5.4375rem;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.p-lowerFv--blue {
  background-color: #F2FBFE;
}

.p-lowerFv--yellow {
  background-color: #FFFCCF;
}

.p-lowerFv__title {
  position: relative;
  color: #004F9D;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-lowerFv__title::before {
  aspect-ratio: 9/10;
  position: absolute;
  top: -42px;
  top: -2.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/common/flag.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  width: 1.5rem;
  content: '';
}

.p-lowerFv__title::after {
  aspect-ratio: 1712/67;
  position: absolute;
  right: -78px;
  right: -4.875rem;
  bottom: -50px;
  bottom: -3.125rem;
  background-image: url(../img/page/title-pen_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 822px;
  width: 51.375rem;
  content: '';
}

/* ==================================================
 * p-moreBtn
 * 詳細を見るボタン（テキスト + 円形矢印ボタン）
 * ================================================== */
.p-moreBtn {
  gap: 16px;
  gap: 1rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.p-moreBtn__text {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  color: #00B2ED;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.p-moreBtn__circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -webkit-flex: 0 0 5rem;
  -ms-flex: 0 0 80px;
  -ms-flex: 0 0 5rem;
  flex: 0 0 80px;
  flex: 0 0 5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 2px solid #EE859D;
  border-radius: 50%;
  background-color: transparent;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
}

.p-moreBtn__circle::before {
  aspect-ratio: 54/23;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-mask-image: url('../img/common/right-arrow.svg');
  mask-image: url('../img/common/right-arrow.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #EE859D;
  width: 25px;
  width: 1.5625rem;
  content: '';
}

/* ==================================================
 * p-moreBtn--vertical
 * SPで縦並びになるバージョン
 * ================================================== */
.p-moreBtn--vertical {
  gap: 22px;
  gap: 1.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.p-news-list__link {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid #B3B3B3;
  padding: 30px 16px 25px;
  padding: 1.875rem 1rem 1.5625rem;
}

.p-news-list__item:last-child {
  border-bottom: 1px solid #B3B3B3;
}

.p-news-list__meta {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-news-list__tags {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-news-list__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .18em;
}

.p-news-list__title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  overflow: hidden;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.p-page-404__inner {
  text-align: center;
}

.p-page-404__number {
  color: #00B2ED;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.p-page-404__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-page-404__body {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}

.p-page-404__text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-404__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-page-about {
  position: relative;
  overflow-x: clip;
}

.p-page-about::before {
  aspect-ratio: 2782/1348;
  position: absolute;
  top: 40.5%;
  right: -32%;
  background-image: url(../img/page/about-bg-pen.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 131.4666666667%;
  content: '';
}

.p-page-about__lead {
  text-align: center;
}

.p-page-about__sub-lead {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-indent: -2em;
}

.p-page-about__main-lead {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #EE859D;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-indent: -.5em;
}

.p-page-about__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-about__company {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-page-about__company-content {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-page-about__company-title {
  text-align: center;
}

.p-page-about__company-name {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-page-about__plus {
  color: #EE859D;
  font-size: .8em;
}

.p-page-about__company-description {
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-about__company-logo {
  margin-top: 42px;
  margin-top: 2.625rem;
  text-align: center;
}

.p-page-about__company-logo img {
  aspect-ratio: 272/117;
  width: min(230px, 100%);
  width: min(14.375rem, 100%);
  -o-object-fit: contain;
  object-fit: contain;
}

.p-page-about__logo-text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-company__content {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.p-page-company__item {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-company__item + .p-page-company__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-page-company__item:last-child {
  border-bottom: none;
}

.p-page-company__term {
  background: #FFFCCF;
  padding: 5px 20px;
  padding: .3125rem 1.25rem;
  color: #004F9D;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
}

.p-page-company__description {
  padding: 0 2px;
  padding: 0 .125rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-company__description-list {
  padding-left: 10px;
  padding-left: .625rem;
}

.p-page-company__description-item {
  position: relative;
}

.p-page-company__description-item::before {
  position: absolute;
  top: .5lh;
  left: -10px;
  left: -.625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #EE859D;
  width: 3px;
  height: 3px;
  content: '';
}

.p-page-lead__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-page-lead__phrase {
  display: inline-block;
}

.p-page-profile {
  position: relative;
}

.p-page-profile::before {
  aspect-ratio: 375/80;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-99%);
  transform: translateX(-50%) translateY(-99%);
  background-image: url(../img/common/wave-top_sp.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  pointer-events: none;
  content: '';
}

.p-page-profile::after {
  aspect-ratio: 375/80;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(99%);
  transform: translateX(-50%) translateY(99%);
  background-image: url(../img/common/wave-bottom_sp.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  pointer-events: none;
  content: '';
}

.p-page-profile__bg {
  position: relative;
  background-color: #F2FBFE;
  padding-top: 74px;
  padding-top: 4.625rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-page-profile__content {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-page-profile__list {
  gap: 92px;
  gap: 5.75rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-page-profile__head {
  gap: 28px;
  gap: 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-page-profile__head-image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  overflow: hidden;
}

.p-page-profile__head-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page-profile__head-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-page-profile__name {
  color: #00B2ED;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3333333333;
  text-align: center;
}

.p-page-profile__name-en {
  -webkit-transform: translateX(.25rem);
  transform: translateX(.25rem);
  margin-top: 12px;
  margin-top: .75rem;
  color: #EE859D;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-align: center;
}

.p-page-profile__position {
  margin-top: 28px;
  margin-top: 1.75rem;
  color: #004F9D;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
}

.p-page-profile__body {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-page-profile__text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-profile__works {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-page-profile__works-title {
  text-align: center;
}

.p-page-profile__category-list {
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-page-profile__category-item + .p-page-profile__category-item {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-page-profile__category-title {
  background-color: #EE859D;
  padding: 8px 20px;
  padding: .5rem 1.25rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.p-page-profile__category-item:nth-child(even) .p-page-profile__category-title {
  background-color: #00B2ED;
}

.p-page-profile__works-list {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-page-profile__works-item {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-profile__works-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #00B2ED;
}

.p-page-profile__works-link::after {
  aspect-ratio: 1/1;
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
  width: 1.1666666667em;
  content: '';
}

.p-page-seminar {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-page-seminar__list {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-page-seminar__item-title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 fit-content;
  -ms-flex: 0 0 fit-content;
  flex: 0 0 fit-content;
  color: #004F9D;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-page-seminar__item-title-span {
  vertical-align: text-bottom;
  color: #333;
  font-weight: 500;
}

.p-page-seminar__item-text {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-page-service {
  overflow-x: clip;
}

.p-page-service__lead {
  margin-top: 35px;
  margin-top: 2.1875rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-service__lead--seminar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 28px;
  margin-top: 1.75rem;
  line-height: 1.6666666667;
}

.p-page-service__lead--sub {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-page-service__sub-text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-service__content {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-page-service__recommendation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: calc(50% - 50vw);
  border-radius: 0 999em 999em 0;
  background-color: #FDECEF;
  padding: 2.8125rem 1.875rem 2.5rem calc(50vw - 50%);
  width: calc(50% + 50vw);
}

.p-page-service__recommendation-title {
  color: #EE859D;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-page-service__recommendation-list {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-page-service__recommendation-item {
  position: relative;
  padding-left: 10px;
  padding-left: .625rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-service__recommendation-item::before {
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #EE859D;
  width: 3px;
  height: 3px;
  content: '';
}

.p-page-service__detail {
  position: relative;
}

.p-page-service__detail-title {
  text-align: center;
}

.p-page-service__detail-text {
  margin-top: 45px;
  margin-top: 2.8125rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.7333333333;
}

.p-page-service__detail-list {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-page-service__detail-item-title {
  display: grid;
  place-content: center;
  background: #FFFCCF;
  padding: 10px;
  padding: .625rem;
  width: 100%;
  color: #EE859D;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-page-service__detail-item-text {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-service__detail-image {
  margin-inline: auto;
  margin-top: 52px;
  margin-top: 3.25rem;
}

.p-page-service__detail-image--life {
  aspect-ratio: 701/517;
  width: min(100%, 350px);
  width: min(100%, 21.875rem);
}

.p-page-service__detail-image--strength {
  aspect-ratio: 485/556;
  margin-top: 52px;
  margin-top: 3.25rem;
  width: min(100%, 240px);
  width: min(100%, 15rem);
}

.p-page-service__detail-image--branding {
  aspect-ratio: 647/446;
  width: min(100%, 321px);
  width: min(100%, 20.0625rem);
}

.p-page-service__detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-page-service__flow-title {
  text-align: center;
}

.p-page-service__sub-title {
  text-align: center;
}

.p-page-service__flow-sub-title {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-page-service__flow-list {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-page-service__price-title {
  text-align: center;
}

.p-page-service__price-content {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-page-service__price {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-page-service__price-label {
  color: #004F9D;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-page-service__price-text {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-service__price-table {
  -webkit-overflow-scrolling: touch;
  margin-top: 32px;
  margin-top: 2rem;
  width: 100%;
  overflow-x: auto;
}

.p-page-service__price-table::-webkit-scrollbar {
  height: 8px;
  height: .5rem;
}

.p-page-service__price-table::-webkit-scrollbar-track {
  background: #F2FBFE;
}

.p-page-service__price-table::-webkit-scrollbar-thumb {
  background: #00B2ED;
}

.p-page-service__table-note {
  margin-top: 2px;
  margin-top: .125rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
  text-align: right;
}

.p-page-service__price-list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-page-service__price-list--print {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-page-service__price-note {
  margin-top: 45px;
  margin-top: 2.8125rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-page-service__price-example {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-page-service__note {
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #FDECEF;
}

.p-page-service__note-inner {
  padding: 12px 20px;
  padding: .75rem 1.25rem;
}

.p-page-service__note-head {
  color: #EE859D;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-page-service__note-text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-page-story {
  position: relative;
  overflow-x: clip;
}

.p-page-story::before {
  aspect-ratio: 1561/1188;
  position: absolute;
  top: 10%;
  left: 5px;
  left: .3125rem;
  background-image: url(../img/page/about-bg-flag.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96.8%;
  content: '';
}

.p-page-story__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-page-story__text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-story__message {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-page-story__sub-title {
  text-align: center;
}

.p-page-story__message-list {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-page-story__message-item {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-story__message-main {
  margin-top: 48px;
  margin-top: 3rem;
  color: #00B2ED;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-page-story__message-image {
  aspect-ratio: 3/2;
  margin-top: 34px;
  margin-top: 2.125rem;
  width: 100%;
  overflow: hidden;
}

.p-page-story__message-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page-sub-title {
  position: relative;
  border-top: 3px solid #00B2ED;
  border-bottom: 3px solid #00B2ED;
  padding-top: 15px;
  padding-top: .9375rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  color: #00B2ED;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.p-page-sub-title__span {
  position: relative;
  z-index: 1;
}

.p-page-sub-title::before {
  position: absolute;
  bottom: -6px;
  bottom: -.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.p-page-sub-title::after {
  position: absolute;
  bottom: -10px;
  bottom: -.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  z-index: -1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid;
  border: .1875rem solid;
  border-color: #00B2ED #00B2ED transparent transparent;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.p-page-thanks__inner {
  text-align: center;
}

.p-page-thanks__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-page-thanks__body {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}

.p-page-thanks__text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-thanks__text + .p-page-thanks__text {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-page-thanks__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-page-title__span {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  padding-bottom: .125rem;
  color: #00B2ED;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2;
}

.p-page-title__span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF23F;
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-pagination {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-pagination__prev,
.p-pagination__next,
.p-pagination__link,
.p-pagination__current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 24px;
  width: 1.5rem;
  height: 30px;
  height: 1.875rem;
  text-decoration: none;
}

.p-pagination__prev,
.p-pagination__next {
  position: relative;
  color: #EE859D;
}

.p-pagination__prev::before,
.p-pagination__next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-top: 2px solid currentColor;
  border-top: .125rem solid currentColor;
  border-right: 2px solid currentColor;
  border-right: .125rem solid currentColor;
  width: 15px;
  width: .9375rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.p-pagination__prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
  transform: translate(-30%, -50%) rotate(-135deg);
}

.p-pagination__next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
  transform: translate(-70%, -50%) rotate(45deg);
}

.p-pagination__link {
  border: 1px solid transparent;
  border: .0625rem solid transparent;
  border-radius: .25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.p-pagination__current {
  cursor: default;
  border-radius: .25rem;
  background-color: #00B2ED;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.p-pagination__prev--disabled,
.p-pagination__next--disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

/************************************************************************
* ペンの下線付きタイトルコンポーネント
************************************************************************/
.p-pen-title {
  position: relative;
  min-height: 33px;
  min-height: 2.0625rem;
  overflow-x: clip;
}

.p-pen-title::before {
  aspect-ratio: 1712/67;
  position: absolute;
  right: -82px;
  right: -5.125rem;
  bottom: 0;
  background-image: url(../img/page/title-pen_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 822px;
  width: 51.375rem;
  content: '';
}

.p-pen-title__title {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #00B2ED;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.3333333333;
  text-align: center;
}

.p-price-list {
  gap: 32px;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-price-list__title {
  background: #00B2ED;
  padding: 8px;
  padding: .5rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.p-price-list__text {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
  text-indent: -6px;
  text-indent: -.375rem;
}

.p-price-list__content {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-price-list__detail {
  background: #FFFCCF;
  padding: 14px 22px;
  padding: .875rem 1.375rem;
  color: #004F9D;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.p-price-list__price {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 2;
}

.p-price-list__note {
  display: grid;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
}

.p-price-list__note-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #EE859D;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  height: 100px;
  height: 6.25rem;
  color: #004F9D;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  text-align: center;
}

.p-section-title {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-section-title__ja {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0;
  color: #00B2ED;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3333333333;
}

.p-section-title__ja::before {
  aspect-ratio: 9/10;
  position: absolute;
  top: -28px;
  top: -1.75rem;
  left: 10px;
  left: .625rem;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  background-image: url(../img/common/flag.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  width: 1.375rem;
  content: '';
}

.p-section-title.is-section-animate .p-section-title__ja::before {
  -webkit-animation: flaganimate .6s ease-in forwards;
  animation: flagAnimate .6s ease-in forwards;
}

.p-section-title__inner {
  display: block;
  overflow: hidden;
}

.p-section-title__span {
  display: block;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

.p-section-title__en {
  display: block;
  -webkit-transform: translateX(.625rem);
  transform: translateX(.625rem);
  color: #FFF23F;
  font-family: 'Jost', sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.p-section__content {
  border: 2px solid #00B2ED;
  border-radius: .3125rem;
  padding: 52px 20px 42px;
  padding: 3.25rem 1.25rem 2.625rem;
}

.p-service-card {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 15px;
  padding-top: .9375rem;
}

.p-service-card--reverse {
  gap: 50px;
  gap: 3.125rem;
}

.p-service-card__image-block {
  position: relative;
}

.p-service-card__image {
  aspect-ratio: 350/215;
  margin-left: calc(50% - 50vw);
  width: calc(100% + 1.5625rem);
}

.p-service-card__image--reverse {
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}

.p-service-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-card__text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 32px;
  top: 2rem;
  right: -10px;
  right: -.625rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-service-card__text-block--reverse {
  top: 16px;
  top: 1rem;
  right: auto;
  left: -10px;
  left: -.625rem;
}

.p-service-card__text-block::before {
  aspect-ratio: 9/10;
  position: absolute;
  top: -45px;
  top: -2.8125rem;
  left: 48%;
  background-image: url(../img/common/flag.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  width: 1.375rem;
  content: '';
}

.p-service-card__vertical-text {
  position: relative;
  padding-top: 8px;
  padding-top: .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 2.3333333333;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.p-service-card__vertical-text::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #333;
  width: 3px;
  height: 3px;
  content: '';
}

.p-service-card__title {
  color: #00B2ED;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 2;
}

.p-service-card__title-span {
  display: block;
  position: relative;
  padding-bottom: 2px;
  padding-bottom: .125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-service-card__title-span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF23F;
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-service-card__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 2;
}

.p-service-card__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}

.p-table {
  border: 2px solid #004F9D;
  border-collapse: collapse;
  width: 100%;
  min-width: 410px;
  min-width: 25.625rem;
}

.p-table--print {
  min-width: 535px;
  min-width: 33.4375rem;
}

.p-table__header {
  border-right: 2px solid #004F9D;
  border-bottom: 2px solid #004F9D;
  background-color: #FFFCCF;
  padding: 18px;
  padding: 1.125rem;
  color: #004F9D;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
}

.p-table__header--plan {
  width: 37.6%;
}

.p-table__header--quantity {
  width: 31.2%;
}

.p-table--print .p-table__header--plan,
.p-table--print .p-table__title--plan {
  width: 30.65%;
}

.p-table--print .p-table__header--quantity,
.p-table--print .p-table__price--quantity {
  width: 23.12%;
}

.p-table__title {
  border-right: 2px solid #004F9D;
  border-bottom: 2px solid #004F9D;
  background-color: #FFFCCF;
  padding: 19px 10px;
  padding: 1.1875rem .625rem;
  color: #004F9D;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.p-table__price {
  border-right: 2px solid #004F9D;
  border-bottom: 2px solid #004F9D;
  padding: 15px;
  padding: .9375rem;
  color: #333;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
}

.p-table__price--none {
  background-color: #F2F2F2;
}

.p-table__scroll-hint {
  font-size: 9px;
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: -.2em;
}

/************************************************************************
* トップページ - リードセクション
************************************************************************/
.p-top-lead__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-top-lead__image {
  aspect-ratio: 1/1;
  margin-inline: auto;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 80%;
  overflow: hidden;
}

.p-top-lead__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.p-top-lead__content {
  display: contents;
}

.p-top-lead__text-block {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-top-lead__title {
  position: relative;
  color: #00B2ED;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.05;
}

.p-top-lead__title-inner {
  display: block;
  overflow: hidden;
}

.p-top-lead__title::before {
  aspect-ratio: 9/10;
  position: absolute;
  top: -15px;
  top: -.9375rem;
  left: 12px;
  left: .75rem;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  background-image: url(../img/common/flag.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  width: 1.4375rem;
  content: '';
}

.p-top-lead__title.is-title-animate::before {
  -webkit-animation: flaganimate .6s ease-in forwards;
  animation: flagAnimate .6s ease-in forwards;
}

@-webkit-keyframes flagAnimate {

  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 1;
  }

  65% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }

  80% {
    -webkit-transform: translateY(3%);
    transform: translateY(3%);
  }

  95% {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
  }

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

@keyframes flagAnimate {

  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 1;
  }

  65% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }

  80% {
    -webkit-transform: translateY(3%);
    transform: translateY(3%);
  }

  95% {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
  }

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

.p-top-lead__title-span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  padding-bottom: .375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.p-top-lead__title-span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF23F;
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-top-lead__text {
  margin-top: 34px;
  margin-top: 2.125rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 2;
}

.p-top-lead__text--bottom {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-top-lead__list {
  gap: 26px;
  gap: 1.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-top-lead__item-title {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  color: #00B2ED;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 2;
}

.p-top-lead__item-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF23F;
  width: 100%;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-top-lead__item-text {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.6666666667;
}

.p-top-lead__btn {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 56px;
  margin-top: 3.5rem;
  text-align: center;
}

.p-top-news {
  overflow-x: clip;
}

.p-top-news__list {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-top-news__inner > p {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-top-service {
  position: relative;
  overflow-x: clip;
}

.p-top-service::before {
  aspect-ratio: 375/80;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-99%);
  transform: translateX(-50%) translateY(-99%);
  background-image: url(../img/common/wave-top_sp.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  pointer-events: none;
  content: '';
}

.p-top-service::after {
  aspect-ratio: 375/80;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(99%);
  transform: translateX(-50%) translateY(99%);
  background-image: url(../img/common/wave-bottom_sp.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  pointer-events: none;
  content: '';
}

.p-top-service__bg {
  position: relative;
  background-color: #F2FBFE;
  padding-top: 74px;
  padding-top: 4.625rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-top-service__inner {
  position: relative;
  z-index: 1;
}

.p-top-service__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-top-service__text-indent {
  display: inline-block;
  text-indent: -.5em;
}

.p-top-service__list {
  gap: 75px;
  gap: 4.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-pink {
  color: #EE859D;
}

.u-blue {
  color: #004F9D;
}

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

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {

  html {
    scroll-padding-top: var(--header-height, 100px);
  }

  html {
    font-size: 1.4545454545vw;
    font-size: calc(var(--vw-unitless) / 1100 * 100%);
  }

  input,
  textarea {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  textarea {
    height: 350px;
    height: 21.875rem;
  }

  input[type=radio] + span {
    padding: 0 0 0 2.175em;
  }

  :root {
    --header-height: 100px;
  }

  .wpcf7-radio {
    gap: 20px 40px;
    gap: 1.25rem 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .l-company {
    padding-top: 80px;
    padding-top: 5rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1160px;
  }

  .l-container.l-container--narrow {
    max-width: 660px;
  }

  .l-container.l-container--wide {
    max-width: 1435px;
  }

  .l-cta {
    margin-top: 150px;
    margin-top: 9.375rem;
  }

  .l-footer {
    padding-top: 70px;
    padding-top: 4.375rem;
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
  }

  .l-lead {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-news {
    padding-top: 90px;
    padding-top: 5.625rem;
  }

  .l-page-about {
    margin-top: 130px;
    margin-top: 8.125rem;
  }

  .l-page-contact {
    margin-top: 148px;
    margin-top: 9.25rem;
  }

  .l-page-faq {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .l-page-flow {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .l-page-lead {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .l-page-price {
    margin-top: 132px;
    margin-top: 8.25rem;
  }

  .l-page-service {
    margin-top: 92px;
    margin-top: 5.75rem;
  }

  .l-page-story {
    margin-top: 180px;
    margin-top: 11.25rem;
  }

  .l-pen-line {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .l-section {
    margin-top: 154px;
    margin-top: 9.625rem;
  }

  .l-wave-bg {
    margin-top: 300px;
    margin-top: 18.75rem;
    margin-bottom: 150px;
    margin-bottom: 9.375rem;
  }

  .c-blueline--small {
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .c-pen-line {
    min-height: 60px;
    min-height: 3.75rem;
  }

  .c-pen-line::after {
    aspect-ratio: 5574/119;
    right: calc(50% - min(58vw, 51.875rem));
    background-image: url(../img/page/title-pen.png);
    width: 2786px;
    width: 174.125rem;
  }

  .c-tag {
    padding: 8px 16px;
    padding: .5rem 1rem;
  }

  .c-totop {
    right: 50px;
    right: 3.125rem;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .p-archive__wrap {
    margin-top: 150px;
    margin-top: 9.375rem;
  }

  .p-archive__footer {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-article__meta {
    gap: 20px;
  }

  .p-article__date {
    font-size: 18px;
  }

  .p-article__title {
    margin-top: 6px;
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 2.2727272727;
  }

  .p-article__body {
    padding-top: 25px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-article__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-cta__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-cta__block {
    padding: 65px 25px 75px;
    padding: 4.0625rem 1.5625rem 4.6875rem;
  }

  .p-cta__block--contact::before {
    width: 16.9444444444vw;
  }

  .p-cta__block--faq::before {
    width: 15.2777777778vw;
  }

  .p-cta__heading {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-cta__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-cta__btn {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-faq__lead {
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-faq__list {
    gap: 45px;
    gap: 2.8125rem;
    margin-top: 62px;
    margin-top: 3.875rem;
  }

  .p-faq__item {
    padding: 55px 60px;
    padding: 3.4375rem 3.75rem;
    min-height: 235px;
    min-height: 14.6875rem;
  }

  .p-faq__question {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.2;
  }

  .p-faq__answer {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-flow-list {
    gap: 113px;
    gap: 7.0625rem;
  }

  .p-flow-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-flow-list__item::before {
    bottom: -72px;
    bottom: -4.5rem;
    left: 49%;
  }

  .p-flow-list__item-header {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 290px;
    -webkit-flex: 0 0 18.125rem;
    -ms-flex: 0 0 290px;
    -ms-flex: 0 0 18.125rem;
    flex: 0 0 290px;
    flex: 0 0 18.125rem;
    padding: 25px;
    padding: 1.5625rem;
  }

  .p-flow-list__item-number {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-flow-list__item-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 32px 60px;
    padding: 2rem 3.75rem;
  }

  .p-flow-list__item-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__items {
    gap: 28px 16px;
    gap: 1.75rem 1rem;
    display: grid;
    grid-template-columns: .5fr 1fr 1fr;
  }

  .p-footer__copyright {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-form__item + .p-form__item {
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-form__itemHead {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-form__label.is-required::after {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-form__label.is-optional::after {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-form__itemBody {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-form__itemBody--radio {
    gap: 20px 40px;
    gap: 1.25rem 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-form__privacyWrap {
    margin-top: 95px;
    margin-top: 5.9375rem;
  }

  .p-form__privacy {
    padding: 50px 75px;
    padding: 3.125rem 4.6875rem;
    height: 285px;
    height: 17.8125rem;
  }

  .p-form__privacy-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-form__privacy-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-form__privacy-list {
    gap: 50px;
    gap: 3.125rem;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-form__privacy-item-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-form__privacy-item-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-form__privacy-footer {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-form__privacy-footer-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-form__privacy-footer-items {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-form__privacy-footer-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-form__privacyAgree {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-form__footer {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-form__footer--confirm {
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-form__errorMsg {
    display: inline-block;
    margin-left: 1.4em;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-form__confirm {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-form__privacyPrependText {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-fv__bg {
    aspect-ratio: 2881/1601;
  }

  .p-fv__content {
    top: 8%;
    left: 26.3%;
  }

  .p-fv__content-main {
    aspect-ratio: 40/11;
    width: 47.9166666667%;
  }

  .p-fv__content-sub {
    aspect-ratio: 233/53;
    margin-top: 3.2%;
    width: 48.4722222222%;
  }

  .p-header {
    padding-top: 22px;
    padding-top: 1.375rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }

  .p-header .l-container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .p-header__logo {
    width: 135px;
    width: 8.4375rem;
  }

  .p-header__nav {
    gap: min(36px, 2.5vw);
    gap: min(2.25rem, 2.5vw);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    gap: min(24px, 1.7vw);
    gap: min(1.5rem, 1.7vw);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li > a {
    display: block;
    -webkit-transition: color .3s ease-out;
    transition: color .3s ease-out;
    padding: 15px 10px;
    padding: .9375rem .625rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .12em;
  }

  .p-header__nav li > a:focus-visible {
    color: #00B2ED;
  }

  .p-header__drawer {
    display: none;
  }

  .p-loading__logo {
    width: 450px;
    width: 28.125rem;
  }

  .p-lowerFv {
    padding-top: 108px;
    padding-top: 6.75rem;
    padding-bottom: 152px;
    padding-bottom: 9.5rem;
  }

  .p-lowerFv__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-lowerFv__title::before {
    top: -45px;
    top: -2.8125rem;
    width: 30px;
    width: 1.875rem;
  }

  .p-lowerFv__title::after {
    aspect-ratio: 5574/119;
    right: calc(50% - min(58vw, 51.875rem));
    bottom: -68px;
    bottom: -4.25rem;
    background-image: url(../img/page/title-pen.png);
    width: 2786px;
    width: 174.125rem;
  }

  .p-moreBtn--vertical {
    gap: 16px;
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }

  .p-news-list__link {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 80px;
    padding: 1.875rem 5rem;
  }

  .p-news-list__meta {
    gap: 28px;
    gap: 1.75rem;
  }

  .p-news-list__tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-news-list__date {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-news-list__title {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-page-404__number {
    font-size: 120px;
    font-size: 7.5rem;
  }

  .p-page-404__title {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.2;
  }

  .p-page-404__body {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 100%;
    text-align: center;
  }

  .p-page-404__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-404__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-page-about::before {
    top: auto;
    right: -35px;
    right: -2.1875rem;
    bottom: 50px;
    bottom: 3.125rem;
    width: 96.5277777778%;
  }

  .p-page-about__sub-lead {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 2.3333333333;
  }

  .p-page-about__main-lead {
    margin-top: 4px;
    margin-top: .25rem;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.75;
  }

  .p-page-about__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-about__company {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }

  .p-page-about__company.l-container--narrow {
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-page-about__company-title {
    text-align: left;
  }

  .p-page-about__company-name {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }

  .p-page-about__paren {
    margin-right: -10px;
    margin-right: -.625rem;
  }

  .p-page-about__plus {
    margin-right: 10px;
    margin-right: .625rem;
  }

  .p-page-about__company-description {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-about__company-logo {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-page-about__company-logo img {
    width: 322px;
    width: 20.125rem;
  }

  .p-page-about__logo-text {
    margin-top: 72px;
    margin-top: 4.5rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-company__content {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-page-company__list {
    border: 2px solid #004F9D;
  }

  .p-page-company__item {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #004F9D;
  }

  .p-page-company__item + .p-page-company__item {
    margin-top: 0;
  }

  .p-page-company__term {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 190px;
    -webkit-flex: 0 0 11.875rem;
    -ms-flex: 0 0 190px;
    -ms-flex: 0 0 11.875rem;
    flex: 0 0 190px;
    flex: 0 0 11.875rem;
    padding: 24px 20px 24px;
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .p-page-company__description {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 24px 70px 24px 40px;
    padding: 1.5rem 4.375rem 1.5rem 2.5rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-lead__text {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 2.8;
    text-align: center;
  }

  .p-page-profile::before {
    aspect-ratio: 1440/150;
    background-image: url(../img/common/wave-top.svg);
  }

  .p-page-profile::after {
    aspect-ratio: 1440/150;
    background-image: url(../img/common/wave-bottom.svg);
  }

  .p-page-profile__bg {
    padding-top: 45px;
    padding-top: 2.8125rem;
    padding-bottom: 160px;
    padding-bottom: 10rem;
  }

  .p-page-profile__content {
    margin-top: 68px;
    margin-top: 4.25rem;
  }

  .p-page-profile__list {
    gap: min(100px, 7vw);
    gap: min(6.25rem, 7vw);
    grid-template-columns: repeat(2, 1fr);
  }

  .p-page-profile__head {
    gap: 50px;
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-page-profile__name {
    text-align: left;
  }

  .p-page-profile__name-en {
    text-align: left;
  }

  .p-page-profile__position {
    margin-top: 28px;
    margin-top: 1.75rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .p-page-profile__body {
    margin-top: 42px;
    margin-top: 2.625rem;
  }

  .p-page-profile__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-profile__works {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-page-profile__works-title {
    text-align: left;
  }

  .p-page-profile__category-title {
    display: grid;
    place-content: center;
    padding: 6.5px 20px;
    padding: .40625rem 1.25rem;
    width: 200px;
    width: 12.5rem;
  }

  .p-page-profile__works-list {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-page-profile__works-item {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-seminar {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-page-seminar__list {
    gap: 3px;
    gap: .1875rem;
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-page-seminar__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-page-seminar__item-text {
    margin-top: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__lead {
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__lead--sub {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-page-service__sub-text {
    margin-top: 25px;
    margin-top: 1.5625rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__content {
    gap: 50px;
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 65px;
    margin-top: 4.0625rem;
  }

  .p-page-service__recommendation {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(32.5rem + max(0px, 50vw - 45rem));
    -ms-flex: 0 0 calc(32.5rem + max(0px, 50vw - 45rem));
    flex: 0 0 calc(32.5rem + max(0px, 50vw - 45rem));
    padding-left: max(50vw - 50%, 60px);
    padding-left: max(50vw - 50%, 3.75rem);
    height: 400px;
    height: 25rem;
  }

  .p-page-service__recommendation-title {
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-page-service__recommendation-list {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-page-service__recommendation-item {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__detail {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
  }

  .p-page-service__detail-body {
    container-type: inline-size;
    container-name: detail-body;
    margin-top: 18px;
    margin-top: 1.125rem;
    width: 100%;
  }

  .p-page-service__detail-title {
    text-align: left;
  }

  .p-page-service__detail-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__detail-list {
    gap: 42px;
    gap: 2.625rem;
    margin-top: 65px;
    margin-top: 4.0625rem;
  }

  .p-page-service__detail-item-title {
    width: 200px;
    width: 12.5rem;
  }

  .p-page-service__detail-item-text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__detail-item-text--narrow {
    width: 68%;
  }

  .p-page-service__detail-image {
    margin-top: 0;
  }

  .p-page-service__detail-image--life {
    position: absolute;
    top: 35%;
    right: calc(50% - min(33vw, 29.6875rem));
    z-index: -1;
    width: min(54.6875%, 350px);
    width: min(54.6875%, 21.875rem);
  }

  .p-page-service__detail-image--strength {
    margin-inline: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: min(37.5%, 240px);
    width: min(37.5%, 15rem);
  }

  .p-page-service__detail-image--branding {
    position: absolute;
    top: 30%;
    right: calc(50% - min(34vw, 30.3125rem));
    z-index: -1;
    width: min(50%, 320px);
    width: min(50%, 20rem);
  }

  .p-page-service__flow-title {
    text-align: left;
  }

  .p-page-service__flow-sub-title {
    margin-top: 65px;
    margin-top: 4.0625rem;
  }

  .p-page-service__flow-list {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-page-service__price-title {
    text-align: left;
  }

  .p-page-service__price-content {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-page-service__price {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }

  .p-page-service__price-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__price-table {
    overflow-x: visible;
  }

  .p-page-service__table-note {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__price-list {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-page-service__price-list--print {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-page-service__price-note {
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-service__price-example {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-page-service__note {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-page-service__note-inner {
    margin-inline: auto;
    padding: 22px 0 32px;
    padding: 1.375rem 0 2rem;
    max-width: 882px;
    max-width: 55.125rem;
  }

  .p-page-service__note-head {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-page-service__note-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
  @container detail-body (max-width: 600px) {

    .p-page-service__detail-item-text--narrow {
      width: auto;
    }

    .p-page-service__detail-image--life {
      margin-inline: auto;
      position: static;
      margin-top: 52px;
      margin-top: 3.25rem;
    }

    .p-page-service__detail-image--branding {
      margin-inline: auto;
      position: static;
      margin-top: 52px;
      margin-top: 3.25rem;
    }
  }

  .p-page-story::before {
    top: 15%;
    left: -22px;
    left: -1.375rem;
    width: 52.2916666667%;
  }

  .p-page-story__content {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-page-story__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-page-story__message {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }

  .p-page-story__sub-title {
    text-align: left;
  }

  .p-page-story__message-list {
    gap: 60px;
    gap: 3.75rem;
    margin-top: 42px;
    margin-top: 2.625rem;
  }

  .p-page-story__message-item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-page-story__message-main {
    margin-top: 78px;
    margin-top: 4.875rem;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.75;
    text-align: center;
  }

  .p-page-story__message-image {
    margin-top: 85px;
    margin-top: 5.3125rem;
  }

  .p-page-sub-title {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1;
  }

  .p-page-sub-title::before {
    left: 49%;
  }

  .p-page-sub-title::after {
    left: 49%;
  }

  .p-page-thanks__title {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.2;
  }

  .p-page-thanks__body {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 100%;
    text-align: center;
  }

  .p-page-thanks__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-page-thanks__text + .p-page-thanks__text {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-page-thanks__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-pagination {
    gap: 12px;
    gap: .75rem;
  }

  .p-pen-title {
    min-height: 60px;
    min-height: 3.75rem;
  }

  .p-pen-title::before {
    aspect-ratio: 5574/119;
    right: calc(50% - min(58vw, 51.875rem));
    background-image: url(../img/page/title-pen.png);
    width: 2786px;
    width: 174.125rem;
  }

  .p-pen-title__title {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 1.4;
  }

  .p-price-list {
    gap: 54px 100px;
    gap: 3.375rem 6.25rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-price-list__title {
    width: 292px;
    width: 18.25rem;
  }

  .p-price-list__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
    text-indent: -10px;
    text-indent: -.625rem;
  }

  .p-price-list__content {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-price-list__detail {
    padding: 16px 24px 16px 28px;
    padding: 1rem 1.5rem 1rem 1.75rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-price-list__price {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-price-list__note-text {
    height: 147px;
    height: 9.1875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-section-title {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-section-title__ja {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.5;
  }

  .p-section-title__ja::before {
    top: -46px;
    top: -2.875rem;
    left: 15px;
    left: .9375rem;
    width: 32px;
    width: 2rem;
  }

  .p-section-title__en {
    font-size: 120px;
    font-size: 7.5rem;
  }

  .p-section-title__inner--break {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-section__content {
    border-radius: .625rem;
    padding: 82px 30px 50px;
    padding: 5.125rem 1.875rem 3.125rem;
  }

  .p-service-card {
    gap: 100px;
    gap: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 80px;
    padding-top: 5rem;
  }

  .p-service-card--reverse {
    gap: 100px;
    gap: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-service-card__image-block {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 650px;
    -webkit-flex: 0 0 40.625rem;
    -ms-flex: 0 0 650px;
    -ms-flex: 0 0 40.625rem;
    flex: 0 0 650px;
    flex: 0 0 40.625rem;
  }

  .p-service-card__image {
    aspect-ratio: 650/400;
    margin-left: 0;
    width: 100%;
  }

  .p-service-card__image--reverse {
    margin-right: auto;
  }

  .p-service-card__text-block {
    top: -10px;
    top: -.625rem;
    right: 15px;
    right: .9375rem;
  }

  .p-service-card__text-block--reverse {
    top: -10px;
    top: -.625rem;
    right: 15px;
    right: .9375rem;
    left: auto;
  }

  .p-service-card__text-block::before {
    top: -74px;
    top: -4.625rem;
    width: 32px;
    width: 2rem;
  }

  .p-service-card__vertical-text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2.5;
  }

  .p-service-card__body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-service-card__text {
    margin-top: 54px;
    margin-top: 3.375rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-service-card__btn {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-table {
    min-width: initial;
  }

  .p-table--print {
    min-width: initial;
  }

  .p-table__header {
    padding: 28px 18px;
    padding: 1.75rem 1.125rem;
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-table__header--plan {
    width: 33.3333333333%;
  }

  .p-table__header--quantity {
    width: 33.3333333333%;
  }

  .p-table--print .p-table__header--plan,
  .p-table--print .p-table__title--plan {
    width: 25%;
  }

  .p-table--print .p-table__header--quantity,
  .p-table--print .p-table__price--quantity {
    width: 25%;
  }

  .p-table__title {
    padding: 15px;
    padding: .9375rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-table__price {
    padding: 15px;
    padding: .9375rem;
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-table__scroll-hint {
    display: none;
  }

  .p-top-lead__inner {
    gap: min(100px, 7vw);
    gap: min(6.25rem, 7vw);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-top-lead__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 400px;
    -webkit-flex: 0 0 25rem;
    -ms-flex: 0 0 400px;
    -ms-flex: 0 0 25rem;
    flex: 0 0 400px;
    flex: 0 0 25rem;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0;
    margin-top: 16px;
    margin-top: 1rem;
    width: 100%;
  }

  .p-top-lead__content {
    display: block;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .p-top-lead__title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.65;
  }

  .p-top-lead__title::before {
    top: -40px;
    top: -2.5rem;
    left: 18px;
    left: 1.125rem;
    width: 32px;
    width: 2rem;
  }

  .p-top-lead__text {
    margin-top: 48px;
    margin-top: 3rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-top-lead__text--bottom {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-top-lead__list {
    gap: 28px;
    gap: 1.75rem;
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-top-lead__item-title {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1.7391304348;
  }

  .p-top-lead__item-text {
    margin-top: 18px;
    margin-top: 1.125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }

  .p-top-lead__btn {
    margin-top: 78px;
    margin-top: 4.875rem;
    text-align: right;
  }

  .p-top-news__list {
    margin-top: 78px;
    margin-top: 4.875rem;
  }

  .p-top-news__inner > p {
    margin-top: 78px;
    margin-top: 4.875rem;
  }

  .p-top-service::before {
    aspect-ratio: 1440/150;
    background-image: url(../img/common/wave-top.svg);
  }

  .p-top-service::after {
    aspect-ratio: 1440/150;
    background-image: url(../img/common/wave-bottom.svg);
  }

  .p-top-service__bg {
    padding-top: 108px;
    padding-top: 6.75rem;
    padding-bottom: 160px;
    padding-bottom: 10rem;
  }

  .p-top-service__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-top-service__list {
    gap: 120px;
    gap: 7.5rem;
    margin-top: 70px;
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 768px) and (hover: hover) {

  .p-header__nav li > a:hover {
    color: #00B2ED;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1100px) {

  html {
    font-size: 100%;
  }
}

@media screen and (min-width: 1440px) {

  .p-page-service__recommendation {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(32.5rem + 50vw - 45rem);
    -ms-flex: 0 0 calc(32.5rem + 50vw - 45rem);
    flex: 0 0 calc(32.5rem + 50vw - 45rem);
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}

@media (hover: hover) {

  .c-totop:hover .c-totop__arrow::before {
    -webkit-transform: translate(-50%, calc(-50% - .1875rem));
    transform: translate(-50%, calc(-50% - .1875rem));
  }

  .p-drawer__navLink:hover::after {
    width: 100%;
  }

  .p-footer__logo-link:hover {
    opacity: .7;
  }

  .p-footer__link:hover {
    color: #00B2ED;
  }

  .p-footer__sub-link:hover {
    color: #00B2ED;
  }

  .p-header__logo a:hover {
    opacity: .7;
  }

  .p-moreBtn:hover .p-moreBtn__circle {
    background-color: #EE859D;
  }

  .p-moreBtn:hover .p-moreBtn__circle::before {
    -webkit-transform: translate(-50%, -50%) translateX(3px);
    transform: translate(-50%, -50%) translateX(3px);
    background-color: #fff;
  }

  .p-news-list__link:hover .p-news-list__title {
    color: #00B2ED;
  }

  .p-page-profile__works-link:hover {
    opacity: .7;
  }

  .p-pagination__prev:hover,
  .p-pagination__next:hover {
    opacity: .7;
  }

  .p-pagination__prev:hover::before {
    -webkit-transform: translate(-40%, -50%) rotate(-135deg);
    transform: translate(-40%, -50%) rotate(-135deg);
  }

  .p-pagination__next:hover::before {
    -webkit-transform: translate(-60%, -50%) rotate(45deg);
    transform: translate(-60%, -50%) rotate(45deg);
  }

  .p-pagination__link:hover {
    background-color: rgba(0, 178, 237, .1);
    color: #00B2ED;
  }
}