@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: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Sans JP', 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: 16px;
}

button {
  color: #000;
}

/************************************************************************
* 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
************************************************************************/
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: #000;
  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.575em;
  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.325em;
  height: 1.325em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .35em;
  -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.475em;
  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: 1.225em;
  height: 1.225em;
  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: .2em solid #1F0043;
  border-bottom: .2em solid #1F0043;
  width: .6125em;
  height: 1.225em;
  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;
}

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: #F7F3E4;
}

/* 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: #F7F3E4;
  font-weight: 700;
}

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

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

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

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

.l-award {
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

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

.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-sectionTop {
  margin-top: 60px;
  margin-top: 3.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: prop;
  transition-property: prop;
  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: #F7F3E4;
  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: #F7F3E4;
}

/************************************************************************
* 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: #F7F3E4;
  background-color: #F7F3E4;
  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(235.3428571429, 225.5142857143, 188.6571428571);
  background-color: #F7F3E4;
  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: #F7F3E4;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #F7F3E4;
  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-step {
  width: 100%;
  overflow: hidden;
}

.c-step__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #707070;
  border: .0625rem solid #707070;
  background-color: #fff;
}

.c-step__item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 1;
  -webkit-clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);
  margin-right: -16px;
  margin-right: -1rem;
  background-color: transparent;
  padding: 20px 0;
  padding: 1.25rem 0;
  overflow: hidden;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

.c-step__item::before {
  inset: 0;
  position: absolute;
  -webkit-transform: translateX(-.125rem);
  transform: translateX(-.125rem);
  z-index: 0;
  -webkit-clip-path: inherit;
  clip-path: inherit;
  background-color: #707070;
  content: '';
}

.c-step__item::after {
  inset: 0;
  position: absolute;
  -webkit-transform: translateX(-.1875rem);
  transform: translateX(-.1875rem);
  z-index: 1;
  -webkit-clip-path: inherit;
  clip-path: inherit;
  background-color: #fff;
  content: '';
}

.c-step__item > span {
  position: relative;
  z-index: 2;
  color: #707070;
}

.c-step__item.is-current::after {
  display: none;
}

.c-step__item.is-current > span {
  color: #fff;
}

.c-step__item:last-child {
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  margin-right: 0;
}

.c-step__item:last-child::after {
  -webkit-transform: none;
  transform: none;
}

.c-step__item:last-child::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.c-step__item:nth-child(1) {
  z-index: 3;
}

.c-step__item:nth-child(2) {
  z-index: 2;
}

.c-step__item:nth-child(3) {
  z-index: 1;
}

.c-totop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  -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;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
}

.c-totop__text {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
}

.c-totop__button {
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: .75rem;
  background-color: #1F0043;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
}

.c-totop__button::before, .c-totop__button::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border-top: 3px solid #fff;
  border-top: .1875rem solid #fff;
  border-right: 3px solid #fff;
  border-right: .1875rem solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop__button::before {
  top: 35%;
}

.c-totop__button::after {
  top: 50%;
}

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

.c-totop.is-active:hover .c-totop__button, .c-totop.is-active:focus .c-totop__button {
  background-color: #fff;
}

.c-totop.is-active:hover .c-totop__button::before, .c-totop.is-active:hover .c-totop__button::after, .c-totop.is-active:focus .c-totop__button::before, .c-totop.is-active:focus .c-totop__button::after {
  border-top: 3px solid #1F0043;
  border-right: 3px solid #1F0043;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

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

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  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: #000;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #000;
  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: #000;
  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 #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #000;
  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 {
  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: #F7F3E4;
  font-weight: 700;
}

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

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

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #454545;
  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 #F7F3E4;
  width: 2em;
  height: 2em;
  color: #F7F3E4;
  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: #F7F3E4;
  color: #fff;
}

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

.p-award-archive__inner {
  margin: 0 auto;
  background: #F7F3E4;
  padding: 20px;
  padding: 1.25rem;
  max-width: 1084px;
  max-width: 67.75rem;
}

.p-award-archive__title {
  background: #1F0043;
  padding: 0;
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  text-align: center;
}

.p-award-archive__title-main {
  color: #DEAF00;
}

.p-award-archive__lead {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 0 8px;
  padding: 0 .5rem;
  color: #454545;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.p-award-archive__list {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-award-archive__item {
  text-align: center;
}

.p-award-archive__item img {
  width: 100%;
  height: auto;
}

.p-award-archive__image {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-award-archive__meta {
  color: #454545;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-award-archive__meta-read {
  background-color: rgba(91, 45, 145, .12);
  padding: 0 16px;
  padding: 0 1rem;
}

.p-award-archive__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(31, 0, 67, .8);
  padding: 40px;
  padding: 2.5rem;
  width: 100%;
  height: 100dvh;
}

.p-award-archive__modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-award-archive__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  height: 100%;
}

.p-award-archive__modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.p-award-archive__modal-image {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  max-width: 100%;
  max-height: 70vh;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-award-archive__modal-close {
  position: absolute;
  right: 0;
  bottom: -60px;
  bottom: -3.75rem;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  border: .0625rem solid transparent;
  background: #1F0043;
  padding: 4px 20px;
  padding: .25rem 1.25rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
}

.p-award-archive__modal-close:hover {
  border: 1px solid #1F0043;
  border: .0625rem solid #1F0043;
  background: #fff;
  color: #1F0043;
}

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

.p-award-guideline__block {
  padding: 60px 30px;
  padding: 3.75rem 1.875rem;
}

.p-award-guideline__blockInner {
  margin: 0 auto;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-award-guideline__block--main {
  background-color: #1F0043;
  color: #fff;
}

.p-award-guideline__block--sub {
  background-color: #F5F0D9;
}

.p-award-guideline__title {
  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;
  padding: 8px 0;
  padding: .5rem 0;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.p-award-guideline__title span {
  margin-left: 16px;
  margin-left: 1rem;
  font-family: 'Yuji Syuku', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
}

.p-award-guideline__block--main .p-award-guideline__title {
  border-top: 1px solid #fff;
  border-top: .0625rem solid #fff;
  border-bottom: 1px solid #fff;
  border-bottom: .0625rem solid #fff;
}

.p-award-guideline__block--sub .p-award-guideline__title {
  border-top: 4px double #1F0043;
  border-top: .25rem double #1F0043;
  border-bottom: 4px double #1F0043;
  border-bottom: .25rem double #1F0043;
  color: #1F0043;
}

.p-award-guideline__list {
  row-gap: 16px;
  row-gap: 1rem;
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  padding: 24px 0;
  padding: 1.5rem 0;
}

.p-award-guideline__list dt {
  padding-top: 12px;
  padding-top: .75rem;
  font-weight: 700;
}

.p-award-guideline__list dd {
  margin: 0;
  padding-top: 12px;
  padding-top: .75rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.6;
}

.p-award-guideline__block--main .p-award-guideline__list dt,
.p-award-guideline__block--main .p-award-guideline__list dd {
  border-top: 1px solid #717171;
  border-top: .0625rem solid #717171;
}

.p-award-guideline__block--sub .p-award-guideline__list dt,
.p-award-guideline__block--sub .p-award-guideline__list dd {
  border-top: 1px solid #B4B4B4;
  border-top: .0625rem solid #B4B4B4;
}

.p-award-guideline__list dt:first-of-type,
.p-award-guideline__list dd:first-of-type {
  border-top: none;
  padding-top: 0;
}

.p-award__title {
  color: #1F0043;
  font-family: 'Yuji Syuku', serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 400;
  text-align: center;
}

.p-award__box {
  margin-top: 20px;
  margin-top: 1.25rem;
  background-color: #F7F3E4;
  padding: 14px 14px 40px;
  padding: .875rem .875rem 2.5rem;
}

.p-award__note {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #454545;
  font-family: 'Sawarabi Gothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.p-award__item {
  -webkit-box-shadow: .1875rem .1875rem .375rem rgba(0, 0, 0, .25);
  box-shadow: .1875rem .1875rem .375rem rgba(0, 0, 0, .25);
  border-radius: .5rem;
  background: #fff;
  color: #000;
}

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

.p-award__titleArea {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background: #fff;
  padding: 20px 16px 16px;
  padding: 1.25rem 1rem 1rem;
  text-align: center;
}

.p-award__category {
  display: block;
  color: #1F0043;
  font-family: 'Yuji Syuku', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.p-award__name {
  display: block;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
}

.p-award__name-suffix {
  font-size: 22px;
  font-size: 1.375rem;
}

.p-award__work {
  display: block;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-award__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 10px;
  top: .625rem;
  right: 10px;
  right: .625rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #707070;
}

.is-opened .p-award__icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.icon-arrow {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
}

.is-opened .icon-arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-award__content {
  display: none;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #fff;
  padding: 10px 20px 20px;
  padding: .625rem 1.25rem 1.25rem;
}

.is-opened .p-award__content {
  display: block;
}

.p-award__contentInner {
  border-radius: .375rem;
  background-color: #F7F3E4;
  padding: 16px 16px 28px;
  padding: 1rem 1rem 1.75rem;
}

.p-award__img {
  aspect-ratio: 510/371.08;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-award__info {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: left;
}

.p-award__button {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  border: 1px solid transparent;
  border: .0625rem solid transparent;
  background: #1F0043;
  padding: 6px;
  padding: .375rem;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.p-award__button:hover {
  border-color: #1F0043;
  background: #fff;
  color: #1F0043;
}

.p-award__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}

.p-award__item--main {
  background: #1F0043;
  color: #fff;
}

.p-award__item--main .p-award__titleArea {
  background: #1F0043;
  color: #fff;
}

.p-award__item--main .p-award__category {
  color: #DEAF00;
}

.p-award__item--main .p-award__content {
  background-color: #1F0043;
}

.p-award__item--main .p-award__contentInner {
  background-color: #fff;
}

.p-award__item--main .p-award__icon {
  color: #fff;
}

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

.p-contact__title {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #1F0043;
  font-family: 'Yuji Syuku', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.p-contact__entry {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.entryForm__wrapper {
  display: none;
}

.entryForm__wrapper.is-active {
  display: block;
}

.entryForm__inputArea,
.entryForm__confirmArea,
.entryForm__completeArea {
  border-radius: .5rem;
  background-color: #F4EBFF;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

.entryForm__explanation {
  color: #454545;
  font-family: 'Sawarabi Gothic', sans-serif;
  line-height: 1.5;
  text-align: center;
}

.entryForm__step {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.entryForm__form {
  margin: 0 auto;
}

.entryForm__row {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.entryForm__row .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}

.entryForm__label {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-align: left;
}

.entryForm__input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 8px;
  margin-top: .5rem;
  -webkit-box-shadow: inset 0 .1875rem .375rem rgba(0, 0, 0, .25);
  box-shadow: inset 0 .1875rem .375rem rgba(0, 0, 0, .25);
  border: 1px solid #1F0043;
  border: .0625rem solid #1F0043;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-size: 15px;
  font-size: .9375rem;
}

.entryForm__note {
  font-size: 16px;
  font-size: 1rem;
}

.entryForm__note a {
  margin-top: 0;
  color: #0060F9;
  text-decoration: underline;
}

.entryForm__note--first {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.entryForm__fileRow {
  gap: 20px;
  gap: 1.25rem;
  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;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.entryForm__fileRow .entryForm__fileLabelWrapper {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.entryForm__fileRow .entryForm__fileControl {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -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;
}

.entryForm__fileRow .entryForm__fileButton {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 1px solid #919191;
  border-radius: .25rem;
  background: #fff;
  padding: 10px 24px;
  padding: .625rem 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.entryForm__fileRow .entryForm__fileButton input[type=file] {
  inset: 0;
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.entryForm__fileRow .entryForm__filename {
  font-size: 16px;
  font-size: 1rem;
}

button,
.wpcf7-submit {
  display: inline-block;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  cursor: pointer;
  margin: 16px;
  margin: 1rem;
  border: none;
  border: 1px solid transparent;
  border: .0625rem solid transparent;
  border-radius: .25rem;
  background-color: #1F0043;
  padding: 16px 48px;
  padding: 1rem 3rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

button:hover,
.wpcf7-submit:hover {
  border: 1px solid #1F0043;
  border: .0625rem solid #1F0043;
  background-color: #fff;
  color: #1F0043;
}

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

.entryForm__privacy {
  font-size: 16px;
  font-size: 1rem;
}

.entryForm__privacyTitle {
  font-weight: 500;
}

.entryForm__privacyText {
  margin-top: 4px;
  margin-top: .25rem;
  font-weight: 400;
}

.entryForm__privacyCheck {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}

.entryForm__privacyCheck .wpcf7-list-item {
  margin: 40px 0 0 0;
  margin: 2.5rem 0 0 0;
}

.entryForm__button {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.entryForm__completeText {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.p-contactFv {
  aspect-ratio: 749/565;
  position: relative;
  background-image: url(../img/contactFv_sp.webp);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}

.p-contactFv__inner {
  position: relative;
  padding: 0 20px;
  padding: 0 1.25rem;
  height: 100%;
}

.p-contactFv__header {
  position: absolute;
  bottom: 40px;
  bottom: 2.5rem;
  text-align: left;
}

.p-contactFv__title {
  display: inline-block;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-top: 1px solid #B4B4B4;
  border-bottom: 1px solid #B4B4B4;
  padding: 3px 16px;
  padding: .1875rem 1rem;
  color: #fff;
  font-family: 'Yuji Syuku', serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.0142857143;
}

.p-contactFv__title-en {
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-deadlineAndAnnouncement__inner {
  margin: 0 auto;
  border: 1px solid #C99E00;
  background-color: #fff;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-deadlineAndAnnouncement__content {
  margin: 0 auto;
  width: 100%;
}

.p-deadlineAndAnnouncement__title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.p-deadlineAndAnnouncement__listWrapper {
  padding: 30px 0;
  padding: 1.875rem 0;
}

.p-deadlineAndAnnouncement__list {
  row-gap: 20px;
  row-gap: 1.25rem;
  display: grid;
  grid-template-columns: 6.25rem 1fr;
}

.p-deadlineAndAnnouncement__list dt {
  border-top: 1px solid #B4B4B4;
  border-top: .0625rem solid #B4B4B4;
  padding-top: 12px;
  padding-top: .75rem;
  font-weight: 700;
}

.p-deadlineAndAnnouncement__list dd {
  border-top: 1px solid #B4B4B4;
  border-top: .0625rem solid #B4B4B4;
  padding-top: 12px;
  padding-top: .75rem;
  letter-spacing: .03em;
  line-height: 1.6;
}

.p-deadlineAndAnnouncement__list dt:first-of-type,
.p-deadlineAndAnnouncement__list dd:first-of-type {
  border-top: none;
}

.p-deadlineAndAnnouncement__row {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-top: 1px solid #B4B4B4;
  border-top: .0625rem solid #B4B4B4;
  border-bottom: 1px solid #B4B4B4;
  border-bottom: .0625rem solid #B4B4B4;
  padding-top: 12px;
  padding-top: .75rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-deadlineAndAnnouncement__row dt {
  font-weight: 700;
}

.p-deadlineAndAnnouncement__row dd {
  margin-top: 8px;
  margin-top: .5rem;
  letter-spacing: .03em;
  line-height: 1.6;
}

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  margin: 0;
  border-radius: 0;
  background-color: rgba(31, 0, 67, .5);
  padding: 16px;
  padding: 1rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

.p-drawer__icon:hover {
  background-color: rgba(54.5970149254, 0, 118, .5);
}

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

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

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

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

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 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: rgba(31, 0, 67, .8);
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  height: 100vh;
  overflow: auto;
  color: #000;
  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);
}

body.home .p-drawer__content {
  height: 750px;
  height: 46.875rem;
}

body.p-contact .p-drawer__content {
  background: rgba(247, 243, 228, .8);
}

body.p-contact .p-drawer__content.is-opened {
  -webkit-box-shadow: 6px 0 25px rgba(247, 243, 228, .16);
  box-shadow: 6px 0 25px rgba(247, 243, 228, .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 {
  width: 100%;
  height: inherit;
  text-align: left;
}

.p-drawer__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 30px;
  padding: 0 1.875rem;
  height: inherit;
}

.p-drawer__navItem {
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

body.p-contact .p-drawer__navItem {
  color: #1F0043;
}

.p-drawer__navLink {
  display: block;
  padding-top: 22px;
  padding-top: 1.375rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}

.p-footer {
  background-color: #1F0043;
  text-align: center;
}

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

.p-fv {
  background-image: url(../img/fv_sp.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 750px;
  height: 46.875rem;
}

.p-fv__inner {
  height: inherit;
}

.p-fv__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(31, 0, 67, .8);
  width: 180px;
  width: 11.25rem;
  height: inherit;
  text-align: center;
}

.p-fv__title {
  color: #fff;
  font-family: 'Yuji Syuku', serif;
  font-size: 76px;
  font-size: 4.75rem;
  line-height: 1.1184210526;
}

.p-fv__title-en {
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #C99E00;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2380952381;
}

.p-fv__message {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 46px;
  padding-bottom: 2.875rem;
  text-align: center;
}

.p-fv__text {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

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

.p-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  text-align: right;
}

.p-lowerFv {
  aspect-ratio: 749/565;
  position: relative;
  background-image: url(../img/lowerFv_sp.webp);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}

.p-lowerFv__inner {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  height: 100%;
}

.p-lowerFv__title {
  display: inline-block;
  border-top: 1px solid #B4B4B4;
  border-top: .0625rem solid #B4B4B4;
  border-bottom: 1px solid #B4B4B4;
  border-bottom: .0625rem solid #B4B4B4;
  padding: 3px 16px;
  padding: .1875rem 1rem;
  color: #fff;
  font-family: 'Yuji Syuku', serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.0142857143;
}

.p-lowerFv__title-en {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #C99E00;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-size: 1.25rem;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.page-numbers {
  display: inline-block;
  border: 1px solid;
  border: .0625rem solid;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #1F0043;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2.7;
}

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

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

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

.page-numbers:not(.current):not(.dots):hover {
  background-color: #1F0043;
  color: #fff;
}

.p-profile__botton {
  color: #1F0043;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  text-align: right;
}

.p-profile__inner {
  margin: 0 auto;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  max-width: 680px;
  max-width: 42.5rem;
}

.p-profile__title {
  border-bottom: 1px solid #B4B4B4;
  border-bottom: .0625rem solid #B4B4B4;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

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

.p-profile__lead {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

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

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

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.more-accordionButton {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  text-align: center;
}

.more-accordionButton__link {
  display: block;
  position: relative;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border: 1px solid #C99E00;
  border: .0625rem solid #C99E00;
  background: #fff;
  padding: 4px;
  padding: .25rem;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.more-accordionButton__link:hover {
  background: #C99E00;
}

.more-accordionButton__icon {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  right: 12px;
  right: .75rem;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.more-accordionButton__icon .icon-arrow {
  display: block;
  width: 20px;
  width: 1.25rem;
  height: auto;
  line-height: 1;
}

.more-accordionButton.is-opened .more-accordionButton__icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.more-accordionButton__content {
  display: none;
  border: 1px solid #C99E00;
  border: .0625rem solid #C99E00;
  border-top: none;
  padding: 0;
}

.more-accordionButton.is-opened .more-accordionButton__content {
  display: block;
}

.more-accordionButton__list li {
  border-top: 1px solid #C99E00;
  border-top: .0625rem solid #C99E00;
}

.more-accordionButton__list li a {
  display: block;
  padding: 8px 16px;
  padding: .5rem 1rem;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .3em;
}

.more-accordionButton__list li a:hover {
  background-color: #C99E00;
}

.u-commonButton {
  padding: 10px;
  padding: .625rem;
  text-align: left;
}

.u-commonButton__link {
  display: inline-block;
  position: relative;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border: 1px solid transparent;
  border: .0625rem solid transparent;
  border-radius: .25rem;
  background: #1F0043;
  padding: 2px 30px 2px 20px;
  padding: .125rem 1.875rem .125rem 1.25rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.u-commonButton__link:hover {
  border: 1px solid #1F0043;
  border: .0625rem solid #1F0043;
  background: #fff;
  color: #1F0043;
}

.u-commonButton__link::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  right: .625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-top: .125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.u-commonButton__link:hover::after {
  border-top: 2px solid #1F0043;
  border-top: .125rem solid #1F0043;
  border-right: 2px solid #1F0043;
  border-right: .125rem solid #1F0043;
}

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

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

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

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

.u-link {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.u-nowrap {
  white-space: nowrap;
}

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

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

.u-textRed {
  color: #E61150;
}

.vertical-text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

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

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

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

  html {
    font-size: 1.5094339623vw;
  }

  :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-award-archive {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

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

  .l-container {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1110px;
  }

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

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

  .l-header {
    position: absolute;
    top: 0;
    left: 0;
  }

  .l-sectionTop {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .c-step__list {
    margin: 0 auto;
    max-width: 580px;
    max-width: 36.25rem;
  }

  .c-step__item {
    margin-right: -24px;
    margin-right: -1.5rem;
  }

  .p-article__title {
    font-size: 24px;
  }

  .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-award-archive__title {
    padding: 8px;
    padding: .5rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-award-archive__lead {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-award-archive__list {
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-award-archive__meta {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-award-archive__modal-close {
    right: 16px;
    right: 1rem;
    bottom: 16px;
    bottom: 1rem;
  }

  .p-award-archive__more {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-award-guideline__blockInner {
    gap: 100px;
    gap: 6.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-award-guideline__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-award-guideline__title span {
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-left: 0;
    padding: 30px 0;
    padding: 1.875rem 0;
    font-size: 32px;
    font-size: 2rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .p-award-guideline__block--main .p-award-guideline__title {
    border-top: none;
    border-bottom: none;
  }

  .p-award-guideline__block--main .p-award-guideline__title span {
    border-right: 1px solid #fff;
    border-right: .0625rem solid #fff;
    border-left: 1px solid #fff;
    border-left: .0625rem solid #fff;
    font-size: 54px;
    font-size: 3.375rem;
    letter-spacing: .1em;
    line-height: 1.8;
  }

  .p-award-guideline__block--sub .p-award-guideline__title {
    border-top: none;
    border-bottom: none;
  }

  .p-award-guideline__block--sub .p-award-guideline__title span {
    border-right: 4px double #1F0043;
    border-right: .25rem double #1F0043;
    border-left: 4px double #1F0043;
    border-left: .25rem double #1F0043;
    font-size: 42px;
    font-size: 2.625rem;
    letter-spacing: .03em;
    line-height: 1.8;
  }

  .p-award-guideline__list {
    max-width: 700px;
    max-width: 43.75rem;
  }

  .p-award__title {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-award__box {
    padding: 20px 20px 60px;
    padding: 1.25rem 1.25rem 3.75rem;
  }

  .p-award__titleArea {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-award__category {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 300px;
    -webkit-flex: 0 0 18.75rem;
    -ms-flex: 0 0 300px;
    -ms-flex: 0 0 18.75rem;
    flex: 0 0 300px;
    flex: 0 0 18.75rem;
    border-right: 1px solid #A0A0A0;
    border-right: .0625rem solid #A0A0A0;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-award__name {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 30px;
    font-size: 1.875rem;
    text-align: left;
  }

  .p-award__name-suffix {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-award__work {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
    font-size: 28px;
    font-size: 1.75rem;
    text-align: left;
  }

  .p-award__contentInner {
    gap: 30px;
    gap: 1.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 40px;
    padding: 2.5rem;
  }

  .p-award__img {
    aspect-ratio: 268/195;
    width: 268px;
    width: 16.75rem;
    height: 100%;
  }

  .p-award__info {
    margin-top: 0;
  }

  .p-award__button {
    width: 250px;
    width: 15.625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-award__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contact__title {
    margin-top: 80px;
    margin-top: 5rem;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .entryForm__step {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .entryForm__form {
    max-width: 700px;
    max-width: 43.75rem;
  }

  .entryForm__row {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .entryForm__label {
    width: 140px;
    width: 8.75rem;
  }

  .entryForm__note {
    padding-left: 160px;
    padding-left: 10rem;
  }

  .entryForm__fileRow .entryForm__fileLabelWrapper {
    width: 140px;
    width: 8.75rem;
  }

  .entryForm__fileRow .entryForm__fileControl {
    gap: 12px;
    gap: .75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .entryForm__footer {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .entryForm__completeText {
    margin-bottom: 100px;
    margin-bottom: 6.25rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contactFv {
    aspect-ratio: 1400/200;
    background-image: url(../img/contactFv_pc.webp);
  }

  .p-contactFv__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-contactFv__header {
    position: relative;
    bottom: auto;
  }

  .p-contactFv__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #1F0043;
    border-top: .0625rem solid #1F0043;
    border-bottom: 1px solid #1F0043;
    border-bottom: .0625rem solid #1F0043;
    padding: 12px 20px;
    padding: .75rem 1.25rem;
  }

  .p-contactFv__title {
    margin-top: 0;
    border-top: none;
    border-bottom: none;
    padding: 0 0;
    color: #1F0043;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-contactFv__title-en {
    margin-left: 46px;
    margin-left: 2.875rem;
    color: #501B8E;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-deadlineAndAnnouncement__inner {
    padding: 40px;
    padding: 2.5rem;
  }

  .p-deadlineAndAnnouncement__content {
    width: 57.9%;
  }

  .p-deadlineAndAnnouncement__list {
    grid-template-columns: 8.75rem 1fr;
  }

  .p-deadlineAndAnnouncement__row {
    display: grid;
    grid-template-columns: 8.75rem 1fr;
  }

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

  .p-drawer__content {
    width: calc(50% - 12.5rem);
  }

  body.home .p-drawer__content {
    width: calc(50% - 12.5rem);
    height: 600px;
    height: 37.5rem;
  }

  .p-drawer__navList {
    margin: 0 auto;
    max-width: 500px;
  }

  body.home .p-drawer__navList {
    padding: 0 0;
  }

  .p-drawer__navItem {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .p-fv {
    background-image: url(../img/fv_pc.webp);
    height: 600px;
    height: 37.5rem;
  }

  .p-fv__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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }

  .p-fv__left,
  .p-fv__right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(50% - 12.5rem);
    height: inherit;
  }

  .p-fv__left {
    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;
    background: rgba(255, 255, 255, .7);
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-fv__left-text {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 25px;
    font-size: 1.5625rem;
    font-weight: 700;
    letter-spacing: .125em;
    line-height: 1.6;
  }

  .p-fv__left-text + .p-fv__left-text {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-fv__left-text .indent40 {
    display: inline-block;
    height: 40px;
    height: 2.5rem;
  }

  .p-fv__left-text .indent50 {
    display: inline-block;
    height: 50px;
    height: 3.125rem;
  }

  .p-fv__header {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-top: 40px;
    padding-top: 2.5rem;
    width: 400px;
    width: 25rem;
  }

  .p-fv__title-en {
    line-height: .6666666667;
  }

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

  .p-header {
    position: absolute;
  }

  .p-lowerFv {
    aspect-ratio: 1400/200;
    background-image: url(../img/lowerFv_pc.webp);
  }

  .p-lowerFv__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;
    padding-top: 0;
  }

  .p-lowerFv__link {
    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;
    border-top: 1px solid #B4B4B4;
    border-top: .0625rem solid #B4B4B4;
    border-bottom: 1px solid #B4B4B4;
    border-bottom: .0625rem solid #B4B4B4;
    padding: 0 20px;
    padding: 0 1.25rem;
  }

  .p-lowerFv__title {
    border-top: none;
    border-bottom: none;
    padding: 0 0;
    padding: 12px 0;
    padding: .75rem 0;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-lowerFv__title-en {
    margin-top: 0;
    margin-left: 46px;
    margin-left: 2.875rem;
    padding: 12px 0;
    padding: .75rem 0;
    font-size: 18px;
    font-size: 1.125rem;
  }

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

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

  .p-profile__lead {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .more-accordionButton__link {
    padding: 12px;
    padding: .75rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .more-accordionButton__icon {
    top: 14px;
    top: .875rem;
    right: 24px;
    right: 1.5rem;
  }

  .more-accordionButton__icon .icon-arrow {
    width: 32px;
    width: 2rem;
  }

  .more-accordionButton__list li a {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .u-commonButton__link {
    padding: 4px 40px 4px 20px;
    padding: .25rem 2.5rem .25rem 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .u-commonButton__link::after {
    right: 16px;
    right: 1rem;
    width: 12px;
    width: .75rem;
    height: 12px;
    height: .75rem;
  }
}

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

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

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */