@charset "UTF-8";



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

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: #f2fbff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #575757;
  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;
}

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

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

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.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;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

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

button {
  color: #575757;
}

/************************************************************************
* 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: #575757;
  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;
  cursor: pointer;
  width: auto;
}

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 {
  outline: none;
}

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 #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

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

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

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

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

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 #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  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: 1.875em;
  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 #707070;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  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 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #575757;
  border-bottom: .25em solid #575757;
  width: 10px;
  width: .625rem;
  height: 20px;
  height: 1.25rem;
  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 #707070;
  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: #707070;
}

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;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #d5f5ff;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #d5f5ff;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #575757;
}

#toc_container .toc_list li::before {
  display: none;
  color: #d5f5ff;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #575757;
}

.l-activity {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.l-article-page {
  margin-top: 66px;
  margin-top: 4.125rem;
  background-color: #fff;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  width: 100%;
}

.l-container {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

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

.l-main {
  background-color: #fff;
  width: 100%;
}

.l-footer {
  margin: 0 auto;
  width: 100%;
}

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

.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-news {
  margin-top: 115px;
  margin-top: 7.1875rem;
}

.l-office {
  margin-top: 95px;
  margin-top: 5.9375rem;
}

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

.l-profile-page {
  margin-top: 66px;
  margin-top: 4.125rem;
  width: 100%;
}

.l-profile {
  margin-top: 125px;
  margin-top: 7.8125rem;
}

.l-thought {
  margin-top: 28px;
  margin-top: 1.75rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #d5f5ff;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #d5f5ff;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #d5f5ff;
  background-color: #d5f5ff;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(162, 232.8571428571, 255);
  background-color: #d5f5ff;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #d5f5ff;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #d5f5ff;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #d5f5ff;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

/************************************************************************
* バリエーション：セクション用ボタン（共通）
************************************************************************/
.c-sectionBtn {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border: none;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 10px 40px;
  padding: .625rem 2.5rem;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-sectionBtn:hover, .c-sectionBtn:focus {
  opacity: .8;
  color: #fff;
}

.c-sectionBtn.c-sectionBtn--line {
  background-color: #06c755;
}

.c-sectionBtn.c-sectionBtn--support {
  padding-inline: 10px;
  padding-inline: .625rem;
  max-width: 330px;
  max-width: 20.625rem;
  letter-spacing: -.05em;
}

/************************************************************************
* セクションラベル（共通コンポーネント）
************************************************************************/
.c-sectionLabel {
  text-align: center;
}

.c-sectionLabel__inner {
  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-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -47.5px;
  margin-top: -2.96875rem;
  border: 8px solid #d5f5ff;
  border: .5rem solid #d5f5ff;
  border-radius: 50%;
  background-color: #fff;
  width: 95px;
  width: 5.9375rem;
  height: 95px;
  height: 5.9375rem;
  color: #00a5df;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  white-space: nowrap;
}

.c-sectionLabel.c-sectionLabel--padding {
  padding-top: 48px;
  padding-top: 3rem;
}

.c-sectionLabel.c-sectionLabel--wide .c-sectionLabel__inner {
  margin-top: 0;
  border-radius: 50%;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  width: auto;
  height: auto;
}

.p-404-page {
  padding: 60px 0;
  padding: 3.75rem 0;
  width: 100%;
}

.p-404-page__head {
  text-align: center;
}

.p-404-page__title {
  color: #575757;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.6;
}

.p-404-page__body {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-404-page__text {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.8;
}

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

/************************************************************************
* 日々の活動セクション
************************************************************************/
.p-activity {
  scroll-margin-top: 3.75rem;
  background-color: #fff;
}

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

.p-activity__buttonWrap {
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: center;
}

.p-article {
  width: 100%;
}

.p-article__header {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

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

.p-article__meta {
  gap: 8px;
  gap: .5rem;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-article__date {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

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

.p-article__label {
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.p-article__title {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #575757;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

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

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #00a5df;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  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 {
  background-color: #d5f5ff;
  padding: .3em .4em;
  color: #575757;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #d5f5ff;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.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: #575757;
  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 #575757;
  border-bottom: 1px solid #575757;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #575757;
  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 * + * {
  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 {
  color: #575757;
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  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,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

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

.p-article__body ol {
  padding-left: 1.25em;
}

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

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

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

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

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #575757;
  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: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.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__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #d5f5ff;
  width: 2em;
  height: 2em;
  color: #d5f5ff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #d5f5ff;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

.p-article__buttons {
  gap: 15px;
  gap: .9375rem;
  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;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-article__btn {
  display: inline-block;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  border: 1px solid #00a5df;
  border-radius: 3.125rem;
  padding: 12px 0;
  padding: .75rem 0;
  width: 200px;
  width: 12.5rem;
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.p-article__btn:hover {
  background-color: #00a5df;
  color: #fff;
}

.p-singlePage .p-sidebar-right__bottom {
  display: none;
}

.p-contact-page {
  background-color: #d5f5ff;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  width: 100%;
}

.p-contact-page__content {
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  border-radius: .75rem;
  background-color: #fff;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-contact-page__lead {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: center;
}

.p-contact-page__note {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: center;
}

.p-form {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}

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

.p-form__item {
  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-form__label {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-form__label.is-required::after {
  display: inline-block;
  border-radius: .25rem;
  background-color: #e74c3c;
  padding: 2px 8px;
  padding: .125rem .5rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  content: '必須';
}

.p-form__input {
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 1px solid #ccc;
  border-radius: .5rem;
  background-color: #fff;
  padding: 12px 16px;
  padding: .75rem 1rem;
  width: 100%;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-form__input:focus {
  outline: none;
  border-color: #00a5df;
}

.p-form__input::-webkit-input-placeholder {
  color: #999;
}

.p-form__input::-moz-placeholder {
  color: #999;
}

.p-form__input::-ms-input-placeholder {
  color: #999;
}

.p-form__input::placeholder {
  color: #999;
}

.p-form__textarea {
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 1px solid #ccc;
  border-radius: .5rem;
  background-color: #fff;
  padding: 12px 16px;
  padding: .75rem 1rem;
  width: 100%;
  min-height: 150px;
  min-height: 9.375rem;
  resize: vertical;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-form__textarea:focus {
  outline: none;
  border-color: #00a5df;
}

.p-form__textarea::-webkit-input-placeholder {
  color: #999;
}

.p-form__textarea::-moz-placeholder {
  color: #999;
}

.p-form__textarea::-ms-input-placeholder {
  color: #999;
}

.p-form__textarea::placeholder {
  color: #999;
}

.p-form__checkboxGroup {
  gap: 12px;
  gap: .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;
}

.p-form__checkboxGroup .wpcf7-checkbox {
  gap: 12px;
  gap: .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;
}

.p-form__checkboxGroup .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-form__checkboxGroup .wpcf7-list-item label {
  gap: 8px;
  gap: .5rem;
  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;
  cursor: pointer;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-form__privacyWrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-form__privacyInner {
  gap: 8px;
  gap: .5rem;
  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;
}

.p-form__privacyInner .wpcf7-form-control-wrap {
  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;
}

.p-form__privacyInner .wpcf7-acceptance {
  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;
}

.p-form__privacyInner .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  margin: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-form__privacyInner .wpcf7-list-item::before {
  display: block;
  border: 1px solid #707070;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  pointer-events: none;
  content: '';
}

.p-form__privacyInner .wpcf7-list-item::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%) rotate(45deg);
  transform: translate(-50%, -70%) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-right: .25em solid #575757;
  border-bottom: .25em solid #575757;
  width: 10px;
  width: .625rem;
  height: 20px;
  height: 1.25rem;
  pointer-events: none;
  content: '';
}

.p-form__privacyInner .wpcf7-list-item:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}

.p-form__privacyInner .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
  height: 100%;
}

.p-form__checkboxText {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.2;
}

.p-form__checkboxText a {
  color: #00a5df;
  text-decoration: underline;
}

.p-form__checkboxText a:hover {
  text-decoration: none;
}

.p-form__checkboxText a::after {
  display: none;
}

.p-form__footer {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-form__submit {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
  border: none;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 15px 40px;
  padding: .9375rem 2.5rem;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-decoration: none;
}

.p-form__submit:hover {
  opacity: .8;
}

.p-form__submit:disabled {
  cursor: not-allowed;
  background-color: #b2b2b2;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #e74c3c;
  font-size: 14px;
  font-size: .875rem;
}

.wpcf7-response-output {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: .5rem;
  padding: 15px;
  padding: .9375rem;
  font-size: 14px;
  font-size: .875rem;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  border-color: #c3e6cb;
  background-color: #d4edda;
  color: #155724;
}

.wpcf7-mail-sent-ng {
  border-color: #f5c6cb;
  background-color: #f8d7da;
  color: #721c24;
}

.wpcf7-validation-errors {
  border-color: #ffeeba;
  background-color: #fff3cd;
  color: #856404;
}

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

.p-drawer__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 15px;
  top: .9375rem;
  right: 15px;
  right: .9375rem;
  -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;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #00a5df;
  width: 55px;
  height: 55px;
  font-size: 0;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #575757;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

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

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

.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(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) 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, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  -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: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  height: 100dvh;
  overflow: auto;
  color: #575757;
  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-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: inline-block;
  -webkit-transition: color .3s ease, border-color .3s ease;
  transition: color .3s ease, border-color .3s ease;
  border-bottom: 3px solid transparent;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: none;
}

.p-drawer__navLink:hover {
  border-bottom-color: #f9bd00;
  color: #003e7f;
  font-weight: 700;
}

.p-drawer__pressLink {
  gap: 5px;
  gap: .3125rem;
  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: opacity .3s ease;
  transition: opacity .3s ease;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: none;
}

.p-drawer__pressLink::before {
  display: block;
  border-width: 5px 0 5px 8px;
  border-width: .3125rem 0 .3125rem .5rem;
  border-style: solid;
  border-color: transparent transparent transparent #00a5df;
  width: 0;
  height: 0;
  content: '';
}

.p-drawer__pressLink:hover {
  opacity: .7;
}

.p-drawer__sns {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-drawer__snsList {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-drawer__snsItem {
  width: 32px;
  width: 2rem;
}

.p-drawer__snsLink {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-drawer__snsLink:hover {
  opacity: .7;
}

.p-footer {
  background-color: #d5f5ff;
  padding: 20px;
  padding: 1.25rem;
  text-align: center;
}

.p-footer__logo {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: 200px;
  width: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__copy {
  padding: 10px 0;
  padding: .625rem 0;
  color: #575757;
}

.p-footer__copyright {
  color: #575757;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}

/************************************************************************
* ファーストビュー
************************************************************************/
.p-fv {
  width: 100%;
}

.p-fv__inner {
  position: relative;
}

/************************************************************************
* キャッチコピー（スワイパー上に重ねる）
************************************************************************/
.p-fv__catchcopy {
  position: absolute;
  top: 25px;
  top: 1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  width: 86%;
  max-width: 395px;
  max-width: 24.6875rem;
}

/************************************************************************
* スワイパー
************************************************************************/
.p-fv__swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-fv__swiper .swiper-slide {
  aspect-ratio: 922/1671;
  width: 100%;
  overflow: hidden;
}

.p-fv__swiper .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__swiper .swiper-pagination {
  display: none;
}

.p-fv__swiper .swiper-pagination-bullet {
  opacity: .5;
  -webkit-transition: opacity .3s ease, background-color .3s ease;
  transition: opacity .3s ease, background-color .3s ease;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
}

.p-fv__swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #00a5df;
}

/************************************************************************
* 動画で見るプロフィール
************************************************************************/
.p-fv__video {
  display: none;
  position: absolute;
  bottom: 70px;
  bottom: 4.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

.p-fv__videoLink {
  gap: 8px;
  gap: .5rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 8px 16px;
  padding: .5rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}

.p-fv__videoIcon {
  display: block;
  width: 20px;
  width: 1.25rem;
}

.p-fv__videoIcon img {
  aspect-ratio: 20/23;
}

.p-fv__videoText {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  white-space: nowrap;
}

/************************************************************************
* SP時のみ表示：白マスク＆コンテンツ
************************************************************************/
.p-fv__sp-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .75);
  padding: 15px 20px 20px;
  padding: .9375rem 20px 1.25rem;
  width: 100%;
  height: 30%;
}

.p-fv__sp-logo {
  max-width: 38.4%;
}

.p-fv__sp-logo img {
  aspect-ratio: 175/38;
}

.p-fv__sp-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 6.7%;
  text-align: center;
}

.p-fv__sp-label {
  display: inline-block;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 3px 12px;
  padding: .1875rem .75rem;
  color: #fff;
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-fv__sp-button {
  position: absolute;
  top: 0;
  right: 4.3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 24.3%;
}

.p-fv__sp-button a {
  display: block;
  position: relative;
}

.p-fv__sp-button a::before {
  inset: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .3);
  content: '';
}

.p-fv__sp-button a:hover::before {
  opacity: 1;
}

.p-fv__sp-button img {
  aspect-ratio: 1/1;
}

.p-fv__sp-kanji {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 8px;
  margin-top: .5rem;
  color: #00a5df;
  font-size: 10.93vw;
  font-weight: 700;
  line-height: 1.4;
}

.p-fv__sp-kanji ruby {
  ruby-align: center;
}

.p-fv__sp-kanji rt {
  color: #00a5df;
  font-size: 2.13vw;
  font-weight: 700;
  letter-spacing: .2em;
}

.p-fv__sp-lastName,
.p-fv__sp-firstName {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-fv__sp-firstName {
  margin-left: 13px;
  margin-left: .8125rem;
}

.p-header {
  background-color: #d5f5ff;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.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: 41;
  height: 90%;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.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;
  height: 100%;
}

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

.p-header__nav {
  display: none;
}

.l-news-page {
  margin-top: 66px;
  margin-top: 4.125rem;
  background-color: #fff;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  width: 100%;
}

.p-news-page {
  width: 100%;
}

.p-news-page__header {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-news-page__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-news-page__item {
  border-bottom: 1px solid #d5f5ff;
  padding: 15px 0;
  padding: .9375rem 0;
}

.p-news-page__link {
  display: block;
  text-decoration: none;
}

.p-news-page__meta {
  gap: 8px;
  gap: .5rem;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-news-page__date {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-news-page__labels {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-news-page__label {
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.p-news-page__title {
  margin-top: 5px;
  margin-top: .3125rem;
  overflow: hidden;
  color: #575757;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-news-page__pagination {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-news-page__pagination .page-numbers {
  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: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  border: 1px solid #00a5df;
  border-radius: .25rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.p-news-page__pagination .page-numbers:hover {
  background-color: #00a5df;
  color: #fff;
}

.p-news-page__pagination .page-numbers.current {
  background-color: #00a5df;
  color: #fff;
}

.p-news-page__pagination .page-numbers.current:hover {
  opacity: 1;
  cursor: default;
}

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

.p-news-page__backLink {
  display: inline-block;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  border: 1px solid #00a5df;
  border-radius: 3.125rem;
  padding: 12px 0;
  padding: .75rem 0;
  width: 200px;
  width: 12.5rem;
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.p-news-page__backLink:hover {
  background-color: #00a5df;
  color: #fff;
}

.p-newsPage .p-sidebar-right__bottom {
  display: none;
}

/************************************************************************
* お知らせセクション
************************************************************************/
.p-news {
  background-color: #fff;
}

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

.p-news__card {
  border: 2px solid #19a5df;
  border-radius: .75rem;
  background-color: #fff;
  padding: 40px;
  padding: 2.5rem;
}

.p-news__section {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  border-bottom: 2px dashed #a0daf1;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-decoration: none;
}

.p-news__section:hover {
  opacity: .7;
}

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

.p-news__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-news__header {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-news__label {
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-news__date {
  color: #333;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-news__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.7;
}

.p-news__moreWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 12px;
  margin-top: .75rem;
}

.p-news__more {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-color: #003e7f;
  padding: 4px 8px;
  padding: .25rem .5rem;
  color: #fff;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.p-news__more:hover {
  opacity: .8;
}

/************************************************************************
* 事務所セクション
************************************************************************/
.p-office {
  background-color: #fff;
}

.p-office__map {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  height: 300px;
  height: 18.75rem;
}

.p-office__map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.p-office__info {
  background-color: #d5f5ff;
  padding: 40px 20px 50px;
  padding: 2.5rem 1.25rem 3.125rem;
  text-align: center;
}

.p-office__label {
  display: inline-block;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 6px 20px;
  padding: .375rem 1.25rem;
  width: 180px;
  width: 11.25rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-office__name {
  margin-top: 16px;
  margin-top: 1rem;
  color: #00a5df;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.p-office__name rt {
  color: #00a5df;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .1em;
}

.p-office__contact {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-office__contactLabel {
  display: inline-block;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 6px 24px;
  padding: .375rem 1.5rem;
  width: 180px;
  width: 11.25rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-office__contactList {
  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: 16px;
  margin-top: 1rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.p-office__address {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-office__addressLabel {
  display: inline-block;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 6px 16px;
  padding: .375rem 1rem;
  width: 180px;
  width: 11.25rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-office__addressText {
  margin-top: 16px;
  margin-top: 1rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #d5f5ff;
  width: 2em;
  height: 2em;
  color: #d5f5ff;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #d5f5ff;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-policies-page {
  width: 100%;
}

.p-policies-page__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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #d5f5ff;
  padding-top: 48px;
  min-height: 100vh;
}

.p-policies-page__text {
  margin-top: 80px;
  color: #00a5df;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .1em;
}

/************************************************************************
* 政策セクション
************************************************************************/
.p-policy {
  background-color: #d5f5ff;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
}

.p-policy__cards {
  gap: 24px;
  gap: 1.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: 10px;
  margin-top: .625rem;
}

.p-policy__card {
  position: relative;
  border-radius: .75rem;
  background-color: #fff;
  overflow: hidden;
}

.p-policy__cardNumber {
  position: absolute;
  top: -10px;
  top: -.625rem;
  right: 0;
  color: #d5f5ff;
  font-size: 110px;
  font-size: 6.875rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
}

.p-policy__cardBody {
  padding: 20px;
  padding: 1.25rem;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
}

.p-policy__cardTitle {
  position: relative;
  z-index: 1;
  color: #003e7f;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.6;
}

.p-policy__cardText {
  margin-top: 10px;
  margin-top: .625rem;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
}

.p-policy__cardImages {
  gap: 16px;
  gap: 1rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-policy__cardImage01 img,
.p-policy__cardImage02 img,
.p-policy__cardImage03 img,
.p-policy__cardImage04 img,
.p-policy__cardImage05 img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-policy__cardImage01 {
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 200px;
  max-width: 12.5rem;
}

.p-policy__cardImage01 img {
  aspect-ratio: 200/130;
}

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

.p-policy__cardImage02 img {
  aspect-ratio: 135/116;
}

.p-policy__cardImage03 {
  max-width: 75px;
  max-width: 4.6875rem;
}

.p-policy__cardImage03 img {
  aspect-ratio: 75/105;
}

.p-policy__cardImage04 {
  max-width: 128px;
  max-width: 8rem;
}

.p-policy__cardImage04 img {
  aspect-ratio: 128/105;
}

.p-policy__cardImage05 {
  max-width: 145px;
  max-width: 9.0625rem;
}

.p-policy__cardImage05 img {
  aspect-ratio: 145/80;
}

.p-policy__buttonWrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-privacy-page {
  background-color: #d5f5ff;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  width: 100%;
}

.p-privacy-page__content {
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  border-radius: .75rem;
  background-color: #fff;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  max-width: 800px;
  max-width: 50rem;
}

.p-privacy-page__lead {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-privacy-page__section {
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.p-privacy-page__heading {
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-privacy-page__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-privacy-page__list {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-privacy-page__listItem {
  margin-top: 10px;
  margin-top: .625rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

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

.p-privacy-page__orderedList {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-privacy-page__orderedItem {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

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

.p-privacy-page__nestedList {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-privacy-page__nestedItem {
  margin-top: 8px;
  margin-top: .5rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

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

.p-privacy-page__contact {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-privacy-page__contactItem {
  margin-top: 8px;
  margin-top: .5rem;
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

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

.p-privacy-page__contactItem a {
  color: #00a5df;
  text-decoration: underline;
}

.p-privacy-page__contactItem a:hover {
  text-decoration: none;
}

.p-profile-page {
  width: 100%;
}

.p-profile-page__info {
  gap: 15px;
  gap: .9375rem;
  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;
  margin-top: 20px;
  margin-top: 1.25rem;
  background-color: #d5f5ff;
  padding: 15px 0;
  padding: .9375rem 0;
}

.p-profile-page__name {
  color: #575757;
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-profile-page__name rt {
  color: #575757;
  font-size: 10px;
  font-size: .625rem;
  letter-spacing: .1em;
}

.p-profile-page__tags {
  gap: 8px;
  gap: .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;
}

.p-profile-page__position {
  color: #003e7f;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-profile-page__area {
  display: inline-block;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 4px 10px;
  padding: .25rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.p-profile-page__image {
  position: relative;
  width: 100%;
}

.p-profile-page__image img {
  aspect-ratio: 460/428;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-profile-page__body {
  background-color: #fff;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

.p-profile-page__career {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-top: 1px solid #d5f5ff;
  padding-top: 30px;
  padding-top: 1.875rem;
  width: 100%;
}

.p-profile-page__career .p-profile__history {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-profile-page__text {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2;
}

.p-profile-page__paragraph:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-profile-page__p {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.p-profile-page__text strong {
  font-weight: 700;
}

/************************************************************************
* プロフィールセクション
************************************************************************/
.p-profile {
  background-color: #fff;
}

.p-profile__hero {
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
  background-color: #d5f5ff;
  padding: 30px 0 45px;
  padding: 1.875rem 0 2.8125rem;
}

.p-profile__hero::before {
  position: absolute;
  top: 0;
  left: -16px;
  left: -1rem;
  background-image: url('../img/page/profile_1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(200px, 200px + 88 * (100vw - 320px) / 110, 288px);
  width: clamp(12.5rem, 12.5rem + 88 * (100vw - 320px) / 110, 18rem);
  height: clamp(219px, 219px + 97 * (100vw - 320px) / 110, 316px);
  height: clamp(13.6875rem, 13.6875rem + 97 * (100vw - 320px) / 110, 19.75rem);
  content: '';
}

.p-profile__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: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-profile__name {
  color: #575757;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 30px + 15 * (100vw - 320px) / 110, 45px);
  font-size: clamp(1.875rem, 1.875rem + 15 * (100vw - 320px) / 110, 2.8125rem);
  font-weight: 700;
  letter-spacing: .05em;
}

.p-profile__name rt {
  color: #575757;
  font-size: clamp(8px, 8px + 4 * (100vw - 320px) / 110, 12px);
  font-size: clamp(.5rem, .5rem + 4 * (100vw - 320px) / 110, .75rem);
  letter-spacing: .1em;
}

.p-profile__tags {
  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-profile__position {
  color: #003e7f;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-profile__area {
  display: inline-block;
  border-radius: 3.125rem;
  background-color: #00a5df;
  padding: 4px 12px;
  padding: .25rem .75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-profile__body {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-profile__intro {
  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;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-profile__introDate {
  color: #003e7f;
  font-size: clamp(11px, 11px + 3 * (100vw - 320px) / 110, 14px);
  font-size: clamp(.6875rem, .6875rem + 3 * (100vw - 320px) / 110, .875rem);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-profile__introText {
  color: #003e7f;
  font-size: clamp(13px, 13px + 3 * (100vw - 320px) / 110, 16px);
  font-size: clamp(.8125rem, .8125rem + 3 * (100vw - 320px) / 110, 1rem);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-profile__description {
  margin-top: 26px;
  margin-top: 1.625rem;
  color: #575757;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: center;
}

.p-profile__history {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-top: 1px solid #d5f5ff;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-profile__historyItem {
  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-profile__historyItem:not(:first-child) {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-profile__historyYear {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 70px;
  min-width: 4.375rem;
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-profile__historyText {
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-profile__buttonWrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-profile--sub .p-profile__introWrap {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-profile--sub .p-profile__intro {
  margin-left: 0;
}

.p-profile--sub .p-profile__description {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-profile-page__header .p-profile__descriptionSub {
  padding-left: 20px;
  padding-left: 1.25rem;
}

/************************************************************************
* 左サイドバー（PC時のみ表示）
************************************************************************/
.p-sidebar-left {
  display: none;
}

.p-sidebar-left__kanji ruby {
  ruby-align: center;
}

/************************************************************************
* 右サイドバー（PC時のみ表示）
************************************************************************/
.p-sidebar-right {
  display: none;
}

/************************************************************************
* 左サイドバー下部
************************************************************************/

/************************************************************************
* 右サイドバー下部
************************************************************************/

.p-support-page {
  background-color: #d5f5ff;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  width: 100%;
}

.p-support-page__hero {
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 190px;
  max-width: 11.875rem;
  text-align: center;
}

.p-support-page__hero img {
  aspect-ratio: 190/270;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-support-page > .l-container {
  margin-top: -3px;
  margin-top: -.1875rem;
}

.p-support-page__cards {
  gap: 24px;
  gap: 1.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;
}

.p-support-page__card {
  position: relative;
  border-radius: .75rem;
  background-color: #fff;
  overflow: hidden;
}

.p-support-page__cardNumber {
  position: absolute;
  top: -10px;
  top: -.625rem;
  right: 0;
  color: #d5f5ff;
  font-size: 110px;
  font-size: 6.875rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
}

.p-support-page__cardBody {
  padding: 20px;
  padding: 1.25rem;
}

.p-support-page__cardTitle {
  position: relative;
  z-index: 1;
  color: #003e7f;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.6;
}

.p-support-page__cardText {
  margin-top: 60px;
  margin-top: 3.75rem;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
}

.p-support-page__list + .p-support-page__cardText,
.p-support-page__listGrid + .p-support-page__cardText,
.p-support-page__listVertical + .p-support-page__cardText,
.p-support-page__buttons + .p-support-page__cardText {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-support-page__sns {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-support-page__snsLink {
  aspect-ratio: 1/1;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  max-width: 50px;
  max-width: 3.125rem;
}

.p-support-page__snsLink:hover {
  opacity: .7;
}

.p-support-page__snsLink img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-support-page__images02 {
  gap: 12px;
  gap: .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;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 364px;
  max-width: 22.75rem;
}

.p-support-page__images02 img {
  aspect-ratio: 364/366;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-support-page__logos {
  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;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-support-page__partyLogo {
  min-width: 0;
  max-width: 204px;
  max-width: 12.75rem;
}

.p-support-page__partyLogo img {
  aspect-ratio: 204/104;
}

.p-support-page__mascot {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 150px;
  max-width: 9.375rem;
}

.p-support-page__mascot img {
  aspect-ratio: 150/150;
}

.p-support-page__images04 {
  gap: 12px;
  gap: .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;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 367px;
  max-width: 22.9375rem;
}

.p-support-page__images04 img {
  aspect-ratio: 367/255;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-support-page__images05 {
  gap: 12px;
  gap: .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;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 160px;
  max-width: 10rem;
}

.p-support-page__images05 img {
  aspect-ratio: 160/215;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-support-page__buttons {
  gap: 12px;
  gap: .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;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-support-page__buttons .p-support-page__cardText {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-support-page__qr {
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  max-width: 205px;
  max-width: 12.8125rem;
  text-align: center;
}

.p-support-page__qr img {
  aspect-ratio: 205/125;
}

.p-support-page__list {
  gap: 5px;
  gap: .3125rem;
  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-left: 5px;
  padding-left: .3125rem;
}

.p-support-page__listGrid {
  gap: 5px;
  gap: .3125rem;
  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;
  padding-left: 5px;
  padding-left: .3125rem;
}

.p-support-page__listGrid .p-support-page__listItem {
  font-size: 14px;
  font-size: .875rem;
}

.p-support-page__listVertical {
  gap: 5px;
  gap: .3125rem;
  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;
  padding-left: 5px;
  padding-left: .3125rem;
}

.p-support-page__listItem {
  padding-left: 1em;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
  text-indent: -1em;
}

.p-support-page__listItem br {
  display: none;
}

.p-support-page__listItem::before {
  content: '・';
}

.p-support-page__note {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #575757;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
}

/************************************************************************
* 想いセクション
************************************************************************/
.p-thought {
  background-color: #fff;
}

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

.p-thought__label {
  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-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #00a5df;
  width: 95px;
  width: 5.9375rem;
  height: 95px;
  height: 5.9375rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-thought__title {
  margin-top: 28px;
  margin-top: 1.75rem;
  color: #003e7f;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

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

.p-thought__text {
  color: #575757;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

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

.p-thought__signature {
  gap: 16px;
  gap: 1rem;
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-thought__signatureLabel {
  color: #575757;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: right;
}

.p-thought__signatureName {
  color: #575757;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.2;
}

.p-thought__hidden {
  display: none;
}

.p-thought__hidden.is-open {
  display: block;
}

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

.p-thought__more {
  gap: 3px;
  gap: .1875rem;
  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: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
  color: #00a5df;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.p-thought__more::before {
  display: block;
  border-width: 10px 7.5px 0 7.5px;
  border-width: .625rem .46875rem 0 .46875rem;
  border-style: solid;
  border-color: #00a5df transparent transparent transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-thought__more.is-hidden {
  display: none;
}

.p-thought__close {
  display: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #00a5df;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: underline;
}

.p-thought__close.is-open {
  display: inline-block;
}

.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-hidden {
  display: none !important;
}

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

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

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

@media (min-width: 460px) {

  html {
    font-size: 100%;
  }
}

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

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

  body {
    background-color: #f2fbff;
  }

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

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 500px;
  }

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

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

  .l-main {
    margin-right: auto;
    margin-left: auto;
    max-width: 460px;
  }

  .l-footer {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 500px;
  }

  .p-404-page {
    padding: 80px 0;
    padding: 5rem 0;
  }

  .p-404-page__title {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-404-page__body {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

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

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

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .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-contact-page__content {
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
  }

  .p-contact-page__lead {
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-fv {
    margin-right: auto;
    margin-left: auto;
    max-width: 460px;
  }

  .p-fv__swiper .swiper-pagination {
    gap: 10px;
    gap: .625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 25px;
    bottom: 1.5625rem;
    left: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-fv__swiper .swiper-pagination-bullet {
    width: 12px;
    width: .75rem;
    height: 12px;
    height: .75rem;
  }

  .p-fv__video {
    display: block;
  }

  .p-fv__videoLink {
    padding: 10px 20px;
    padding: .625rem 1.25rem;
  }

  .p-fv__videoLink::after {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    border-radius: 3.125rem;
    background-color: rgba(255, 255, 255, .2);
    width: 100%;
    height: 100%;
    content: '';
  }

  .p-fv__videoLink:hover::after {
    opacity: 1;
  }

  .p-fv__videoText {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-fv__sp-mask {
    display: none;
  }

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

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    gap: 46px;
    gap: 2.875rem;
    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;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }

  .p-header__drawer {
    display: none;
  }

  .p-office__contactItem[href^='tel:'] {
    pointer-events: none;
  }

  .p-policy__cards {
    gap: 30px;
    gap: 1.875rem;
  }

  .p-policy__cardBody {
    padding: 24px;
    padding: 1.5rem;
    padding-bottom: 15px;
    padding-bottom: .9375rem;
  }

  .p-policy__buttonWrap {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-privacy-page__content {
    padding: 40px 30px;
    padding: 2.5rem 1.875rem;
  }

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

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

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

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

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

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

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

  .p-profile-page__info {
    gap: 35px;
    gap: 2.1875rem;
  }

  .p-profile-page__name {
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .p-profile-page__name rt {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-profile-page__position {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-profile-page__area {
    padding: 4px 12px;
    padding: .25rem .75rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-profile-page__body {
    padding: 45px 60px;
    padding: 2.8125rem 3.75rem;
  }

  .p-profile__buttonWrap {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-support-page__cards {
    gap: 30px;
    gap: 1.875rem;
  }

  .p-support-page__cardBody {
    padding: 24px;
    padding: 1.5rem;
  }

  .p-support-page__sns {
    gap: 16px;
    gap: 1rem;
  }

  .p-support-page__listGrid {
    gap: 5px 10px;
    gap: .3125rem .625rem;
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .p-support-page__listItem br {
    display: block;
  }

  .p-thought__more:hover {
    opacity: .7;
  }

  .p-thought__close:hover {
    opacity: .7;
  }
}

@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) {

  .l-thought .l-container {
    padding-right: clamp(38px, 38px + 12 * (100vw - 1024px) / 416, 50px);
    padding-right: clamp(2.375rem, 2.375rem + 12 * (100vw - 1024px) / 416, 3.125rem);
    padding-left: clamp(38px, 38px + 12 * (100vw - 1024px) / 416, 50px);
    padding-left: clamp(2.375rem, 2.375rem + 12 * (100vw - 1024px) / 416, 3.125rem);
  }

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .p-drawer {
    display: none;
  }

  .p-sidebar-left {
    display: block;
    position: fixed;
    top: 25px;
    top: 1.5625rem;
    bottom: 25px;
    bottom: 1.5625rem;
    left: calc((100vw - 460px) / 4);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 20;
  }

  .p-sidebar-left__inner {
    gap: 15px;
    gap: .9375rem;
    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;
    height: 100%;
  }

  .p-sidebar-left__logo {
    width: clamp(140px, 140px + 57 * (100vw - 1024px) / 416, 197px);
    width: clamp(8.75rem, 8.75rem + 57 * (100vw - 1024px) / 416, 12.3125rem);
  }

  .p-sidebar-left__catchcopy {
    margin-top: clamp(16px, 16px + 4 * (100vw - 1024px) / 416, 20px);
    margin-top: clamp(1rem, 1rem + 4 * (100vw - 1024px) / 416, 1.25rem);
    color: #575757;
    font-size: clamp(13px, 13px + 2 * (100vw - 1024px) / 416, 15px);
    font-size: clamp(.8125rem, .8125rem + 2 * (100vw - 1024px) / 416, .9375rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.8;
  }

  .p-sidebar-left__info {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 30px;
    margin-top: 1.875rem;
    text-align: center;
  }

  .p-sidebar-left__label {
    display: inline-block;
    border-radius: 3.125rem;
    background-color: #00a5df;
    padding: clamp(4px, 4px + 1 * (100vw - 1024px) / 416, 5px) clamp(14px, 14px + 6 * (100vw - 1024px) / 416, 20px);
    padding: clamp(.25rem, .25rem + 1 * (100vw - 1024px) / 416, .3125rem) clamp(.875rem, .875rem + 6 * (100vw - 1024px) / 416, 1.25rem);
    color: #fff;
    font-size: clamp(12px, 12px + 3 * (100vw - 1024px) / 416, 15px);
    font-size: clamp(.75rem, .75rem + 3 * (100vw - 1024px) / 416, .9375rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
  }

  .p-sidebar-left__name {
    margin-top: clamp(10px, 10px + 5 * (100vw - 1024px) / 416, 15px);
    margin-top: clamp(.625rem, .625rem + 5 * (100vw - 1024px) / 416, .9375rem);
  }

  .p-sidebar-left__kanji {
    margin-top: 4px;
    margin-top: .25rem;
    color: #00a5df;
    font-size: clamp(36px, 36px + 14 * (100vw - 1024px) / 416, 50px);
    font-size: clamp(2.25rem, 2.25rem + 14 * (100vw - 1024px) / 416, 3.125rem);
    font-weight: 700;
    line-height: 1.4;
  }

  .p-sidebar-left__kanji rt {
    color: #00a5df;
    font-size: clamp(10px, 10px + 2 * (100vw - 1024px) / 416, 12px);
    font-size: clamp(.625rem, .625rem + 2 * (100vw - 1024px) / 416, .75rem);
    font-weight: 700;
    letter-spacing: .2em;
  }

  .p-sidebar-left__firstName {
    margin-left: clamp(20px, 20px + 8 * (100vw - 1024px) / 416, 28px);
    margin-left: clamp(1.25rem, 1.25rem + 8 * (100vw - 1024px) / 416, 1.75rem);
  }

  .p-sidebar-left__button {
    margin-inline: auto;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-sidebar-left__button 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-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }

  .p-sidebar-left__button a:hover {
    opacity: .8;
  }

  .p-sidebar-left__button img {
    aspect-ratio: 1/1;
    width: clamp(80px, 80px + 30 * (100vw - 1024px) / 416, 110px);
    width: clamp(5rem, 5rem + 30 * (100vw - 1024px) / 416, 6.875rem);
  }

  .p-sidebar-left__sns {
    margin: 10px auto 0;
    margin: .625rem auto 0;
  }

  .p-sidebar-left__snsList {
    gap: clamp(12px, 12px + 4 * (100vw - 1024px) / 416, 16px);
    gap: clamp(.75rem, .75rem + 4 * (100vw - 1024px) / 416, 1rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-sidebar-left__snsItem {
    width: clamp(20px, 20px + 8 * (100vw - 1024px) / 416, 28px);
    width: clamp(1.25rem, 1.25rem + 8 * (100vw - 1024px) / 416, 1.75rem);
  }

  .p-sidebar-left__snsLink {
    display: block;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }

  .p-sidebar-left__snsLink:hover {
    opacity: .7;
  }

  .p-sidebar-left__video {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-sidebar-left__videoLink {
    gap: 8px;
    gap: .5rem;
    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;
    transition: opacity .3s ease;
  }

  .p-sidebar-left__videoLink:hover {
    opacity: .7;
  }

  .p-sidebar-left__videoIcon {
    display: block;
    position: relative;
    border-radius: 50%;
    background-color: #00a5df;
    width: clamp(32px, 32px + 4 * (100vw - 1024px) / 416, 36px);
    width: clamp(2rem, 2rem + 4 * (100vw - 1024px) / 416, 2.25rem);
    height: clamp(32px, 32px + 4 * (100vw - 1024px) / 416, 36px);
    height: clamp(2rem, 2rem + 4 * (100vw - 1024px) / 416, 2.25rem);
  }

  .p-sidebar-left__videoIcon::after {
    position: absolute;
    top: 50%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-width: clamp(6px, 6px + 1 * (100vw - 1024px) / 416, 7px) 0 clamp(6px, 6px + 1 * (100vw - 1024px) / 416, 7px) clamp(10px, 10px + 2 * (100vw - 1024px) / 416, 12px);
    border-width: clamp(.375rem, .375rem + 1 * (100vw - 1024px) / 416, .4375rem) 0 clamp(.375rem, .375rem + 1 * (100vw - 1024px) / 416, .4375rem) clamp(.625rem, .625rem + 2 * (100vw - 1024px) / 416, .75rem);
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    width: 0;
    height: 0;
    content: '';
  }

  .p-sidebar-left__videoText {
    color: #575757;
    font-size: clamp(11px, 11px + 1 * (100vw - 1024px) / 416, 12px);
    font-size: clamp(.6875rem, .6875rem + 1 * (100vw - 1024px) / 416, .75rem);
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .p-sidebar-right {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 25px;
    top: 1.5625rem;
    right: calc((100vw - 460px) / 4);
    bottom: 25px;
    bottom: 1.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    z-index: 20;
    width: clamp(230px, 230px + 75 * (100vw - 1024px) / 416, 305px);
    width: clamp(14.375rem, 14.375rem + 75 * (100vw - 1024px) / 416, 19.0625rem);
  }

  .p-sidebar-right__navList {
    gap: clamp(14px, 14px + 6 * (100vw - 1024px) / 416, 20px);
    gap: clamp(.875rem, .875rem + 6 * (100vw - 1024px) / 416, 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;
  }

  .p-sidebar-right__navItem {
    position: relative;
  }

  .p-sidebar-right__navItem:has(.p-sidebar-right__navLink)::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    content: '';
  }

  .p-sidebar-right__navItem:has(.p-sidebar-right__navLink):hover .p-sidebar-right__navLink {
    color: #003e7f;
    font-weight: 700;
  }

  .p-sidebar-right__navItem:has(.p-sidebar-right__navLink):hover .p-sidebar-right__navLink span {
    border-bottom-color: #f9bd00;
  }

  .p-sidebar-right__navItem:has(.p-sidebar-right__navLink):hover .p-sidebar-right__navLink::before {
    opacity: 1;
    border-color: transparent transparent transparent #00a5df;
  }

  .p-sidebar-right__navLink {
    display: inline;
    position: relative;
    -webkit-transition: color .3s ease, font-weight .3s ease;
    transition: color .3s ease, font-weight .3s ease;
    padding-left: clamp(15px, 15px + 5 * (100vw - 1024px) / 416, 20px);
    padding-left: clamp(.9375rem, .9375rem + 5 * (100vw - 1024px) / 416, 1.25rem);
    color: #575757;
    font-size: clamp(13px, 13px + 4 * (100vw - 1024px) / 416, 17px);
    font-size: clamp(.8125rem, .8125rem + 4 * (100vw - 1024px) / 416, 1.0625rem);
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
    text-decoration: none;
  }

  .p-sidebar-right__navLink span {
    -webkit-transition: border-color .3s ease;
    transition: border-color .3s ease;
    border-bottom: 3px solid transparent;
  }

  .p-sidebar-right__navLink::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: opacity .3s ease, border-color .3s ease;
    transition: opacity .3s ease, border-color .3s ease;
    border-width: 5px 0 5px 8px;
    border-width: .3125rem 0 .3125rem .5rem;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
    width: 0;
    height: 0;
    content: '';
  }

  .p-sidebar-right__navTitle {
    display: block;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    border-bottom: 1px dashed #a0daf1;
    padding-bottom: clamp(6px, 6px + 2 * (100vw - 1024px) / 416, 8px);
    padding-bottom: clamp(.375rem, .375rem + 2 * (100vw - 1024px) / 416, .5rem);
    width: 100%;
    color: #003e7f;
    font-size: clamp(13px, 13px + 3 * (100vw - 1024px) / 416, 16px);
    font-size: clamp(.8125rem, .8125rem + 3 * (100vw - 1024px) / 416, 1rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
    text-decoration: none;
  }

  a.p-sidebar-right__navTitle:hover {
    opacity: .7;
  }

  .p-sidebar-right__navItem:last-child {
    padding-left: clamp(15px, 15px + 5 * (100vw - 1024px) / 416, 20px);
    padding-left: clamp(.9375rem, .9375rem + 5 * (100vw - 1024px) / 416, 1.25rem);
  }

  .p-sidebar-right__pressLink {
    gap: clamp(5px, 5px + 1 * (100vw - 1024px) / 416, 6px);
    gap: clamp(.3125rem, .3125rem + 1 * (100vw - 1024px) / 416, .375rem);
    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: opacity .3s ease;
    transition: opacity .3s ease;
    color: #575757;
    font-size: clamp(11px, 11px + 3 * (100vw - 1024px) / 416, 14px);
    font-size: clamp(.6875rem, .6875rem + 3 * (100vw - 1024px) / 416, .875rem);
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
    text-decoration: none;
  }

  .p-sidebar-right__pressLink::before {
    display: block;
    border-width: 5px 0 5px 8px;
    border-width: .3125rem 0 .3125rem .5rem;
    border-style: solid;
    border-color: transparent transparent transparent #00a5df;
    width: 0;
    height: 0;
    content: '';
  }

  .p-sidebar-right__pressLink:hover {
    opacity: .7;
  }

  .p-sidebar-left__bottom {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: auto;
  }

  .p-sidebar-left__area {
    position: relative;
    margin-top: clamp(100px, 100px + 30 * (100vw - 1024px) / 416, 130px);
    margin-top: clamp(6.25rem, 6.25rem + 30 * (100vw - 1024px) / 416, 8.125rem);
    border-radius: clamp(.375rem, .375rem + 2 * (100vw - 1024px) / 416, .5rem);
    background-color: #d5f5ff;
    padding: clamp(12px, 12px + 4 * (100vw - 1024px) / 416, 16px) clamp(30px, 30px + 30 * (100vw - 1024px) / 416, 60px);
    padding: clamp(.75rem, .75rem + 4 * (100vw - 1024px) / 416, 1rem) clamp(1.875rem, 1.875rem + 30 * (100vw - 1024px) / 416, 3.75rem);
    text-align: center;
    white-space: nowrap;
  }

  .p-sidebar-left__area::before {
    aspect-ratio: 64/119;
    position: absolute;
    bottom: 98%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    background-image: url('../img/page/rabbit_1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: clamp(48px, 48px + 16 * (100vw - 1024px) / 416, 64px);
    width: clamp(3rem, 3rem + 16 * (100vw - 1024px) / 416, 4rem);
    content: '';
  }

  .p-sidebar-left__areaTitle {
    color: #003e7f;
    font-size: clamp(14px, 14px + 5 * (100vw - 1024px) / 416, 19px);
    font-size: clamp(.875rem, .875rem + 5 * (100vw - 1024px) / 416, 1.1875rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
  }

  .p-sidebar-left__cities {
    gap: clamp(14px, 14px + 4 * (100vw - 1024px) / 416, 18px);
    gap: clamp(.875rem, .875rem + 4 * (100vw - 1024px) / 416, 1.125rem);
    margin-top: clamp(6px, 6px + 2 * (100vw - 1024px) / 416, 8px);
    margin-top: clamp(.375rem, .375rem + 2 * (100vw - 1024px) / 416, .5rem);
    font-weight: 700;
  }

  .p-sidebar-left__row {
    gap: clamp(14px, 14px + 4 * (100vw - 1024px) / 416, 18px);
    gap: clamp(.875rem, .875rem + 4 * (100vw - 1024px) / 416, 1.125rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #003e7f;
    font-size: clamp(12px, 12px + 4 * (100vw - 1024px) / 416, 16px);
    font-size: clamp(.75rem, .75rem + 4 * (100vw - 1024px) / 416, 1rem);
    letter-spacing: .05em;
    line-height: 1.8;
  }

  .p-sidebar-right__bottom {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: auto;
    border: 2px solid #19a5df;
    border-radius: clamp(.625rem, .625rem + 2 * (100vw - 1024px) / 416, .75rem);
    background-color: #fff;
    padding: clamp(12px, 12px + 3 * (100vw - 1024px) / 416, 15px) clamp(16px, 16px + 8 * (100vw - 1024px) / 416, 24px);
    padding: clamp(.75rem, .75rem + 3 * (100vw - 1024px) / 416, .9375rem) clamp(1rem, 1rem + 8 * (100vw - 1024px) / 416, 1.5rem);
    width: clamp(230px, 230px + 75 * (100vw - 1024px) / 416, 305px);
    width: clamp(14.375rem, 14.375rem + 75 * (100vw - 1024px) / 416, 19.0625rem);
  }

  .p-sidebar-right__section {
    display: block;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    border-bottom: 2px dashed #a0daf1;
    padding-bottom: clamp(12px, 12px + 4 * (100vw - 1024px) / 416, 16px);
    padding-bottom: clamp(.75rem, .75rem + 4 * (100vw - 1024px) / 416, 1rem);
    text-decoration: none;
  }

  .p-sidebar-right__section:hover {
    opacity: .7;
  }

  .p-sidebar-right__section + .p-sidebar-right__section {
    margin-top: clamp(12px, 12px + 4 * (100vw - 1024px) / 416, 16px);
    margin-top: clamp(.75rem, .75rem + 4 * (100vw - 1024px) / 416, 1rem);
  }

  .p-sidebar-right__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .p-sidebar-right__header {
    gap: 8px;
    gap: .5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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-sidebar-right__labels {
    gap: 5px;
    gap: .3125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 0;
  }

  .p-sidebar-right__label {
    color: #00a5df;
    font-size: clamp(11px, 11px + 3 * (100vw - 1024px) / 416, 14px);
    font-size: clamp(.6875rem, .6875rem + 3 * (100vw - 1024px) / 416, .875rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
  }

  .p-sidebar-right__date {
    color: #333;
    font-size: clamp(10px, 10px + 2 * (100vw - 1024px) / 416, 12px);
    font-size: clamp(.625rem, .625rem + 2 * (100vw - 1024px) / 416, .75rem);
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
  }

  .p-sidebar-right__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    margin-top: clamp(8px, 8px + 2 * (100vw - 1024px) / 416, 10px);
    margin-top: clamp(.5rem, .5rem + 2 * (100vw - 1024px) / 416, .625rem);
    overflow: hidden;
    color: #575757;
    font-size: clamp(12px, 12px + 4 * (100vw - 1024px) / 416, 16px);
    font-size: clamp(.75rem, .75rem + 4 * (100vw - 1024px) / 416, 1rem);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.7;
  }

  .p-sidebar-right__moreWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: clamp(8px, 8px + 4 * (100vw - 1024px) / 416, 12px);
    margin-top: clamp(.5rem, .5rem + 4 * (100vw - 1024px) / 416, .75rem);
  }

  .p-sidebar-right__more {
    display: inline-block;
    background-color: #003e7f;
    padding: clamp(3px, 3px + 1 * (100vw - 1024px) / 416, 4px) clamp(6px, 6px + 2 * (100vw - 1024px) / 416, 8px);
    padding: clamp(.1875rem, .1875rem + 1 * (100vw - 1024px) / 416, .25rem) clamp(.375rem, .375rem + 2 * (100vw - 1024px) / 416, .5rem);
    color: #fff;
    font-size: clamp(9px, 9px + 1 * (100vw - 1024px) / 416, 10px);
    font-size: clamp(.5625rem, .5625rem + 1 * (100vw - 1024px) / 416, .625rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

  .p-sidebar-right__more:hover {
    opacity: .8;
  }

  .u-onlyPc {
    display: block;
  }

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

@media (max-height: 800px) {

  .p-sidebar-left__bottom {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }

  .p-sidebar-right__moreWrap {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

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

@media (max-height: 715px) {

  .p-sidebar-left__bottom {
    visibility: hidden;
  }

  .p-sidebar-right__bottom {
    visibility: hidden;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}
/*# sourceMappingURL=map/style.css.map */