@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --innerValue: 1100;
  --inner: var(--innerValue) * 1px;
  --padding-xl: 160px;
  --padding-pc: 80px;
  --padding-tab: 40px;
  --padding-sp: 15px;
  --light: 300;
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --ex-bold: 800;
  --base-font: "Noto Sans JP", sans-serif;
  --noto-cjk-font: "noto-sans-cjk-jp", sans-serif;
  --biz-font: "BIZ UDGothic", sans-serif;
  --oswald-font: "Oswald", sans-serif;
  --base-color: #000;
  --base-background: #F6F6F6;
  --white: #fff;
  --back-black: #222;
  --black2: #222;
  --black3: #333;
  --black4: #444;
  --black5: #555;
  --red: #FF4B4B;
  --orange: #F5821F;
  --orange-dark: #D16000;
  --blue: #223F9A;
  --gray: #DDDDDD;
  --gray-light: #EEEEEE;
  --gray1: #E6E6E6;
  --gray2: #707070;
  --gray3: #CCCCCC;
  --gray4: #E1E1E1;
  --gray5: #F6F6F6;
  --gray6: #999999;
  --gray7: #BBBBBB;
  --btn-fucus: #fff;
  --border: var(--gray4);
  --border-back: color-mix(in srgb, var(--gray4) 30%, transparent);
  --header: 100;
  --hamburger: 103;
  --drawer: 102;
  --drawer-back: 101;
  --page-top: 99;
  --base-line-height: 1.5;
  --duration: 0.3s ease;
  --scale: scale(1.1);
}

/********************************
* セッティング反映
********************************/
body {
  color: var(--base-color);
  font-family: var(--base-font);
  font-weight: var(--normal);
  line-height: var(--base-line-height);
  background: var(--base-background);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #007bff;
}

html {
  font-size: 16px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-inline-size: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%; /* Safariではまだベンダープレフィックスが必要 */
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  text-rendering: optimizeSpeed;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.siteWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

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

ul,
ol {
  list-style-type: "";
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=reset],
select,
label,
summary,
[role=tab],
[role=button] {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: unset;
  background-color: unset;
  padding: unset;
  color: unset;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where([popover]) {
  width: unset;
  height: unset;
  padding: unset;
  overflow: unset;
  color: unset;
  background-color: unset;
  border: unset;
}

:where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
.c-hamburger {
  --hamburger-color1: var(--white);
  --hamburger-color2: var(--white);
  display: block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--base-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -webkit-transition: all var(--duration);
  transition: all var(--duration);
  width: 3.75rem;
  height: 3.75rem;
  position: relative;
}

.c-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: var(--hamburger-color1);
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before {
  top: -0.4375rem;
}

.c-hamburger__line::after {
  top: 0.4375rem;
}

.c-hamburger[aria-expanded=true]::after {
  content: "CLOSE";
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line::before, .c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  top: 0;
  background-color: var(--hamburger-color2);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-list {
  display: grid;
  grid-template-columns: subgrid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column: span 2;
  border-bottom: 1px solid var(--black3);
  padding: 0.875rem 1.25rem 0.9375rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.c-list:first-child {
  border-top: 1px solid;
}
.c-list.is_new .c-list__title::after {
  content: "new";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 0.125rem 0.3125rem;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-family: var(--oswald-font);
  font-weight: var(--normal);
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.625rem;
}

.c-list__title {
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
  border-left: 1px solid;
}

.c-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  -webkit-padding-end: 1.875rem;
          padding-inline-end: 1.875rem;
}

.c-list__date {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: var(--gray6);
}

.c-list__cat {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.c-list__cat.is_blue::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.3125rem;
  background: var(--blue);
}
.c-list__cat.is_orange::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.3125rem;
  background: var(--orange);
}

.c-page-top {
  width: 5rem;
  aspect-ratio: 1/1;
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-transition: all var(--duration);
  transition: all var(--duration);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: var(--page-top);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--orange);
}
.c-page-top img {
  width: 1.625rem;
}

.c-page-top.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.l-inner {
  width: 100%;
  padding-inline: var(--padding-pc);
}

.p-drawer {
  display: none;
}

.p-drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.p-drawer__contents {
  padding-inline: var(--padding-tab);
}

.p-drawer__head {
  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;
  height: 7.5rem;
  gap: 1.25rem;
}

.p-drawer__home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  color: var(--white);
  padding-inline: 1.25rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}

