@charset "UTF-8";

/* Reset
-------------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
  }
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  tab-size: 4;
}
body {
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, iframe) {
  border: none;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(img) {
  image-rendering: -webkit-optimize-contrast;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + .6rem);
}
ul:where([class]),
ol:where([class]),
nav ul,
nav ol {
  list-style: none;
}
ul:where(:not([class])) {
  margin-left: .875em;
}
ol:where(:not([class])) {
  margin-left: 1.25em;
}
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(sub, sup) {
  font-size: 68.75%;
  line-height: 1.02;
}
:where(sub) {
  vertical-align: baseline;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(template) {
  display: none;
}
:where(a) {
  background: transparent;
  text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .25);
}
:where(a:active, a:hover) {
  outline-width: 0;
}
:where(a img) {
  pointer-events: none;
}
:where(a, area, button, input, label[for], select, textarea, summary, [role='button'], [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}
:where(code, kbd, pre, samp) {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
}
:where(pre) {
  display: block;
  overflow: auto;
}
:where(code) {
  overflow-wrap: break-word;
}
:where(pre code) {
  word-break: normal;
}
:where(dialog) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  background: inherit;
  border: solid;
  color: inherit;
  transform: translate(-50%, -50%);
}
:where(dialog:not([open])) {
  display: none;
}
:where(fieldset) {
  border: none;
}
:where(input, textarea, select, button),
:where(input[type="file"])::-webkit-file-upload-button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: bottom;
  appearance: none;
}
:where(textarea) {
  resize: vertical;
  resize: block;
  overflow: auto;
  overflow-anchor: none;
}
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:disabled, :disabled + label),
:where(input[type="file"]):disabled::-webkit-file-upload-button,
:where(input[type="file"]):disabled::file-selector-button,
:where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}
:where([type="color"])::-webkit-color-swatch-wrapper {
  padding: 0;
}
:where([type="color"])::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}
:where([type="color"])::-moz-color-swatch {
  border: none;
  border-radius: 0;
}
:where([hidden]) {
  display: none;
}
:where([aria-busy="true"]) {
  cursor: progress;
}
:where([aria-controls]) {
  cursor: pointer;
}



/* Foundation
-------------------------------------------------- */
:root {
  --lg-base: 1440 * 100vw;
  --sm-base: 750 * 100vw;

  --color-default          : #333;
  --color-gray             : #dcdcdc;
  --color-gray-dark        : #565656;
  --color-gray-light       : #efefef;
  --color-primary          : #18ba60;
  --color-secondary        : #1c4791;
  --color-bg-primary       : #fafafa;
  --color-red              : #f00;
  --color-bg-secondary     : #000;
  --color-border-primary   : #000;
  --color-border-secondary : #000;

  --font-sansSerif      : 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif          : 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', Garamond, 'Times New Roman', serif;
  --font-sansSerif-en   : "Anton", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  --font-sansSerif-en02 : "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif-en       : Garamond, 'Times New Roman', serif;

  --transition          : .25s ease;
  --transition-duration : .25s;
  --hover-opacity       : .6;
}

