@charset "UTF-8";
.font-en {
  font-family: var(--ff-en);
  font-weight: var(--fw-medium); }
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/**
 * for tablet and Pc. large viewport
 */
@custom-media --desktop(min-width: 1280px);
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
:root {
  --white: #fff;
  --black: #2A2D32;
  --gray-100: #FAFAFA;
  --gray-200: #F0F4F4;
  --gray-300: #F5F5F5;
  --blue-100: #A7DAF2;
  --blue-200: #4AACD5;
  --orange: #FFD193;
  --green: #D0F482;
  --info-blue: #4AACD54D;
  --info-orange: #FFD1934D;
  --info-green: #D0F4824D;
  --border-color: #D9D9D9;
  --ff-ja: "Noto Sans JP", sans-serif;
  --ff-en: "Poppins", "Noto Sans JP", sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --side-width: 270px;
  --header-height: 60px;
  --container-size: 52px;
  --rounded-sm: 4px;
  --z-headerMenu: 9;
  --z-sideMenu: 9;
  --z-header: 10;
  --z-loading: 99; }
.arrow-hover .icon-body {
  width: 16px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
.arrow-hover .icon-body.-blank {
    width: 20px; }
.arrow-hover .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  translate: -300%;
  -webkit-transition: translate 0.6s cubic-bezier(0.87, 0, 0.13, 1);
  transition: translate 0.6s cubic-bezier(0.87, 0, 0.13, 1); }
.link-hover {
  position: relative; }
.link-hover .link-hover-deco {
    position: absolute;
    inset: 0;
    background: var(--gray-200);
    width: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, width 0.1s;
    transition: opacity 0.3s, width 0.1s;
    -webkit-transition-delay: 0s, 0.6s;
            transition-delay: 0s, 0.6s;
    z-index: -1; }
.link-hover .link-hover-deco.-black {
      background: var(--black); }
.link-hover .link-hover-deco.-gray {
      background: #707780; }
.link-hover.-edge .link-hover-deco {
    left: -8px; }
.btn-arrow-hover .line::before, .btn-arrow-hover .line::after, .btn-reset .line::before, .btn-reset .line::after, .btn-all-select .line::before, .btn-all-select .line::after {
  content: '';
  background: var(--black);
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s; }
.btn-arrow-hover .line.-top-left::before, .btn-reset .line.-top-left::before, .btn-all-select .line.-top-left::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  -webkit-transform-origin: left;
          transform-origin: left; }
.btn-arrow-hover .line.-top-left::after, .btn-reset .line.-top-left::after, .btn-all-select .line.-top-left::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s; }
.btn-arrow-hover .line.-bottom-right::before, .btn-reset .line.-bottom-right::before, .btn-all-select .line.-bottom-right::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  -webkit-transform-origin: right;
          transform-origin: right; }
.btn-arrow-hover .line.-bottom-right::after, .btn-reset .line.-bottom-right::after, .btn-all-select .line.-bottom-right::after {
  width: 1px;
  height: 100%;
  bottom: 0;
  right: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s; }
.hover-img-scale img {
  -webkit-transition: scale 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: scale 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.interview-list .hover-img-scale img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}
[v-cloak] {
  display: none; }
html {
  font-size: 62.5%;
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth; }
body {
  font-family: var(--ff-ja);
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--black);
  background: var(--white);
  font-weight: var(--fw-normal);
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none; }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
  margin: 0;
  padding: 0; }
ul, ol, li {
  padding: 0;
  margin: 0; }
li {
  list-style: none; }
img {
  /*width: 100%;*/
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }
figure {
  margin: 0;
  padding: 0; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type="number"] {
  -moz-appearance: textfield; }
.l-main {
  line-height: 1.6; }
button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none; }
summary::-webkit-details-marker {
  display: none; }
summary {
  display: block; }
[x-cloak] {
  display: none !important; }
.l-container {
  margin-left: var(--side-width);
  padding-inline: var(--container-size); }
.l-container__wrap {
    max-width: 1226px;
    position: relative; }
.l-container__inner {
    max-width: 1280px;
    margin-inline: auto; }
.l-container__half-inner {
    max-width: 590px; }
.l-container__half-inner.-left-auto {
      margin-left: auto; }
.c-bread__nav + .l-footer {
  margin-top: 20px; }
.l-footer {
  margin-top: 20px; }
.l-footer__nav {
    margin-inline: calc(var(--container-size) * -1);
    padding-inline: var(--container-size);
    padding-block: 28px 22px;
    background: #393939;
    color: #fff; }
.l-footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
.l-footer__nav-item:first-child .l-footer__nav-link {
    padding-left: 0; }
.l-footer__nav-item:last-child .l-footer__nav-link {
    padding-right: 0; }
.l-footer__nav-item:last-child .l-footer__nav-link::after {
      display: none; }
.l-footer__nav-link {
    padding-inline: 20px;
    font-size: 1.4rem;
    position: relative; }
.l-footer__nav-link::after {
      content: '';
      display: block;
      width: 1px;
      height: 15px;
      background: #fff;
      position: absolute;
      top: 50%;
      translate: 0 -50%;
      right: 0; }
.l-footer__copy-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-block: 30px; }
.l-footer__copy {
    font-size: 1rem;
    line-height: 1.4; }
.l-footer__copy-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 26px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
.l-footer__copy-img-wrap:nth-child(2) .l-footer__copy-img {
      width: 30px; }
.l-footer__copy-img-wrap:last-child {
      gap: 16px; }
.l-footer__copy-img-wrap:last-child .l-footer__copy-img:nth-child(2) {
        width: 75px; }
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header); }
.l-header__logo {
    width: 110px; }
.l-header__text {
    font-size: 1.5rem;
    padding: 6px 12px;
    border: 1px solid #000;
    background: #fff;
    text-align: center; }
.l-header .js-header-hide-item {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s; }
.l-header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    position: absolute;
    right: 0;
    background: #fff;
    padding-left: 15px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s; }
.l-header__wrap.js-hidden {
      background: transparent; }
.l-header__wrap.js-hidden .js-header-hide-item {
        opacity: 0; }
.l-header__trigger {
    width: var(--header-height);
    height: var(--header-height);
    background: #F4F3F2;
    border-bottom-left-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px; }
.l-header__trigger span {
      width: 30px;
      height: 2px;
      background: var(--black); }
.l-header__menu {
    width: calc(100% - var(--side-width));
    height: calc(100svh - var(--header-height));
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: var(--header-height);
    left: var(--side-width);
    background: var(--gray-200);
    padding: 46px 52px 40px;
    overflow-y: auto;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
.l-header__menu-bg {
    position: fixed;
    width: calc(100% - var(--side-width));
    height: 100vh;
    background: rgba(42, 45, 50, 0.6);
    top: 0;
    left: var(--side-width);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s; }
.l-header__menu-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
    row-gap: 50px;
    position: relative;
    z-index: var(--z-headerMenu); }
.l-header__menu-list {
    width: 200px;
    margin-left: 0;
    margin-bottom: 0; }
.l-header__menu-list > * + * .l-header__menu-link {
      padding-top: 16px; }
.l-header__menu-list li:nth-child(n+3) {
      margin-top: 6px; }
.l-header__menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    padding-bottom: 16px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1; }
.l-header__menu-link.-main {
      font-size: 1.6rem;
      font-weight: var(--fw-bold);
      margin-bottom: 24px;
      border-bottom: 1px solid var(--border-color); }