.p-drawer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.p-drawer__search {
  display: grid;
  place-items: center;
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 5px;
  border: 1px solid #808080;
  color: var(--white);
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-drawer__search img {
  width: 1.75rem;
}

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

.p-drawer__lang {
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-family: var(--oswald-font);
  font-weight: var(--medium);
  line-height: 1.4444444444;
  color: var(--white);
  background: rgba(255, 255, 255, 0.25);
  width: 5rem;
  aspect-ratio: 1/1;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-drawer__lang:nth-child(1) {
  border-radius: 5px 0 0 5px;
}
.p-drawer__lang:nth-child(2) {
  border-radius: 0 5px 5px 0;
}
.p-drawer__lang.is_active {
  background: rgba(255, 255, 255, 0.5);
}

.p-drawer__accordion {
  border: 2px solid var(--white);
}
.p-drawer__accordion[open] .p-drawer__accordionBtn::after {
  background: url(../../assets/images/common/icon_box2.svg) no-repeat center center/contain;
}

.p-drawer__accordion + .p-drawer__accordion {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-drawer__accordionBtn {
  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: 4.375rem;
  width: 100%;
  padding-block: 0.625rem;
  padding-inline: 1.25rem 1.75rem;
  color: var(--white);
  background: transparent;
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.6;
  min-height: 5rem;
  cursor: pointer;
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-drawer__accordionBtn::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.75rem;
  background: url(../../assets/images/common/icon_box.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-drawer__accordionBtn::before {
  display: block;
  content: "";
  width: 1px;
  height: 1.25rem;
  background: var(--white);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5rem;
}
.p-drawer__accordionBtn::-webkit-details-marker {
  display: none;
}

.p-drawer__accordionBody {
  overflow: hidden;
}

.p-drawer__accordionBodyInner {
  padding-inline: 1.25rem;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
}

.p-drawer__accordionLink {
  min-height: 3.75rem;
  padding: 0.3125rem 0.9375rem;
  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: 0.625rem;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  color: var(--white);
  border-bottom: 1px solid #808080;
  background: transparent;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-drawer__accordionLink span {
  display: block;
  /*max-width: rem(240);*/
}
.p-drawer__accordionLink::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.75rem;
  background: url(../../assets/images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-drawer__accordionLink.is_top {
  background: rgba(255, 255, 255, 0.25);
  border-bottom: none;
}

.p-drawer__linkArea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
.p-drawer__linkArea .p-drawer__link {
  min-height: 5rem;
}

.p-drawer__linkArea2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  border: 1px solid #808080;
}
.p-drawer__linkArea2 .p-drawer__link {
  min-height: 3.75rem;
  border-bottom: 1px solid #808080;
}
.p-drawer__linkArea2 .p-drawer__link:nth-child(1) {
  grid-column: span 1;
}
.p-drawer__linkArea2 .p-drawer__link:nth-child(2) {
  grid-column: span 1;
  border-left: 1px solid #808080;
}
.p-drawer__linkArea2 .p-drawer__link:nth-child(n+3) {
  grid-column: span 2;
}
.p-drawer__linkArea2 .p-drawer__link:last-child {
  border-bottom: none;
}

.p-drawer__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;
  gap: 3.75rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  color: var(--white);
  padding-block: 0.3125rem;
  padding-inline: 0.9375rem;
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-drawer__link::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.75rem;
  background: url(../../assets/images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-drawer__link::before {
  display: block;
  content: "";
  width: 1px;
  height: 1.25rem;
  background: var(--white);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5rem;
}

.p-drawer__linkBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding-inline: 0.9375rem;
  min-height: 5rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: var(--white);
  text-decoration: underline;
  border-top: 1px solid #808080;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
.p-drawer__linkBottom::before {
  display: block;
  content: "";
  width: 1.75rem;
  height: 2.125rem;
  background: url(../../assets/images/common/icon_arrow_slant_white.svg) no-repeat center center/contain;
  text-decoration: none;
}

.ccm-toolbar-visible .p-drawer[aria-hidden=false] {
  margin-top: 48px;
}

.p-footer {
  background: var(--back-black);
  padding-block: 3.125rem 1.875rem;
  position: relative;
}

body:has(.p-page) .p-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 3.125rem;
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.p-footer__head {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5625rem 1.25rem;
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  height: inherit;
}

.p-footer__logoImg {
  min-width: 5.9375rem;
  height: 100%;
  display: grid;
  place-content: center;
}
.p-footer__logoImg img {
  display: block;
  width: 100%;
}

.p-footer__logoTitle {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--white);
}

.p-footer__sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-footer__snsItem {
  display: grid;
  place-content: center;
  width: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 5px;
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
  margin-inline: 0.625rem;
}
.p-footer__snsItem::before, .p-footer__snsItem:last-child:after {
  content: "";
  display: block;
  width: 1px;
  height: 1.25rem;
  background: var(--white);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-footer__snsItem::before {
  left: -0.625rem;
}
.p-footer__snsItem:last-child:after {
  right: -0.625rem;
}
.p-footer__snsItem img {
  width: 1.5rem;
}

.p-footer__body {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  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;
  gap: 1.875rem 1.875rem;
}

.p-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-footer__btn {
  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;
  width: 10.9375rem;
  min-height: 2.5rem;
  background: var(--white);
  border-radius: 1.5625rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: var(--bold);
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-footer__btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.25rem;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 2.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-footer__btn::after {
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../../assets/images/common/icon_arrow_right_black.svg) no-repeat center center/contain;
  width: 1.25rem;
  height: 1.5rem;
}

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

.p-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding-inline: 1.25rem;
  min-height: 2.5rem;
  border-radius: 1.5625rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-footer__menu span {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: var(--white);
  text-decoration: underline;
}
.p-footer__menu::before {
  display: block;
  content: "";
  width: 1.75rem;
  height: 2.125rem;
  background: url(../../assets/images/common/icon_arrow_slant_white.svg) no-repeat center center/contain;
  text-decoration: none;
}

.p-footer__copy {
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.4166666667;
}

.p-header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  height: inherit;
}

.p-header-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header-menu__item {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  /*text-transform: uppercase;*/
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
  background: var(--white);
  padding-inline: 1.25rem;
}

.p-header-menu__meta {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header-menu__lang {
  display: grid;
  place-items: center;
  width: 3.125rem;
  height: 100%;
  font-size: 1.125rem;
  font-weight: var(--medium);
  font-family: var(--oswald-font);
  background: var(--gray-light);
  color: color-mix(in srgb, var(--base-color) 35%, transparent);
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-header-menu__lang.is_active {
  background: var(--gray);
  color: var(--base-color);
}

.p-header-menu__search {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 100%;
  background: var(--orange);
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-header-menu__search img {
  width: 1.75rem;
}

.p-header-menu__bottoms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  height: inherit;
}

.p-header-menu__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header-menu__bottomItem {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--white);
  padding-inline: 1.25rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}

:root {
  --header-height: 6.875rem;
  --header-height-top: 3.75rem;
  --header-height-bottom: 3.125rem;
  --header-height-tab: var(--header-height-top);
  --header-height-sp: var(--header-height-top);
}

.p-header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--header);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.p-header__top {
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-height-top);
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}

.p-header__bottom {
  background: color-mix(in srgb, var(--back-black) 85%, transparent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-height-bottom);
  padding-inline: 2.5rem;
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  height: inherit;
}

.p-header__logoImg {
  min-width: 5.9375rem;
  height: 100%;
  display: grid;
  place-content: center;
}
.p-header__logoImg img {
  display: block;
  width: 100%;
}

.p-header__logoTitle {
  font-size: 1rem;
  font-weight: var(--medium);
}

.p-header__drawer {
  display: none;
}

.ccm-toolbar-visible .p-header {
  top: 48px;
}

.p-lists {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}

.p-text-buttons {
  display: grid;
  gap: 2.5rem 2.5rem;
  margin-block: 2.5rem;
}
.p-text-buttons p {
  margin-bottom: initial;
}

.p-page__bottom .p-text-buttons {
  margin-block: initial;
}

.p-text-buttons.is-three {
  grid-template-columns: repeat(3, 1fr);
}

.p-text-buttons.is-two {
  grid-template-columns: repeat(2, 1fr);
}

.p-text-buttons.is-one {
  grid-template-columns: repeat(1, 1fr);
  margin-inline: 1.25rem;
}

.p-text-buttons__item {
  display: block;
  height: auto;
}

.p-text-buttons__title {
  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: 2.1875rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--bold);
  -webkit-transition: background var(--duration), border var(--duration);
  transition: background var(--duration), border var(--duration);
  padding-inline: 1.25rem 1.25rem;
  min-height: 6.25rem;
  background: var(--gray-light);
  border: 2px solid;
  border-radius: 10px;
  position: relative;
}
.p-text-buttons__title::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.25rem;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 3.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-text-buttons__title::after {
  display: block;
  content: "";
  width: 1.75rem;
  height: 2.125rem;
  background: url(../../assets/images/common/icon_arrow_right_black.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-text-buttons__item[class*=is_] .p-text-buttons__title::after {
  content: "";
  font-family: initial;
  width: 1.5rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-text-buttons__item.is_linkOut .p-text-buttons__title::after {
  background: url(../../assets/images/common/icon_link_black.svg) no-repeat center center/contain;
}

.p-text-buttons__item.is_pdf .p-text-buttons__title::after {
  background: url(../../assets/images/common/icon_pdf_black.svg) no-repeat center center/contain;
}

.p-text-buttons__item.is_file .p-text-buttons__title::after {
  background: url(../../assets/images/common/icon_file_black.svg) no-repeat center center/contain;
}

.p-text-buttons__text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  margin-top: 0.9375rem;
}

.sp_only {
  display: none;
}

/* ドロワーメニュー展開時背景固定 */

body:has(dialog[open]) {
  overflow: hidden;
}

body {
  overflow-y: scroll; /* 常にスクロールバーを表示 */
}

.siteWrapper:has(dialog[open]) {
  overflow-y: auto;
  scrollbar-gutter: stable; /* スクロールバーのスペースを常に確保する */
}

dialog[open] {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

dialog:not([open]) {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.siteWrapper {
  overflow-x: clip;
}

.siteWrapper {
  padding-top: var(--header-height-top);
}

.u-hover {
  -webkit-transition: opacity var(--duration);
  transition: opacity var(--duration);
}

.u-hover-white {
  -webkit-transition: opacity var(--duration), -webkit-filter var(--duration);
  transition: opacity var(--duration), -webkit-filter var(--duration);
  transition: opacity var(--duration), filter var(--duration);
  transition: opacity var(--duration), filter var(--duration), -webkit-filter var(--duration);
}

@media screen and (min-width: 1440px){
  .l-inner {
    padding-inline: var(--padding-xl);
  }
}

@media screen and (max-width: 1279px){
  .c-list {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
  }
  .c-list__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-padding-start: initial;
            padding-inline-start: initial;
    border: none;
  }
  .c-list__meta {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .l-inner {
    padding-inline: var(--padding-tab);
  }
  .p-drawer {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    padding-bottom: 6.25rem;
    top: var(--header-height-sp);
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: var(--drawer);
    background: color-mix(in srgb, var(--back-black) 95%, transparent);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .p-header {
    height: var(--header-height-tab);
  }
  .p-header__bottom {
    display: none;
  }
  .p-header__menu {
    display: none;
  }
  .p-header__drawer {
    display: block;
  }
  body:has(.c-hamburger[aria-expanded=true]) {
    overflow: hidden;
  }
}

@media screen and (max-width: 767px){
  .c-list {
    padding: 0.9375rem 0.9375rem;
  }
  .c-list:first-child {
    border-top: initial;
  }
  .c-list__title {
    line-height: 1.5714285714;
  }
  .c-page-top {
    width: 3.75rem;
  }
  .l-inner {
    padding-inline: var(--padding-sp);
  }
  .p-drawer__contents {
    padding-inline: var(--padding-sp);
  }
  .p-drawer__head {
    height: 5rem;
  }
  .p-drawer__buttons {
    gap: 0.625rem;
  }
  .p-drawer__search {
    width: 3.75rem;
  }
  .p-drawer__lang {
    font-size: 1rem;
    width: 3.75rem;
  }
  .p-drawer__accordion + .p-drawer__accordion {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
  .p-drawer__accordionBtn {
    gap: 1.5625rem;
    padding-block: 0.3125rem;
    padding-inline: 0.9375rem;
    min-height: 3.75rem;
  }
  .p-drawer__accordionBtn::before {
    right: 3.4375rem;
  }
  .p-drawer__accordionBodyInner {
    padding-inline: 0.9375rem;
  }
  .p-drawer__accordionLink {
    min-height: 3.125rem;
  }
  .p-drawer__linkArea {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
    gap: 0rem;
  }
  .p-drawer__linkArea .p-drawer__link {
    min-height: 3.75rem;
  }
  .p-drawer__linkArea2 {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
  .p-drawer__linkArea2 .p-drawer__link {
    min-height: 3.125rem;
  }
  .p-drawer__link {
    gap: 2.1875rem;
  }
  .p-drawer__link::before {
    right: 3.75rem;
  }
  .p-drawer__linkBottom {
    min-height: 3.75rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
  .p-footer {
    padding-block: 1.875rem 1.5625rem;
  }
  .p-footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .p-footer__logo {
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 4.375rem;
  }
  .p-footer__logoTitle {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
  .p-footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
  .p-footer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
  .p-footer__btn {
    padding-inline: 1.25rem 0.8125rem;
  }
  .p-footer__menus {
    -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: flex-start;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .p-footer__copy {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
    -webkit-padding-start: 1.25rem;
            padding-inline-start: 1.25rem;
  }
  .p-header {
    height: var(--header-height-sp);
  }
  .p-header__top {
    -webkit-padding-start: 0.9375rem;
            padding-inline-start: 0.9375rem;
  }
  .p-header__logo {
    gap: 1rem;
  }
  .p-header__logoTitle {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
  .p-text-buttons {
    gap: 0.625rem 0.9375rem;
    margin-block: 1.875rem;
    padding-inline: var(--padding-sp);
  }
  .p-text-buttons p {
    margin-bottom: initial;
  }
  .p-page__bottom .p-text-buttons {
    margin-block: initial;
  }
  .p-text-buttons.is-three {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-text-buttons.is-two {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-text-buttons.is-one {
    margin-inline: initial;
  }
  .p-text-buttons__title {
    font-size: 0.875rem;
    min-height: 3.75rem;
    border-radius: 5px;
    gap: 1.875rem;
    padding-inline: 0.9375rem 0.625rem;
  }
  .p-text-buttons__title::before {
    right: 2.5rem;
  }
  .p-text-buttons__title::after {
    width: 1.125rem;
    height: 1.375rem;
  }
  .p-text-buttons__item[class*=is_] .p-text-buttons__title::after {
    width: 1.125rem;
  }
  .p-text-buttons__text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .siteWrapper {
    padding-top: var(--header-height-sp);
  }
}

@media (any-hover: hover){
  .c-list:hover {
    background: var(--gray1);
  }
  .c-page-top:hover {
    background: var(--orange-dark);
  }
  .p-drawer__accordionBtn:hover {
    background: var(--black2);
  }
  .p-drawer__linkBottom:hover {
    background: var(--black2);
  }
  .p-footer__snsItem:hover {
    background: color-mix(in srgb, var(--white) 15%, transparent);
  }
  .p-footer__btn:hover {
    background: var(--gray3);
  }
  .p-footer__menu:hover {
    background: var(--black4);
  }
  .p-header-menu__item:hover {
    background: var(--gray1);
  }
  .p-header-menu__lang:hover {
    color: var(--white);
    background: var(--base-color);
  }
  .p-header-menu__search:hover {
    background: var(--orange-dark);
  }
  .p-header-menu__bottomItem:hover {
    background: var(--base-color);
  }
  .p-text-buttons__item:hover .p-text-buttons__title {
    background: var(--gray);
  }
  .u-hover:hover {
    opacity: 0.7;
  }
  .u-hover-white:hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
            filter: brightness(1.2) contrast(0.9);
  }
}

@media (hover: hover){
  .p-drawer__home:hover {
    background: var(--black2);
  }
  .p-drawer__search:hover {
    background: var(--black2);
  }
  .p-drawer__lang:hover {
    background: var(--black2);
  }
  .p-drawer__accordionLink:hover {
    background: var(--black2);
  }
  .p-drawer__link:hover {
    background: var(--black2);
  }
}

@media print{
  .c-list {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
  }
  .c-list__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-padding-start: initial;
            padding-inline-start: initial;
    border: none;
  }
  .c-list__meta {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .l-inner {
    padding-inline: var(--padding-tab);
  }
  .p-header {
    height: var(--header-height-tab);
    position: absolute;
  }
  .p-header__bottom {
    display: none;
  }
  .p-header__menu {
    display: none;
  }
}