body {
  width: 100%;
  padding-top: calc(120 / var(--sm-base));
  background: #fff;
  color: var(--color-default);
  font-family: var(--font-sansSerif);
  font-size: calc(30 / var(--sm-base));
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
a {
  color: var(--color-default);
  text-decoration: none;
  text-underline-offset: .275em;
}
a:where(:not([class])) {
  color: var(--color-secondary);
  text-decoration: underline;
}
a[href$=".pptx"] > span,
a[href$=".xlsx"] > span,
a[href$=".zip"] > span,
a[href$=".doc"] > span,
a[href$=".pdf"] > span {
  /* display: inline-block; */
  position: relative;
  padding-left: 1.5em;
  text-decoration: underline;
}
a[href$=".pptx"] > span::before,
a[href$=".xlsx"] > span::before,
a[href$=".zip"] > span::before,
a[href$=".doc"] > span::before,
a[href$=".pdf"] > span::before {
  content: '';
  position: absolute;
  top: .25em;
  left: 0;
  width: calc(36 / var(--sm-base));
  height: calc(36 / var(--sm-base));
  background: url(../images/common/icn_pdf_01.svg) center center / 100% no-repeat;
}
a[href$=".pptx"] > span::before,
a[href$=".xlsx"] > span::before,
a[href$=".zip"] > span::before,
a[href$=".doc"] > span::before {
  background: url(../images/common/icn_document_01.svg) center center / 100% no-repeat;
}
ul:where(:not([class])) {
  margin-left: 0;
}
ul:where(:not([class])) li {
  padding-left: 1em;
  text-indent: -1em;
  list-style: none;
}
ul:where(:not([class])) li::before {
  content: '・';
}
@media (hover: hover) and (pointer: fine) {
  a:where(:not([class])):hover,
  a[href$=".xlsx"]:hover > span,
  a[href$=".zip"]:hover > span,
  a[href$=".doc"]:hover > span,
  a[href$=".pdf"]:hover > span {
    text-decoration: none;
  }
  a img,
  button img {
    transition: opacity var(--transition);
  }
  a:hover img,
  button:hover img {
    opacity: var(--hover-opacity);
  }
}
input, textarea, button, select, option, optgroup {
  font-size: min(16px, calc(32 / var(--sm-base)));
}
::selection {
  background-color: var(--color-secondary);
  color: #fff;
  text-shadow: none;
}
::placeholder {
  color: var(--color-gray);
  opacity: 1;
}
@media screen and (min-width: 768px), print {
  body {
    padding-top: 70px;
    font-size: 16px;
    line-height: 1.8;
  }
  a[href*="tel:"]{
    color: var(--color-default);
    text-decoration: none;
    pointer-events: none;
  }
  a[href$=".pptx"] > span::before,
  a[href$=".xlsx"] > span::before,
  a[href$=".zip"] > span::before,
  a[href$=".doc"] > span::before,
  a[href$=".pdf"] > span::before {
    width: 18px;
    height: 18px;
  }
  input, textarea, button, select, option, optgroup {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px), print {
  body {
    padding-top: 135px;
  }
}



/* Utility
-------------------------------------------------- */
.u-tl { text-align: left; }
.u-tc { text-align: center; }
.u-tr { text-align: right; }

.u-vt { vertical-align: top; }
.u-vm { vertical-align: middle; }
.u-vb { vertical-align: bottom; }

.u-fwn { font-weight: 400; }
.u-fwb { font-weight: 700; }

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

.u-attention {
  color: var(--color-red);
}

.smsizes\:hidden,
.xs\:hidden {
  display: none;
}
@media screen and (min-width: 360px), print {
  .xs\:hidden {
    display: inline;
  }
  .sm\:hidden {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .smsizes\:hidden,
  .xs\:hidden,
  .sm\:hidden {
    display: inline;
  }
  .lgsizes\:hidden,
  .md\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px), print {
  .xs\:hidden,
  .sm\:hidden,
  .md\:hidden {
    display: inline;
  }
  .lg\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .xs\:hidden,
  .sm\:hidden,
  .md\:hidden,
  .lg\:hidden {
    display: inline;
  }
  .xl\:hidden {
    display: none;
  }
}



/* Modules, Components
-------------------------------------------------- */
/* Inner */
.l-inner,
.l-article {
  padding: 0 calc(30 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .l-inner,
  .l-article {
    max-width: 1188px;
    margin: 0 auto;
    padding: 0 24px;
  }
}

/* Container */
.l-container {
  margin-inline: auto;
}
.l-container:not(:first-child) {
  margin-top: calc(120 / var(--sm-base));
}
.l-container > *:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .l-container:not(:first-child) {
    margin-top: 80px;
  }
  .l-container.--md {
    max-width: 950px;
  }
  .l-container.--sm {
    max-width: 750px;
  }
  .l-container.--xs {
    max-width: 600px;
  }
}

/* Contents */
.l-contents > *:first-child,
.l-contents > h2:first-child,
.l-contents > h3:first-child,
.l-contents > h4:first-child,
.l-contents > h5:first-child,
.l-contents .c-heading + *,
.l-contents h2:not(.c-heading) + *,
.l-contents h3:not(.c-heading) + *,
.l-contents h4:not(.c-heading) + *,
.l-contents h5:not(.c-heading) + *,
.l-contents .spacerNone {
  margin-top: 0;
}
.l-contents h2:not(.c-heading),
.l-contents h3:not(.c-heading),
.l-contents h4:not(.c-heading),
.l-contents h5:not(.c-heading),
.l-contents .wp-block-heading {
  margin-block: calc(120 / var(--sm-base)) 1em;
}
.l-contents h2:not(.c-heading) {
  font-size: calc(50 / var(--sm-base));
}
.l-contents h3:not(.c-heading) {
  font-size: calc(46 / var(--sm-base));
}
.l-contents h4:not(.c-heading) {
  font-size: calc(38 / var(--sm-base));
}
.l-contents h5:not(.c-heading) {
  font-size: calc(38 / var(--sm-base));
}
.l-contents p {
  margin-top: .6em;
}
.l-contents ul:not([class]) {
  list-style: disc;
}
.l-contents ol:not([class]) {
  list-style: decimal;
  margin-left: 1.25em;
}
.l-contents li {
  margin-top: .2em;
}
.l-contents li:first-child {
  margin-top: 0;
}
.l-contents ul:not([class]) li {
  padding-left: 1em;
  text-indent: -1em;
  list-style: none;
}
.l-contents ul:not([class]) li::before {
  content: '・';
}
.l-contents hr,
.l-contents .wp-block-separator {
  display: block;
  width: 100%;
  height: 0;
  margin-block: calc(120 / var(--sm-base));
  border: none;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.l-contents .spacer,
.l-contents .wp-block-spacer {
  margin-top: calc(80 / var(--sm-base));
}
.l-contents .spacer.--sm {
  margin-top: calc(60 / var(--sm-base));
}
.l-contents .spacer.--lg {
  margin-top: calc(120 / var(--sm-base));
}
.l-contents .wp-block-spacer {
  height: auto !important;
}
.l-contents .wp-block-image {
  margin-block: calc(80 / var(--sm-base));
}
.l-contents .has-theme-black-color {
  color: var(--color-default);
}
.l-contents .has-theme-white-color {
  color: #fff;
}
.l-contents .has-theme-gray-dark-color {
  color: var(--color-gray-dark);
}
.l-contents .has-theme-gray-light-color {
  color: var(--color-gray-light);
}
.l-contents .has-theme-primary-color {
  color: var(--color-primary);
}
.l-contents .has-theme-secondary-color {
  color: var(--color-secondary);
}
.l-contents .has-theme-red-color {
  color: var(--color-red);
}
.l-contents .has-theme-black-background-color {
  background-color: var(--color-default);
}
.l-contents .has-theme-white-background-color {
  background-color: #fff;
}
.l-contents .has-theme-gray-dark-background-color {
  background-color: var(--color-gray-dark);
}
.l-contents .has-theme-gray-light-background-color {
  background-color: var(--color-gray-light);
}
.l-contents .has-theme-primary-background-color {
  background-color: var(--color-primary);
}
.l-contents .has-theme-secondary-background-color {
  background-color: var(--color-secondary);
}
.l-contents .has-theme-red-background-color {
  background-color: var(--color-red);
}
@media screen and (min-width: 768px), print {
  .l-contents h2:not(.c-heading),
  .l-contents h3:not(.c-heading),
  .l-contents h4:not(.c-heading),
  .l-contents h5:not(.c-heading),
  .l-contents .wp-block-heading {
    margin-block: 80px 1em;
  }
  .l-contents h2:not(.c-heading) {
    font-size: 30px;
  }
  .l-contents h3:not(.c-heading) {
    font-size: 26px;
  }
  .l-contents h4:not(.c-heading) {
    font-size: 22px;
  }
  .l-contents h5:not(.c-heading) {
    font-size: 18px;
  }
  .l-contents hr,
  .l-contents .wp-block-separator {
    margin-block: 80px;
    border-top-width: 1px;
  }
  .l-contents .spacer,
  .l-contents .wp-block-spacer {
    margin-top: 60px;
  }
  .l-contents .spacer.--sm {
    margin-top: 40px;
  }
  .l-contents .spacer.--lg {
    margin-top: 80px;
  }
  .l-contents .wp-block-image {
    margin-block: 60px;
  }
  .l-contents > *:first-child,
  .l-contents > h2:first-child,
  .l-contents > h3:first-child,
  .l-contents > h4:first-child,
  .l-contents > h5:first-child,
  .l-contents .c-heading + *,
  .l-contents h2:not(.c-heading) + *,
  .l-contents h3:not(.c-heading) + *,
  .l-contents h4:not(.c-heading) + *,
  .l-contents h5:not(.c-heading) + *,
  .l-contents .spacerNone {
    margin-top: 0;
  }
}

/* Column */
.l-column > *:not(:first-child) {
  margin-top: calc(60 / var(--sm-base));
}
.l-column-image img {
  max-width: 220px;
  margin: 0 auto;
}
.l-column-image .wp-block-image {
  margin: 0;
}
.l-column-image + * > *:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .l-column {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  .l-column > * {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
  .l-column > * > *:first-child {
    margin-top: 0;
  }
  .l-column > *:not(:first-child) {
    margin-top: 0;
  }
  .l-column > *:nth-child(n+3) {
    margin-top: 20px;
  }
  .l-column.--column3 > * {
    width: calc(33.33333% - 20px);
  }
  .l-column.--column3 > *:nth-child(n) {
    margin-top: 0;
  }
  .l-column.--column3 > *:nth-child(n+4) {
    margin-top: 20px;
  }
  .l-column-image {
    max-width: 250px;
  }
  .l-column-image + * {
    width: calc(100% - 290px);;
  }
  .l-column-image img {
    margin: 0 auto 0 0;
  }
}

/* Article */
.l-article-body > *:first-child {
  margin-top: 0;
}
.l-article-side {
  margin-top: calc(120 / var(--sm-base));
}
.l-article-side > * {
  padding: calc(40 / var(--sm-base));
  background: var(--color-bg-primary);
  border-radius: calc(20 / var(--sm-base));
}
.l-article-side > *:not(:first-of-type) {
  margin-top: calc(60 / var(--sm-base));
}
.l-article-side > * > *:first-child {
  margin-top: 0;
}
.l-article-side-other ul li {
  position: relative;
  text-indent: 0;
}
.l-article-side-other ul li:not(:first-child) {
  margin-top: calc(20 / var(--sm-base));
}
.l-article-side-other ul li::before {
  content: '';
  position: absolute;
  top: .575em;
  left: 0;
  width: calc(14 / var(--sm-base));
  height: calc(14 / var(--sm-base));
  border-right: calc(2 / var(--sm-base)) solid var(--color-default);
  border-top: calc(2 / var(--sm-base)) solid var(--color-default);
  transform: rotate(45deg);
}
.l-article-side-other ul li a {
  display: inline-block;
  color: var(--color-default);
  text-decoration: none;
}
.l-article-side-category ul {
  display: inline-flex;
  flex-wrap: wrap;
  margin: calc(-20 / var(--sm-base)) calc(-20 / var(--sm-base)) 0 0;
}
.l-article-side-category ul li {
  margin: calc(20 / var(--sm-base)) calc(20 / var(--sm-base)) 0 0;
  padding: 0;
  text-indent: 0;
}
.l-article-side-category ul li::before {
  content: none;
}
.l-article-side-category ul li a {
  display: inline-block;
  padding: .375em .75em .5em;
  background: #66ABC6;
  color: #fff;
  font-size: calc(26 / var(--sm-base));
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.l-article-tags {
  margin-top: calc(120 / var(--sm-base));
}
.l-article-tags ul {
  display: inline-flex;
  flex-wrap: wrap;
  margin: calc(-20 / var(--sm-base)) calc(-20 / var(--sm-base)) 0 0;
}
.l-article-tags ul li {
  margin: calc(20 / var(--sm-base)) calc(20 / var(--sm-base)) 0 0;
  padding: 0;
  text-indent: 0;
}
.l-article-tags ul li::before {
  content: none;
}
.l-article-tags ul li a {
  display: inline-block;
  padding: .375em .75em .5em;
  background: #66ABC6;
  color: #fff;
  font-size: calc(26 / var(--sm-base));
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.l-article-back {
  margin-top: calc(60 / var(--sm-base));
}
.l-article-back a {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
  color: var(--color-default);
  text-decoration: none;
}
.l-article-back a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-left: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-bottom: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .l-article-back a,
  .l-article-side-other ul li a {
    transition: color var(--transition);
  }
  .l-article-back a:hover,
  .l-article-side-other ul li a:hover {
    color: var(--color-primary);
  }
  .l-article-tags ul li a,
  .l-article-side-category ul li a {
    transition: background var(--transition);
  }
  .l-article-tags ul li a:hover,
  .l-article-side-category ul li a:hover {
    background: #5C9AB2;
  }
}
@media screen and (min-width: 768px), print {
  .l-article {
    display: flex;
  }
  .l-article-body {
    flex: 1;
    word-break: break-all;
  }
  .l-article-tags {
    margin-top: 80px;
  }
  .l-article-tags ul {
    margin: -10px -10px 0 0;
  }
  .l-article-tags ul li {
    margin: 10px 10px 0 0;
  }
  .l-article-tags ul li a {
    font-size: 14px;
  }
  .l-article-back {
    margin-top: 40px;
  }
  .l-article-back a::before {
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--color-border-primary);
    border-bottom: 1px solid var(--color-border-primary);
  }
  .l-article-side {
    width: 32%;
    max-width: 360px;
    margin: 0 0 0 40px;
  }
  .l-article-side > * {
    padding: 20px;
    border-radius: 10px;
  }
  .l-article-side > *:not(:first-of-type) {
    margin-top: 30px;
  }
  .l-article-side-other ul li:not(:first-child) {
    margin-top: 10px;
  }
  .l-article-side-other ul li::before {
    top: .7em;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-default);
    border-top: 1px solid var(--color-default);
    transform: rotate(45deg);
  }
  .l-article-side-other ul li a {
    font-size: 14px;
  }
  .l-article-side-category ul {
    margin: -10px -10px 0 0;
  }
  .l-article-side-category ul li {
    margin: 10px 10px 0 0;
  }
  .l-article-side-category ul li a {
    font-size: 14px;
  }
}

/* Pagetop */
.m-pagetop {
  position: fixed;
  right: calc(30 / var(--sm-base));
  bottom: calc(30 / var(--sm-base));
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.m-pagetop.--show {
  opacity: 1;
  visibility: visible;
}
.m-pagetop.--static {
  position: absolute;
  top: calc(-140 / var(--sm-base));
  bottom: auto;
}
.m-pagetop a {
  position: relative;
  display: inline-block;
  width: calc(72 / var(--sm-base));
  height: calc(72 / var(--sm-base));
  background: var(--color-secondary);
  border-radius: calc(10 / var(--sm-base));
  font-size: 0;
}
.m-pagetop a::after {
  content: '';
  position: absolute;
  top: 57%;
  left: 50%;
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-top: calc(3 / var(--sm-base)) solid #fff;
  border-right: calc(3 / var(--sm-base)) solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .m-pagetop a {
    transition: opacity var(--transition);
  }
  .m-pagetop a:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  .m-pagetop {
    right: 24px;
    bottom: 24px;
  }
  .m-pagetop.--static {
    top: -94px;
    bottom: auto;
  }
  .m-pagetop a {
    width: 48px;
    height: 48px;
    border-radius: 5px;
  }
  .m-pagetop a::after {
    width: 12px;
    height: 12px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}

/* Pagination */
.m-pagination {
  position: relative;
  margin-top: calc(80 / var(--sm-base));
  text-align: center;
}
.m-pagination > * {
  display: inline-block;
  padding: calc(16 / var(--sm-base));
  color: var(--color-gray-dark);
  font-size: calc(36 / var(--sm-base));
  text-decoration: none;
}
.m-pagination-current {
  color: var(--color-default);
  font-weight: 700;
}
.m-pagination-prev,
.m-pagination-next,
.m-pagination-prev::before,
.m-pagination-next::before  {
  position: absolute;
  top: 50%;
  display: block;
  width: calc(30 / var(--sm-base));
  height: calc(30 / var(--sm-base));
  font-size: 0;
  transform: translateY(-50%);
}
.m-pagination-prev {
  left: calc(15 / var(--sm-base));
}
.m-pagination-next {
  right: calc(15 / var(--sm-base));
}
.m-pagination-prev::before,
.m-pagination-next::before {
  content: '';
  transform: translateY(-50%) rotate(45deg);
}
.m-pagination-prev::before {
  left: 0;
  border-left: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-bottom: calc(3 / var(--sm-base)) solid var(--color-border-primary);
}
.m-pagination-next::before {
  right: 0;
  border-right: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-top: calc(3 / var(--sm-base)) solid var(--color-border-primary);
}
@media (hover: hover) and (pointer: fine) {
  .m-pagination > a {
    transition: color var(--transition);
  }
  .m-pagination > a:hover {
    color: var(--color-primary);
  }
  .m-pagination-prev::before,
  .m-pagination-next::before {
    transition: border-color var(--transition);
  }
  .m-pagination-prev:hover::before,
  .m-pagination-next:hover::before {
    border-color: var(--color-primary);
  }
}
@media screen and (min-width: 768px), print {
  .m-pagination {
    margin-top: 60px;
  }
  .m-pagination > * {
    padding: 10px;
    font-size: 18px;
  }
  .m-pagination-prev,
  .m-pagination-next,
  .m-pagination-prev::before,
  .m-pagination-next::before  {
    width: 14px;
    height: 14px;
    font-size: 0;
  }
  .m-pagination-prev {
    left: 7px;
  }
  .m-pagination-next {
    right: 7px;
  }
  .m-pagination-prev::before {
    border-left: 1px solid var(--color-border-primary);
    border-bottom: 1px solid var(--color-border-primary);
  }
  .m-pagination-next::before {
    border-right: 1px solid var(--color-border-primary);
    border-top: 1px solid var(--color-border-primary);
  }
}

/* Form */
.m-form-row + .m-form-row {
  margin-top: calc(60 / var(--sm-base));
}
.m-form-head {
  margin-bottom: calc(12 / var(--sm-base));
}
.m-form-head label {
  font-size: calc(44 / var(--sm-base));
  font-weight: 500;
}
.m-form-head .required {
  position: relative;
  top: calc(-10 / var(--sm-base));
  display: inline-block;
  margin-left: calc(6 / var(--sm-base));
  padding: calc(8 / var(--sm-base)) calc(8 / var(--sm-base)) calc(10 / var(--sm-base));
  background: var(--color-red);
  border-radius: calc(6 / var(--sm-base));
  color: #fff;
  font-size: calc(18 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
}
.m-form-textfield {
  width: 100%;
  padding: calc(12 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-radius: calc(8 / var(--sm-base));
}
input.m-form-textfield.--sm {
  width: 45%;
}
.m-form-textfield.--textarea {
  height: calc(400 / var(--sm-base));
}
.m-form-textfield.--textarea.--sm {
  height: calc(200 / var(--sm-base));
}
.m-form-searchbox,
.m-form-selectbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.m-form-searchbox-icon {
  position: absolute;
  top: calc(50% - calc(40 / var(--sm-base)));
  right: 0;
  display: block;
  width: calc(88 / var(--sm-base));
  height: calc(80 / var(--sm-base));
  padding: calc(20 / var(--sm-base)) calc(24 / var(--sm-base));
}
.m-form-selectbox::after {
  content: '';
  position: absolute;
  top: 46%;
  right: calc(24 / var(--sm-base));
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-right: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-bottom: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.m-form-selectbox select {
  width: 100%;
  padding: calc(12 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-radius: calc(8 / var(--sm-base));
}
.m-form-field .error {
  margin-top: calc(12 / var(--sm-base));
  color: var(--color-red);
  font-weight: 500;
}
.m-form-action {
  position: relative;
  margin-top: calc(60 / var(--sm-base));
  text-align: center;
}
.m-form-action .c-button {
  min-width: calc(300 / var(--sm-base));
}
.m-form-action .c-button.--back {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(240 / var(--sm-base));
  min-width: inherit;
  padding: calc(18 / var(--sm-base));
  font-size: calc(24 / var(--sm-base));
  transform: translateY(-50%);
}
.mw_wp_form_confirm .m-form-action .c-button[type="submit"] {
  display: block;
  margin-left: auto;
}
@media screen and (min-width: 768px), print {
  .m-form-row + .m-form-row {
    margin-top: 28px;
  }
  .m-form-head {
    margin-bottom: 4px;
  }
  .m-form-head label {
    font-size: 22px;
  }
  .m-form-head .required {
    top: -4px;
    margin-left: 2px;
    padding: 4px 4px 5px;
    border-radius: 3px;
    font-size: 9px;
  }
  .m-form-textfield {
    padding: 5px 7px;
    border-width: 1px;
    border-radius: 4px;
  }
  .m-form-textfield.--textarea {
    height: 300px;
  }
  .m-form-textfield.--textarea.--sm {
    height: 150px;
  }
  .m-form-searchbox-icon {
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .m-form-selectbox::after {
    top: 44%;
    right: 12px;
    width: 9px;
    height: 9px;
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
  .m-form-selectbox select {
    padding: 5px 7px;
    border-width: 1px;
    border-radius: 4px;
  }
  .m-form-field .error {
    margin-top: 10px;
  }
  .m-form-action {
    margin-top: 28px;
  }
  .m-form-action .c-button {
    min-width: 150px;
  }
  .m-form-action .c-button.--back {
    width: 120px;
    padding: 10px;
    font-size: 12px;
  }
  .mw_wp_form_confirm .m-form-action .c-button[type="submit"] {
    display: inline-block;
    margin: 0;
  }
}

/* Page header */
.m-pageHeader {
  margin-bottom: calc(120 / var(--sm-base));
  padding: calc(120 / var(--sm-base)) calc(30 / var(--sm-base)) calc(60 / var(--sm-base));
  background: var(--color-bg-primary);
}
.m-pageHeader-heading {
  margin-bottom: calc(20 / var(--sm-base));
  font-size: calc(60 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .m-pageHeader {
    margin-bottom: 60px;
    padding: 60px 24px 30px;
  }
  .m-pageHeader-inner {
    max-width: 1140px;
    margin: 0 auto;
  }
  .m-pageHeader-heading {
    margin-bottom: 15px;
    font-size: 30px;
  }
}

/* Page lead */
.m-pageLead {
  font-size: calc(36 / var(--sm-base));
}
.m-pageLead.--lg {
  font-size: calc(50 / var(--sm-base));
}
.m-pageLead.--bold {
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .m-pageLead {
    font-size: 20px;
  }
  .m-pageLead.--lg {
    font-size: 25px;
  }
}

/* Breadcrumbs */
.m-breadcrumbs {
  font-size: 0;
}
.m-breadcrumbs * {
  color: var(--color-gray-dark);
  text-decoration: none;
}
.m-breadcrumbs li {
  display: inline-block;
  font-size: calc(22 / var(--sm-base));
}
.m-breadcrumbs li:not(:last-child) {
  position: relative;
}
.m-breadcrumbs li:not(:last-child)::after {
  content: ' >';
  margin: 0 calc(10 / var(--sm-base)) 0 calc(10 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .m-breadcrumbs li {
    font-size: 11px;
  }
  .m-breadcrumbs li:not(:last-child)::after {
    margin: 0 5px 0 5px;
  }
}

/* Table */
.wp-block-table table {
  width: 100%;
  table-layout: fixed;
  border-left: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.m-table tr:nth-child(odd) th,
.m-table tr:nth-child(odd) td {
  background: var(--color-bg-primary);
}
.m-table th,
.m-table td {
  padding: calc(14 / var(--sm-base));
  background: #fff;
  border: none;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-right: calc(2 / var(--sm-base)) solid var(--color-gray);
  font-weight: normal;
  text-align: left;
  word-break: break-all;
}
.m-table.--noColor table tr:nth-child(n) th,
.m-table.--noColor table tr:nth-child(n) td {
  background: #fff;
}
.m-table.--row table th,
.m-table.--row table td {
  display: block;
  width: 100%;
}
.m-table.--row table th {
  font-weight: 700;
  text-align: center;
}
.m-table.--row table td:nth-child(n) {
  background: #fff;
}
@media screen and (min-width: 768px), print {
  .m-table table {
    border-left: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
  }
  .m-table table tr:nth-of-type(odd) {
    background: var(--color-bg-primary);
  }
  .m-table th,
  .m-table td {
    padding: 7px;
    border-top: 1px solid var(--color-gray);
    border-right: 1px solid var(--color-gray);
  }
}

/* Link list */
.m-linkList {
  margin-top: calc(120 / var(--sm-base));
  list-style: none;
}
.m-linkItem:not(:first-child) {
  margin-top: calc(60 / var(--sm-base));
}
.m-linkItem a {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-default);
  font-weight: 600;
  border-radius: calc(20 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
  padding: calc(30 / var(--sm-base)) calc(60 / var(--sm-base));
}
@media (hover: hover) and (pointer: fine) {
  .m-linkItem a {
    transition: color var(--transition), background var(--transition), border-color var(--transition);
  }
  .m-linkItem a:hover {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
  }
}
@media screen and (min-width: 768px), print {
  .m-linkList {
    display: flex;
    flex-wrap: wrap;
    margin: 80px -7px 0;
  }
  .m-linkItem:nth-child(n) {
    margin-top: 0;
    width: calc(33.33333% - 14px);
    margin: 0 7px;
  }
  .m-linkItem:nth-child(n+4) {
    margin-top: 40px;
  }
  .m-linkItem a {
    border-radius: 10px;
    border-width: 1px;
    padding: 15px 30px;
  }
}

/* Article list */
.m-articleList {
  margin-top: calc(120 / var(--sm-base));
}
.m-articleItem:not(:first-of-type) {
  margin-top: calc(60 / var(--sm-base));
}
.m-articleItem > a {
  display: block;
  width: 100%;
  padding: calc(40 / var(--sm-base)) calc(30 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-radius: calc(10 / var(--sm-base));
  color: var(--color-default);
  text-decoration: none;
}
.m-articleItem-heading {
  margin: 0 0 calc(20 / var(--sm-base)) !important;
  font-size: calc(36 / var(--sm-base));
}
.m-articleItem p {
  margin: 0 0 calc(30 / var(--sm-base));
  overflow: hidden;
  display: box;
  box-orient: vertical;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.m-articleItem .c-button {
  font-size: calc(24 / var(--sm-base));
}
@media (hover: hover) and (pointer: fine) {
  .m-articleItem > a {
    transition: background var(--transition);
  }
  .m-articleItem > a:hover {
    background: var(--color-gray-light);
  }
  .m-articleItem > a:hover .c-button {
    background: var(--color-default)
  }
}
@media screen and (min-width: 768px), print {
  .m-articleList {
    margin-top: 80px;
  }
  .m-articleItem:not(:first-of-type) {
    margin-top: 30px;
  }
  .m-articleItem > a {
    padding: 20px;
    border-width: 1px;
    border-radius: 10px;
  }
  .m-articleItem-heading {
    margin: 0 0 10px !important;
    font-size: 20px;
  }
  .m-articleItem p {
    margin-bottom: 20px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
  .m-articleItem .c-button {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* News list */
.m-newsItem:not(:first-of-type) {
  margin-top: calc(60 / var(--sm-base));
}
.m-newsItem {
  padding-bottom: calc(10 / var(--sm-base));
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
  display: none;
}
.m-newsItem.--show {
  display: block;
}
.m-newsItem > a {
  display: block;
  width: 100%;
  padding: calc(30 / var(--sm-base));
  background: var(--color-gray-light);
  border-radius: calc(10 / var(--sm-base));
  color: var(--color-default);
  text-decoration: none;
}
.m-newsItem-date {
  display: inline-block;
}
.m-newsItem-tag {
  display: inline-flex;
  flex-wrap: wrap;
}
.m-newsItem-tag span {
  min-width: calc(40 / var(--sm-base));
  padding: .2em .5em;
  margin: .25em;
  background: #66ABC6;
  color: #fff;
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.m-newsItem-heading {
  margin-top: calc(15 / var(--sm-base));
  font-size: calc(30 / var(--sm-base));
  font-weight: 400;
}
.m-news-more {
  margin-top: calc(80 / var(--sm-base));
  text-align: center;
}
.m-news-none {
  padding-block: calc(80 / var(--sm-base)) calc(40 / var(--sm-base));
}
@media (hover: hover) and (pointer: fine) {
  .m-newsItem > a {
    transition: background var(--transition);
  }
  .m-newsItem > a:hover {
    background: var(--color-gray);
  }
}
@media screen and (min-width: 768px), print {
  .m-newsItem:not(:first-of-type) {
    margin-top: 30px;
  }
  .m-newsItem {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-gray);
  }
  .m-newsItem > a {
    padding: 5px 16px;
    border-radius: 5px;
  }
  .m-newsItem-tag span {
    padding: .2em .5em .3em;
    font-size: 13px;
  }
  .m-newsItem-heading {
    margin: 3px 0 0;
    font-size: 16px;
    flex: 1;
  }
  .m-news-more {
    margin-top: 60px;
  }
  .m-news-none {
    padding-block: 60px 40px;
  }
}

/* Box link */
.c-boxLink {
  display: block;
  width: 100%;
  padding: calc(25 / var(--sm-base)) calc(20 / var(--sm-base));
  background: var(--color-gray-light);
  color: var(--color-gray-dark);
  text-align: center;
}
.c-boxLink[href$=".pptx"] > span,
.c-boxLink[href$=".xlsx"] > span,
.c-boxLink[href$=".zip"] > span,
.c-boxLink[href$=".doc"] > span,
.c-boxLink[href$=".pdf"] > span {
  text-decoration: none;
}
.c-boxLink.--border {
  background: #fff;
  border: calc(2 / var(--sm-base)) solid var(--color-default);
  color: var(--color-default);
}
@media (hover: hover) and (pointer: fine) {
  .c-boxLink {
    transition: background var(--transition);
  }
  .c-boxLink:hover {
    background: var(--color-gray);
  }
  .c-boxLink.--border:hover {
    background: var(--color-gray-light);
  }
}
@media screen and (min-width: 768px), print {
  .c-boxLink {
    padding: 18px 25px;
  }
  .c-boxLink.--border {
    border-width: 1px;
  }
}

/* Bg box */
.m-bgBox {
  margin-top: calc(80 / var(--sm-base));
  padding: calc(24 / var(--sm-base));
  background: var(--color-bg-primary);
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-radius: calc(10 / var(--sm-base));
}
.m-bgBox > .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .m-bgBox {
    margin-top: 60px;
    padding: 20px;
    border-width: 1px;
    border-radius: 5px;
  }
}

/* Button */
.c-button {
  display: inline-block;
  background: var(--color-gray-dark);
  border-radius: calc(10 / var(--sm-base));
  padding: calc(24 / var(--sm-base)) calc(40 / var(--sm-base));
  color: #fff;
  font-size: calc(30 / var(--sm-base));
  text-align: center;
}
.c-button[href$=".pptx"] > span,
.c-button[href$=".xlsx"] > span,
.c-button[href$=".zip"] > span,
.c-button[href$=".doc"] > span,
.c-button[href$=".pdf"] > span {
  text-decoration: none;
}
.c-button[href$=".pptx"] > span::before,
.c-button[href$=".xlsx"] > span::before,
.c-button[href$=".zip"] > span::before,
.c-button[href$=".doc"] > span::before {
  background: url(../images/common/icn_document_02.svg) center center / 100% no-repeat;
}
.c-button[href$=".pdf"] > span::before {
  background: url(../images/common/icn_pdf_02.svg) center center / 100% no-repeat;
}
.c-button.--border {
  background: #fff;
  border: calc(2 / var(--sm-base)) solid var(--color-default);
  color: var(--color-default);
}
.c-button.--border[href$=".pptx"] > span::before,
.c-button.--border[href$=".xlsx"] > span::before,
.c-button.--border[href$=".zip"] > span::before,
.c-button.--border[href$=".doc"] > span::before {
  background: url(../images/common/icn_document_01.svg) center center / 100% no-repeat;
}
.c-button.--border[href$=".pdf"] > span::before {
  background: url(../images/common/icn_pdf_01.svg) center center / 100% no-repeat;
}
.c-button.--bgWhite {
  background: #fff;
  color: var(--color-gray-dark);
}
.c-button.--bgWhite[href$=".pptx"] > span::before,
.c-button.--bgWhite[href$=".xlsx"] > span::before,
.c-button.--bgWhite[href$=".zip"] > span::before,
.c-button.--bgWhite[href$=".doc"] > span::before {
  background: url(../images/common/icn_document_01.svg) center center / 100% no-repeat;
}
.c-button.--bgWhite[href$=".pdf"] > span::before {
  background: url(../images/common/icn_pdf_01.svg) center center / 100% no-repeat;
}
.c-button.--bgGray {
  background: var(--color-gray-light);
  color: var(--color-gray-dark);
}
.c-button.--sm {
  min-width: calc(520 / var(--sm-base));
  padding: calc(16 / var(--sm-base)) calc(40 / var(--sm-base));
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .c-button {
    transition: background var(--transition);
  }
  .c-button:hover {
    background: var(--color-default);
  }
  .c-button.--border:hover {
    background: var(--color-gray-light);
  }
  .c-button.--bgWhite:hover {
    background: var(--color-bg-primary);
  }
  .c-button.--bgGray:hover {
    background: var(--color-gray);
  }
}
@media screen and (min-width: 768px), print {
  .c-button {
    border-radius: 5px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .c-button.--border {
    border-width: 1px;
  }
  .c-button.--sm {
    min-width: 180px;
    padding: 6px 20px;
  }
}

/* Heading */
.c-heading {
  margin-block: calc(120 / var(--sm-base)) 1em;
  font-size: calc(50 / var(--sm-base));
  font-weight: 700;
}
.c-heading.--lg {
  font-size: calc(60 / var(--sm-base));
}
.c-heading.--sm {
  font-size: calc(46 / var(--sm-base));
}
.c-heading.--xs {
  font-size: calc(38 / var(--sm-base));
}
.c-heading.--xxs {
  font-size: calc(34 / var(--sm-base));
}
.c-heading.--btmLine {
  padding-bottom: .5em;
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.c-heading.--tbLine {
  padding: 1em 0;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.c-heading.--lrLine {
  position: relative;
  text-align: center;
}
.c-heading.--lrLine::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(2 / var(--sm-base));
  background: var(--color-gray);
}
.c-heading.--lrLine span,
.c-heading.--icon span {
  position: relative;
  display: inline-block;
}
.c-heading.--lrLine span {
  z-index: 2;
  padding: 0 1em;
  background: #fff;
}
.c-heading.--lrLine.--bold::after {
  height: calc(8 / var(--sm-base));
}
.c-heading.--icon span {
  padding-left: 2em;
}
.c-heading.--icon span::before {
  position: absolute;
  content: '';
  top: calc(50% - .75em);
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../images/common/icn_article_01.svg) center center / 100% no-repeat;
}
.c-heading.--icon.--pdf span::before {
  background: url(../images/common/icn_pdf_03.svg) center center / 100% no-repeat;
}
.c-heading.--lrLine.--icon span {
  padding: 0 .8em 0 3em;
}
.c-heading.--lrLine.--icon span::before {
  left: .8em;
}
.c-heading.--greenBorder {
  position: relative;
  padding-bottom: .5em;
}
.c-heading.--greenBorder::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: calc(2 / var(--sm-base));
  background: var(--color-primary);
}
.c-heading.--blueBorder {
  padding-left: 1em;
  border-left: calc(10 / var(--sm-base)) solid var(--color-secondary);
}
@media screen and (min-width: 768px), print {
  .c-heading {
    margin-block: 80px 1em;
    font-size: 30px;
  }
  .c-heading.--lg {
    font-size: 35px;
  }
  .c-heading.--sm {
    font-size: 26px;
  }
  .c-heading.--xs {
    font-size: 22px;
  }
  .c-heading.--xxs {
    font-size: 18px;
  }
  .c-heading.--btmLine {
    border-bottom: 2px solid var(--color-gray);
  }
  .c-heading.--tbLine {
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
  }
  .c-heading.--lrLine::after,
  .c-heading.--greenBorder::after {
    height: 1px;
  }
  .c-heading.--lrLine.--bold::after {
    height: 4px;
  }
  .c-heading.--blueBorder {
    padding-left: 1em;
    border-width: 6px;
  }
}

/* Note */
.c-note {
  padding-left: 1em;
  text-indent: -1em;
}



/* Header & Nav
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.header-inner {
  height: calc(120 / var(--sm-base));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(30 / var(--sm-base));
  box-shadow: 0px calc(6 / var(--sm-base)) calc(10 / var(--sm-base)) 0px rgba(0, 0, 0, .1);
}
.header-logo {
  position: relative;
  z-index: 2;
  width: calc(148 / var(--sm-base));
}
.header-logo a {
  display: block;
}
.header-button {
  display: block;
  width: calc(50 / var(--sm-base));
}
.header-button.--open span:first-child {
  transform: rotate(45deg);
}
.header-button.--open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header-button.--open span:last-child {
  margin-top: calc(-24 / var(--sm-base));
  transform: rotate(-45deg);
}
.header-button span {
  display: block;
  width: 100%;
  height: calc(4 / var(--sm-base));
  background: var(--color-default);
  transition: transform var(--transition);
}
.header-button span + span {
  margin-top: calc(16 / var(--sm-base));
}
.header-nav {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.header-nav.--open {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.header-nav-inner {
  height: calc(100dvh - calc(120 / var(--sm-base)));
  padding: calc(60 / var(--sm-base));
  font-weight: 500;
  overflow-y: auto;
}
.header-nav li::before {
  content: none;
}
.header-nav a {
  display: block;
  width: 100%;
  color: var(--color-default);
  text-decoration: none;
}
.header-nav-item {
  position: relative;
}
.header-nav-item.--open > a {
  color: var(--color-secondary);
}
.header-nav-item.--open > button span {
  margin-top: .5em;
  border-color: var(--color-secondary);
  transform: rotate(-45deg);
}
.header-nav-item.--open .header-nav-item-sub {
  grid-template-rows: 1fr;
}
.header-nav-item.--open .header-nav-item-sub ul {
  padding: calc(40 / var(--sm-base));
  opacity: 1;
}
.header-nav-item:not(:first-of-type) {
  margin-top: calc(20 / var(--sm-base));
}
.header-nav-item > a {
  padding-bottom: calc(20 / var(--sm-base));
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
  font-size: calc(32 / var(--sm-base));
}
.header-nav-item > button {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100 / var(--sm-base));
  height: calc(50 / var(--sm-base));
}
.header-nav-item > button span {
  display: block;
  width: calc(24 / var(--sm-base));
  height: calc(24 / var(--sm-base));
  border-top: calc(4 / var(--sm-base)) solid var(--color-default);
  border-right: calc(4 / var(--sm-base)) solid var(--color-default);
  transform: rotate(135deg);
}
.header-nav-item-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}
.header-nav-item-sub ul {
  font-size: calc(28 / var(--sm-base));
  opacity: 0;
  overflow: hidden;
}
.header-nav-item-sub ul li {
  position: static;
  padding-left: 0;
  list-style: none;
  text-indent: 0;
}
.header-nav-item-sub ul li::before {
  content: none;
}
.header-nav-item-sub ul li + li {
  margin-top: calc(15 / var(--sm-base));
}
.header-search {
  margin-top: calc(60 / var(--sm-base));
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-item a {
    transition: color var(--transition);
  }
  .header-nav-item a:hover {
    color: var(--color-secondary);
  }
  .header-nav-item > a::before {
    transition: opacity var(--transition);
  }
  .header-nav-item > a:hover::before {
    opacity: 1;
  }
  .header-nav-item-sub {
    transition: opacity var(--transition), visibility var(--transition);
  }
  .header-nav-item:hover a + .header-nav-item-sub {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 768px), print {
  .header-inner {
    height: 70px;
    padding: 24px;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, .1);
  }
  .header-logo {
    width: 80px;
  }
  .header-button {
    width: 30px;
  }
  .header-button.--open span:last-child {
    margin-top: -12px;
  }
  .header-button span {
    height: 2px;
  }
  .header-button span + span {
    margin-top: 8px;
  }
  .header-nav-inner {
    height: calc(100dvh - 70px);
    padding: 40px;
  }
  .header-nav-item.--open .header-nav-item-sub ul {
    padding: 20px;
  }
  .header-nav-item:not(:first-of-type) {
    margin-top: 20px;
  }
  .header-nav-item > a {
    padding-bottom: 20px;
    border-width: 1px;
    font-size: 14px;
  }
  .header-nav-item > button {
    width: 50px;
    height: 30px;
  }
  .header-nav-item > button span {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
  .header-nav-item-sub ul {
    font-size: 14px;
  }
  .header-nav-item-sub ul li + li {
    margin-top: 10px;
  }
  .header-search {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1024px), print {
  .header-inner {
    max-width: 1188px;
    margin: 0 auto;
    box-shadow: none;
  }
  .header-button,
  .header-nav-item > button {
    display: none;
  }
  .header-nav {
    height: 65px;
    border-top: 1px solid var(--color-gray);
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, .1);
  }
  .header-nav-inner,
  .header-nav-list,
  .header-nav-item {
    height: 100%;
  }
  .header-nav-inner {
    max-width: 1188px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: visible;
  }
  .header-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-nav-item:nth-child(n) {
    display: table;
    margin: 0;
  }
  .header-nav-item > a {
    position: relative;
    display: table-cell;
    padding: 0;
    border: none;
    vertical-align: middle;
  }
  .header-nav-item > a::before {
    content: '';
    position: absolute;
    left: calc(50% - 20px);
    bottom: 10px;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
    opacity: 0;
  }
  .header-nav-item-sub {
    position: fixed;
    z-index: -1;
    top: 135px;
    left: 0;
    display: block;
    width: 100%;
    padding: 24px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
  }
  .header-nav-item-sub ul {
    max-width: 1140px;
    margin: 0 auto;
    opacity: 1;
    overflow: visible;
  }
  .header-nav-item-sub ul li {
    display: inline-block;
  }
  .header-nav-item-sub ul li + li {
    margin: 0 0 0 35px;
  }
  .header-search {
    position: absolute;
    top: 15px;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 0 24px;
  }
  .header-search-inner {
    max-width: 1140px;
    margin: 0 auto;
  }
  .header-search form {
    width: 220px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px), print {
  .header-nav-item > a {
    font-size: 16px;
  }
}



/* Footer
-------------------------------------------------- */
.footer {
  position: relative;
  margin-top: calc(160 / var(--sm-base));
  color: #fff;
  font-weight: 500;
}
.footer li {
  position: static;
  padding-left: 0;
  text-indent: 0;
}
.footer li::before {
  content: none;
}
.footer-inner {
  padding: calc(120 / var(--sm-base)) calc(30 / var(--sm-base));
  background: var(--color-default);
}
.footer-nav {
  display: flex;
}
.footer-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.footer-nav-item {
  flex: 1;
}
.footer-nav-item:nth-child(2) {
  margin-left: calc(60 / var(--sm-base));
}
.footer-nav-item > div + div {
  margin-top: calc(52 / var(--sm-base));
}
.footer-nav-item > div > a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.footer-nav-item > div > ul {
  margin-top: calc(15 / var(--sm-base));
  padding-top: calc(5 / var(--sm-base));
  border-top: calc(2 / var(--sm-base)) solid rgba(255,255,255,.5);
}
.footer-nav-item > div > ul li {
  margin-top: calc(25 / var(--sm-base));
  font-size: calc(22 / var(--sm-base));
}
.footer-info {
  margin-top: calc(120 / var(--sm-base));
  padding-top: calc(120 / var(--sm-base));
  border-top: calc(2 / var(--sm-base)) solid rgba(255,255,255,.5);
  font-size: calc(22 / var(--sm-base));
  font-weight: 700;
}
.footer-info-logo {
  width: calc(280 / var(--sm-base));
  margin: 0 auto calc(50 / var(--sm-base));
}
.footer-info p {
  margin-top: calc(35 / var(--sm-base));
}
.footer-info-nav {
  margin-top: calc(60 / var(--sm-base));
}
.footer-info-nav li + li {
  margin-top: calc(20 / var(--sm-base));
}
.footer-info-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.footer-info-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(80 / var(--sm-base));
}
.footer-info-sns li {
  width: calc(100 / var(--sm-base));
  margin: 0 calc(15 / var(--sm-base));
}
.footer-bnr {
  margin: calc(120 / var(--sm-base)) 0 calc(40 / var(--sm-base));
}
.footer-bnr-list {
  margin-top: calc(40 / var(--sm-base));
}
.footer-bnr-list li + li {
  margin-top: calc(40 / var(--sm-base));
}
.footer-copy {
  padding: calc(30 / var(--sm-base)) calc(30 / var(--sm-base)) calc(40 / var(--sm-base));
  color: var(--color-default);
  font-size: calc(20 / var(--sm-base));
  text-align: center;
}
.footer-copy p {
  margin-bottom: calc(10 / var(--sm-base));
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a,
  .footer-info-nav a {
    transition: color var(--transition);
  }
  .footer-nav a:hover,
  .footer-info-nav a:hover {
    color: var(--color-primary);
  }
}
@media screen and (min-width: 768px), print {
  .footer {
    margin-top: 100px;
  }
  .footer-inner {
    padding: 80px 24px 40px;
  }
  .footer-contents {
    max-width: 1140px;
    margin: 0 auto;
  }
  .footer-nav {
    display: block;
    margin: 0;
  }
  .footer-nav-item {
    width: 100%;
  }
  .footer-nav-item:nth-child(2),
  .footer-nav-item > div + div {
    margin: 30px 0 0 0;
  }
  .footer-nav-item > div > a {
    display: inline-block;
    font-size: 18px;
  }
  .footer-nav-item > div > ul {
    margin-top: 10px;
    padding-top: 0;
    border-top: none;
  }
  .footer-nav-item > div > ul li {
    display: inline-block;
    margin: 0 15px;
    font-size: 14px;
  }
  .footer-info {
    margin-top: 70px;
    padding-top: 50px;
    border-width: 1px;
    font-size: 14px;
  }
  .footer-info-logo {
    width: 146px;
    margin: 0 0 30px 0;
  }
  .footer-info p {
    margin-top: 20px;
  }
  .footer-info-nav {
    margin-top: 50px;
  }
  .footer-info-nav li + li {
    margin-top: 15px;
  }
  .footer-info-nav a {
    display: inline-block;
  }
  .footer-info-sns {
    margin: 50px -5px 0;
    justify-content: flex-start;
  }
  .footer-info-sns li {
    width: 30px;
    margin: 0 5px;
  }
  .footer-bnr {
    max-width: 1140px;
    margin: 50px auto;
  }
  .footer-bnr-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .footer-bnr-list.--sm li {
    height: 42px;
  }
  .footer-bnr-list li {
    width: auto;
    height: 95px;
    margin: 10px;
  }
  .footer-bnr-list li + li {
    margin-top: 10px;
  }
  .footer-bnr-list li a,
  .footer-bnr-list li img {
    width: auto;
    height: 100%;
  }
  .footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1188px;
    margin: 0 auto;
    padding: 20px 24px;
    font-size: 14px;
    text-align: left;
  }
  .footer-copy p {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px), print {
  .footer-contents {
    display: flex;
  }
  .footer-nav {
    flex: 1;
  }
  .footer-info {
    width: 330px;
    margin: 0 0 0 24px;
    padding: 0 0 0 50px;
    border-top: none;
    border-left: 1px solid rgba(255,255,255,.5);
  }
}



/* Page : Top
-------------------------------------------------- */
.top-visual {
  position: relative;
}
.top-visual .swiper,
.top-visual a {
  width: 100%;
  height: 100%;
}
.top-visual a {
  display: block;
  color: var(--color-default);
  text-decoration: none;
}
.top-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.top-visual .swiper-slide {
  width: 100%;
  max-width: 1180px;
}
.top-visual .swiper-pagination {
  position: static;
  margin-top: calc(20 / var(--sm-base));
}
.top-visual .swiper-pagination span {
  width: calc(100 / var(--sm-base));
  height: calc(4 / var(--sm-base));
  background: var(--color-gray);
  border-radius: 0;
  opacity: 1;
}
.top-visual span.swiper-pagination-bullet-active {
  background: var(--color-gray-dark);
}
.top-visual-button {
  width: 100%;
  padding: .6em;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
  background: #fff;
  font-weight: 700;
  text-align: center;
}
.top-visual-arrow {
  position: absolute;
  top: calc(50% - calc(80 / var(--sm-base)));
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1188px;
  padding: 0 calc(10 / var(--sm-base));
  transform: translateX(-50%);
  pointer-events: none;
}
.top-visual-arrow .swiper-button-prev,
.top-visual-arrow .swiper-button-next {
  position: static;
  width: calc(80 / var(--sm-base));
  height: calc(80 / var(--sm-base));
  margin-top: 0;
  background: #fff;
  border-radius: 100vmax;
  color: transparent;
  pointer-events: all;
}
.top-visual-arrow .swiper-button-prev:after,
.top-visual-arrow .swiper-button-next::after {
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-top: calc(4 / var(--sm-base)) solid var(--color-secondary);
  border-right: calc(4 / var(--sm-base)) solid var(--color-secondary);
  transform: rotate(45deg) translate(-20%, 20%);
}
.top-visual-arrow .swiper-button-prev {
  transform: scale(-1, 1);
}
.top-section {
  padding: calc(160 / var(--sm-base)) 0;
}
.top-section .c-heading {
  margin-top: 0;
  font-size: calc(64 / var(--sm-base));
}
.top-section-button {
  margin-top: calc(80 / var(--sm-base));
}
.top-info-heading {
  position: relative;
}
.top-info-heading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(2 / var(--sm-base));
  background: var(--color-default);
}
.top-info-heading span {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding-right: 1em;
  background: #fff;
}
.top-info-item:not(:first-child) {
  margin-top: calc(32 / var(--sm-base));
}
.top-info-item a,
.top-info-item > div {
  display: block;
  padding: calc(40 / var(--sm-base)) calc(32 / var(--sm-base));
  background: var(--color-bg-primary);
  border-radius: calc(15 / var(--sm-base));
  color: var(--color-default);
  font-size: calc(22 / var(--sm-base));
  text-decoration: none;
}
.top-info-item-meta {
  margin-bottom: calc(8 / var(--sm-base));
  font-size: 0;
}
.top-info-item-meta > * {
  display: inline-block;
  font-size: calc(20 / var(--sm-base));
}
.top-info-item-meta-date {
  margin-right: .5em;
}
.top-info-item-meta-tag {
  min-width: calc(40 / var(--sm-base));
  padding: .2em .5em;
  margin: .25em;
  background: #66ABC6;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.top-info-item-meta-tag.--accep {
  background: #EDBF76;
}
.top-info-item-meta-tag.--end {
  background: #B7B7B7;
}
.top-info-more {
  margin-top: calc(50 / var(--sm-base));
  text-align: center;
}
.top-info-more a {
  position: relative;
  display: inline-block;
  padding-right: 1.2em;
  color: var(--color-gray-dark);
  font-size: calc(32 / var(--sm-base));
  font-weight: 700;
  text-decoration: none;
}
.top-info-more a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-right: calc(3 / var(--sm-base)) solid var(--color-gray-dark);
  border-bottom: calc(3 / var(--sm-base)) solid var(--color-gray-dark);
  transform: translateY(-50%) rotate(-45deg);
}
.top-about {
  background: var(--color-gray-light);
}
.top-about p {
  font-weight: 700;
}
.top-about p + p {
  margin-top: 1.5em;
  line-height: 2;
}
.top-award-list {
  margin-top: calc(160 / var(--sm-base));
}
.top-award-item {
  position: relative;
}
.top-award-item-tag {
  position: absolute;
  z-index: 3;
  top: calc(10 / var(--sm-base));
  left: calc(10 / var(--sm-base));
  padding: .2em 1em;
  background: #ECBE76;
  border-radius: calc(16 / var(--sm-base));
  color: #fff;
  font-weight: 700;
  font-size: calc(20 / var(--sm-base));
}
.top-award-item a {
  display: block;
  width: 100%;
  color: var(--color-default);
  text-decoration: none;
}
.top-award-item-image {
  position: relative;
  height: calc(220 / var(--sm-base));
}
.top-award-item-image::before,
.top-award-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-award-item-image::before {
  content: '';
  z-index: 2;
  background: var(--color-default);
  mix-blend-mode: multiply;
  opacity: .8;
}
.top-award-item-image img {
  object-fit: cover;
}
.top-award-item-heading {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: calc(40 / var(--sm-base));
  letter-spacing: .05em;
  transform: translateY(-50%);
}
.top-award-item p {
  margin-top: calc(30 / var(--sm-base));
  font-size: calc(22 / var(--sm-base));
}
.top-publication {
  background: var(--color-gray-light);
}
.top-publication-column > *:not(:first-child) {
  margin-top: calc(100 / var(--sm-base));
}
.top-publication-text {
  text-align: center;
}
.top-publication-image {
  display: flex;
  margin: 0 calc(-10 / var(--sm-base));
}
.top-publication-image img {
  width: calc(33.33333% - calc(20 / var(--sm-base)));
  margin: 0 calc(10 / var(--sm-base));
}
.top-guideline-list {
  margin-top: calc(120 / var(--sm-base));
  text-align: center;
}
.top-membership {
  margin-bottom: calc(-160 / var(--sm-base));
  background: var(--color-gray-light);
}
.top-membership-list {
  margin-top: calc(120 / var(--sm-base));
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .top-visual a {
    transition: opacity var(--transition);
  }
  .top-visual a:hover {
    opacity: var(--hover-opacity);
  }
  .top-visual a:hover img {
    opacity: 1;
  }
  .top-info-item a {
    transition: background var(--transition);
  }
  .top-info-item a:hover {
    background: var(--color-gray-light);
  }
  .top-info-more a {
    transition: color var(--transition);
  }
  .top-info-more a:hover {
    color: var(--color-primary);
  }
  .top-award-item-image::before {
    transition: opacity var(--transition);
  }
  .top-award-item a {
    transition: color var(--transition);
  }
  .top-award-item a:hover {
    color: var(--color-primary);
  }
  .top-award-item a:hover .top-award-item-image::before {
    opacity: 1;
  }
  .top-award-item a:hover img {
    opacity: 1;
  }
}
@media screen and (min-width: 768px), print {
  .top-visual {
    height: 566px;
  }
  .top-visual .swiper-pagination {
    margin-top: 0;
  }
  .top-visual .swiper-pagination span {
    width: 60px;
    height: 2px;
  }
  .top-visual-button {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4px;
    border: none;
    background: none;
    font-size: 16px;
    text-align: right;
  }
  .top-visual-button span {
    display: inline-block;
    padding: .5em 1em;
    background: #fff;
  }
  .top-visual-arrow {
    top: calc(50% - 20px);
    padding: 0 24px;
  }
  .top-visual-arrow .swiper-button-prev,
  .top-visual-arrow .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .top-visual-arrow .swiper-button-prev:after,
  .top-visual-arrow .swiper-button-next::after {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  .top-section {
    padding: 120px 0;
  }
  .top-section .c-heading {
    font-size: 32px;
  }
  .top-section-button {
    margin-top: 40px;
  }
  .top-info-heading::after {
    height: 1px;
  }
  .top-info-item:not(:first-child) {
    margin-top: 10px;
  }
  .top-info-item a,
  .top-info-item > div {
    padding: 10px 16px;
    border-radius: 15px;
    font-size: 16px;
  }
  .top-info-item-meta {
    margin-bottom: 4px;
  }
  .top-info-item-meta > * {
    font-size: 14px;
  }
  .top-info-item-meta-tag {
    min-width: 60px;
  }
  .top-info-more {
    margin-top: 24px;
    text-align: right;
  }
  .top-info-more a {
    font-size: 16px;
  }
  .top-info-more a::after {
    width: 10px;
    height: 10px;
    border-width: 1px;
  }
  .top-about p {
    font-size: 18px;
  }
  .top-about p + p {
    margin-top: 1em;
  }
  .top-award-list {
    margin-top: 60px;
  }
  .top-award-item-tag {
    top: 8px;
    left: 8px;
    border-radius: 8px;
    font-size: 12px;
  }
  .top-award-item-image {
    height: 120px;
  }
  .top-award-item-heading {
    font-size: 24px;
  }
  .top-award-item p {
    margin-top: 15px;
    font-size: 14px;
  }
  .top-publication-column {
    align-items: center;
    margin: 0;
  }
  .top-publication-column > *:nth-child(n) {
    margin-top: 0;
  }
  .top-publication-text {
    width: calc(50% - 35px);
    margin: 0 70px 0 0;
    text-align: left;
  }
  .top-publication-image {
    display: flex;
    width: calc(50% - 35px);
    margin: 0;
  }
  .top-publication-image img {
    width: calc(33.33333% - 20px);
    margin: 0 10px;
  }
  .top-guideline-list {
    margin: 50px -20px 0;
  }
  .top-guideline-list.--column3 > * {
    width: calc(33.33333% - 40px);
    margin: 0 20px;
  }
  .top-guideline-list a {
    width: 100%;
  }
  .top-membership {
    margin-bottom: -100px;
  }
  .top-membership-list {
    max-width: 760px;
    margin: 50px auto 0;
  }
  .top-membership-list > * {
    width: calc(50% - 40px);
    margin: 0 20px;
  }
  .top-membership-list a {
    width: 100%;
  }
}
@media screen and (min-width: 1024px), print {
  .top-info-column {
    margin: 0;
  }
  .top-info-column > * {
    width: calc(50% - 45px);
    margin: 0;
  }
  .top-info-column > *:first-child {
    margin-right: 90px;
  }
  .top-award-list {
    margin-left: -20px;
    margin-right: -20px;
  }
  .top-award-list.--column3 > * {
    width: calc(33.33333% - 40px);
    margin: 0 20px;
  }
}



/* Page : Officer
-------------------------------------------------- */
.about-officer-table table th,
.about-officer-table table td:nth-of-type(1) {
  width: 20%;
}
.about-officer-table table td:nth-of-type(2) {
  width: 60%;
}



/* Page : Committee
-------------------------------------------------- */
.committee-linkList .m-linkItem > a {
  height: auto;
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  text-align: center;
}
.committee-linkList .m-linkItem > ul {
  margin: calc(40 / var(--sm-base)) 0 0;
}
.committee-linkList .m-linkItem > ul li {
  padding: 0;
  text-indent: 0;
}
.committee-linkList .m-linkItem > ul li::before {
  content: none;
}
.committee-linkList .m-linkItem > ul li:not(:first-child) {
  margin-top: calc(20 / var(--sm-base));
}
.committee-linkList .m-linkItem > ul li a {
  border: calc(2 / var(--sm-base)) solid var(--color-primary);
  color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .committee-linkList .m-linkItem > a:hover {
    color: var(--color-gray-dark);
    background: var(--color-gray-light);
    border-color: var(--color-gray-light);
  }
  .committee-linkList .m-linkItem > ul li a:hover {
    color: #fff;
  }
}
@media screen and (min-width: 768px), print {
  .committee-linkList {
    display: block;
  }
  .committee-linkList .m-linkItem:nth-child(n) {
    width: 100%;
    margin: 0;
  }
  .committee-linkList .m-linkItem:not(:first-child) {
    margin-top: 60px;
  }
  .committee-linkList .m-linkItem > a,
  .committee-linkList .m-linkItem > ul li {
    width: calc(25% - 14px);
    margin: 0 7px;
  }
  .committee-linkList .m-linkItem > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 14px 0 0;
  }
  .committee-linkList .m-linkItem > ul li:nth-child(n) {
    margin-top: 0;
  }
  .committee-linkList .m-linkItem > ul li:nth-child(n+5) {
    margin-top: 14px;
  }
  .committee-linkList .m-linkItem > ul li a {
    border-width: 1px;
  }
}



/* Page : Member company
-------------------------------------------------- */
.member-set-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(24 / var(--sm-base));
}
.member-set-nav-list li {
  width: calc(20% - (19.5 / var(--sm-base)));
  margin: 0;
}
.member-set-nav-list li a {
  display: block;
  padding: calc(24 / var(--sm-base)) calc(12 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-radius: calc(6 / var(--sm-base));
  background: var(--color-bg-primary);
  color: var(--color-default);
  font-size: calc(30 / var(--sm-base));
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .member-set-nav-list li a {
    transition: background var(--transition);
  }
  .member-set-nav-list li a:hover {
    background: var(--color-gray);
  }
}
@media screen and (min-width: 768px), print {
  .member-set-nav-list {
    gap: 0;
  }
  .member-set-nav-list li {
    width: auto;
    flex: 1;
  }
  .member-set-nav-list li a {
    position: relative;
    padding: 18px 24px 18px 4px;
    border-width: 1px;
    border-radius: 0;
    font-size: 16px;
  }
  .member-set-nav-list li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-default);
    border-right: 2px solid var(--color-default);
    transform: translateY(-50%) rotate(135deg);
    pointer-events: none;
  }
  .member-set-nav-list li:not(:first-child) a {
    border-left: none;
  }
  .member-set-nav-list li:first-child a {
    border-radius: 5px 0 0 5px;
  }
  .member-set-nav-list li:last-child a {
    border-radius: 0 5px 5px 0;
  }
}
@media screen and (min-width: 1024px), print {
  .member-set-nav-list li a {
    padding: 18px;
    font-size: 18px;
  }
}



/* Page : Association overview
-------------------------------------------------- */
.overview-history-table th {
  width: 30%;
}
.overview-map {
  width: 100%;
  height: calc(920 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .overview-map {
    height: 450px;
  }
}



/* Page : Award yoshida
-------------------------------------------------- */
.awardYoshida-profile > * > *:not(:first-child) {
  margin-top: calc(80 / var(--sm-base));
}
.awardYoshida-profile:not(:first-of-type),
.wp-block-group:has(.awardYoshida-profile) + .wp-block-group {
  margin-top: calc(80 / var(--sm-base));
  padding-top: calc(80 / var(--sm-base));
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
}
@media screen and (max-width: 767px), print {
  .awardYoshida-profile .wp-block-columns {
    display: block;
  }
}
@media screen and (min-width: 768px), print {
  .awardYoshida-profile > * > *:not(:first-child) {
    margin-top: 60px;
  }
  .awardYoshida-profile:not(:first-of-type),
  .wp-block-group:has(.awardYoshida-profile) + .wp-block-group {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--color-gray);
  }
}



/* Page : Publication
-------------------------------------------------- */
.publication-order {
  padding: calc(30 / var(--sm-base)) calc(40 / var(--sm-base)) calc(40 / var(--sm-base));
  background: #c4e3f2;
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-radius: calc(10 / var(--sm-base));
}
.publication-order-heading {
  margin-top: 0;
  text-align: center;
}
.publication-order-note {
  margin-top: calc(30 / var(--sm-base));
}
.publication-order-note .--open .publication-order-note-button::after {
  content: '\02212';
}
.publication-order-note-button {
  display: block;
  position: relative;
  width: 100%;
  padding-left: 1.6em;
  font-size: calc(30 / var(--sm-base));
  text-align: left;
}
.publication-order-note-button::before,
.publication-order-note-button::after {
  position: absolute;
}
.publication-order-note-button::before {
  content: '';
  top: .25em;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  background: var(--color-secondary);
  border-radius: calc(6 / var(--sm-base));
}
.publication-order-note-button::after {
  content: '\02B';
  top: -0.2em;
  left: .18em;
  color: #fff;
  font-size: calc(40 / var(--sm-base));
}
.publication-order-note-button span {
  text-decoration: underline;
}
.publication-order-note-body {
  height: 0;
  overflow: hidden;
  transition: height var(--transition);
}
.publication-order-note-body .c-note {
  padding-top: calc(32 / var(--sm-base));
}
.publication-order-links {
  margin: calc(30 / var(--sm-base)) 0;
}
.publication-order-links > *:not(:first-child) {
  margin-top: calc(30 / var(--sm-base));
}
.publication-order-links a {
  display: block;
  width: 100%;
  background: #fff;
  padding: calc(40 / var(--sm-base));
  border-radius: calc(6 / var(--sm-base));
  color: var(--color-gray-dark);
  font-size: calc(32 / var(--sm-base));
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.publication-list {
  margin-top: calc(120 / var(--sm-base));
}
.publication-list + .publication-list {
  margin-top: calc(60 / var(--sm-base));
}
.publication-item {
  padding: calc(30 / var(--sm-base));
  border-radius: calc(20 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.publication-list .publication-item h2 {
  margin: 0 0 1em;
  font-size: calc(38 / var(--sm-base));
}
.publication-item-image {
  max-width: calc(424 / var(--sm-base));
  margin: 0 auto calc(30 / var(--sm-base));
}
#pricetable tr:nth-of-type(1) th,
#pricetable tr:nth-of-type(2) th {
  text-align: center;
}
#pricetable td {
  text-align: right;
}
#pricetable tr:nth-of-type(4) td:nth-of-type(4),
#pricetable tr:nth-of-type(4) td:nth-of-type(5),
#pricetable tr:nth-of-type(5) td:nth-of-type(4),
#pricetable tr:nth-of-type(5) td:nth-of-type(5) {
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .publication-order-note-button:hover span {
    text-decoration: none;
  }
  .publication-order-links a {
    transition: background var(--transition);
  }
  .publication-order-links a:hover {
    background: var(--color-gray-light);
  }
}
@media screen and (min-width: 768px), print {
  .publication-order {
    padding: 30px;
    border-width: 1px;
    border-radius: 5px;
  }
  .publication-order-note {
    margin-top: 20px;
  }
  .publication-order-note-button {
    padding-left: 1.6em;
    font-size: 16px;
  }
  .publication-order-note-button::before {
    top: .35em;
    border-radius: 3px;
  }
  .publication-order-note-button::after {
    top: -0.33em;
    left: .13em;
    font-size: 24px;
  }
  .publication-order-note-body .c-note {
    padding-top: 15px;
  }
  .publication-order-links {
    margin: 15px -10px;
  }
  .publication-order-links > *:not(:first-child) {
    margin-top: 0;
  }
  .publication-order-links a {
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
  }
  .publication-list {
    margin-top: 80px;
  }
  .publication-list.--column3 > .wp-block-column {
    flex-basis: auto;
  }
  .publication-list + .publication-list {
    margin-top: 20px;
  }
  .publication-item {
    padding: 15px;
    border-radius: 10px;
    border-width: 1px;
  }
  .publication-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 212px;
    height: 300px;
    margin: 0 auto 15px;
  }
  .publication-list .publication-item h2 {
    font-size: 22px;
  }
}



/* Page : Seminar info
-------------------------------------------------- */
.seminar-pageHeader {
  margin-bottom: calc(70 / var(--sm-base));
}
.seminar-pageHeader-inner {
  padding: calc(40 / var(--sm-base)) calc(40 / var(--sm-base)) 0;
}
.seminar-list {
  margin-top: calc(120 / var(--sm-base));
}
.seminar-list.--end .seminar-item-button {
  background: #4CADC9;
}
.seminar-item a,
.seminar-item > div {
  display: block;
  width: 100%;
  padding: calc(30 / var(--sm-base));
  background: var(--color-gray-light);
  border-radius: calc(10 / var(--sm-base));
  color: var(--color-default);
  text-decoration: none;
}
.seminar-item .seminar-item-meta {
  margin-block: 0 calc(20 / var(--sm-base));
  text-align: right;
}
.seminar-item-meta span {
  display: inline-block;
  padding-right: .5em;
}
.seminar-item-heading {
  margin-top: 0;
}
.seminar-item-meta span:last-child {
  padding-right: 0;
  padding-left: .5em;
}
.seminar-item-button {
  width: 100%;
  margin-top: calc(32 / var(--sm-base));
  padding: calc(16 / var(--sm-base));
  background: #F7BE68;
  border-radius: calc(10 / var(--sm-base));
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .seminar-item a {
    transition: background var(--transition);
  }
  .seminar-item a:hover {
    background: var(--color-gray);
  }
}
@media screen and (min-width: 768px), print {
  .seminar-pageHeader {
    margin-bottom: 35px;
  }
  .seminar-pageHeader-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 20px 0;
  }
  .seminar-list {
    margin-top: 80px;
  }
  .seminar-item a,
  .seminar-item > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 16px;
    border-radius: 5px;
  }
  .seminar-item .seminar-item-meta {
    margin-block: 0 10px;
  }
  .seminar-item-button {
    margin-top: 10px;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
  }
}



/* Page : TV cm
-------------------------------------------------- */
.tvcm-modal,
.tvcm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.tvcm-modal {
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.tvcm-modal.--show {
  opacity: 1;
  visibility: visible;
}
.tvcm-modal-overlay {
  background-color: rgba(0,0,0,.8);
}
.tvcm-modal-inner {
  position: relative;
  z-index: 101;
  display: table;
  width: 100%;
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
  padding: calc(80 / var(--sm-base)) calc(40 / var(--sm-base)) calc(40 / var(--sm-base));
}
.tvcm-modal-contents {
  display: table-cell;
  vertical-align: middle;
}
.tvcm-modal-contents > * {
  position: relative;
  z-index: 2;
}
.tvcm-modal-close {
  display: block;
  margin-left: auto;
  color: #fff;
  font-size: calc(80 / var(--sm-base));
  line-height: 1.2;
  cursor: pointer;
}
.tvcm-modal-trigger {
  display: block;
  text-align: center;
}
.tvcm-modal-trigger > span {
  display: inline-block;
  position: relative;
  margin-top: calc(24 / var(--sm-base));
  padding-left: 1.2em;
  font-weight: 700;
}
.tvcm-modal-trigger > span::before {
  content: '';
  position: absolute;
  top: .35em;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../images/common/icn_search_01.svg) center center / 100% no-repeat;
}
.tvcm-openInfo {
  padding: calc(70 / var(--sm-base)) calc(14 / var(--sm-base));
  background: var(--color-bg-primary);
  border-radius: calc(20 / var(--sm-base));
  text-align: center;
}
.tvcm-openInfo + .tvcm-openInfo {
  margin-top: calc(80 / var(--sm-base));
}
.tvcm-openInfo > *:not(:first-child) {
  margin-top: calc(100 / var(--sm-base));
}
.tvcm-openInfo > div:first-child > *:first-child {
  margin-top: 0;
}
.tvcm-openInfo p {
  margin-top: calc(40 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .tvcm-modal-inner {
    padding: 40px;
  }
  .tvcm-modal-close {
    font-size: 40px;
  }
  .tvcm-modal-trigger > span {
    margin-top: 10px;
  }
  .tvcm-openInfo {
    padding: 40px 14px;
    border-radius: 10px;
  }
  .tvcm-openInfo + .tvcm-openInfo {
    margin-top: 60px;
  }
  .tvcm-openInfo > *:nth-child(n) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
  }
  .tvcm-openInfo p {
    margin-top: 20px;
  }
  .tvcm-openInfo .c-heading + p {
    margin-top: 0;
  }
}



/* Page : Contact
-------------------------------------------------- */
.contact-information {
  padding: calc(60 / var(--sm-base)) 0;
  background: var(--color-bg-primary);
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
  text-align: center;
}
.contact-information .l-column > *:not(:first-child) {
  padding-top: calc(60 / var(--sm-base));
  border-top: calc(4 / var(--sm-base)) solid #fff;
}
.contact-information-image {
  width: calc(200 / var(--sm-base));
  margin: 0 auto calc(30 / var(--sm-base));
  border-radius: calc(20 / var(--sm-base));
  overflow: hidden;
}
.contact-formArea {
  margin-top: calc(120 / var(--sm-base));
}
.contact-heading {
  display: none;
}
.mw_wp_form_input .contact-heading.--input {
  display: block;
}
.mw_wp_form_confirm .contact-heading.--confirm {
  display: block;
}
.contact-wrapper:has(.mw_wp_form_confirm) .contact-information,
.contact-wrapper:has(.mw_wp_form_confirm) .contact-map,
.contact-wrapper:has(.mw_wp_form_complete) .contact-information,
.contact-wrapper:has(.mw_wp_form_complete) .contact-map {
  display: none;
}
.contact-map {
  width: 100%;
  height: calc(500 / var(--sm-base));
  margin-top: calc(120 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .contact-information {
    padding: 80px 0;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
  }
  .contact-information .l-column > *:not(:first-child) {
    padding-top: 0;
    border-top: none;
  }
  .contact-information-image {
    width: 100px;
    margin: 0 auto 20px;
    border-radius: 10px;
  }
  .contact-formArea {
    margin-top: 80px;
  }
  .contact-map {
    height: 450px;
    margin-top: 80px;
  }
}



/* Page : AWARD
-------------------------------------------------- */
@keyframes award-slider-anime {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes award-blur-anime {
  from {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@keyframes award-zoom-anime {
  from {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}
/* @keyframes award-horizon-anime {
  from {
    transform: translateX(20%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
} */
.award-button {
  position: relative;
  display: inline-block;
  padding: .2em 2em .2em 1.5em;
  background: #fff;
  border-radius: 100vmax;
  color: var(--color-default);
  font-weight: 700;
  text-decoration: none;
}
.award-button::after {
  content: '';
  position: absolute;
  top: calc(50% - .25em);
  right: 1em;
  width: .5em;
  height: .5em;
  border-top: calc(4 / var(--sm-base)) solid var(--color-default);
  border-right: calc(4 / var(--sm-base)) solid var(--color-default);
  transform: rotate(45deg);
}
.award-sliders {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.award-slider {
  display: flex;
  height: 100%;
  animation: award-slider-anime 50s infinite linear 0.5s both;
}
.award-slider > div {
  width: calc(1920 / var(--sm-base));
}
.award-slider > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.awardTop-visual {
  position: relative;
  height: calc(550 / var(--sm-base));
  margin: calc(-120 / var(--sm-base)) 0 calc(80 / var(--sm-base));
}
.awardTop-visual-heading {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%);
  animation: award-blur-anime .8s ease both;
}
.awardTop-read {
  margin: calc(200 / var(--sm-base)) 0;
  font-weight: 500;
  line-height: 2;
}
.awardTop-read p + p {
  margin-top: calc(70 / var(--sm-base));
}
.awardTop-winner {
  position: relative;
  overflow: hidden;
  padding: calc(120 / var(--sm-base)) 0 calc(160 / var(--sm-base));
  margin-top: calc(80 / var(--sm-base));
}
.awardTop-winner::before,
.awardTop-winner-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.awardTop-winner::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
}
.awardTop-winner.--show .awardTop-winner-bg {
  animation: award-zoom-anime 1s ease both;
}
.awardTop-winner-bg {
  z-index: -10;
  width: 200%;
  height: 200%;
  opacity: 0;
  object-fit: cover;
  object-position: 50% 14%;
}
.awardTop-winner .l-inner {
  position: relative;
  z-index: 2;
}
.awardTop-winner .c-heading {
  margin-bottom: 1.5em;
  color: #fff;
  font-family: var(--font-sansSerif-en02);
  font-size: calc(66 / var(--sm-base));
}
.awardTop-winner .c-heading span {
  border-bottom: calc(10 / var(--sm-base)) solid #ffcc00;
}
.awardTop-winner .l-column {
  text-align: center;
}
.awardTop-winner .l-column > *:not(:first-child) {
  margin-top: calc(100 / var(--sm-base));
}
.awardTop-winner .l-column h3 {
  margin-bottom: 1em;
  color: #fff;
  font-weight: 900;
  font-size: calc(36 / var(--sm-base));
}
.awardTop-winner .l-column img {
  display: block;
  width: calc(220 / var(--sm-base));
  margin: 0 auto;
}
.awardTop-winner .l-column p {
  width: calc(440 / var(--sm-base));
  margin: 2em auto 0;
  padding: .5em;
  background: #fff;
  border-radius: calc(20 / var(--sm-base));
  color: var(--color-gray-dark);
  font-weight: 700;
}
.awardTop-award {
  padding-top: calc(200 / var(--sm-base));
  color: #fff;
  background: #000;
  overflow: hidden;
}
.awardTop-award.--coy .awardTop-award-image {
  top: calc(280 / var(--sm-base));
}
.awardTop-award.--wakate {
  padding-bottom: calc(200 / var(--sm-base));
}
.awardTop-award.--show .awardTop-award-heading span:first-child {
  clip-path: inset(0);
}
.awardTop-award .l-column {
  position: relative;
}
.awardTop-award-heading {
  margin-bottom: calc(500 / var(--sm-base));
  font-family: var(--font-sansSerif-en02);
}
.awardTop-award-heading span {
  display: block;
  font-size: calc(72 / var(--sm-base));
  line-height: 1.2;
}
.awardTop-award-heading span:first-child {
  position: relative;
  margin-bottom: 1em;
  color: #fff;
  font-size: calc(40 / var(--sm-base));
  clip-path: inset(0 100% 0 0);
  transition: 1.5s cubic-bezier(0.37, 0, 0.63, 1) .5s;
  transition-property: clip-path;
}
.awardTop-award-heading span:first-child::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 4.5em;
  width: calc(240 / var(--sm-base));
  height: calc(6 / var(--sm-base));
  background: #ffcc00;
}
.awardTop-award-button {
  margin-top: 2em;
}
.awardTop-award-button a {
  display: block;
  width: 100%;
}
.awardTop-award-image {
  position: absolute;
  top: calc(200 / var(--sm-base));
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
/* .awardTop-award.--show .awardTop-award-bg {
  animation: award-zoom-anime 1s ease both;
}
.awardTop-award.--show .awardTop-award-text {
  animation: award-horizon-anime .6s cubic-bezier(0.33, 1, 0.68, 1) .5s both;
}
.awardTop-award.--coy {
  padding: calc(300 / var(--sm-base)) 0 calc(150 / var(--sm-base));
}
.awardTop-award.--ronbun {
  padding: calc(150 / var(--sm-base)) 0;
}
.awardTop-award.--ronbun .awardTop-award-bg {
  top: calc(-450 / var(--sm-base));
  object-position: 100% 50%;
}
.awardTop-award.--wakate .awardTop-award-bg {
  top: calc(-450 / var(--sm-base));
}
.awardTop-award::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background: #000;
}
.awardTop-award-bg {
  position: absolute;
  top: calc(-300 / var(--sm-base));
  z-index: -10;
  width: 200%;
  height: 200%;
  opacity: 0;
  object-fit: cover;
  object-position: 0% 50%;
} */
.awardTop-other {
  margin-top: calc(120 / var(--sm-base));
}
.awardTop-other-list li {
  margin-top: 1em;
}
.awardTop-other-list li .c-button.--sm {
  display: block;
  width: 100%;
  padding: calc(24 / var(--sm-base)) 0;
}
.awardTop-movie {
  max-width: 800px;
  margin: 0 auto;
}
.awardTop-movie-inner {
  position: relative;
  margin-top: 2.5em;
  padding-top: 56.25%;
}
.awardTop-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.awardLower-visualWrap {
  margin: calc(-120 / var(--sm-base)) calc(50% - 50vw) calc(120 / var(--sm-base));
}
.awardLower-visual {
  position: relative;
  height: calc(626 / var(--sm-base));
}
.awardLower-visual::before,
.awardLower-visual-text {
  position: absolute;
  z-index: 2;
}
.awardLower-visual::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .35;
  transform: translateZ(1px);
}
.awardLower-visual-text {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) translateZ(1px);
}
.awardLower-visualWrap .awardLower-visual-text .awardLower-visual-heading {
  margin: 0;
  color: #fff;
  font-size: calc(100 / var(--sm-base));
  font-family: var(--font-sansSerif-en);
  font-weight: 400;
  font-style: normal;
  text-align: center;
  letter-spacing: .15em;
}
.awardLower-visual-buttons {
  text-align: center;
}
.awardLower-visualWrap .awardLower-visual-text .awardLower-visual-buttons > div {
  margin-top: calc(30 / var(--sm-base));
}
.awardLower-visual-coy {
  position: relative;
  height: calc(626 / var(--sm-base));
}
.awardLower-visual-coy::before,
.awardLower-visual-coy-heading,
.awardLower-visual-coy-text {
  position: absolute;
  z-index: 2;
  transform: translateZ(1px);
}
.awardLower-visual-coy::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .35;
}
.awardLower-visual-coy-heading {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  background: #fff;
  font-size: calc(135 / var(--sm-base)) !important;
  font-family: var(--font-sansSerif-en);
  font-weight: 500;
  color: #000;
  text-align: center;
  letter-spacing: .13em;
  line-height: 1.2;
  mix-blend-mode: screen;
}
.awardLower-visual-coy-heading img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.awardLower-visual-coy-text {
  left: 0;
  bottom: calc(30 / var(--sm-base));
  width: 100%;
  font-size: calc(24 / var(--sm-base));
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
}
.awardLower-visualWrap .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.awardLower-visualWrap .swiper-button-prev,
.awardLower-visualWrap .swiper-button-next {
  top: 0;
  width: calc(80 / var(--sm-base));
  height: calc(80 / var(--sm-base));
  margin-top: 0;
  background: rgba(0, 0, 0, .2);
  border: calc(2 / var(--sm-base)) solid #fff;
  color: transparent;
}
.awardLower-visualWrap .swiper-button-prev:after,
.awardLower-visualWrap .swiper-button-next::after {
  width: calc(40 / var(--sm-base));
  height: calc(40 / var(--sm-base));
  border-top: calc(4 / var(--sm-base)) solid #fff;
  border-right: calc(4 / var(--sm-base)) solid #fff;
  transform: rotate(45deg) translate(-20%, 20%);
}
.awardLower-visualWrap .swiper-button-prev {
  left: 0;
  transform: scale(-1, 1);
}
.awardLower-visualWrap .swiper-button-next {
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .awardTop-award-button .c-button.--bgWhite:hover {
    background: var(--color-gray);
  }
}
@media screen and (min-width: 768px), print {
  .award-button::after {
    border-width: 2px;
  }
  .award-slider > div {
    width: 1400px;
  }
  .awardTop-visual {
    height: 400px;
    margin: -60px 0 60px;
  }
  .awardTop-read {
    margin: 120px 0;
    font-size: 20px;
  }
  .awardTop-read p + p {
    margin-top: 40px;
  }
  .awardTop-winner {
    padding: 100px 0 120px;
    margin-top: 60px;
  }
  .awardTop-winner .c-heading {
    font-size: 64px;
  }
  .awardTop-winner .c-heading span {
    border-width: 8px;
  }
  .awardTop-winner .l-column {
    margin: 0;
  }
  .awardTop-winner .l-column > *:nth-child(n) {
    width: 50%;
    margin: 0;
  }
  .awardTop-winner .l-column h3 {
    font-size: 24px;
  }
  .awardTop-winner .l-column img {
    width: 200px;
  }
  .awardTop-winner .l-column p {
    width: 230px;
    border-radius: 10px;
  }
  .awardTop-award {
    padding: 200px 0 0;
  }
  .awardTop-award .l-column {
    position: static;
    margin: 0;
  }
  .awardTop-award .l-column > * {
    width: calc(50% - 40px);
    margin: 0;
  }
  .awardTop-award .l-column > *:first-child {
    margin-right: 80px;
  }
  .awardTop-award.--ronbun .l-column {
    flex-direction: row-reverse;
  }
  .awardTop-award.--ronbun .l-column > *:first-child {
    margin: 0 0 0 80px;
  }
  .awardTop-award.--wakate {
    padding-bottom: 200px;
  }
  .awardTop-award-heading {
    margin-bottom: 1em;
  }
  .awardTop-award-heading span {
    font-size: 64px;
  }
  .awardTop-award-heading span:first-child {
    margin-bottom: .5em;
    font-size: 40px;
  }
  .awardTop-award-heading span:first-child::before {
    width: 190px;
    height: 6px;
  }
  .awardTop-award-button a {
    display: inline-block;
    width: auto;
  }
  .awardTop-award-image {
    position: static;
  }
  .awardTop-other {
    margin-top: 80px;
  }
  .awardTop-other-list {
    text-align: center;
  }
  .awardTop-other-list li {
    display: inline-block;
    margin: 10px;
  }
  .awardTop-other-list li .c-button.--sm {
    padding: 6px 20px;
  }
  .awardLower-visualWrap-outer {
    margin-inline: calc(50% - 50vw);
  }
  .awardLower-visualWrap {
    margin: -60px 0 60px;
  }
  .awardLower-visual {
    height: 450px;
  }
  .awardLower-visualWrap .awardLower-visual-text .awardLower-visual-heading {
    font-size: 100px;
  }
  .awardLower-visualWrap .awardLower-visual-text .awardLower-visual-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 30px auto 0;
  }
  .awardLower-visualWrap .awardLower-visual-text .awardLower-visual-buttons > div {
    width: 27.5%;
    margin: 0;
  }
  .awardLower-visualWrap .awardLower-visual-text .awardLower-visual-buttons > div:first-child {
    width: 45%;
  }
  .awardLower-visual .award-slider > div {
    width: 900px;
  }
  .awardLower-visual-coy {
    height: 450px;
  }
  .awardLower-visual-coy-heading {
    font-size: 140px !important;
    line-height: 1;
  }
  .awardLower-visual-coy-text {
    bottom: 0;
    font-size: 30px;
  }
  .awardLower-visual-coy .award-slider > div {
    width: 450px;
  }
  .awardLower-visualWrap .swiper-button-prev,
  .awardLower-visualWrap .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: 0;
    border-width: 1px;
  }
  .awardLower-visualWrap .swiper-button-prev:after,
  .awardLower-visualWrap .swiper-button-next::after {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
}
@media screen and (min-width: 1024px), print {
  .awardLower-visualWrap .awardLower-visual-text .awardLower-visual-heading {
    font-size: 140px;
  }
  .awardLower-visual-coy-heading {
    font-size: 170px;
  }
}



/* Page : CREATOR OF THE YEAR
-------------------------------------------------- */
.coy-victory img {
  width: calc(600 / var(--sm-base));
  margin: 0 auto;
}
.coy-victory p:not(:first-child) {
  margin-top: 1.5em;
}
.coy-victory p:first-child,
.coy-victory p span {
  font-weight: 700;
}
.coy-mefalist-image img {
  border-radius: 100vmax;
}
.coy-victory p:first-child {
  font-size: calc(40 / var(--sm-base));
}
.coy-mefalist > div p:first-of-type {
  margin-top: calc(50 / var(--sm-base));
  font-weight: 700;
  text-align: center;
}
.coy-mefalist > div p:first-of-type span {
  display: block;
  font-weight: 400;
}
.coy-mefalist > div p:first-of-type span:nth-of-type(2) {
  margin-top: .75em;
  padding-block: .5em;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.coy-mefalist > div p:nth-of-type(2) {
  margin: calc(60 / var(--sm-base)) 0 calc(40 / var(--sm-base));
  padding: calc(40 / var(--sm-base)) 0;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray);
  border-bottom: calc(4 / var(--sm-base)) solid var(--color-gray);
}
.coyRecruit-heading {
  padding: .7em;
  background: var(--color-secondary);
  border-radius: calc(10 / var(--sm-base));
  color: #fff;
}
.coyRecruit-subheading {
  margin-block: calc(80 / var(--sm-base)) 1em;
  font-size: calc(38 / var(--sm-base));
}
.coyRecruit-subheading.--blueBorder {
  padding-left: 1em;
  border-left: calc(10 / var(--sm-base)) solid var(--color-secondary);
}
@media screen and (min-width: 768px), print {
  .coy-victory {
    max-width: 800px;
    margin: 0 auto;
  }
  .coy-victory img {
    width: 300px;
  }
  .coy-victory p:first-child {
    font-size: 20px;
  }
  .coy-mefalist-image,
  .coy-mefalist-image img {
    margin: 0 auto;
  }
  .coy-mefalist {
    margin: 0 -17px;
  }
  .coy-mefalist.l-column.--column3 > * {
    width: calc(33.33333% - 34px);
    margin: 0 17px;
  }
  .coy-mefalist.l-column.--column3 > *:nth-child(n+4) {
    margin-top: 60px;
  }
  .coy-mefalist > div p:first-of-type {
    margin-top: 30px;
    width: 100%;
  }
  .coy-mefalist > div p:first-of-type span:nth-of-type(2) {
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  .coy-mefalist > div p:nth-of-type(2) {
    margin: 40px 0 20px;
    padding: 30px 0;
    border-top: 1px solid var(--color-gray);
    border-bottom: 2px solid var(--color-gray);
    font-size: 14px;
  }
  .coyRecruit-heading {
    border-radius: 5px;
  }
  .coyRecruit-subheading {
    margin-block: 60px 1em;
    font-size: 22px;
  }
  .coyRecruit-subheading.--blueBorder {
    padding-left: 1em;
    border-width: 6px;
  }
}



/* Page : Ronbun
-------------------------------------------------- */
.ronbun-list {
  padding: calc(30 / var(--sm-base));
  background: var(--color-bg-primary);
}
.ronbun-list .c-heading.--lrLine span {
  background: var(--color-bg-primary);
}
.ronbun-profile:not(:first-of-type) {
  margin-top: calc(40 / var(--sm-base));
  padding-top: calc(40 / var(--sm-base));
  border-top: calc(4 / var(--sm-base)) solid #fff;
}
.ronbun-profile-inner > div:first-child {
  margin-bottom: calc(40 / var(--sm-base));
  text-align: center;
}
.ronbun-profile-inner > div:nth-child(2) > *:first-child {
  margin-top: 0;
}
.ronbun-profile img {
  display: block;
  margin: 0 auto calc(40 / var(--sm-base));
  border: calc(10 / var(--sm-base)) solid #fff;
  border-radius: 100vmax;
}
.ronbun-profile-name {
  font-size: calc(40 / var(--sm-base));
  font-weight: 700;
}
.ronbun-profile-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.ronbun-list-group:not(:first-of-type) {
  margin-top: calc(60 / var(--sm-base));
}
.ronbun-winner-contents .c-heading.--btmLine {
  border-color: var(--color-red);
}
.ronbun-winner-heading {
  margin-bottom: calc(120 / var(--sm-base));
  padding: .8em 0 .5em;
  background: var(--color-gray-light);
}
.ronbun-winner-heading > span:nth-child(1) {
  display: inline-block;
  padding: 0 1em .5em;
  border-bottom: calc(4 / var(--sm-base)) solid #fff;
}
.ronbun-winner-heading > span:nth-child(2) {
  display: block;
  margin-top: .5em;
  font-size: 57.14286%;
}
.ronbun-winner-profile-name {
  font-size: calc(56 / var(--sm-base));
  font-weight: 700;
}
.ronbun-winner-company,
.ronbun-winner-title {
  font-size: calc(36 / var(--sm-base));
  font-weight: 700;
}
.ronbun-winner-profile-button {
  display: block;
  margin: 2em 0;
}
.ronbun-winner-comment p:last-of-type {
  margin-top: 1em;
  padding-top: 1em;
  border-top: calc(2 / var(--sm-base)) solid var(--color-gray-dark);
}
@media screen and (min-width: 768px), print {
  .ronbun-list {
    padding: 50px 40px;
  }
  .ronbun-profile:not(:first-of-type) {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #fff;
  }
  .ronbun-profile-inner {
    display: flex;
  }
  .ronbun-profile-inner > div:first-child {
    width: 35%;
    max-width: 330px;
    margin: 0 40px 0 0;
  }
  .ronbun-profile-inner > div:nth-child(2) {
    flex: 1;
  }
  .ronbun-profile img {
    width: 200px;
    margin: 0 auto 30px;
    border-width: 6px;
  }
  .ronbun-profile-name {
    font-size: 20px;
  }
  .ronbun-list-group:not(:first-of-type) {
    margin-top: 60px;
  }
  .ronbun-winner-profile-inner {
    justify-content: center;
  }
  .ronbun-winner-profile-inner > div:first-child {
    width: 27%;
    max-width: 305px;
  }
  .ronbun-winner-profile-inner > div:first-child img {
    width: 250px;
  }
  .ronbun-winner-profile-inner > div:nth-child(2) {
    max-width: 620px;
  }
  .ronbun-winner-heading {
    margin: 70px 0 80px;
  }
  .ronbun-winner-heading > span:nth-child(1) {
    border-bottom: 2px solid #fff;
  }
  .ronbun-winner-profile-name {
    font-size: 28px;
  }
  .ronbun-winner-company,
  .ronbun-winner-title {
    font-size: 20px;
  }
  .ronbun-winner-comment {
    margin-left: -20px;
    margin-right: -20px;
  }
  .ronbun-winner-comment.--column3 > * {
    width: calc(33.33333% - 40px);
    margin: 0 20px;
  }
  .ronbun-winner-comment p:last-of-type {
    border-top: 1px solid var(--color-gray-dark);
  }
}



/* Page : Wakate
-------------------------------------------------- */
.c-heading + .wakate-awards {
  margin-top: 3em;
}
.wakate-awards .c-heading {
  margin: 2em 0 1em;
}
.wakate-awards .c-heading:first-child {
  margin-top: 0;
}
.wakate-awards-block {
  padding: calc(40 / var(--sm-base));
  border: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.wakate-awards-block img {
  display: block;
  max-height: calc(500 / var(--sm-base));
  margin: 0 auto;
}
.wakate-awards-block > div:first-child {
  max-width: 300px;
  margin: 0 auto 2em;
}
@media screen and (min-width: 768px), print {
  .wakate-awards-block {
    padding: 30px;
    border-width: 1px;
  }
  .wakate-awards-block img {
    max-height: 300px;
  }
}



/* Page : Site map
-------------------------------------------------- */
.sitemap-linkList li {
  position: static;
  padding-left: 0;
  text-indent: 0;
}
.sitemap-linkList li::before {
  content: none;
}
.sitemap-linkList-subList > li:first-child a {
  border-top: none;
}
.sitemap-linkList-subList > li:last-child a {
  border-bottom: calc(2 / var(--sm-base)) solid var(--color-gray);
}
.sitemap-linkList-subList > li a {
  border-radius: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  text-decoration: none;
}
.sitemap-linkList-subList > li > ul {
  font-size: calc(24 / var(--sm-base));
}
.sitemap-linkList-subList > li > ul a {
  padding-top: 0;
  border: none;
}
.sitemap-linkList-subList > li > ul > li > ul {
  padding-left: 1.5em;
}
.sitemap-linkList-subList > li > ul > li > ul > li:not(:last-of-type) a {
  padding-bottom: .5em;
}
.sitemap-linkList-subList > li > ul > li > ul > li a {
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .sitemap-linkList-subList > li a:hover {
    background: none;
    border-color: var(--color-gray);
    color: var(--color-primary);
  }
}
@media screen and (min-width: 768px), print {
  .sitemap-linkList > li:nth-child(n) {
    width: calc(50% - 14px);
  }
  .sitemap-linkList > li:nth-child(n+3) {
    margin-top: 40px;
  }
  .sitemap-linkList > li a {
    height: auto;
  }
  .sitemap-linkList-subList > li:last-child a {
    border-width: 1px;
  }
  .sitemap-linkList-subList > li > ul {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px), print {
  .sitemap-linkList-subList > li > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .sitemap-linkList-subList > li > ul > li {
    width: 50%;
  }
  .sitemap-linkList-subList > li > ul > li > ul {
    padding-left: 0;
  }
}



/* Page : Search
-------------------------------------------------- */
.search-result-none {
  padding-block: 3em;
}



/* Page : Jimaku cm portal
-------------------------------------------------- */
body:has(.jimaku-visual) .m-pageHeader {
  display: none;
}
.jimaku-visual {
  position: relative;
  height: calc(780 / var(--sm-base));
}
.jimaku-visual::before,
.jimaku-visual-text {
  position: absolute;
  z-index: 2;
  width: 100%;
}
.jimaku-visual::before {
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  background: #000;
  opacity: .35;
}
.jimaku-visual-text {
  left: 50%;
  bottom: 0;
  max-width: 1140px;
  color: #34AADC;
  text-align: center;
  font-weight: 700;
  font-size: calc(32 / var(--sm-base));
  letter-spacing: .1em;
  transform: translateX(-50%);
}
.jimaku-visual-text-inner {
  max-width: 580px;
  background: rgba(255,255,255,.8);
  padding: .5em;
}
.jimaku-visual-text h2 {
  margin-bottom: .1em;
  font-size: calc(70 / var(--sm-base));
}
.jimaku-sliders {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.jimaku-slider {
  display: flex;
  height: 100%;
  animation: award-slider-anime 50s infinite linear 0.5s both reverse;
}
.jimaku-slider > div {
  width: calc(1390 / var(--sm-base));
}
.jimaku-slider > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.jimaku-contents .c-button {
  width: 100%;
  margin-top: 1em;
}
.jimaku-contents .c-boxLink {
  margin-top: 2em;
}
.jimaku-reports-column .c-button {
  margin-top: 0;
}
.jimaku-monthly-column .c-button {
  margin-top: 0;
}
.jimaku-soumu-column > * {
  padding: calc(40 / var(--sm-base));
  background: #34AADC;
  border-radius: calc(20 / var(--sm-base));
  color: #fff;
}
.jimaku-soumu-column > *:nth-child(even) {
  background: #2791cf;
}
.jimaku-soumu-column > * img {
  width: calc(140 / var(--sm-base));
  margin: 0 auto;
}
.jimaku-soumu-column > * h3 {
  margin: 1em 0;
}
@media screen and (min-width: 768px), print {
  .jimaku-visual {
    height: 450px;
  }
  .jimaku-visual-text {
    font-size: 20px;
  }
  .jimaku-visual-text-inner {
    padding: 30px 30px 10px;
  }
  .jimaku-visual-text h2 {
    font-size: 65px;
  }
  .jimaku-slider > div {
    width: 808px;
  }
  .jimaku-contents .c-button {
    width: auto;
    min-width: 250px;
  }
  .jimaku-reports-column .c-button,
  .jimaku-monthly-column .c-button,
  .jimaku-soumu-column > * .c-button {
    min-width: auto;
    width: 100%;
  }
  .jimaku-reports-column > *:not(:first-child) {
    margin-top: 0;
  }
  .jimaku-reports-column.--column3 > *:nth-child(n+4) {
    margin-top: 20px;
  }
  .jimaku-soumu-column > * {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px 20px;
    border-radius: 10px;
  }
  .jimaku-soumu-column > * img {
    width: 70px;
  }
}



/* Page : Ad 20XX
-------------------------------------------------- */
.ad-visual {
  margin: calc(-120 / var(--sm-base)) 0 calc(80 / var(--sm-base));
  background: #8ed2f5;
}
.ad-visual-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.ad-index-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-10 / var(--sm-base));
}
.ad-index-list li {
  width: calc(50% - calc(20 / var(--sm-base)));
  margin: 0 calc(10 / var(--sm-base));
}
.ad-index-list li:nth-child(n+3) {
  margin-top: calc(20 / var(--sm-base));
}
.ad-index-list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: calc(20 / var(--sm-base)) calc(20 / var(--sm-base)) calc(60 / var(--sm-base));
  border: calc(6 / var(--sm-base)) solid var(--color-default);
  color: var(--color-default);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}
.ad-index-list li a::before {
  content: '';
  position: absolute;
  left: calc(50% - calc(10 / var(--sm-base)));
  bottom: calc(20 / var(--sm-base));
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-top: calc(6 / var(--sm-base)) solid var(--color-default);
  border-right: calc(6 / var(--sm-base)) solid var(--color-default);
  transform: rotate(135deg);
}
.ad-index-list li a span {
  display: block;
  margin-bottom: .5em;
  font-size: 70%;
}
.ad-index-list li:nth-child(n) a.--active {
  color: #fff;
}
.ad-index-list li:nth-child(n) a.--active::before {
  border-color: #fff;
}
.ad-index-list li:nth-child(1) a {
  border-color: #e00176;
  color: #e00176;
}
.ad-index-list li:nth-child(1) a::before {
  border-color: #e00176;
}
.ad-index-list li:nth-child(1) a.--active {
  background: #e00176;
}
.ad-index-list li:nth-child(2) a {
  border-color: #02a0e9;
  color: #02a0e9;
}
.ad-index-list li:nth-child(2) a::before {
  border-color: #02a0e9;
}
.ad-index-list li:nth-child(2) a.--active {
  background: #02a0e9;
}
.ad-index-list li:nth-child(3) a {
  border-color: #02863d;
  color: #02863d;
}
.ad-index-list li:nth-child(3) a::before {
  border-color: #02863d;
}
.ad-index-list li:nth-child(3) a.--active {
  background: #02863d;
}
.ad-index-list li:nth-child(4) a {
  border-color: #e93a29;
  color: #e93a29;
}
.ad-index-list li:nth-child(4) a::before {
  border-color: #e93a29;
}
.ad-index-list li:nth-child(4) a.--active {
  background: #e93a29;
}
.ad-index-list li:nth-child(5) a {
  border-color: #601884;
  color: #601884;
}
.ad-index-list li:nth-child(5) a::before {
  border-color: #601884;
}
.ad-index-list li:nth-child(5) a.--active {
  background: #601884;
}
.ad-contents {
  margin-top: calc(80 / var(--sm-base));
  padding: calc(40 / var(--sm-base)) 0 calc(120 / var(--sm-base));
  background: #eaf7fe;
}
.ad-interview {
  display: none;
}
.ad-interview.--show {
  display: block;
}
.ad-interview:nth-child(1) p {
  color: #e00176;
}
.ad-interview:nth-child(2) p {
  color: #02a0e9;
}
.ad-interview:nth-child(3) p {
  color: #02863d;
}
.ad-interview:nth-child(4) p {
  color: #e93a29;
}
.ad-interview:nth-child(5) p {
  color: #601884;
}
.ad-interview-visual {
  margin-bottom: calc(-120 / var(--sm-base));
}
.ad-interview h2 + p {
  margin-bottom: 1em;
  font-size: calc(36 / var(--sm-base));
  font-weight: 700;
}
.ad-footer {
  padding: calc(80 / var(--sm-base)) 0;
  background: var(--color-bg-primary);
}
.ad-footer-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: calc(80 / var(--sm-base));
}
.ad-footer-image img {
  width: 33.33333%;
}
@media screen and (min-width: 768px), print {
  .ad-visual {
    margin: -60px 0 60px;
  }
  .ad-index-list {
    margin: 0 -5px;
  }
  .ad-index-list li {
    width: calc(20% - 10px);
    margin: 0 5px;
  }
  .ad-index-list li:nth-child(n+3) {
    margin-top: 0;
  }
  .ad-index-list li a {
    padding: 20px 10px 40px;
    border-width: 4px;
    font-size: 24px;
  }
  .ad-index-list li a::before {
    left: calc(50% - 7px);
    bottom: 14px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
  .ad-contents {
    margin-top: 60px;
    padding: 80px 0;
  }
  .ad-interview-visual {
    margin-bottom: 0;
  }
  .ad-interview h2 + p {
    font-size: 22px;
  }
  .ad-footer {
    padding: 80px 0;
  }
  .ad-footer-image {
    margin-bottom: 40px;
  }
  .ad-footer-image img {
    width: 20%;
  }
}



/* Page : Links
-------------------------------------------------- */
.links-list .m-linkItem:not(:first-child)  {
  margin-top: calc(20 / var(--sm-base));
}
@media screen and (min-width: 768px), print {
  .links-list .m-linkItem:not(:first-child),
  .links-list .m-linkItem:first-child {
    margin-top: 14px;
  }
}


.page404 {
  padding-block: 2em 1em;
}
.post-password-form {
  display: flex;
  margin-top: calc(40 / var(--sm-base));
}
.post-password-form input[type="password"] {
  flex: 1;
  padding: calc(12 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-radius: calc(8 / var(--sm-base));
}
.post-password-form input[type="submit"] {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: calc(20 / var(--sm-base));
  padding: calc(20 / var(--sm-base)) calc(30 / var(--sm-base));
  background: var(--color-primary);
  border: calc(2 / var(--sm-base)) solid var(--color-primary);
  border-radius: calc(20 / var(--sm-base));
  color: #fff;
  font-size: calc(30 / var(--sm-base));
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .post-password-form input[type="submit"] {
    transition: color var(--transition), background var(--transition);
  }
  .post-password-form input[type="submit"]:hover {
    background: #fff;
    color: var(--color-primary);
  }
}
@media screen and (min-width: 768px), print {
  .post-password-form {
    display: inline-flex;
    margin-top: 20px;
  }
  .post-password-form input[type="password"] {
    width: 300px;
    padding: 5px 12px;
    border-width: 1px;
    border-radius: 4px;
    font-size: 16px;
  }
  .post-password-form input[type="submit"] {
    margin-left: 10px;
    padding: 10px 20px;
    border-width: 1px;
    border-radius: 10px;
    font-size: 16px;
  }
}



/* Page : Publication Form
-------------------------------------------------- */
.publication-general-lead {
  margin-bottom: calc(32 / var(--sm-base));
}
.publication-form-preview-heading,
.publication-form-preview-lead {
  display: none;
}
.publication-form-selectbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.publication-form-selectbox::after {
  content: '';
  position: absolute;
  top: 46%;
  right: calc(24 / var(--sm-base));
  width: calc(20 / var(--sm-base));
  height: calc(20 / var(--sm-base));
  border-right: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-bottom: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.publication-form-selectbox.--small {
  width: 44%;
}
.publication-form-selectbox select {
  width: 100%;
  padding: calc(12 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-radius: calc(8 / var(--sm-base));
}
.publication-form-label-annotation {
  display: block;
  margin: 0 0 calc(20 / var(--sm-base));
  font-size: calc(28 / var(--sm-base));
}
.publication-general-form-annotation-list {
  margin: calc(64 / var(--sm-base)) 0 calc(-32 / var(--sm-base));
}
.publication-form-annotation-list {
  margin: calc(64 / var(--sm-base)) 0;
  list-style: none;
}
.publication-form-annotation-list li {
  position: relative;
  padding-left: 1em;
}
.publication-form-annotation-list li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}
.publication-form-captcha {
  margin-top: calc(80 / var(--sm-base));
  font-size: calc(28 / var(--sm-base));
  text-align: center;
}
.publication-form-captcha img {
  display: block;
  width: calc(400 / var(--sm-base));
  margin: 0 auto calc(16 / var(--sm-base));
  filter: brightness(250%);
}
.publication-form-captcha input[type="text"] {
  display: block;
  width: calc(400 / var(--sm-base));
  margin-top: calc(16 / var(--sm-base));
  padding: calc(12 / var(--sm-base)) calc(10 / var(--sm-base));
  background: #fff;
  border: calc(3 / var(--sm-base)) solid var(--color-border-primary);
  border-radius: calc(8 / var(--sm-base));
}
.publication-form-captcha br {
  display: none;
}
.publication-form-action {
  position: relative;
  margin-top: calc(80 / var(--sm-base));
  text-align: center;
}
.publication-form-button-confirm,
.publication-form-button-send {
  display: inline-block;
  min-width: calc(300 / var(--sm-base));
  background: var(--color-gray-dark);
  border-radius: calc(10 / var(--sm-base));
  padding: calc(24 / var(--sm-base)) calc(40 / var(--sm-base));
  color: #fff;
  font-size: calc(30 / var(--sm-base));
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.publication-form-button-confirm:disabled {
  background: #dedede;
  color: #fff;
  cursor: not-allowed;
}
.publication-form-back-action {
  display: none;
}
.mw_wp_form_preview .publication-form-preview-heading {
  display: block;
  color: var(--color-red);
  font-size: calc(50 / var(--sm-base));
  font-weight: 700;
  line-height: 1.4;
}
.mw_wp_form_preview .publication-form-preview-lead {
  display: block;
  margin-block: calc(16 / var(--sm-base)) calc(48 / var(--sm-base));
}
.mw_wp_form_preview .publication-form-annotation-list + .m-form-row {
  margin-top: calc(60 / var(--sm-base));
}
.mw_wp_form_preview .publication-form-selectbox::after {
  content: none;
}
.mw_wp_form_preview .publication-general-lead,
.mw_wp_form_preview .publication-form-label-annotation,
.mw_wp_form_preview .publication-general-form-annotation-list,
.mw_wp_form_preview .publication-form-annotation-list {
  display: none;
}
.mw_wp_form_preview .publication-form-back-action {
  display: block;
  margin-top: calc(40 / var(--sm-base));
  text-align: center;
}
.mw_wp_form_preview .publication-form-back-action button {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .publication-form-button-confirm:not(:disabled):hover {
    background: var(--color-default);
  }
  .publication-form-button-send:hover {
    background: var(--color-default);
  }
  .mw_wp_form_preview .publication-form-back-action button:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px), print {
  .publication-general-lead {
    margin-bottom: 32px;
  }
  .mw_wp_form_preview .publication-form-annotation-list + .m-form-row {
    margin-top: 28px;
  }
  .publication-form-selectbox::after {
    top: 44%;
    right: 14px;
    width: 9px;
    height: 9px;
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
  .publication-form-selectbox select {
    padding: 5px 7px;
    border-width: 1px;
    border-radius: 4px;
  }
  .publication-form-label-annotation {
    position: relative;
    top: -2px;
    display: inline;
    margin: 0 0 0 5px;
    font-size: 14px;
  }
  .publication-general-form-annotation-list {
    margin: 28px 0 -14px;
  }
  .publication-form-annotation-list {
    margin: 28px 0;
  }
  .publication-form-captcha {
    margin-top: 40px;
    font-size: 16px;
  }
  .publication-form-captcha img {
    width: 200px;
    margin: 0 auto 10px;
  }
  .publication-form-captcha input[type="text"] {
    width: 200px;
    margin: 12px auto 0;
    padding: 5px 7px;
    border-width: 1px;
    border-radius: 4px;
  }
  .publication-form-action {
    margin-top: 40px;
  }
  .publication-form-button-confirm,
  .publication-form-button-send {
    min-width: 150px;
    border-radius: 5px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .mw_wp_form_preview .publication-form-preview-heading {
    font-size: 26px;
  }
  .mw_wp_form_preview .publication-form-preview-lead {
    margin-block: 16px 32px;
  }
  .mw_wp_form_preview .publication-form-back-action {
    margin-top: 20px;
  }
}