.l-header__menu-link.-main .icon-body {
        width: 20px;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
.l-header__menu-link.-main .icon-wrap {
        translate: -292%; }
.l-header__menu-link.-sub {
      padding: 8px;
      background: #fff;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
.l-header__menu-link.-sub .icon {
        width: 6px;
        height: 6px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        rotate: 45deg;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
.l-header__menu-link.-sub .icon-wrap {
        translate: -24px; }
.l-header__menu-link .icon-body {
      margin-left: auto;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
.l-header__menu-list-details {
    font-size: 1.2rem; }
.l-header__menu-list-details[open] > .l-header__menu-list-summary .icon.-plus {
      display: none; }
.l-header__menu-list-details[open] > .l-header__menu-list-summary .icon.-minus {
      display: -ms-grid;
      display: grid; }
.l-header__menu-list-summary {
    background: #fff;
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer; }
.l-header__menu-list-summary.-first {
      background: #eee; }
.l-header__menu-list-summary.-second {
      background: #DBDBDB; }
.l-header__menu-list-summary .icon {
      display: block;
      position: relative;
      width: 8px;
      height: 8px;
      display: -ms-grid;
      display: grid;
      place-items: center; }
.l-header__menu-list-summary .icon.-minus {
        display: none; }
.l-header__menu-list-details-body {
    display: block;
    margin-top: 6px;
    margin-left: 8px; }
.l-header__menu-list-details-body > * + * {
      margin-top: 6px; }
.l-header__menu-list-details-body .l-side__menu-link {
      position: relative;
      border-left: 0; }
.l-header__menu-list-details-body .l-side__menu-link .icon {
        width: 6px;
        height: 6px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        rotate: 45deg;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
.l-header__menu-list-details-body .l-side__menu-link .icon-wrap {
        translate: -24px; }
.l-header__menu-list-details-body .l-side__menu-link.-orange, .l-header__menu-list-details-body .l-side__menu-link.-blue {
        border-width: 4px !important; }
.l-header__menu-list-details-body .l-side__menu-link.-first {
        background: #eee; }
.l-header__menu-list-details-body .l-side__menu-link.-second {
        background: #DBDBDB; }
.l-header__menu-list-details-body .l-side__menu-link.-third {
        background: #C6C6C6; }
.l-header__menu-icon {
    width: 30px; }
.l-header.js-active .l-header__trigger {
  border-bottom-left-radius: 0px; }
.l-header.js-active .l-header__trigger span {
    rotate: 35deg;
    translate: 0px 6px; }
.l-header.js-active .l-header__trigger span:nth-child(2) {
      display: none; }
.l-header.js-active .l-header__trigger span:nth-child(3) {
      rotate: -35deg;
      -webkit-transform-origin: left;
              transform-origin: left;
      translate: 2px 2px; }
.l-header.js-active .l-header__menu {
  opacity: 1;
  visibility: visible; }
.l-header.js-active .l-header__menu-bg {
  opacity: 1;
  visibility: visible; }
.l-side {
  width: var(--side-width);
  height: 100%;
  border-right: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-sideMenu); }
.l-side.js-active .l-side__bg {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s; }
.l-side__bg {
    width: calc(100vw - var(--side-width));
    height: 100%;
    background: rgba(42, 45, 50, 0.6);
    position: absolute;
    left: var(--side-width);
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: opacity 0.8s, visibility 0.8s;
    transition: opacity 0.8s, visibility 0.8s; }
.l-side__inner {
    height: 100%;
    padding: 24px 24px 40px 24px;
    overflow-y: auto; }
.l-side__logo {
    width: 191px; }
.l-side__nav-main {
    margin-top: 18px; }
.l-side__nav-main-list, .l-side__nav-sub-list {
    margin-left: 0;
    margin-bottom: 0; }
.l-side__nav-main-item {
    margin-bottom: 0; }
.l-side__nav-main-item:nth-child(2) .l-side__menu-stack {
      width: 200px; }
.l-side__nav-main-link {
    padding-block: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 1fr;
    grid-template-columns: 50px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.5rem;
    font-weight: var(--fw-bold); }
.l-side__nav-main-link.-active {
      background: var(--gray-200); }
.l-side__nav-sub {
    margin-top: 16px; }
.l-side__nav-sub-list > * + * {
    margin-top: 12px; }
.l-side__nav-sub-link {
    height: 57px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px 1fr;
    grid-template-columns: 40px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px;
    gap: 20px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    line-height: 1.4;
    position: relative; }
.l-side__nav-sub-link.-active {
      background: var(--gray-200); }
.l-side__nav-sub-link::before {
      content: '';
      width: 100%;
      height: 100%;
      background: var(--gray-300);
      position: absolute;
      inset: 0;
      z-index: -2; }
.l-side__nav-sub-icon {
    width: 40px; }
.l-side__nav-sub-icon.-hover {
      display: none; }
.l-side__nav-links {
    margin-top: 24px; }
.l-side__nav-links > * + * {
      margin-top: 16px; }
.l-side__nav-links .c-arrow-link {
      font-size: 1.3rem;
      width: 100%;
      padding-block: 4px; }
.l-side__menu {
    position: fixed;
    top: 0;
    left: var(--side-width);
    background: var(--gray-200);
    max-width: 480px;
    min-width: 305px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0.4s;
    transition: visibility 0.4s; }
.l-side__menu-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 18px; }
.l-side__menu-close::before, .l-side__menu-close::after {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--black);
      position: absolute;
      left: 50%;
      top: 50%;
      translate: -50% -50%; }
.l-side__menu-close::before {
      rotate: 45deg; }
.l-side__menu-close::after {
      rotate: -45deg; }
.l-side__menu-content {
    height: 100vh;
    padding: 24px 24px 48px;
    overflow: auto;
    position: relative; }
.l-side__menu-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px; }
.l-side__menu-heading02 {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px; }
.l-side__menu-heading02 .c-arrow-link {
      gap: 18px; }
.l-side__menu-heading03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    border-left: none; }
.l-side__menu-stack {
    width: calc(50% - 16px); }
.l-side__menu-list > * + * {
    margin-top: 6px; }
.l-side__menu-list .l-header__menu-list-summary {
    padding-block: 4px; }
.l-side__menu-list .l-header__menu-list-details-body .l-side__menu-link::after {
    display: none; }
.l-side__menu-link {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    padding: 4px 4px 4px 6px;
    border-left: 2px solid transparent;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s; }
.l-side__menu-link.-orange {
      border-left: 4px solid var(--orange); }
.l-side__menu-link.-blue {
      border-left: 4px solid var(--blue-100); }
.l-side__menu-link .arrow {
      width: 6px;
      height: 6px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      rotate: -45deg;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
.l-side__menu-link[href$="pdf"] {
      background: #fff;
      padding: 4px 4px 4px 6px;
      margin-right: 0; }
.l-side__search {
    margin-top: 16px;
    position: relative; }
.l-side__search-label {
    display: block;
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    margin-bottom: 4px; }
.l-side__search-input {
    display: block;
    width: 100%;
    border: 1px solid var(--black);
    position: relative;
    background: var(--gray-300);
    padding: 10px;
    padding-right: 35px;
    font-size: 1.6rem; }
.l-side__search-btn {
    padding: 6px 8px;
    position: absolute;
    right: 4px;
    top: 28px;
    cursor: pointer; }
.l-side .link-hover:hover img {
  opacity: 1 !important; }
.p-top-pickUp {
  padding-top: 48px; }
.p-top-adaptation {
  margin-top: 80px;
  padding-top: 58px;
  padding-bottom: 120px;
  margin-inline: calc(var(--container-size) * -1);
  padding-inline: var(--container-size);
  position: relative; }
.p-top-adaptation__deco {
    position: absolute;
    top: 0;
    right: 12%; }
.p-top-adaptation__wrap {
    margin-top: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px; }
.p-top-adaptation__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 33px; }
.p-top-adaptation__left-body {
    width: 50%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background: #fff;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60px 1fr;
    grid-template-columns: 60px 1fr;
    padding: 16px 10px 0px 17px;
    grid-column-gap: 8px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px; }
.p-top-adaptation__left-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    font-weight: var(--fw-medium);
    letter-spacing: 0.15em; }
.p-top-adaptation__left-number {
    grid-column: 1 / -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    font-size: 2rem;
    margin-right: 8px; }
.p-top-adaptation__left-number strong {
      font-size: 4rem;
      font-style: italic; }
.p-top-adaptation__left-number .up {
      display: block;
      translate: 0 -4px;
      margin-left: 4px; }
.p-top-adaptation__right-desc {
    line-height: 1.8; }
.p-top-adaptation__right-list {
    margin-top: 32px; }
.p-top-adaptation__right-list > * + * {
      margin-top: 20px; }
.p-top-adaptation__right-item .c-arrow-link {
    padding-left: 22px;
    position: relative; }
.p-top-adaptation__right-item .c-arrow-link::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #4AACD5;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      translate: 0 -50%;
      left: 0; }
/*.p-top-section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 116px; }
.p-top-section-wrap section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 33px;
    padding-block: 24px;
    border-right: 1px solid var(--border-color);
    width: calc(100% / 3);
    -webkit-box-sizing: content-box;
            box-sizing: content-box; }
.p-top-section-wrap section:first-child {
      padding-left: 0px; }
.p-top-section-wrap section:last-child {
      padding-right: 0;
      border: none; }
.p-top-section-wrap section:last-child .c-heading-icon__icon {
        translate: -8px 0; }
.p-top-section-wrap .desc {
    margin-top: 40px;
    margin-bottom: 44px; }
.p-top-section-wrap .stack {
    margin-top: auto; }
.p-top-section-wrap .stack > * + * {
      margin-top: 21px; }*/
.p-top-latest-event-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-inline: calc(var(--container-size) * -1); }
.p-subpage .c-latest,
.p-subpage .c-event {
  --padding-top: 64px; }
.p-subpage__content {
  max-width: 980px;
  margin-inline: auto; }
.p-subpage__content > * + * {
    margin-top: 24px; }
.p-subpage-kv {
  position: relative; }
.p-subpage-kv__bg {
    margin-inline: calc(var(--container-size) * -1); }
.p-subpage-kv__bg img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
.p-subpage-kv__deco {
    position: absolute;
    right: 5%;
    bottom: -80px; }
.p-subpage-top__heading-wrap {
  margin-bottom: 32px; }
.p-subpage-top__heading02 {
  font-size: 3.7rem;
  font-weight: var(--fw-bold); }
.p-subpage-top__desc {
  margin-top: 24px;
  font-size: 1.4rem; }
.p-subpage.p-local .p-subpage-section + .p-subpage-section {
  margin-top: 48px; }
.p-subpage-section {
  margin-top: 120px; }
.p-subpage-section + .p-subpage-section {
    margin-top: 0; }
.p-subpage__body {
  position: relative;
  margin-top: var(--header-height); }
.p-subpage__body > * + * {
    margin-top: 24px; }
.p-subpage__body h1 {
    font-size: 3.7rem; }
.p-subpage__body h2 {
    font-size: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-top: 56px; }
.p-subpage__body h2::before {
      content: '';
      width: 9px;
      height: 30px;
      background: #000; }
.p-subpage__body h3 {
    font-size: 2.6rem;
    margin-top: 56px; }
.p-subpage__body h4 {
    font-size: 2.4rem;
    margin-top: 56px; }
.p-subpage__body h5 {
    font-size: 2rem;
    margin-top: 56px; }
.p-subpage__body h6 {
    font-size: 1.6rem;
    margin-top: 56px; }
.p-subpage__body p {
    line-height: 2; }
.p-subpage__body ul {
    margin-left: 1em; }
.p-subpage__body ul > * + * {
      margin-top: 8px; }
.p-subpage__body li {
    list-style: inherit; }
.p-subpage__body figure {
    margin-top: 54px;
    max-width: 534px;
    margin-inline: auto; }
.p-subpage__body figure:has(> table) {
      margin-top: 32px;
      max-width: 556px; }
.p-subpage__body figure.-clear {
      margin-top: 0;
      max-width: unset;
      margin-inline: 0; }
.p-subpage__body figure figcaption {
      text-align: center;
      font-size: 1.4rem;
      margin-top: 8px; }
.p-subpage__body hr {
    border: none;
    border-top: 1px solid #D9D9D9; }
.p-subpage__body hr.dot {
      background-image: repeating-linear-gradient(90deg, #D9D9D9, #D9D9D9 4px, transparent 4px, transparent 9px);
      background-position: left top;
      background-repeat: repeat-x;
      background-size: 100% 1px;
      border: none;
      height: 1px; }
.p-subpage__body table, .p-subpage__body td, .p-subpage__body th {
    border: 1px solid #000;
    border-collapse: collapse; }
.p-subpage__body table {
    margin-inline: auto; }
.p-subpage__body th {
    background: var(--gray-200); }
.p-subpage__body td, .p-subpage__body th {
    padding: 10px 60px; }
.p-subpage__body .c-category__wrap {
    margin-bottom: 8px; }
.p-subpage__body .c-category__wrap > * + * {
      padding-left: 20px; }
.p-subpage__body .c-category__item {
    padding-right: 20px;
    border-right: 1px solid #000; }
.p-subpage__body .c-category__item:last-child {
      padding-right: 0;
      border-right: none; }
.p-subpage__body .header-wrap {
    display: -ms-grid;
    display: grid;
    margin-bottom: 32px; }
.p-subpage__body .header-wrap:has(> .header-right) {
      -ms-grid-columns: 1fr 140px;
      grid-template-columns: 1fr 140px; }
.p-subpage__body .header-wrap .header-desc {
      grid-column: 1 / -1;
      font-size: 1.4rem; }
.p-subpage__body .header-wrap .btn-arrow {
      padding: 11px 9px;
      font-size: 1.4rem;
      -webkit-column-gap: 20px;
         -moz-column-gap: 20px;
              column-gap: 20px; }
.p-subpage__body .note-stack {
    margin-top: 50px; }
.p-subpage__body .note-stack .note {
      font-size: 1.2rem; }
.p-subpage__body .list-body {
    margin-top: 50px;
    padding: 30px;
    background: var(--gray-100); }
.p-subpage__body .list-body.-inner {
      margin-top: 0;
      padding: 0;
      background: unset; }
.p-subpage__body .list-body ul > * + * {
      margin-top: 8px; }
.p-subpage__body .list-body ul > ul {
      padding-left: 24px; }
.p-subpage__body .list-body li {
      list-style: inherit; }
.p-subpage__body .list-body a {
      color: #2072E2;
      text-decoration: underline; }
.p-subpage__body .btn-stack {
    max-width: 361px;
    margin-inline: auto; }
.p-subpage__body .btn-stack > * + * {
      margin-top: 30px; }
.p-subpage__body .c-link-blue {
    display: inline-block; }
.p-subpage__body .blank-link, .p-subpage__body .pdf-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
.p-subpage__body .blank-link svg, .p-subpage__body .pdf-link svg {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
.p-subpage__body .blank-link svg path, .p-subpage__body .pdf-link svg path {
        fill: #2072E2; }
.p-subpage__body .radio-btn label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    cursor: pointer; }
.p-subpage__body .radio-btn input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
.p-subpage__body .radio-btn input[type="radio"]:checked:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--black); }
.p-subpage__body .c-subpage-toc-link {
    background: unset;
    padding-block: 0; }
.p-subpage__body .c-youtube {
    max-width: 458px;
    margin-inline: auto; }
.p-subpage__body .wp-block-image figure {
    margin-top: 54px !important; }
.l-main.p-details .l-container__wrap {
  max-width: unset; }
.l-main.p-details .c-bread__nav {
  max-width: 1330px; }
.l-main.p-details .header-wrap,
.l-main.p-details .note-stack,
.l-main.p-details .c-blockquote,
.l-main.p-details .p-articles__body {
  max-width: 1226px; }
.p-local__wrap {
  border-bottom: 1px solid var(--border-color); }
.p-local__wrap:last-child {
    border-bottom: none; }
.p-local__pic img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }
.p-local__body {
  padding: 40px 52px; }
.p-local__heading04.c-border-left-heading {
  gap: 8px; }
.p-local__heading04.c-border-left-heading::before {
    width: 8px;
    height: 16px; }
.p-local__heading05 {
  margin-top: 8px;
  padding-block: 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.6rem;
  font-weight: var(--fw-bold); }
.p-local__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 1;
  background-image: none !important; }
.p-local__link.-sub {
    background: var(--gray-100);
    background: #eee;
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    padding-block: 4px;
    margin-block: 4px;
    border-bottom: none;
    gap: 20px; }
.p-local__link.-list {
    font-size: 1.2rem;
    -ms-grid-columns: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start; }
.p-local__link.-list .icon-body {
      margin-left: auto; }
.p-local__link.-inside-link {
    background: var(--gray-100);
    font-weight: var(--fw-semibold);
    padding-block: 4px;
    margin-block: 4px;
    border-bottom: none;
    display: block; }
.p-local__link.-inside-link a {
      text-decoration: underline; }
.p-local__link .arrow {
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    rotate: -45deg;
    -ms-grid-column-align: end;
        justify-self: end; }
.p-local__link .icon-wrap {
    translate: -26px; }
.p-local__list-title {
  font-size: 1.4rem;
  margin-top: 12px; }
.p-local__list-title + ul {
    margin-bottom: 12px; }
.p-local__desc {
  font-size: 1.4rem;
  margin-top: 8px; }
.p-articles .c-heading-subpage__title.-details {
  font-size: 3.8rem; }
.p-articles__section {
  padding-top: 82px;
  margin-bottom: 120px;
  padding-inline: var(--container-size); }
.p-articles__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  padding-bottom: 24px;
  overflow-x: auto; }
.p-articles__tab-button {
  --articles-tab-color: var(--black);
  padding: 8px 30px;
  border: 2px solid var(--articles-tab-color);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
  font-size: 1.8rem;
  position: relative; }
.p-articles__tab-button:nth-child(2) {
    --articles-tab-color: #CC6975; }
.p-articles__tab-button:nth-child(3) {
    --articles-tab-color: #57A6BA; }
.p-articles__tab-button:nth-child(4) {
    --articles-tab-color: #507ABB; }
.p-articles__tab-button:nth-child(5) {
    --articles-tab-color: #ACBB3A; }
.p-articles__tab-button.-active {
    background: var(--articles-tab-color);
    color: #fff;
    pointer-events: none; }
.p-articles__body {
  margin-top: 27px;
  padding-top: 40px;
  background: #fff; }
.p-articles__inner {
  margin-inline: var(--container-size);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  grid-row-gap: 40px;
  row-gap: 40px; }
.p-adaptation-examples__section {
  margin-top: 80px; }
.p-adaptation-examples__section.c-bg-black {
    padding-block: 40px 68px; }
.p-adaptation-examples__section.c-bg-gray100 {
    padding-block: 56px 80px; }
.p-adaptation-examples__section .btn-arrow.-bg-white {
    text-align: center;
    height: 63px;
    padding-block: 8px;
    font-size: 1.4rem; }
.p-adaptation-examples__section .btn-arrow.-bg-white .line {
      display: none; }
.p-adaptation-examples__section .stack > * + * {
    margin-top: 80px; }
.p-adaptation-examples__section .stack h2 {
    color: #fff;
    font-size: 1.8rem;
    text-align: center; }
.p-adaptation-examples__section .stack p {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 16px;
    text-align: center; }
.p-adaptation-examples__section .stack .btn-wrap {
    width: 163px;
    margin-inline: auto;
    color: #fff;
    margin-top: 24px; }
.p-adaptation-examples__section .stack .btn-wrap svg path {
      stroke: #fff; }
.p-adaptation-examples__stack {
  margin-top: 48px; }
.p-adaptation-examples__stack > * + * {
    margin-top: 64px; }
.p-adaptation-examples__content .btn-wrap {
  margin-top: 24px; }
.p-adaptation-examples__link-body .p-local__link {
  font-size: 1.6rem; }
.p-adaptation-examples__desc {
  font-size: 1.4rem;
  margin-top: 16px; }
.p-adaptation-examples__change-data-content {
  display: -ms-grid;
  display: grid;
  margin-top: 24px;
  opacity: 0; }
.p-adaptation-examples__info-link {
  background: var(--gray-100);
  border-radius: var(--rounded-sm);
  position: relative; }
.p-adaptation-examples__info-link.masonry-item {
    position: absolute; }
.p-adaptation-examples__info-link-tag {
  font-size: 1.2rem;
  background: #E2E2E2;
  border-top-right-radius: var(--rounded-sm);
  padding: 4px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }
.p-adaptation-examples__info-link-img {
  display: block;
  border-radius: var(--rounded-sm);
  overflow: hidden; }
.p-adaptation-examples__info-link-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  padding: 16px 16px 32px; }
.p-adaptation-examples__info-link-title {
  font-size: 2.4rem;
  font-weight: var(--fw-bold); }
.p-adaptation-examples__info-link-desc {
  font-size: 1.4rem; }
.p-adaptation-examples__information {
  display: -ms-grid;
  display: grid;
  opacity: 0; }
.p-adaptation-examples__information .masonry-item {
    position: absolute; }
.c-accordion[open] .c-accordion__title .icon::after {
  rotate: 90deg; }
.c-accordion__title {
  --icon-size: 20px;
  background: var(--gray-100);
  padding: 16px 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--icon-size);
  grid-template-columns: 1fr var(--icon-size);
  grid-column-gap: 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: 1.8rem;
  font-weight: var(--fw-bold); }
.c-accordion__title .icon {
    position: relative; }
.c-accordion__title .icon::before, .c-accordion__title .icon::after {
      content: '';
      display: block;
      background: #000;
      position: absolute;
      left: 50%;
      top: 50%;
      translate: -50% -50%; }
.c-accordion__title .icon::before {
      width: var(--icon-size);
      height: 2px; }
.c-accordion__title .icon::after {
      width: 2px;
      height: var(--icon-size);
      -webkit-transition: rotate .3s;
      transition: rotate .3s; }
.c-accordion__body {
  margin-top: 24px; }
.c-accordion__body ul > * + * {
    margin-top: 8px; }
.c-accordion__body .search-icon {
    display: inline-block;
    margin-left: 10px;
    translate: 0px 4px; }
.c-accordion.-filter .c-accordion__body {
  margin-inline: 24px; }
.c-accordion.-filter ul > * + * {
  margin-top: 0; }
/*.c-banner-content {
  margin-top: 95px; }
.c-banner-content .c-banner-content__left {
    background: #DFEE67; }
.c-banner-content + .c-banner-content .c-banner-content__left {
    background: #A7DAF2; }
.c-banner-content + .c-banner-content .c-banner-content__right::before {
    background: -webkit-gradient(linear, right top, left top, from(transparent), to(#A7DAF2));
    background: linear-gradient(to left, transparent, #A7DAF2); }
.c-banner-content__link {
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 169px;
    grid-template-columns: 1fr 169px;
    border-radius: var(--rounded-sm);
    overflow: hidden; }
.c-banner-content__left {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 47px 1fr;
    grid-template-columns: 47px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-column-gap: 24px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    grid-row-gap: 10px;
    row-gap: 10px;
    padding: 21px 14px 32px 24px; }
.c-banner-content__title {
    font-size: 2.4rem; }
.c-banner-content__desc {
    grid-column: 1 / -1;
    font-size: 1.6rem; }
.c-banner-content__right {
    position: relative;
    overflow: hidden;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s; }
.c-banner-content__right img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
.c-banner-content__right::before {
      content: '';
      width: 125px;
      height: 100%;
      background: -webkit-gradient(linear, right top, left top, from(transparent), to(#DFEE67));
      background: linear-gradient(to left, transparent, #DFEE67);
      position: absolute;
      top: 0;
      left: 0; }*/
.c-batch {
  display: inline-block;
  font-size: 1.2rem;
  font-family: var(--ff-en);
  font-weight: var(--fw-normal);
  color: #fff;
  text-align: center;
  background: var(--black);
  border-radius: 2px;
  padding: 0px 5px 0px 7px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content; }
.c-blockquote {
  background: var(--gray-200);
  margin-top: 40px;
  margin-inline: unset;
  padding: 30px; }
.c-blockquote.-term {
    background: var(--gray-100);
    padding: 32px 40px 48px; }
.c-blockquote.-term > * + * {
      margin-top: 16px; }
.c-blockquote.-term .c-blockquote__title {
      font-weight: var(--fw-bold);
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border-color); }
.c-blockquote.-term .c-blockquote__title-en {
      font-family: var(--ff-en); }
.c-blockquote.-term .c-blockquote__link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 16px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
.c-blockquote__title {
    font-size: 1.8rem; }
.c-blockquote__list {
    margin-top: 24px;
    margin-left: 8px; }
.c-blockquote__list > * + * {
      margin-top: 4px; }
.c-blockquote__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
.c-blockquote__item::before {
      content: '';
      width: 4px;
      height: 4px;
      background: var(--black);
      border-radius: 50%;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
.c-bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 14px; }
.c-bread li {
    margin-top: 0;
    margin-bottom: 0 !important;
    font-size: 1.4rem;
    font-weight: var(--fw-bold); }
.c-bread__nav {
    margin-top: 80px; }
.c-bread__nav.-top {
      background: var(--gray-200);
      margin-inline: calc(var(--container-size) * -1);
      padding-inline: var(--container-size);
      padding-block: 6px; }
.c-bread__nav.-top .c-bread {
        margin-bottom: 0; }
.c-bread__link, .c-bread__text, .c-bread__arrow {
    font-size: 1.4rem;
    font-weight: var(--fw-bold); }
.c-bread__link {
    text-decoration: underline; }
.c-bread__arrow {
    margin-inline: 8px; }
.c-bread li:has(.c-bread__text > .c-bread__link) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.btn-arrow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 14px;
  position: relative;
  border: 1px solid var(--border-color);
  font-weight: var(--fw-bold);
  z-index: 1; }
.btn-arrow::before {
    content: ''; }
.btn-arrow .icon-body {
    -ms-grid-column-align: end;
        justify-self: end;
    margin-top: -6px; }
.btn-arrow.-en-small {
    font-size: 1.4rem;
    font-family: var(--ff-en);
    padding: 11px 16px;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px; }
.btn-arrow.-en-small::before {
      display: none; }
.btn-arrow.-bg-white {
    background: #fff;
    color: #000;
    border: none; }
.btn-arrow.-link-mediam {
    padding-block: 12px;
    font-size: 1.4rem; }
.btn-arrow.-link-small {
    padding-block: 8px;
    font-size: 1.4rem; }
.btn-arrow.-small {
    font-size: 1.4rem;
    padding: 11px 16px;
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px; }
.btn-download {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 8px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  padding-inline: 14px;
  position: relative;
  border: 1px solid var(--border-color);
  height: 70px;
  text-align: center;
  font-weight: var(--fw-bold);
  z-index: 1; }
.btn-download.-small {
    width: 143px;
    height: 43px;
    font-size: 1.4rem;
    padding-inline: 12px;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto; }
.btn-download.-small::before {
      display: none; }
.btn-download.-small svg {
      width: 16px;
      height: 16px;
      margin-top: 8px; }
.btn-download::before {
    content: ''; }
.btn-download .icon-body {
    -ms-grid-column-align: end;
        justify-self: end; }
.btn-reset {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-column-gap: 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 27px;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  z-index: 1;
  color: var(--black) !important; }
.btn-reset .icon {
    width: 11px;
    height: 11px;
    position: relative; }
.btn-reset .icon::before, .btn-reset .icon::after {
      content: '';
      display: block;
      width: 11px;
      height: 1px;
      background: var(--black);
      -webkit-transform-origin: center;
              transform-origin: center;
      position: absolute;
      left: 50%;
      top: 50%;
      translate: -50% -50%; }
.btn-reset .icon::before {
      rotate: 45deg; }
.btn-reset .icon::after {
      rotate: -45deg; }
.btn-all-select {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  z-index: 1;
  color: var(--black) !important; }
.btn-all-select::before, .btn-all-select::after {
    content: ''; }
.btn-keyword {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  padding: 11px 8px;
  grid-column-gap: 14px;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  position: relative;
  border: 1px solid var(--border-color);
  font-weight: var(--fw-bold);
  z-index: 1; }
.btn-keyword::after {
    content: ''; }
.btn-keyword .icon-body {
    translate: 0 3px; }
.c-top-button {
  width: 52px;
  height: 52px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  left: 100%;
  bottom: 40px;
  z-index: 8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0; }
.c-top-button.is-show {
    opacity: 1; }
.c-top-button::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    rotate: -45deg;
    translate: 0 2px;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s; }
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 40px;
  border: 1px solid var(--black);
  font-weight: var(--fw-bold);
  height: 70px;
  position: relative;
  text-align: center;
  color: var(--black) !important; }
.c-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    background: var(--gray-200);
    -webkit-transition: opacity 0.3s, width 0.1s;
    transition: opacity 0.3s, width 0.1s;
    -webkit-transition-delay: 0s, 0.6s;
            transition-delay: 0s, 0.6s;
    z-index: -1; }
.c-btn::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("../images/common/arrow.svg");
    background-size: 16px 16px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 14px; }
.c-btn.-download::after {
    width: 21px;
    height: 21px;
    background-image: url(../images/common/download.svg);
    background-size: 21px 21px; }
.c-btn.-link-mediam {
    height: 48px;
    font-size: 1.4rem; }
.c-btn.-link-more {
    height: auto;
    padding: 11px 16px;
    font-size: 1.4rem;
    font-family: var(--ff-en);
    font-weight: var(--fw-medium); }
.c-btn.-link-more span {
      width: auto; }
.c-btn.-link-more::after {
      position: static;
      translate: 0 0;
      margin-left: 8px; }
.c-btn.-link-small {
    height: auto;
    padding: 11px 16px;
    font-size: 1.4rem;
    min-width: 128px; }
.c-btn.-link-small span {
      width: auto; }
.c-btn[target=_blank]::after {
    width: 21px;
    height: 21px;
    background-image: url(../images/common/icon-blank.svg);
    background-size: 21px 21px; }
.btn-wrap {
  display: -ms-grid;
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin-left: 0 !important; }
.btn-wrap li {
    margin-bottom: 0;
    list-style: none !important; }
.c-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
.c-card__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    grid-row-gap: 40px;
    row-gap: 40px; }
.c-card__figure {
    max-width: 200px;
    height: 215px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    margin-inline: auto; }
.c-card__img {
    overflow: hidden;
    max-height: 215px; }
.c-card__body-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px;
    grid-template-columns: 1fr 60px;
    grid-column-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px; }
.c-card__body {
    margin-top: 24px; }
.c-card__title {
    font-size: 2.4rem;
    font-weight: var(--fw-bold);
    color: var(--black); }
.c-card__desc {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 24px; }
.c-card__list {
    margin-bottom: 24px; }
.c-card__list > * + * {
      margin-top: 8px; }
.c-card__list a {
      font-size: 1.4rem; }
.c-card__btn-wrap {
    margin-top: auto;
    max-width: 163px; }
.c-card__time-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4px;
    color: var(--black); }
.c-card__time {
    font-size: 1.2rem; }
.c-card__time.-modified::after {
      content: '/';
      margin-inline: 4px; }
.c-card__grid {
    display: -ms-grid;
    display: grid; }
.c-card__link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 338px auto;
    grid-template-columns: 338px auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 4px;
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    background: #fff;
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s; }
.c-card__link .arrow {
      width: 6px;
      height: 6px;
      border-right: 1px solid var(--black);
      border-bottom: 1px solid var(--black);
      rotate: -45deg;
      -ms-grid-column-align: end;
          justify-self: end; }
.c-card__link .icon-wrap {
      translate: -26px; }
.c-card[data-card="with-img"] .c-card__body {
    margin-top: 0; }
.c-card[data-card="with-img"] .c-card__batch {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
    background: #E2E2E2;
    padding: 4px 10px;
    z-index: 1; }
.c-card[data-card="with-img"] .c-card__img {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color); }
.c-card[data-card="with-img"] .c-card__img img {
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
.c-card[data-card="with-img"] .c-card__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 12px; }
.c-card[data-card="with-img"] .c-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
.c-card[data-card="with-img"] .c-card__title {
    font-size: 1.6rem; }
.c-card[data-card="with-img"] .c-card__tag {
    color: #fff;
    font-size: 1.2rem;
    padding: 2px 5px;
    background: #727272; }
.c-card[data-card="with-img"] .c-card__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    margin-top: auto; }
.c-card[data-card="with-img"] .c-card__time, .c-card[data-card="with-img"] .c-card__sub {
    font-size: 1.4rem; }
.c-card[data-card="with-img-horizon"] {
    background: var(--gray-100);
    padding: 24px 16px 40px;
    row-gap: 24px; }
.c-card[data-card="with-img-horizon"] .c-card__grid {
      -ms-grid-columns: 145px 1fr;
      grid-template-columns: 145px 1fr;
      -webkit-column-gap: 16px;
         -moz-column-gap: 16px;
              column-gap: 16px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
.c-card[data-card="with-img-horizon"] .c-card__img {
      border-radius: var(--rounded-sm);
      overflow: hidden; }
.c-card[data-card="with-img-horizon"] .c-card__title {
      font-size: 2rem; }
.c-card[data-card="with-img-horizon"] .c-card__desc {
      margin-block: 0; }
.c-card[data-card="with-img-horizon"] .c-card__list {
      margin-top: 16px;
      margin-bottom: 0; }
.c-card[href$="pptx"] {
    background-image: none;
    padding: 0;
    margin-right: 0; }
.c-card-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px; }
.c-card-articles__img {
    border-radius: var(--rounded-sm);
    overflow: hidden; }
.c-card-articles__body > * + * {
    margin-top: 8px; }
.c-card-articles__batch {
    --articles-batch-color: #CC6975;
    font-size: 1.2rem;
    padding: 2px 8px;
    border: 1.5px solid var(--articles-batch-color);
    display: inline-block; }
.c-card-articles__batch.-tekiousaku {
      --articles-batch-color: #57A6BA; }
.c-card-articles__batch.-tekioubusiness {
      --articles-batch-color: #507ABB; }
.c-card-articles__batch.-lccac {
      --articles-batch-color: #ACBB3A; }
.c-card-articles__cap {
    font-size: 1.2rem; }
.c-card-articles__title {
    font-weight: var(--fw-bold); }
.c-card-articles__desc {
    font-size: 1.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; }
.c-card-articles__time-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.c-card-articles__time {
    display: block;
    font-size: 1.2rem; }
.c-card-articles__time.-modified::after {
      content: '/';
      margin-inline: 4px; }
.c-card-latest {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  grid-row-gap: 8px;
  row-gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid var(--border-color); }
.c-card-latest__title {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    font-weight: var(--fw-bold); }
.c-card-event {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 45px;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  grid-row-gap: 8px;
  row-gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid var(--border-color); }
.c-card-event__title {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    font-weight: var(--fw-bold); }
.c-card-event__icon {
    translate: 0 2px; }
.c-card-event__city {
    font-size: 1.4rem; }
.c-card-event__top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
.c-card-event__bottom-wrap {
    grid-column: 1 / -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 27px;
    font-size: 1.2rem; }
.c-card-news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 46px 1fr;
  -ms-grid-columns: max-content 46px 1fr;
  grid-template-columns: -webkit-max-content 46px 1fr;
  grid-template-columns: max-content 46px 1fr;
  padding-block: 20px;
  border-bottom: 1px solid var(--border-color); }
.c-card-news .c-card__time {
    margin-right: 16px; }
.c-card-news__title {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    font-weight: var(--fw-bold); }
.c-card-news__body {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    margin-left: 33px; }
.c-card-news .c-card__desc {
    font-size: 1.4rem;
    margin-top: 16px; }
.c-card.-link .c-card__img {
  overflow: hidden; }
.c-card.-link .c-card__img img {
    -webkit-transition: scale 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: scale 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
aside .c-card-articles__img {
  /*max-width: 200px;*/
  height: 215px;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  place-items: center; }
.c-event {
  --padding-top: 115px;
  --padding-bottom: 70px;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  padding-inline: var(--container-size);
  position: relative; }
.c-event__deco {
    position: absolute;
    bottom: -60px;
    right: 16%; }
.c-event .stack {
    margin-top: 10px; }
.c-event .btn-wrap {
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
.c-filter__stack > * + * {
  margin-top: 32px; }
.c-filter__title {
  font-size: 1.8rem;
  font-weight: var(--fw-bold); }
.c-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 24px;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px; }
.c-filter__item {
  white-space: nowrap;
  font-size: 1.4rem;
  list-style: none !important;
  margin-block: 0 !important; }
.c-filter__item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    cursor: pointer; }
.c-filter__item label.is-disable {
      pointer-events: none;
      opacity: 0.5; }
.c-filter__item input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
.c-filter__btn-wrap {
  margin-top: 24px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px; }
.c-filter__btn-wrap.-add-note {
    max-width: unset;
    width: 100%;
    margin-inline: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.c-filter__btn-wrap.-add-note p {
      font-size: 1.2rem;
      margin-left: auto; }
.c-filter__select {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: auto;
  padding: 12px 36px 12px 16px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }
.c-filter__text {
  font-size: 1.8rem;
  font-weight: 700;
  display: none;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px; }
.c-filter__text.-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.c-filter__count-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
.c-filter-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0; }
.c-filter-col2 h4 {
  width: 160px;
  text-align: right;
  padding-right: 20px;
  color: #666; }
.c-filter-col2 .c-filter__list {
  width: calc(100% - 160px);
  margin-top: 0; }
.c-filter-col2 .c-filter__list label {
    margin-top: 0; }
.c-filter-col2 .c-filter__list label.fw-bold {
      font-weight: 700; }
.c-filter-col2 .c-filter__list label.is-disable {
      pointer-events: none;
      opacity: 0.5; }
.c-filter-col2 .c-filter__list.-measures {
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
.c-filter-col2 .c-filter__list.-measures li.area {
      width: 202px; }
.c-filter-col2 .c-filter__list.-measures .c-filter__list:not(:has(> li)) {
      display: none; }
.c-grid-cols-2 .c-flex.-horizon-card {
  padding-inline: 0;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px; }
.c-grid-cols-2 .c-flex.-horizon-card .c-flex__left {
    width: 53%; }
.c-grid-cols-2 .c-flex.-horizon-card .c-flex__right {
    width: calc(47% - 16px); }
.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.c-flex.-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
.c-flex.-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
.c-flex.-item-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.c-flex.-horizon-card {
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
    padding-inline: 40px; }
.c-flex.-horizon-card.c-bg-gray100 {
      padding-block: 40px 48px; }
.c-flex.-horizon-card.-reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
.c-flex.-horizon-card.-limit {
      max-width: 560px;
      margin-inline: auto;
      -webkit-column-gap: 40px;
         -moz-column-gap: 40px;
              column-gap: 40px; }
.c-flex.-horizon-card .c-flex__title {
      font-size: 1.8rem; }
.c-flex.-horizon-card .stack > * + * {
      margin-top: 24px; }
.c-flex.-horizon-card .stack.-mt-16 > * + * {
      margin-top: 16px; }
.c-flex.-horizon-card .btn-stack {
      margin-left: 0; }
.c-flex.-horizon-card .btn-stack > * + * {
        margin-top: 24px; }
.c-grid-cols-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr); }
.c-grid-cols-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr); }
.c-heading-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px; }
.c-heading-inline.-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 8px; }
.c-heading-inline__title {
    font-size: 3.7rem;
    font-weight: var(--fw-bold); }
.c-heading-inline__sub {
    font-size: 1.7rem;
    text-transform: uppercase; }
.c-heading-block__title {
  font-size: 3.7rem;
  font-weight: var(--fw-bold);
  margin-bottom: 8px; }
.c-heading-block__sub {
  font-size: 1.7rem; }
.c-heading-block .-blue-200 {
  color: var(--blue-200); }
.c-heading-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 46px; }
.c-heading-icon__title {
    font-size: 2.4rem;
    line-height: 1.5; }
.c-heading-icon__icon {
    width: 74px; }
.c-heading-subpage {
  --bevel: 20px;
  --calc-bevel: calc(100% - var(--bevel));
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 66px 1fr;
  grid-template-columns: 66px 1fr;
  grid-column-gap: 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  grid-row-gap: 8px;
  row-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: -43px;
  background: #fff;
  padding: 24px 32px 24px 42px;
  -webkit-clip-path: polygon(0 0, var(--calc-bevel) 0, 100% var(--bevel), 100% 100%, 0 100%);
          clip-path: polygon(0 0, var(--calc-bevel) 0, 100% var(--bevel), 100% 100%, 0 100%); }
.c-heading-subpage.-details {
    padding-inline: 40px; }
.c-heading-subpage__title {
    grid-column: 1 / -1;
    font-size: 3.4rem;
    line-height: 1.3; }
.c-heading-subpage__title.-details {
      grid-column: 1 / -1;
      font-size: 4rem; }
.c-heading-subpage__icon {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2; }
.c-heading-subpage__sub {
    grid-column: 1 / -1;
    font-size: 1.7rem;
    text-transform: uppercase; }
.c-heading-subpage__sub.-details {
      font-size: 2.4rem; }
.c-border-left-heading {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px; }
.c-border-left-heading::before {
    content: '';
    width: 9px;
    height: 30px;
    background: var(--black); }
.c-local-heading {
  padding-block: 24px; }
.c-local-heading__wrap {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 80px;
    margin-inline: var(--container-size); }
.c-local-heading__hgroup {
    -ms-grid-columns: 30px 1fr;
    grid-template-columns: 30px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 8px; }
.c-local-heading__top-link {
    grid-column: 1 / -1;
    padding: 0 6px;
    display: inline-block;
    position: relative;
    z-index: 1; }
.c-local-heading__top-link .arrow {
      margin-left: 16px;
      display: inline-block;
      translate: 0 -3px; }
.c-local-heading__top-link .arrow svg path {
        stroke: currentColor; }
.c-local-heading__top-link .hover-deco {
      position: absolute;
      top: 0;
      left: -8px;
      background: #fff;
      width: 0;
      height: 100%;
      opacity: 0;
      -webkit-transition: opacity 0.3s, width 0.2s;
      transition: opacity 0.3s, width 0.2s;
      -webkit-transition-delay: 0s, 0.6s;
              transition-delay: 0s, 0.6s;
      z-index: -1; }
.c-local-heading .number {
    font-size: 2.4rem;
    font-weight: var(--fw-bold);
    margin-right: 16px; }
.c-local-heading__title {
    font-size: 2.4rem;
    position: relative;
    z-index: 1; }
.c-local-heading__sub {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    margin-top: 16px; }
.c-local-heading__links {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
.c-local-heading__links > * + * {
      margin-top: 9px; }
.c-local-heading__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8px;
    font-size: 1.4rem;
    padding: 5px 16px;
    border: 1px solid currentColor;
    position: relative;
    z-index: 1; }
.c-local-heading__link .icon {
      margin-top: -6px; }
.c-local-heading__link .icon svg path {
        stroke: currentColor; }
.c-heading-bg-inline {
  padding-block: 16px; }
.c-heading-bg-inline__wrap {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: var(--container-size); }
.c-heading-bg-inline__hgroup {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30px 1fr;
    grid-template-columns: 30px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-column-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    grid-row-gap: 8px;
    row-gap: 8px;
    padding-right: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative; }
.c-heading-bg-inline .number {
    font-size: 2.4rem;
    font-weight: var(--fw-bold); }
.c-heading-bg-inline__title {
    font-size: 2.4rem; }
.c-heading-bg-inline__desc {
    font-size: 1.4rem;
    padding-left: 32px; }
.c-heading-border-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.8rem; }
.c-heading-border-left::before {
    content: '';
    width: 8px;
    height: 16px;
    background: var(--black); }
.c-heading__level01 {
  font-size: 3.7rem;
  margin-top: var(--header-height); }
.p-private-sector .p-subpage-kv__deco {
  bottom: -68px; }
.c-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden; }
.c-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }
.c-latest {
  --padding-top: 115px;
  --padding-bottom: 70px;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  padding-inline: var(--container-size) 49px;
  position: relative; }
.c-latest::before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    position: absolute;
    inset: 0;
    z-index: -1; }
.c-latest__deco {
    position: absolute;
    top: 73px;
    right: -33px; }
.c-latest .stack {
    margin-top: 10px; }
.c-latest .btn-wrap {
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
.c-link-blue {
  color: #2072E2;
  text-decoration: underline; }
.c-link-blue .blank-icon {
    display: inline-block;
    translate: 0 3px; }
.c-link-blue .blank-icon svg path {
      fill: #2072E2; }
.c-link-blue svg {
    fill: currentColor; }
.c-arrow-link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: var(--fw-bold); }
.c-arrow-link .icon {
    margin-top: -6px; }
.p-top .c-news {
  margin-bottom: 14px; }
.c-news {
  --padding-top: 105px;
  padding-top: var(--padding-top); }
.c-news .stack {
    margin-top: 24px; }
.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px; }
.c-pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
.c-pagination__list li {
      margin-top: 0;
      margin-bottom: 0; }
.c-pagination__link {
    font-size: 1.8rem;
    font-weight: normal;
    cursor: pointer; }
.c-pagination__link.-active {
      font-weight: var(--fw-bold); }
.c-pagination .arrow-hover {
    display: inline-block;
    width: 10px;
    padding-block: 4px;
    overflow: hidden;
    cursor: pointer; }
.c-pagination .arrow-hover .icon-wrap {
      translate: -34px 0; }
.c-pagination .arrow-hover.-prev .icon-wrap {
      translate: -30px 0; }
.c-pagination .arrow {
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    rotate: -45deg;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
.c-pagination .arrow.-prev {
      border-right: none;
      border-left: 1px solid var(--black);
      rotate: 45deg;
      translate: 2px 0; }
.js-ministry .c-popover-wrap,
.js-institute-informatio .c-popover-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
.js-ministry .c-popover-target,
.js-institute-informatio .c-popover-target {
  position: relative; }
.js-ministry .c-popover-text,
.js-institute-informatio .c-popover-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: 48px;
  background: #fff;
  border: 1px solid var(--black);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  z-index: 10; }
.tbl-adaptation {
  /*県名*/
  /*市町村*/
  /*適応に関連する情報一覧 リンク*/
  /*地域気候変動適応計画一覧 リンク*/
  /*地域気候変動適応計画一覧 リンク*/
  /*地域気候変動適応計画一覧 リンク*/ }
.tbl-adaptation .th-ken {
    width: 11%;
    font-size: 1.5rem; }
.tbl-adaptation .th-city {
    width: 11%; }
.tbl-adaptation .td-list {
    width: 80%; }
.tbl-adaptation .td-list2 {
    width: 48%; }
.tbl-adaptation .td-list3 {
    width: 15%; }
.tbl-adaptation .td-list4 {
    width: 15%; }
.c-text__desc {
  margin-top: 16px;
  font-size: 1.4rem; }
.c-subpage-toc-link {
  margin-inline: calc(var(--container-size) * -1);
  padding-top: 120px;
  padding-bottom: 64px;
  background: var(--gray-100); }
.c-subpage-toc-link.topData {
    padding-top: 90px; }
.c-subpage-toc-link__inner {
    margin-inline: var(--container-size); }
.c-subpage-toc-link__list {
    margin-left: 0 !important;
    list-style: none; }
.c-subpage-toc-link__item {
    margin-bottom: 0; }
.c-subpage-toc-link__link {
    padding-right: 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 48px 1fr auto;
    grid-template-columns: 48px 1fr auto;
    grid-column-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid var(--border-color);
    font-weight: var(--fw-bold);
    height: 100%; }
.c-subpage-toc-link__link.-desc {
      height: 100%; }
.c-subpage-toc-link__link.-desc .number {
        height: 100%; }
.c-subpage-toc-link__link.-desc .number .text {
          padding-block: 0; }
.c-subpage-toc-link__link .number {
      background: var(--black);
      color: #fff;
      font-size: 2rem;
      text-align: center;
      min-height: 48px;
      height: 100%;
      display: -ms-grid;
      display: grid;
      place-items: center; }
.c-subpage-toc-link__link .text {
      padding-block: 4px; }
.c-subpage-toc-link__link .arrow {
      width: 6px;
      height: 6px;
      border-left: 1px solid #000;
      border-bottom: 1px solid #000;
      rotate: -45deg;
      -ms-grid-column-align: end;
          justify-self: end; }
.c-subpage-toc-link__desc-body {
    padding-block: 8px 32px;
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start; }
.c-subpage-toc-link__desc {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--fw-medium);
    margin-top: 16px; }
/**
* wordpress
* WYSIWYG compatchble style
*/
.c-wp-post_article strong {
  font-weight: bold; }
.c-wp-post_article em {
  font-style: italic; }
.c-wp-post_article ul {
  margin-left: 1em;
  display: block;
  list-style-type: disc !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article ol {
  display: block;
  list-style-type: decimal !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article li {
  display: list-item;
  text-align: match-parent; }
.c-wp-post_article img {
  width: auto; }
.c-wp-post_article .alignleft {
  display: inline;
  float: left; }
.c-wp-post_article .alignright {
  display: inline;
  float: right; }
.c-wp-post_article .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto; }
.c-wp-post_article blockquote.alignleft,
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article img.alignleft {
  margin: 0.4em 1.6em 1.6em 0; }
.c-wp-post_article blockquote.alignright,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article img.alignright {
  margin: 0.4em 0 1.6em 1.6em; }
.c-wp-post_article blockquote.aligncenter,
.c-wp-post_article .wp-caption.aligncenter,
.c-wp-post_article img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em; }
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article .wp-caption.aligncenter {
  margin-bottom: 1.2em; }
.c-bg-black {
  background-color: var(--black); }
.c-bg-gray100 {
  background: var(--gray-100); }
.c-bg-gray200 {
  background: var(--gray-200);
  position: relative; }
.c-bg-gray200 .c-bg-deco {
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 85px; }
.c-pickUp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  margin-top: 33px; }
.c-pickUp__item {
    overflow: hidden; }
.c-pickUp__swiper {
  margin-block: 56px;
  margin-right: calc(var(--container-size) * -1); }
.c-pickUp__swiper .swiper {
    padding-right: var(--container-size); }
.c-pickUp__swiper .swiper-slide {
    overflow: hidden; }
/**
 * clearfix micro
 */
.clearfix:after {
  content: "";
  clear: both;
  display: block; }
/**
 * text ellipsis., text...
 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.u-hide {
  display: none; }
.u-click {
  cursor: pointer; }
.u-w-full {
  width: 100% !important; }
.u-h-full {
  height: 100% !important; }
.u-mt-8 {
  margin-top: 8px !important; }
.u-mt-16 {
  margin-top: 16px !important; }
.u-mt-24 {
  margin-top: 24px !important; }
.u-mt-40 {
  margin-top: 40px !important; }
.u-mt-64 {
  margin-top: 64px !important; }
.u-mt-80 {
  margin-top: 80px !important; }
.u-mb-16 {
  margin-bottom: 16px !important; }
.u-p-0 {
  padding: 0 !important; }
.u-p-12 {
  padding: 12px !important; }
.u-px-12 {
  padding-inline: 12px !important; }
.u-py-24 {
  padding-block: 24px !important; }
.u-gap-x-24 {
  -webkit-column-gap: 24px !important;
     -moz-column-gap: 24px !important;
          column-gap: 24px !important; }
.u-gap-y-24 {
  row-gap: 24px !important; }
.u-gap-y-40 {
  row-gap: 40px !important; }
.u-font-bold {
  font-weight: var(--fw-bold); }
.u-text-sm {
  font-size: 1.4rem; }
.u-text-base {
  font-size: 1.6rem; }
.u-text-lg {
  font-size: 1.8rem; }
.u-text-xl {
  font-size: 2rem; }
.u-text-center {
  text-align: center; }
.u-container-full {
  margin-inline: calc(var(--container-size) * -1); }
.u-container {
  padding-inline: var(--container-size); }
.u-item-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
.u-rounded-sm {
  border-radius: var(--rounded-sm); }
.u-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
.u-border {
  border: 1px solid var(--border-color); }
.u-border-b-none {
  border-bottom: none; }
.u-hidden {
  opacity: 0;
  visibility: hidden; }
.u-overflow-hidden {
  overflow: hidden; }
.u-card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 215px; }
/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: .25;
  max-height: 50px; }
.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite; }
.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px; }
@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0; }
  60% {
    opacity: .5; }
  100% {
    opacity: .5; } }
/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
@media (max-width: 1279px) {
  :root {
    --container-size: 32px; }
      .c-banner-content__left {
        padding: 20px; } }
@media (max-width: 1279px) and (max-width: 519px) {
  :root {
    --container-size: 20px; } }
@media (max-width: 959px) {
  :root {
    --header-height: 60px; }
    body {
      font-size: 1.4rem; }
  html, body {
    width: 100%;
    height: 100%; }
  h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
    margin: 0;
    padding: 0; }
  img {
    height: auto;
    max-height: 100%;
    max-width: 100%; }
    .l-container {
      margin-left: 0; }
      .l-footer__nav-list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        row-gap: 16px; }
      .l-footer__nav-link {
        font-size: 1.2rem; }
      .l-footer__copy-wrap {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-block: 0;
        padding-block: 24px 16px; }
      .l-footer__copy {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
    .l-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: #fff;
      height: var(--header-height);
      padding-left: var(--container-size); }
    .l-header__logo2 {
      position: absolute;
      top: 20px;
      right: 0; }
      .l-header__trigger {
        gap: 8px; }
        .l-header__trigger span {
          width: 24px; }
      .l-header__menu {
        width: 100%;
        left: 0;
        background: #F4F3F2;
        padding: 30px 20px; }
      .l-header__menu-nav {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .l-header__menu-list-details[open] > .l-header__menu-list-summary .icon::after {
        rotate: 0deg; }
        .l-header__menu-list-summary .icon::before, .l-header__menu-list-summary .icon::after {
          content: '';
          position: absolute;
          top: 50%;
          translate: 0 -50%;
          width: 100%;
          height: 1px;
          background-color: var(--black); }
        .l-header__menu-list-summary .icon::after {
          rotate: 90deg;
          -webkit-transition: rotate 0.3s;
          transition: rotate 0.3s; }
    .p-top-pickUp {
      padding-top: 70px; }
    .p-top-adaptation {
      padding-top: 72px;
      padding-bottom: 72px; }
      .p-top-adaptation__deco {
        top: -49px;
        right: 3%; }
      .p-top-adaptation__deco svg {
        width: 106px; }
      .p-top-adaptation__left {
        gap: 9px; }
      .p-top-adaptation__left-body {
        -ms-grid-columns: 55px 1fr;
        grid-template-columns: 55px 1fr;
        padding: 10px;
        padding-bottom: 5px;
        -webkit-column-gap: 0;
           -moz-column-gap: 0;
                column-gap: 0;
        row-gap: 8px; }
      .p-top-adaptation__left-title {
        font-size: 1.5rem;
        margin-right: 8px; }
      .p-top-adaptation__left-number {
        margin-right: 4px; }
        .p-top-adaptation__left-number strong {
          font-size: 2.4rem; }
        .p-top-adaptation__left-number .up {
          width: 30px; }
      .p-top-adaptation__right-list {
        margin-top: 22px;
        margin-left: 20px; }
        .p-top-adaptation__right-list > * + * {
          margin-top: 18px; }
      .p-top-adaptation__right-item .c-arrow-link {
        padding-left: 18px; }
    /*.p-top-section-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 50px;
      padding-top: 59px; }
      .p-top-section-wrap section {
        width: 100%;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 82px;
        grid-template-columns: 1fr 82px;
        grid-column-gap: 27px;
        -webkit-column-gap: 27px;
           -moz-column-gap: 27px;
                column-gap: 27px;
        padding: 0;
        border: none; }
      .p-top-section-wrap .desc {
        margin-top: 14px;
        margin-bottom: 20px; }
    .p-top-section-wrap .icon {
      -ms-grid-column: 2;
      -ms-grid-column-span: 1;
      grid-column: 2 / 3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3;
      -ms-grid-row-align: center;
          align-self: center; }
      .p-top-section-wrap .icon img {
        width: 82px; }
      .p-top-section-wrap .stack {
        grid-column: 1 / -1; }
        .p-top-section-wrap .stack > * + * {
          margin-top: 14px; }*/
    .p-top-latest-event-wrap {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      margin-top: 80px; }
    .p-subpage-kv + .p-subpage__body {
      padding-top: 116px; }
      .p-subpage-kv__bg {
        margin-top: var(--header-height);
        height: 260px; }
        .p-subpage-kv__bg img {
          width: 100%; }
      .p-subpage-kv__deco {
        width: 60px;
        right: 0;
        top: 0; }
        .p-subpage-kv__deco svg {
          width: 100%; }
    .p-subpage-section {
      margin-top: 80px; }
      .p-subpage__body h1 {
        font-size: 2.8rem; }
      .p-subpage__body h2 {
        font-size: 2.6rem; }
      .p-subpage__body h3 {
        font-size: 2.4rem; }
      .p-subpage__body h4 {
        font-size: 2rem; }
      .p-subpage__body h5 {
        font-size: 1.8rem; }
      .p-subpage__body figure {
        margin-top: 32px; }
      .p-subpage__body table {
        width: 100%; }
      .p-subpage__body td, .p-subpage__body th {
        padding-inline: 24px; }
      .p-subpage__body .header-wrap {
        margin-bottom: 24px; }
      .p-subpage__body .header-wrap .header-left {
        grid-column: 1 / -1; }
      .p-subpage__body .header-wrap .header-right {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3; }
        .p-subpage__body .header-wrap .header-desc {
          font-size: 1.2rem;
          margin-top: 16px; }
        .p-subpage__body .header-wrap .btn-arrow {
          margin-top: 40px;
          padding-block: 4px; }
      .p-subpage__body .list-body {
        padding: 20px; }
        .p-subpage__body .btn-stack > * + * {
          margin-top: 24px; }
      .p-subpage__body .c-youtube iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 9; }
      .p-subpage__body .wp-block-image figure {
        margin-top: 32px !important; }
  /*.p-local__content:has(> .p-local__wrap.-full) {
    margin-top: 24px; }*/
    .p-local__wrap.-half .p-local__body:first-child {
      border-bottom: 1px solid var(--border-color); }
    .p-local__body {
      padding: 32px 20px; }
    .p-local__heading04.c-border-left-heading {
      margin-bottom: 16px; }
    .p-local__heading05 {
      margin-top: 14px;
      font-size: 1.4rem; }
    .p-local__link {
      font-size: 1.4rem; }
      .p-local__link.-sub {
        padding-block: 8px; }
    .p-articles .c-heading-subpage__title.-details {
      font-size: 2.8rem;
      letter-spacing: 0.05em; }
    .p-articles__section {
      margin-inline: calc(var(--container-size) * -1);
      margin-bottom: 80px; }
    .p-articles__tab {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 15px;
      -webkit-column-gap: 15px;
         -moz-column-gap: 15px;
              column-gap: 15px;
      grid-row-gap: 16px;
      row-gap: 16px;
      padding-bottom: 0; }
    .p-articles__tab-button {
      padding-inline: 0; }
    .p-articles__tab-button#all {
      grid-column: 1 / -1; }
    .p-articles__tab-button {
      font-size: 1.6rem;
      padding-block: 8px; }
    .p-articles__inner {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }
    .p-adaptation-examples__section {
      margin-top: 36px; }
      .p-adaptation-examples__section + .p-adaptation-examples__section {
        margin-top: 64px; }
    .p-adaptation-examples__content .btn-wrap {
      text-align: center; }
    .p-adaptation-examples__change-data-content {
      margin-top: 40px; }
    .c-accordion__title {
      --icon-size: 16px;
      padding: 12px 20px;
      font-size: 1.6rem; }
    /*.c-banner-content {
      margin-top: 64px; }
    .c-banner-content + .c-banner-content {
      margin-top: 16px; }
      .c-banner-content__link {
        -ms-grid-columns: 1fr 200px;
        grid-template-columns: 1fr 200px; }
      .c-banner-content__left {
        -ms-grid-columns: 40px 1fr;
        grid-template-columns: 40px 1fr;
        -webkit-column-gap: 8px;
           -moz-column-gap: 8px;
                column-gap: 8px;
        row-gap: 10px;
        padding: 16px 10px 18px 20px; }
      .c-banner-content__desc {
        font-size: 1.2rem; }*/
    .c-blockquote {
      padding: 24px 16px; }
      .c-blockquote.-term {
        padding: 32px 20px 40px; }
      .c-blockquote__list {
        margin-top: 16px; }
      .c-blockquote__item {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        gap: 8px; }
        .c-blockquote__item::before {
          margin-top: 8px; }
      .c-bread li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .c-bread__nav {
        margin-top: 64px; }
      .btn-arrow.-en-small {
        padding: 14px 16px; }
      .btn-arrow.-small {
        padding: 14px 16px; }
    .btn-download {
      height: 65px; }
    .btn-reset {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .btn-all-select {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .btn-keyword {
      padding: 14px 24px 14px 8px;
      -ms-grid-columns: 1fr auto;
      grid-template-columns: 1fr auto; }
    .c-top-button {
      width: 40px;
      height: 40px;
      right: 16px;
      bottom: 16px; }
      .c-top-button::before {
        width: 9px;
        height: 9px;
        border-width: 1px;
        translate: 0 1px; }
      .c-card__body {
        margin-top: 0; }
      .c-card__link {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto; }
      .c-card[data-card="with-img"] .c-card__wrap {
        gap: 16px;
        margin-top: 8px; }
      .c-card[data-card="with-img"] .c-card__time, .c-card[data-card="with-img"] .c-card__sub {
        font-size: 1.2rem; }
        .c-card[data-card="with-img-horizon"] .c-card__grid {
          -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); }
        .c-card[data-card="with-img-horizon"] .c-card__title {
          word-break: break-all; }
    .c-card-latest {
      -webkit-column-gap: 10px;
         -moz-column-gap: 10px;
              column-gap: 10px; }
      .c-card-latest__title {
        font-size: 1.2rem; }
    .c-card-event {
      -webkit-column-gap: 16px;
         -moz-column-gap: 16px;
              column-gap: 16px; }
      .c-card-event__title {
        font-size: 1.2rem; }
      .c-card-event__icon svg {
        width: 20px;
        height: 20px; }
      .c-card-event__bottom-wrap {
        gap: 24px; }
    .c-card-news {
      -ms-grid-columns: -webkit-max-content 1fr;
      -ms-grid-columns: max-content 1fr;
      grid-template-columns: -webkit-max-content 1fr;
      grid-template-columns: max-content 1fr;
      row-gap: 8px; }
      .c-card-news__title {
        font-size: 1.2rem; }
      .c-card-news__body {
        grid-column: 1 / -1;
        margin-left: 0; }
      .c-card-news .c-card__desc {
        font-size: 1.2rem;
        margin-top: 8px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; }
    .c-event {
      --padding-top: 70px;
      --padding-bottom: 0px; }
      .c-event__deco {
        bottom: auto;
        top: -40px;
        right: 6%; }
      .c-event .stack {
        margin-top: 20px; }
      .c-event .btn-wrap {
        width: 100%; }
        .c-event .btn-wrap .btn-arrow {
          width: 100%;
          text-align: center; }
    .c-filter__list {
      -webkit-column-gap: 20px;
         -moz-column-gap: 20px;
              column-gap: 20px; }
    .c-filter__item {
      width: auto; }
    .c-filter__btn-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 8px; }
      .c-filter__btn-wrap.-add-note {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 8px; }
    .c-filter__text {
      gap: 8px; }
      .c-filter-col2 .c-filter__list.-measures {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .c-filter-col2 .c-filter__list.-measures .c-filter__list {
        width: 100%;
        margin-left: 16px; }
    .c-flex.-sp-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
              flex-direction: column-reverse !important;
      row-gap: 24px; }
      .c-flex.-horizon-card {
        padding-inline: 20px; }
        .c-flex.-horizon-card.c-bg-gray100 {
          padding-bottom: 40px; }
        .c-flex.-horizon-card.-limit {
          margin-inline: 40px;
          row-gap: 16px; }
  .sp-cols-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; }
  .sp-cols-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); }
    .c-heading-inline {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start;
      gap: 14px; }
      .c-heading-inline__title {
        font-size: 2.4rem; }
      .c-heading-inline__sub {
        font-size: 1.2rem; }
    .c-heading-block__title {
      font-size: 2.4rem; }
    .c-heading-block__sub {
      font-size: 1.2rem; }
      .c-heading-icon__title {
        font-size: 1.6rem; }
    .c-heading-subpage {
      width: 100%;
      -ms-grid-columns: 48px 1fr;
      grid-template-columns: 48px 1fr;
      -webkit-column-gap: 8px;
         -moz-column-gap: 8px;
              column-gap: 8px;
      row-gap: 8px;
      padding: 8px 16px 24px;
      bottom: -40px; }
      .c-heading-subpage.two-line {
        bottom: -100px; }
      .c-heading-subpage.-details {
        padding-block: 24px;
        padding-inline: 16px 40px;
        bottom: -48px; }
      .c-heading-subpage__title {
        grid-column: 1 / -1;
        font-size: 2.4rem;
        letter-spacing: 0.1em; }
        .c-heading-subpage__title.-details {
          font-size: 3.4rem; }
      .c-heading-subpage__icon + .c-heading-subpage__sub {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3; }
      .c-heading-subpage__sub {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        font-size: 1.3rem;
        letter-spacing: 0.01em; }
        .c-heading-subpage__sub.-details {
          grid-column: 1 / -1;
          font-size: 1.8rem; }
    .c-local-heading {
      padding-block: 32px 40px; }
      .c-local-heading__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 30px; }
      .c-local-heading__hgroup {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start; }
      .c-local-heading .number {
        font-size: 2rem; }
      .c-local-heading__title {
        font-size: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .c-local-heading__sub {
        font-size: 1.2rem;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3;
        margin-left: 49px; }
        .c-local-heading__links > * + * {
          margin-top: 20px; }
      .c-local-heading__link::before {
        content: ''; }
    .c-heading-bg-inline {
      padding-block: 24px 32px; }
      .c-heading-bg-inline__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        gap: 16px; }
      .c-heading-bg-inline__hgroup {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start; }
      .c-heading-bg-inline .number {
        font-size: 2rem; }
      .c-heading-bg-inline__title {
        font-size: 2rem; }
      .c-heading-bg-inline__desc {
        padding-left: 42px; }
    .c-heading__level01 {
      font-size: 3.2rem; }
    .p-private-sector .p-subpage-kv__deco {
      bottom: -140px; }
    .c-latest {
      --padding-top: 70px;
      --padding-bottom: 80px;
      padding-inline: var(--container-size); }
      .c-latest__deco {
        top: -37px;
        right: 35px; }
      .c-latest__deco svg {
        width: 85px; }
      .c-latest .stack {
        margin-top: 20px; }
      .c-latest .btn-wrap {
        width: 100%; }
        .c-latest .btn-wrap .btn-arrow {
          width: 100%;
          text-align: center; }
    .c-news {
      --padding-top: 80px; }
    .c-text__desc {
      margin-top: 8px;
      font-size: 1.2rem; }
    .c-subpage-toc-link {
      padding-top: 60px; }
    .c-subpage-toc-link.-top-large {
      padding-top: 233px; }
      .c-subpage-toc-link__link {
        -webkit-column-gap: 8px;
           -moz-column-gap: 8px;
                column-gap: 8px; }
      .c-subpage-toc-link__desc-body {
        padding-bottom: 10px;
        font-size: 1.4rem; }
      .c-subpage-toc-link__desc {
        margin-top: 8px;
        font-size: 1.2rem; }
    .c-pickUp {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      -webkit-column-gap: 17px;
         -moz-column-gap: 17px;
              column-gap: 17px;
      row-gap: 16px;
      margin-top: 43px; }
  .for-large {
    display: none !important; }
  .u-mt-sp-0 {
    margin-top: 0px !important; }
  .u-mt-sp-16 {
    margin-top: 16px !important; }
  .u-mt-sp-24 {
    margin-top: 24px !important; }
  .u-mt-sp-40 {
    margin-top: 40px !important; }
  .u-mt-sp-64 {
    margin-top: 64px !important; }
  .u-mt-sp-80 {
    margin-top: 80px !important; }
  .u-mx-sp-16 {
    margin-inline: 16px !important; }
  .u-mx-sp-40 {
    margin-inline: 40px !important; }
  .u-ml-sp-0 {
    margin-left: 0px !important; }
  .u-pb-sp-60 {
    padding-bottom: 60px !important; }
  .u-px-sp-40 {
    padding-inline: 40px !important; }
  .u-gap-x-sp-16 {
    -webkit-column-gap: 16px !important;
       -moz-column-gap: 16px !important;
            column-gap: 16px !important; }
  .u-gap-y-sp-24 {
    row-gap: 24px !important; }
  .u-gap-y-sp-40 {
    row-gap: 40px !important; }
  .u-order-sp-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .u-order-sp-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }
@media (any-hover: hover) {
  .arrow-hover:hover .icon-wrap {
    translate: 2px 0 !important; }
    .link-hover:hover.-edge .link-hover-deco {
      width: calc(100% + 16px); }
    .link-hover:hover.-color-white {
      color: #fff; }
    .link-hover:hover .link-hover-deco {
      opacity: 1;
      width: 100%;
      -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .btn-arrow-hover:hover .line.-top-left::before, .btn-arrow-hover:hover .line.-top-left::after, .btn-reset:hover .line.-top-left::before, .btn-reset:hover .line.-top-left::after, .btn-all-select:hover .line.-top-left::before, .btn-all-select:hover .line.-top-left::after {
    scale: 0; }
  .btn-arrow-hover:hover .line.-bottom-right::before, .btn-arrow-hover:hover .line.-bottom-right::after, .btn-reset:hover .line.-bottom-right::before, .btn-reset:hover .line.-bottom-right::after, .btn-all-select:hover .line.-bottom-right::before, .btn-all-select:hover .line.-bottom-right::after {
    scale: 0; }
  .hover-img-scale:hover img {
    scale: 1.08; }
      .l-header__menu-list .l-side__menu-link:hover {
        color: var(--black); }
        .l-header__menu-link.-sub:hover {
          color: #fff; }
          .l-header__menu-link.-sub:hover .icon-wrap {
            translate: 6px; }
        .l-header__menu-list-details-body .l-side__menu-link:hover {
          color: #fff; }
          .l-header__menu-list-details-body .l-side__menu-link:hover .icon-wrap {
            translate: 6px; }
        .l-side__nav-main-link.-active:hover {
          background: unset; }
        .l-side__nav-sub-link.-active:hover {
          background: unset; }
      .l-side__nav-sub-link:hover .l-side__nav-sub-icon {
        display: none; }
        .l-side__nav-sub-link:hover .l-side__nav-sub-icon.-hover {
          display: block; }
      .l-side__menu-link:hover {
        color: #fff; }
    .p-local__link:hover {
      color: #fff; }
      .p-local__link:hover .icon-wrap {
        translate: 4px; }
      .p-local__link:hover svg path, .p-local__link:hover svg rect {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-transition-delay: 0.3s;
                transition-delay: 0.3s;
        stroke: #fff; }
      .c-banner-content__link:hover .c-banner-content__right {
        scale: 1.05; }
    .c-top-button:hover {
      background: #000; }
      .c-top-button:hover::before {
        border-color: #fff; }
    .c-btn:hover::before {
      opacity: 1;
      width: 100%;
      -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
      .c-card__link:hover {
        color: #fff; }
        .c-card__link:hover .icon-wrap {
          translate: 4px; }
          .c-card__link:hover .icon-wrap svg path {
            -webkit-transition: 0.3s;
            transition: 0.3s;
            -webkit-transition-delay: 0.3s;
                    transition-delay: 0.3s;
            stroke: #fff; }
  .c-card.-link:hover .c-card__img img {
    scale: 1.1; }
      .c-local-heading__top-link:hover {
        color: var(--black); }
        .c-local-heading__top-link:hover .hover-deco {
          opacity: 1;
          width: calc(100% + 16px);
          -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
      .c-local-heading__link:hover {
        color: var(--black); }
        .c-local-heading__link:hover .icon svg path {
          stroke: var(--black); }
  .js-ministry .c-popover:hover + .c-popover-text,
  .js-institute-informatio .c-popover:hover + .c-popover-text {
    opacity: 1;
    visibility: visible; } }
@media (min-width: 960px) {
    .l-footer__nav-item {
      white-space: nowrap; }
      .l-footer__copy {
        width: 416px; }
        .l-footer__copy-img-wrap:last-child {
          margin-left: auto; }
      .p-subpage-kv__bg.-lg {
        height: 400px; }
      .p-subpage-kv__bg.-mid {
        height: 280px; }
      .p-subpage-kv__bg.-sm {
        height: 219px; }
      .p-subpage__body figure .figure-img {
        padding-inline: 38px; }
      .p-subpage__body .header-wrap {
        row-gap: 24px;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; }
    .p-local__wrap.-full {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 150px 1fr;
      grid-template-columns: 150px 1fr; }
    .p-local__wrap.-half {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); }
      .p-local__wrap.-half > .p-local__body {
        border-right: 1px solid var(--border-color); }
      .p-local__wrap.-half .p-local__heading04 {
        margin-bottom: 8px; }
      .p-local__wrap.-half .p-local__link-wrap {
        -webkit-column-gap: 24px;
           -moz-column-gap: 24px;
                column-gap: 24px; }
  .p-local__link-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    margin-top: 8px; }
    .p-articles__tab-button {
      white-space: nowrap; }
      .p-articles__tab-button.-active::before {
        content: '';
        width: 22px;
        height: 17px;
        background: var(--articles-tab-color);
        position: absolute;
        left: 50%;
        translate: -50% 0;
        bottom: -14px;
        -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
                clip-path: polygon(50% 100%, 0 0, 100% 0); }
    .p-adaptation-examples__content .btn-wrap {
      width: 163px; }
      .btn-arrow.-link-small {
        width: 220px; }
    .c-top-button {
      translate: 12px 0; }
    .btn-wrap {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); }
      .c-card[data-card="with-img"] .c-card__wrap {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
    .c-filter__btn-wrap {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
        .c-filter__btn-wrap.-add-note p {
          width: 372px; }
      .c-filter-col2 .c-filter__list.-measures li {
        width: 126px; }
        .c-flex.-horizon-card.-limit .c-flex__left {
          width: 56%; }
        .c-flex.-horizon-card.-limit .c-flex__right {
          width: calc(44% - 40px); }
      .c-flex.-horizon-card .c-flex__left {
        width: 63%; }
      .c-flex.-horizon-card .c-flex__right {
        width: calc(37% - 56px); }
      .c-heading-subpage__title.icon {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3; }
      .c-local-heading__wrap {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
      .c-heading-bg-inline__hgroup {
        min-height: 80px; }
        .c-heading-bg-inline__hgroup::after {
          content: '';
          width: 1px;
          height: 80px;
          position: absolute;
          top: 50%;
          translate: 0 -50%;
          right: 0;
          background: currentColor; }
      .c-subpage-toc-link__list {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 40px;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px; }
          .c-subpage-toc-link__link.-desc .number {
            place-items: unset;
            padding-top: 8px; }
      .c-bg-gray200 .c-bg-deco {
        border-bottom-left-radius: 4px; }
        .c-bg-gray200 .c-bg-deco::before, .c-bg-gray200 .c-bg-deco::after {
          content: '';
          position: absolute;
          top: 0;
          left: -4px; }
        .c-bg-gray200 .c-bg-deco::before {
          width: 4px;
          height: 4px;
          background: #fff; }
        .c-bg-gray200 .c-bg-deco::after {
          background: var(--gray-200);
          border-top-right-radius: 4px;
          width: 4px;
          height: 4px; }
  .for-mobile {
    display: none !important; }
  .u-mt-pc-16 {
    margin-top: 16px !important; }
  .u-mt-pc-24 {
    margin-top: 24px !important; }
  .u-mt-pc-32 {
    margin-top: 32px !important; }
  .u-mt-pc-40 {
    margin-top: 40px !important; }
  .u-mt-pc-56 {
    margin-top: 56px !important; }
  .u-mt-pc-64 {
    margin-top: 64px !important; }
  .u-mt-pc-80 {
    margin-top: 80px !important; }
  .u-mr-pc-52 {
    margin-right: 52px !important; }
  .u-ml-pc-0 {
    margin-left: 0px !important; }
  .u-pb-pc-80 {
    padding-bottom: 80px !important; }
  .u-gap-x-pc-24 {
    -webkit-column-gap: 24px !important;
       -moz-column-gap: 24px !important;
            column-gap: 24px !important; }
  .u-gap-x-pc-42 {
    -webkit-column-gap: 42px !important;
       -moz-column-gap: 42px !important;
            column-gap: 42px !important; }
  .u-gap-x-pc-45 {
    -webkit-column-gap: 45px !important;
       -moz-column-gap: 45px !important;
            column-gap: 45px !important; }
  .u-gap-y-pc-24 {
    row-gap: 24px !important; }
  .u-gap-y-pc-40 {
    row-gap: 40px !important; }
  .u-gap-y-pc-56 {
    row-gap: 56px !important; }
  .u-text-pc-base {
    font-size: 1.6rem !important; } }
@media (max-width: 519px) {
      .l-footer__copy {
        white-space: nowrap;
        letter-spacing: -0.01em; }
      .l-header__menu-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 30px; }
      .l-header__menu-list {
        width: 100%; }
        .l-header__menu-link.-main {
          margin-bottom: 10px;
          padding-bottom: 14px;
          font-size: 1.5rem; }
        .l-header__menu-link.-main br.phone {
          display: none; }
      .l-header__menu-list-summary {
        background: var(--gray-100); }
      .l-header__menu-list-details-body {
        margin-top: 0;
        margin-left: 20px; }
          .l-header__menu-list-details-body .l-side__menu-link.-orange, .l-header__menu-list-details-body .l-side__menu-link.-blue {
            border-width: 2px !important; }
        .p-subpage__body .c-category__item:last-child {
          display: block;
          margin-top: 8px;
          padding-left: 0; }
    .c-batch {
      font-size: 1rem; }
    .btn-arrow {
      padding: 16px; }
    .c-filter__list.-sp-column {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .c-bg-gray200 .c-bg-deco {
        width: 27%;
        height: 75px; } }
@media (min-width: 1599px) {
      .l-header__wrap {
        right: auto;
        left: 1244px; }
    .l-main.p-details .l-container__wrap {
      max-width: 1226px; } }
@media (max-width: 1100px) {
      .p-top-adaptation__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 24px; } }
/*@media (min-width: 1400px) {
      .c-banner-content__link {
        -ms-grid-columns: 1fr 250px;
        grid-template-columns: 1fr 250px; } }
@media (max-width: 1000px) {
      .c-banner-content__link {
        -ms-grid-columns: 1fr 120px;
        grid-template-columns: 1fr 120px; } }
@media (max-width: 959px) and (max-width: 519px) {
    .c-banner-content__link {
      -ms-grid-columns: 200px 1fr;
      grid-template-columns: 200px 1fr; }
    .c-heading-subpage.-details {
      padding-inline: 16px; } }
@media (max-width: 1079px) {
      .c-banner-content__title {
        font-size: 2.2rem; } }
@media (max-width: 1079px) and (max-width: 959px) {
    .c-banner-content__title {
      font-size: 1.4rem; } }*/
@media (max-width: 1240px) {
      .c-card__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1240px) and (max-width: 959px) {
    .c-card__grid {
      -ms-grid-columns: 1fr !important;
      grid-template-columns: 1fr !important;
      row-gap: 24px; } }
/*# sourceMappingURL=../../_cache/_maps/base.css.map */

/**
 * 2025.3.9追加
 */
/*
# リストの基本設定
*/
/**,
::before,
::after {
  box-sizing: border-box;
  flex: none;
}*/
ul, ol {
  margin: 1em 0 1.5em 1.5em;
  padding-left: 0;
}
ul > li, ol > li {
  margin-bottom: .5em;
}
table {
  width: 100%;
}
.p-subpage__body h2 {
  align-items: inherit;
}
.p-subpage__body h2::before {
      width: 8px;
      height: inherit;
}
.p-subpage__body td, .p-subpage__body th {
  padding: 10px;
}
th, td {
  padding: 10px;
}
.p-subpage__body figure {
    max-width: 800px;
	text-align: center;
}
.p-subpage__body figure:has(> table) {
      max-width: 800px;
	text-align: left;

}
.p-subpage__body .wp-block-image figure {
    margin-top: 0!important;
	text-align: center;
	width: 100%;
}
.p-subpage__body a,.theme-section a {
    color: #2072E2;
}
.l-container__wrap p {
  line-height: 2;
}
.c-bread__nav {
  margin-top: 10px;
}
.c-bread__nav.-top {
  background: none;
  width: calc(100% - 240px);
  padding-inline: var(--container-size);
}
.c-bread__nav.-top ol {
  margin: 0;
}
.common-heading {
  min-height: 140px;
  display: flex;
  align-items: center;
}
.common-subpage-toc-link {
  padding-top: 0;
  margin-inline: calc(var(--container-size) * -1);
  padding: 30px 0;
  background: var(--gray-100);
}
.c-subpage-toc-link {
  padding-top: 80px;
}
.p-subpage-section {
  margin-top: 0;
}
.p-local__link {
  padding-left: 10px;
  justify-content: flex-start;
}
.p-local__link.-sub {
  gap: 10px;
}
.p-local__desc, .p-adaptation-examples__desc {
  padding-left: 10px;
}
.icon-link{
	display: block;
}
.icon-link::after {
  width: 30px !important;
  display: block;
}
.icon-link::before {
  display: block;
}
.arrow-hover .icon-body {
  margin-left: 10px;
}
aside .c-card-articles__img {
  height: 215px;
  object-fit: cover;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
/*.btn-wrap {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}*/
.btn-wrap a {
  color: var(--black) !important;
}
/*引用*/
blockquote {
  font-size: 1.4rem;
}
/*メンテナンス情報*/
.maintenance{
	background: var(--gray-200);
	margin-inline: calc(var(--container-size) * -1);
	padding: 20px;
}
picture img,.u-rounded-sm img{
	width: 100%;
}
iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
/*外部リンク用*/
picture a[target=_blank][rel=noopener], .l-footer__nav-item a[target=_blank][rel=noopener] {
  display: none;
}
a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-blank-blue.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[target=_blank][rel=noopener]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-blank-blue.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="pdf"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-pdf.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[type$="pdf"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-pdf.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="xls"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-xls.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="xlsx"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-xls.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="word"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-doc.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="pptx"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-ppt.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="ppt"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-ppt.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a[href$="zip"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/common/icon-zip.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
  margin-right: 0.3em;
  vertical-align: middle;
}
a.remove-icon[target=_blank]::after {
  display: none;
}
a.remove-icon[href$="pdf"]::after {
  display: none;
}
a.remove-icon::after {
  display: none;
}
a.p-local__link:hover::after, a.p-local__linkk[target=_blank]:hover::after {
  display: none;
}
.l-header__logo2 a[target="_blank"][rel="noopener"]::after {
  display: none;
}
a.c-card-event[target=_blank]::after {
  display: none;
}
a.btn-download::after{
  display: none;	
}
.none-icon a[target=_blank]::after,
.none-icon a[target=_blank][rel=noopener]::after,
.none-icon a[href$="pdf"]::after,
.none-icon a[type$="pdf"]::after,
.none-icon a[href$="xls"]::after,
.none-icon a[href$="xlsx"]::after,
.none-icon a[href$="word"]::after,
.none-icon a[href$="pptx"]::after,
.none-icon a[href$="ppt"]::after,
.none-icon a[href$="zip"]::after
{
	display: none;
}
.download-section_area .btn-download{
	color: #000!important;
	margin-bottom: 20px;
}
.btn-download .icon-body{
	justify-self: flex-start;
}
.c-local-heading__title .number {
  margin-right: 16px;
}
.c-bread__link, .c-bread__text, .c-bread__arrow {
  font-weight: normal;
}
.c-bread li {
  list-style: none;
  font-weight: normal;
  color: #666;
}
.c-bread li a {
  font-weight: normal;
}
.l-side__search-input {
  box-sizing: border-box;
}
.p-top-section-wrap .stack {
  margin-top: inherit;
}
.l-footer__nav ul{
	margin: 0;
}
.c-card-articles__body{
  color: var(--black) !important;}
.btn-area{
	text-align: center;
	margin-block: 40px;
}
.btn-center{
	display: inline-block
}
.btn-center a{
  color: var(--black) !important;
}
.btn-outjmp {
  margin-left: 0 !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  grid-row-gap: 8px;
  row-gap: 8px;
}
ul.btn-outjmp > * + * {
      margin-top: 0; }
.btn-outjmp li {
  width: auto;
  margin-right: 0;
  list-style: none;
}
.btn-outjmp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 40px;
  border: 1px solid var(--black);
  font-weight: var(--fw-bold);
  position: relative;
  text-align: center;
  color: var(--black) !important;
  height: 48px;
  font-size: 1.4rem;
  z-index: 1;
}
.btn-outjmp a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  background: var(--gray-200);
  -webkit-transition: opacity 0.3s, width 0.1s;
  transition: opacity 0.3s, width 0.1s;
  -webkit-transition-delay: 0s, 0.6s;
  transition-delay: 0s, 0.6s;
  z-index: -1;
}
.btn-outjmp a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #999;
  border-right: solid 2px #999;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 15px;
}
.btn-outjmp a:hover::before {
  opacity: 1;
  width: 100%;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.active a {
  background-color: #f4f3f2;
}
.btn-in-jmp a::after {
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(45deg);
}
.corporate-logo{
	max-width: 300px;
	min-height: 175px;
	display: flex;
	align-items: center;
    justify-content: center;
	margin: 0 auto;
}
.bdr_gray {
  border: 1px solid #ccc;
  padding: 10px 20px;
}

.wp-block-columns {
  gap: 0;
}
@media (min-width:782px) {
.wp-block-columns {
  gap: 20px;
}	
}

@media (max-width: 959px) {
.c-bread__nav.-top {
  width: 100%;
}
.c-bread__nav {
  margin-top: 64px;
}
.c-bread li:nth-child(n+4) {
  display: none;
}
  .l-header__logo2 {
    position: absolute;
    top: 12px;
    right: 70px;
  }
  .l-header__logo2 img {
    max-width: 40px !important;
    width: 40px;
  }
  .btn-outjmp {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .bdr_gray {
    margin-top: 20px !important;
  }
}
/*文字の横位置*/
.al-l {
  text-align: left !important;
}
.al-r {
  text-align: right !important;
}
.al-c {
  text-align: center !important;
}
/*周りのブロックからの距離（margin）*/
.m0 {
  margin: 0 !important;
} /*周りからのmarginを0に*/
.m0-t {
  margin-top: 0 !important;
} /*上からのmarginを0に*/
.m0-r {
  margin-right: 0 !important;
} /*右からのmarginを0に*/
.m0-b {
  margin-bottom: 0 !important;
} /*下からのmarginを0に*/
.m0-l {
  margin-left: 0 !important;
} /*左からのmarginを0に*/
.m5 {
  margin: 5px !important;
}
.m5-t {
  margin-top: 5px !important;
}
.m5-r {
  margin-right: 5px !important;
}
.m5-b {
  margin-bottom: 5px !important;
}
.m5-l {
  margin-left: 5px !important;
}
.m10 {
  margin: 10px !important;
}
.m10-t {
  margin-top: 10px !important;
}
.m10-r {
  margin-right: 10px !important;
}
.m10-b {
  margin-bottom: 10px !important;
}
.m10-l {
  margin-left: 10px !important;
}
.m15 {
  margin: 15px !important;
}
.m15-t {
  margin-top: 15px !important;
}
.m15-r {
  margin-right: 15px !important;
}
.m15-b {
  margin-bottom: 15px !important;
}
.m15-l {
  margin-left: 15px !important;
}
.m20 {
  margin: 20px !important;
}
.m20-t {
  margin-top: 20px !important;
}
.m20-r {
  margin-right: 20px !important;
}
.m20-b {
  margin-bottom: 20px !important;
}
.m20-l {
  margin-left: 20px !important;
}
.m25 {
  margin: 25px !important;
}
.m25-t {
  margin-top: 25px !important;
}
.m25-r {
  margin-right: 25px !important;
}
.m25-b {
  margin-bottom: 25px !important;
}
.m25-l {
  margin-left: 25px !important;
}
.m30 {
  margin: 30px !important;
}
.m30-t {
  margin-top: 30px !important;
}
.m30-r {
  margin-right: 30px !important;
}
.m30-b {
  margin-bottom: 30px !important;
}
.m30-l {
  margin-left: 30px !important;
}
.m40 {
  margin: 40px !important;
}
.m40-t {
  margin-top: 40px !important;
}
.m40-r {
  margin-right: 40px !important;
}
.m40-b {
  margin-bottom: 40px !important;
}
.m40-l {
  margin-left: 40px !important;
}
.m50 {
  margin: 50px !important;
}
.m50-t {
  margin-top: 50px !important;
}
.m50-r {
  margin-right: 50px !important;
}
.m50-b {
  margin-bottom: 50px !important;
}
.m50-l {
  margin-left: 50px !important;
}
.m60 {
  margin: 60px !important;
}
.m60-t {
  margin-top: 60px !important;
}
.m60-r {
  margin-right: 60px !important;
}
.m60-b {
  margin-bottom: 60px !important;
}
.m60-l {
  margin-left: 60px !important;
}
.m70 {
  margin: 70px !important;
}
.m70-t {
  margin-top: 70px !important;
}
.m70-r {
  margin-right: 70px !important;
}
.m70-b {
  margin-bottom: 70px !important;
}
.m70-l {
  margin-left: 70px !important;
}
.m80 {
  margin: 80px !important;
}
.m80-t {
  margin-top: 80px !important;
}
.m80-r {
  margin-right: 80px !important;
}
.m80-b {
  margin-bottom: 80px !important;
}
.m80-l {
  margin-left: 80px !important;
}
.m90 {
  margin: 90px !important;
}
.m90-t {
  margin-top: 90px !important;
}
.m90-r {
  margin-right: 90px !important;
}
.m90-b {
  margin-bottom: 90px !important;
}
.m90-l {
  margin-left: 90px !important;
}
.m100 {
  margin: 100px !important;
}
.m100-t {
  margin-top: 100px !important;
}
.m100-r {
  margin-right: 100px !important;
}
.m100-b {
  margin-bottom: 100px !important;
}
.m100-l {
  margin-left: 100px !important;
}
.m120 {
  margin: 120px !important;
}
.m120-t {
  margin-top: 120px !important;
}
.m120-r {
  margin-right: 120px !important;
}
.m120-b {
  margin-bottom: 120px !important;
}
.m120-l {
  margin-left: 120px !important;
}
.m150 {
  margin: 150px !important;
}
.m150-t {
  margin-top: 150px !important;
}
.m150-r {
  margin-right: 150px !important;
}
.m150-b {
  margin-bottom: 150px !important;
}
.m150-l {
  margin-left: 150px !important;
}
.m200 {
  margin: 200px !important;
}
.m200-t {
  margin-top: 200px !important;
}
.m200-r {
  margin-right: 200px !important;
}
.m200-b {
  margin-bottom: 200px !important;
}
.m200-l {
  margin-left: 200px !important;
}
.m300 {
  margin: 300px !important;
}
.m300-t {
  margin-top: 300px !important;
}
.m300-r {
  margin-right: 300px !important;
}
.m300-b {
  margin-bottom: 300px !important;
}
.m300-l {
  margin-left: 300px !important;
}
/*周りのブロックからの距離（padding）*/
.p0 {
  padding: 0 !important;
}
.p0-t {
  padding-top: 0 !important;
}
.p0-r {
  padding-right: 0 !important;
}
.p0-b {
  padding-bottom: 0 !important;
}
.p0-l {
  padding-left: 0 !important;
}
.p5 {
  padding: 5px !important;
}
.p5-t {
  padding-top: 5px !important;
}
.p5-r {
  padding-right: 5px !important;
}
.p5-b {
  padding-bottom: 5px !important;
}
.p5-l {
  padding-left: 5px !important;
}
.p10 {
  padding: 10px !important;
}
.p10-t {
  padding-top: 10px !important;
}
.p10-r {
  padding-right: 10px !important;
}
.p10-b {
  padding-bottom: 10px !important;
}
.p10-l {
  padding-left: 10px !important;
}
.p15 {
  padding: 15px !important;
}
.p15-t {
  padding-top: 15px !important;
}
.p15-r {
  padding-right: 15px !important;
}
.p15-b {
  padding-bottom: 15px !important;
}
.p15-l {
  padding-left: 15px !important;
}
.p20 {
  padding: 20px !important;
}
.p20-t {
  padding-top: 20px !important;
}
.p20-r {
  padding-right: 20px !important;
}
.p20-b {
  padding-bottom: 20px !important;
}
.p20-l {
  padding-left: 20px !important;
}
.p25 {
  padding: 25px !important;
}
.p25-t {
  padding-top: 25px !important;
}
.p25-r {
  padding-right: 25px !important;
}
.p25-b {
  padding-bottom: 25px !important;
}
.p25-l {
  padding-left: 25px !important;
}
.p30 {
  padding: 30px !important;
}
.p30-t {
  padding-top: 30px !important;
}
.p30-r {
  padding-right: 30px !important;
}
.p30-b {
  padding-bottom: 30px !important;
}
.p30-l {
  padding-left: 30px !important;
}
.p40 {
  padding: 40px !important;
}
.p40-t {
  padding-top: 40px !important;
}
.p40-r {
  padding-right: 40px !important;
}
.p40-b {
  padding-bottom: 40px !important;
}
.p40-l {
  padding-left: 40px !important;
}
.p50 {
  padding: 50px !important;
}
.p50-t {
  padding-top: 50px !important;
}
.p50-r {
  padding-right: 50px !important;
}
.p50-b {
  padding-bottom: 50px !important;
}
.p50-l {
  padding-left: 50px !important;
}
.p60 {
  padding: 60px !important;
}
.p60-t {
  padding-top: 60px !important;
}
.p60-r {
  padding-right: 60px !important;
}
.p60-b {
  padding-bottom: 60px !important;
}
.p60-l {
  padding-left: 60px !important;
}
.p70 {
  padding: 70px !important;
}
.p70-t {
  padding-top: 70px !important;
}
.p70-r {
  padding-right: 70px !important;
}
.p70-b {
  padding-bottom: 70px !important;
}
.p70-l {
  padding-left: 70px !important;
}
.p80 {
  padding: 80px !important;
}
.p80-t {
  padding-top: 80px !important;
}
.p80-r {
  padding-right: 80px !important;
}
.p80-b {
  padding-bottom: 80px !important;
}
.p80-l {
  padding-left: 80px !important;
}
.p90 {
  padding: 90px !important;
}
.p90-t {
  padding-top: 90px !important;
}
.p90-r {
  padding-right: 90px !important;
}
.p90-b {
  padding-bottom: 90px !important;
}
.p90-l {
  padding-left: 90px !important;
}
.p100 {
  padding: 100px !important;
}
.p100-t {
  padding-top: 100px !important;
}
.p100-r {
  padding-right: 100px !important;
}
.p100-b {
  padding-bottom: 100px !important;
}
.p100-l {
  padding-left: 100px !important;
}
/*上下にモバイルとデスクトップで異なるサイズの余白を空ける*/
.m10-20-t {
  margin-top: 10px;
} /*モバイルのときは10pxでPCのときは20px*/
.m15-30-t {
  margin-top: 15px;
}
.m20-40-t {
  margin-top: 20px;
}
.m25-50-t {
  margin-top: 25px;
}
.m30-60-t {
  margin-top: 30px;
}
.m35-70-t {
  margin-top: 35px;
}
.m40-80-t {
  margin-top: 40px;
}
.m45-90-t {
  margin-top: 45px;
}
.m20-150-t {
  margin-top: 20px;
}
.m10-20-b {
  margin-bottom: 10px;
}
.m15-30-b {
  margin-bottom: 15px;
}
.m20-40-b {
  margin-bottom: 20px;
}
.m25-50-b {
  margin-bottom: 25px;
}
.m30-60-b {
  margin-bottom: 30px;
}
.m35-70-b {
  margin-bottom: 35px;
}
.m40-80-b {
  margin-bottom: 40px;
}
.m45-90-b {
  margin-bottom: 45px;
}
@media (min-width : 768px) {
  /*周りのブロックからの距離（margin）*/
  .m10-20-t {
    margin-top: 20px !important;
  }
  .m15-30-t {
    margin-top: 30px !important;
  }
  .m20-40-t {
    margin-top: 40px !important;
  }
  .m25-50-t {
    margin-top: 50px !important;
  }
  .m30-60-t {
    margin-top: 60px !important;
  }
  .m35-70-t {
    margin-top: 70px !important;
  }
  .m40-80-t {
    margin-top: 80px !important;
  }
  .m45-90-t {
    margin-top: 90px !important;
  }
  .m20-150-t {
    margin-top: 80px !important;
  }
  .m10-20-b {
    margin-bottom: 20px !important;
  }
  .m15-30-b {
    margin-bottom: 30px !important;
  }
  .m20-40-b {
    margin-bottom: 40px !important;
  }
  .m25-50-b {
    margin-bottom: 50px !important;
  }
  .m30-60-b {
    margin-bottom: 60px !important;
  }
  .m35-70-b {
    margin-bottom: 70px !important;
  }
  .m40-80-b {
    margin-bottom: 80px !important;
  }
  .m45-90-b {
    margin-bottom: 90px !important;
  }
} /*横幅768px以上*/
@media (min-width : 980px) {
  .m20-150-t {
    margin-top: 150px !important;
  }
} /*横幅980px以上*/
/*フォントの装飾*/
.b {
  font-weight: bold !important;
} /*太字*/
.normal {
  font-weight: normal !important;
} /*太字を解除*/
/*フォントサイズの設定*/
.big {
  font-size: 1.2em !important;
}
.big2 {
  font-size: 1.5em !important;
}
.big3 {
  font-size: 1.8em !important;
}
.small {
  font-size: 0.8em !important;
}
.f06em {
  font-size: 0.6em !important;
}
.f07em {
  font-size: 0.7em !important;
}
.f08em {
  font-size: 0.8em !important;
}
.f09em {
  font-size: 0.9em !important;
}
.f10em {
  font-size: 1.0em !important;
}
.f11em {
  font-size: 1.1em !important;
}
.f12em {
  font-size: 1.2em !important;
}
.f13em {
  font-size: 1.3em !important;
}
.f14em {
  font-size: 1.4em !important;
}
.f15em {
  font-size: 1.5em !important;
}
.f16em {
  font-size: 1.6em !important;
}
.f17em {
  font-size: 1.7em !important;
}
.f18em {
  font-size: 1.8em !important;
}
.f19em {
  font-size: 1.9em !important;
}
.f20em {
  font-size: 2.0em !important;
}
.f21em {
  font-size: 2.1em !important;
}
.f22em {
  font-size: 2.2em !important;
}
.f23em {
  font-size: 2.3em !important;
}
.f24em {
  font-size: 2.4em !important;
}
.f25em {
  font-size: 2.5em !important;
}
.f26em {
  font-size: 2.6em !important;
}
.f27em {
  font-size: 2.7em !important;
}
.f28em {
  font-size: 2.8em !important;
}
.f29em {
  font-size: 2.9em !important;
}
.f30em {
  font-size: 3.0em !important;
}
.f06rem {
  font-size: 0.6rem !important;
}
.f07rem {
  font-size: 0.7rem !important;
}
.f08rem {
  font-size: 0.8rem !important;
}
.f09rem {
  font-size: 0.9rem !important;
}
.f10rem {
  font-size: 1.0rem !important;
}
.f11rem {
  font-size: 1.1rem !important;
}
.f12rem {
  font-size: 1.2rem !important;
}
.f13rem {
  font-size: 1.3rem !important;
}
.f14rem {
  font-size: 1.4rem !important;
}
.f15rem {
  font-size: 1.5rem !important;
}
.f16rem {
  font-size: 1.6rem !important;
}
.f17rem {
  font-size: 1.7rem !important;
}
.f18rem {
  font-size: 1.8rem !important;
}
.f19rem {
  font-size: 1.9rem !important;
}
.f20rem {
  font-size: 2.0rem !important;
}
.f21rem {
  font-size: 2.1rem !important;
}
.f22rem {
  font-size: 2.2rem !important;
}
.f23rem {
  font-size: 2.3rem !important;
}
.f24rem {
  font-size: 2.4rem !important;
}
.f25rem {
  font-size: 2.5rem !important;
}
.f26rem {
  font-size: 2.6rem !important;
}
.f27rem {
  font-size: 2.7rem !important;
}
.f28rem {
  font-size: 2.8rem !important;
}
.f29rem {
  font-size: 2.9rem !important;
}
.f30rem {
  font-size: 3.0rem !important;
}
.f10px {
  font-size: 10px !important;
}
.f11px {
  font-size: 11px !important;
}
.f12px {
  font-size: 12px !important;
}
.f13px {
  font-size: 13px !important;
}
.f14px {
  font-size: 14px !important;
}
.f15px {
  font-size: 15px !important;
}
.f16px {
  font-size: 16px !important;
}
.f17px {
  font-size: 17px !important;
}
.f18px {
  font-size: 18px !important;
}
.f19px {
  font-size: 19px !important;
}
.f20px {
  font-size: 20px !important;
}
.f21px {
  font-size: 21px !important;
}
.f22px {
  font-size: 22px !important;
}
.f23px {
  font-size: 23px !important;
}
.f24px {
  font-size: 24px !important;
}
/*横幅を指定*/
.w05 {
  width: 100%;
}
.w10 {
  width: 100%;
}
.w15 {
  width: 100%;
}
.w20 {
  width: 100%;
}
.w25 {
  width: 100%;
}
.w30 {
  width: 100%;
}
.w35 {
  width: 100%;
}
.w40 {
  width: 100%;
}
.w45 {
  width: 100%;
}
.w50 {
  width: 100%;
}
.w55 {
  width: 100%;
}
.w60 {
  width: 100%;
}
.w65 {
  width: 100%;
}
.w70 {
  width: 100%;
}
.w75 {
  width: 100%;
}
.w80 {
  width: 100%;
}
.w85 {
  width: 100%;
}
.w90 {
  width: 100%;
}
.w95 {
  width: 100%;
}
.w100 {
  width: 100%;
}
.w100-img{
  width: 100%!important;	
}

@media (min-width : 768px) {
  /*横幅を指定*/
  .w05 {
    width: 5%;
  }
  .w10 {
    width: 10%;
  }
  .w15 {
    width: 15%;
  }
  .w20 {
    width: 20%;
  }
  .w25 {
    width: 25%;
  }
  .w30 {
    width: 30%;
  }
  .w35 {
    width: 35%;
  }
  .w40 {
    width: 40%;
  }
  .w45 {
    width: 45%;
  }
  .w50 {
    width: 50%;
  }
  .w55 {
    width: 55%;
  }
  .w60 {
    width: 60%;
  }
  .w65 {
    width: 65%;
  }
  .w70 {
    width: 70%;
  }
  .w75 {
    width: 75%;
  }
  .w80 {
    width: 80%;
  }
  .w85 {
    width: 85%;
  }
  .w90 {
    width: 90%;
  }
  .w95 {
    width: 95%;
  }
  .w100 {
    width: 100%;
  }
} /*横幅768px以上*/
/*# sourceMappingURL=../../_cache/_maps/base.css.map */