@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --innerValue: 1100;
  --inner: var(--innerValue) * 1px;
  --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: "BIZ UDGothic", sans-serif;
  --jost-font: "Jost", sans-serif;
  --oswald-font: "Oswald", sans-serif;
  --base-color: #062A13;
  --base-background: #f3f3f3;
  --white: #fff;
  --back-black: #333;
  --black2: #222;
  --black3: #333;
  --black4: #444;
  --black5: #555;
  --black6: #666;
  --yellow:#FFD500;
  --light-yellow:#FFF9E1;
  --blue: #223F9A;
  --green: #5EC6C5;
  --beige: #F3F0E8;
  --beige2: #F3EFE4;
  --beige3: #EEE9DD;
  --beige4: #EEE8D9;
  --red: #FF4B4B;
  --gray: #707070;
  --gray2: #CCCCCC;
  --gray3: #EEEEEE;
  --gray4: #F3F3F3;
  --gray5: #999999;
  --gray6: #EFEFEF;
  --gray7: #E5E5E5;
  --green:#90AE3A;
  --green2: #0F7A3D;
  --law: #977602;
  --literature: #FF9900;
  --economy: #FF6600;
  --society: #FF3300;
  --business: #FF6666;
  --international: #FF3366;
  --human: #993366;
  --welfare: #663399;
  --career: #3366CC;
  --gis: #006699;
  --sports: #339966;
  --info: #006600;
  --design: #006666;
  --science: #669900;
  --life: #999900;
  --header: 100;
  --mv: 101;
  --mvOver: 102;
  --hamburger: 103;
  --drawer: 120;
  --drawer-back: 101;
  --page-top: 99;
  --modal: 110;
  --modal-back: 109;
  --aside: 111;
  --base-line-height: 1.5;
  --duration: 0.3s ease;
  --scale: scale(1.2);
  --aside-width: 240px;
  --leading-trim: calc((1em - 1lh) / 2);
  /* デザインカンプで取得した余白が32pxの場合 */
}

:lang(en) {
  --leading-trim: calc((1cap - 1lh) / 2);
}

/********************************
* セッティング反映
********************************/
body {
  color: var(--base-color);
  font-family: var(--base-font);
  font-weight: var(--normal);
  line-height: var(--base-line-height);
  background: var(--base-background);
  border-top: 10px solid #0F7A3D;
  border-bottom: 10px solid #0F7A3D;
}

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 {
  scroll-behavior: smooth;
  -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-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-block: 0.9375rem;
  padding-inline: var(--aside-width) 0;
  min-height: 3.125rem;
}

.c-breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  padding-inline: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 0;
}

.c-breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
.c-breadcrumbs li a {
  -webkit-transition: color var(--duration), -webkit-text-decoration var(--duration);
  transition: color var(--duration), -webkit-text-decoration var(--duration);
  transition: color var(--duration), text-decoration var(--duration);
  transition: color var(--duration), text-decoration var(--duration), -webkit-text-decoration var(--duration);
  text-decoration: underline;
  position: relative;
}

.c-breadcrumbs li:first-child a::after {
  display: block;
  content: "";
  width: 1.625rem;
  height: 1.375rem;
  background: url(../../assets/images/common/icon_home.webp) no-repeat center center/contain;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}

.c-breadcrumbs li:not(:first-child)::after {
  display: inline-block;
  content: "";
  width: 1.625rem;
  height: 0.9375rem;
  background: url(../../assets/images/common/icon_path.webp) no-repeat center center/contain;
}
.c-hamburger {
  --hamburger-color1: var(--base-color);
  --hamburger-color2: var(--white);
  display: block;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: var(--yellow);
  cursor: pointer;
  -webkit-transition: all var(--duration);
  transition: all var(--duration);
  width: 5.125rem;
  height: 100%;
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
  border-left: 2px solid;
}
.c-hamburger::after {
  content: "menu";
  display: block;
  font-size: 0.75rem;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.9375rem;
  white-space: nowrap;
  -webkit-transition: color var(--duration);
  transition: color var(--duration);
}

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

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

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

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

.c-hamburger[aria-expanded=true] {
  background: var(--base-color);
}
.c-hamburger[aria-expanded=true]::after {
  content: "close";
  color: var(--white);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background: transparent;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line::before, .c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  top: 0;
  background: 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-hamburger__text {
  font-size: 0.75rem;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.9375rem;
}

.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: 2px solid;
  padding-block: 0.8125rem;
  padding-inline: 0.625rem 3.75rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
  position: relative;
}
.c-list::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.25rem;
  background: currentColor;
  position: absolute;
  right: 3.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-list::after {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: url(../../assets/images/common/icon_arrow_right_black.svg) no-repeat center center/contain;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-list:first-child {
  border-top: 2px 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(--bold);
  line-height: 1.4285714286;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-inline: 1.875rem 1.25rem;
}

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

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

.c-list__cat {
  font-size: 0.75rem;
  font-weight: var(--bold);
  line-height: 1.2142857143;
  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::before {
  content: "";
  display: block;
  width: 0.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.c-list__cat.is_all::before {
  background: currentColor;
}
.c-list__cat.is_yellow::before {
  background: var(--yellow);
}
.c-list__cat.is_blue::before {
  background: var(--blue);
}
.c-list__cat.is_green::before {
  background: var(--green);
}

.c-page-top {
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  -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;
}
.c-page-top img {
  width: 100%;
}

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

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

.l-mainContents {
  -webkit-padding-start: var(--aside-width);
          padding-inline-start: var(--aside-width);
}

.p-article-wrap > *:first-child {
  margin-top: 0;
}

.p-article-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
}
.p-article-wrap h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: var(--bold);
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin: 3.125rem -1.25rem 1.875rem;
  padding: 0.9375rem 2.5rem 0.9375rem 3.125rem;
  min-height: 5rem;
  background: var(--gray7);
  border-radius: 10px;
  position: relative;
}
.p-article-wrap h1::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 50%;
  border-radius: 5px;
  background: var(--green);
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.p-article-wrap h1.is-square {
  border-radius: 0;
}
.p-article-wrap h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: var(--bold);
  padding-bottom: 1.5625rem;
  position: relative;
  margin-block: 3.125rem 1.875rem;
}
.p-article-wrap h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.375rem;
  border-radius: 6px;
  background: var(--green);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.p-article-wrap h3 {
  font-size: 1.5rem;
  font-weight: var(--bold);
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding-bottom: 1.4375rem;
  margin-block: 3.125rem 1.875rem;
  position: relative;
}
.p-article-wrap h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.375rem;
  border-radius: 3px;
  background: var(--gray5);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.p-article-wrap h4 {
  font-size: 1.25rem;
  font-weight: var(--bold);
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-left: 1.5625rem;
  position: relative;
  margin-block: 2.5rem 1.25rem;
}
.p-article-wrap h4::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.375rem;
  background: var(--green);
  border-radius: 12px;
  position: absolute;
  top: 0.75rem;
  left: -0.625rem;
}
.p-article-wrap h5 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: var(--bold);
  line-height: 1.4;
  padding-left: 1.875rem;
  position: relative;
  margin-block: 2.5rem 1.25rem;
}
.p-article-wrap h5::before {
  content: "";
  display: block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  top: 0.3125rem;
  left: 0;
}
.p-article-wrap h6 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: var(--bold);
  line-height: 1.5;
  margin-block: 2.5rem 1.25rem;
}
.p-article-wrap p {
  font-size: 1rem;
  margin-block: 1.25rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-article-wrap p a {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: var(--bold);
}
.p-article-wrap ul,
.p-article-wrap ol {
  margin-block: 1.875rem;
}
.p-article-wrap ul ul,
.p-article-wrap ul ol,
.p-article-wrap ol ul,
.p-article-wrap ol ol {
  margin-block: 0rem;
}
.p-article-wrap ul li,
.p-article-wrap ol li {
  position: relative;
  padding-left: 2.1875rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 8px;
}
.p-article-wrap ul li a,
.p-article-wrap ol li a {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: var(--bold);
}
.p-article-wrap ul li::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../assets/images/common/icon-list-dot.webp) no-repeat center center/contain;
  position: absolute;
  top: 0.25rem;
  left: 0;
}
.p-article-wrap ul li.is-link-in::before {
  background: url(../../assets/images/common/icon-link-in.webp) no-repeat center center/contain;
}
.p-article-wrap ul li.is-link-out::before {
  background: url(../../assets/images/common/icon-link-out.webp) no-repeat center center/contain;
}
.p-article-wrap ul li.is-link-pdf::before {
  background: url(../../assets/images/common/icon-link-pdf.webp) no-repeat center center/contain;
}
.p-article-wrap ul li.is-link-file::before {
  background: url(../../assets/images/common/icon-link-file.webp) no-repeat center center/contain;
}
.p-article-wrap ul li.is-link-point::before {
  background: url(../../assets/images/common/icon-link-point.webp) no-repeat center center/contain;
}
.p-article-wrap ul li.is-link-note::before {
  background: url(../../assets/images/common/icon-link-note.webp) no-repeat center center/contain;
}
.p-article-wrap ol li::before {
  content: counter(list-item) ".";
  display: block;
  position: absolute;
  top: 0;
  left: 1.0625rem;
}
.p-article-wrap ol.is-katakana li::before {
  content: counter(list-item, katakana) "." !important;
  left: 0.625rem;
}
.p-article-wrap ol.is-loweralpha li::before {
  content: counter(list-item, lower-alpha) "." !important;
  left: 0.625rem;
}
.p-article-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}
.p-article-wrap .box-white {
  background: var(--white);
  border-radius: 20px;
  margin: 20px 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.p-article-wrap .box-white h4 {
  margin: 0;
  padding: 30px 20px 30px 60px;
  border-bottom: 1px solid #ccc;
}
.p-article-wrap .box-white h4::before {
  top: 40px;
  left: 20px;
}
.p-article-wrap .box-white h5 {
  margin: 30px 0 0;
  padding: 0 0 0 60px;
}
.p-article-wrap .box-white h5::before {
  left: 25px;
}
.p-article-wrap .box-white ul + h5 {
  margin-top: 0;
}
.p-article-wrap .box-white ul {
  margin: 0;
  padding: 20px 20px 30px;
}

.p-aside {
  --topPosition: 2.5rem;
  --kado: 15px;
  width: var(--aside-width);
  height: calc(100vh - var(--topPosition));
  position: fixed;
  top: var(--topPosition);
  left: 0;
  z-index: var(--aside);
}
.p-aside::after {
  content: "";
  display: inline-block;
  width: calc(var(--kado) * 1.412);
  height: 2px;
  background: #000;
  position: absolute;
  top: var(--kado);
  right: 0;
  z-index: 2;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-aside__contents {
  border-top: 2px solid;
  border-right: 2px solid;
  padding-top: 1.5625rem;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--kado)) 0, 100% var(--kado), 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - var(--kado)) 0, 100% var(--kado), 100% 100%, 0 100%);
  background: var(--white);
  height: 100%;
}

.p-aside__logoImg {
  width: 9.375rem;
  margin-inline: auto;
}

.p-aside__logoTitle {
  width: 12rem;
  margin-inline: auto;
  -webkit-margin-before: 1.4375rem;
          margin-block-start: 1.4375rem;
}

.p-aside__body {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
  padding-inline: 0.9375rem;
  -webkit-padding-after: 15.625rem;
          padding-block-end: 15.625rem;
  height: 100%;
  overflow: auto;
}

.p-aside__menuItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.1875;
  width: 100%;
  border-top: 1px solid;
  min-height: 5rem;
  padding: 0.9375rem 4.375rem 0.9375rem 0.625rem;
  text-align: left;
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-aside__menuItem::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.75rem;
  background: url(../../assets/images/common/icon_arrow_circle_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.9375rem;
}

.p-aside__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;
  gap: 0.625rem;
  padding: 0.9375rem;
  background: var(--yellow);
  border: 2px solid;
  border-right: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  font-family: var(--jost-font);
  font-weight: var(--bold);
  line-height: 1.4375;
  -webkit-margin-end: -0.9375rem;
          margin-inline-end: -0.9375rem;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-aside__btn::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.75rem;
  background: url(../../assets/images/common/icon_arrow_right_black.svg) no-repeat center center/contain;
}

.p-drawer {
  display: none;
}

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

.p-drawer__contents {
  padding-inline: 1.25rem;
}

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

.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 2.375rem;
  background: transparent;
  font-size: 1.25rem;
  font-weight: var(--bold);
  line-height: 1.2;
  min-height: 6.25rem;
  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.is_link::after {
  background: url(../../assets/images/common/icon_arrow_circle_right_bold.svg) no-repeat center center/contain;
}
.p-drawer__accordionBtn::-webkit-details-marker {
  display: none;
}
.p-drawer__accordionBody {
  overflow: hidden;
}

.p-drawer__accordionLink {
  min-height: 5rem;
  padding-block: 0.3125rem;
  padding-inline: 0.625rem 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  font-size: 1.125rem;
  font-weight: var(--bold);
  line-height: 1.2222222222;
  border-bottom: 1px solid #808080;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
  position: relative;
}
.p-drawer__accordionLink::before {
  display: block;
  content: "";
  width: 1px;
  height: 1.25rem;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.75rem;
}
.p-drawer__accordionLink::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../assets/images/common/icon_arrow_right_black.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-drawer__accordionLink img {
  width: 3.5rem;
  aspect-ratio: 56/68;
}
.p-drawer__accordionLink.is_top {
  border: 2px solid;
  background: var(--white);
  font-size: 1.25rem;
}
.p-drawer__accordionLink.is_top::before {
  width: 1.875rem;
  height: 1.875rem;
  background: var(--yellow);
  border: 2px solid;
  right: 1.875rem;
}
.p-drawer__accordionLink.is_top::after {
  width: 1.125rem;
  height: 1.125rem;
  right: 2.1875rem;
}

.p-drawer__area {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-drawer__links {
  display: grid;
  gap: 0.9375rem;
}

.p-drawer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 5rem;
  border-radius: 10px;
  border: 2px solid;
  font-size: 1.25rem;
  font-weight: var(--bold);
  line-height: 1.2;
  padding: 0.625rem 1.875rem;
  position: relative;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-drawer__link::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../assets/images/common/icon_arrow_right_black.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-drawer__link.is_white {
  background: var(--white);
  font-family: var(--jost-font);
  line-height: 1.45;
}

.p-drawer__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 0.9375rem;
}

.p-drawer__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
.p-drawer__item span {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--white);
}
.p-drawer__item span img {
  width: 1.5rem;
}

.p-drawer__subLinks {
  display: grid;
  gap: 0.3125rem;
}

.p-drawer__subLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-drawer__subLink img {
  width: 1.5rem;
}
.p-drawer__subLink span {
  text-decoration: underline;
}

.p-footer {
  background: var(--gray3);
  padding-block: 3.75rem 3.75rem;
  position: relative;
}

.p-footer__logoImg {
  display: block;
  width: 24.375rem;
  height: auto;
  margin: 0 auto;
}
.p-footer__logoImg img {
  display: block;
  width: 100%;
}

.p-footer__sns {
  margin-top: 3.75rem;
}
.p-footer__sns .p-footer__sns_btn {
  display: block;
  width: 18.75rem;
  height: auto;
  margin: 0 auto;
}
.p-footer__sns .p-footer__sns_btn img {
  display: block;
  width: 100%;
}

.p-footer__body {
  width: 25rem;
  margin: 3.75rem auto 0;
}
.p-footer__body .p-footer__text {
  text-align: center;
}
.p-footer__body .p-footer__text p {
  margin-top: 1.875rem;
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__link {
  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;
  border: 1px solid #ccc;
  width: 9.375rem;
  height: 2.25rem;
  border-radius: 1.125rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.p-footer__copy {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
}

.p-header-menu {
  height: inherit;
}

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

.p-header-menu__item {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
.p-header-menu__item span {
  -webkit-transition: -webkit-text-decoration var(--duration);
  transition: -webkit-text-decoration var(--duration);
  transition: text-decoration var(--duration);
  transition: text-decoration var(--duration), -webkit-text-decoration var(--duration);
}
.p-header-menu__item:has(.p-header-menu__itemText) {
  gap: 0.9375rem;
}

.p-header-menu__itemImg {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--white);
  -webkit-transition: background var(--duration), border var(--duration);
  transition: background var(--duration), border var(--duration);
}
.p-header-menu__itemImg img {
  width: 1.5rem;
}

.p-header-menu__item.st_search .p-header-menu__itemImg {
  background: var(--black2);
  border: 3px solid var(--black2);
}

:root {
  --header-height: 5.3125rem;
  --header-height-tab: 4.6875rem;
  --header-height-sp: 3.125rem;
  --header-height-top: 4.375rem;
}

.p-header {
  height: var(--header-height);
  background: var(--yellow);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--header);
}
.p-header.is_top {
  height: var(--header-height-top);
  -webkit-padding-after: 2.5rem;
          padding-block-end: 2.5rem;
}
.p-header.is_top .p-header__inner {
  height: 100%;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: inherit;
  padding-inline: 1.5625rem;
}

.p-header__logo {
  display: none;
  height: inherit;
}
.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  height: 100%;
}

.p-header__logoImg {
  width: 9.375rem;
}

.p-header__logoTitle {
  width: 16.75rem;
}

.p-header__drawer {
  display: none;
}

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

.p-pagetitle {
  border-bottom: 1px solid #fff;
}
.p-pagetitle .p-pagetitle__contents {
  border-bottom: 1px solid #ccc;
  padding: 3.125rem 0;
}
.p-pagetitle .p-pagetitle__title img {
  display: block;
  margin: 0 auto;
}
.p-pagetitle .p-pagetitle__text {
  max-width: 56.25rem;
  margin: 3.125rem auto 0;
  text-align: center;
  font-size: 1.875rem;
  padding: 0 3.125rem;
}
.p-pagetitle .p-pagetitle__discription {
  display: block;
  max-width: 56.25rem;
  margin: 3.125rem auto 0;
  font-size: 1.125rem;
  padding: 0 3.125rem;
}

.p-recommend {
  background: var(--beige);
  -webkit-padding-start: var(--aside-width);
          padding-inline-start: var(--aside-width);
  padding-block: 2.5rem;
  border-top: 2px solid;
}

.p-recommend__contents {
  padding-inline: 4.0625rem;
  position: relative;
}

.p-recommend__deco {
  display: grid;
  place-content: center;
  font-size: 1.125rem;
  font-family: var(--jost-font);
  font-weight: var(--bold);
  color: var(--white);
  padding-inline: 0.9375rem;
  min-height: 1.875rem;
  background: var(--base-color);
  border-radius: 5px;
  position: absolute;
  top: -2.5rem;
  left: 5.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.p-recommend__deco::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 14px;
  background: inherit;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -30%;
  left: 0.625rem;
}

.p-recommend__items .c-slide-arrow {
  display: grid;
  place-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  border: 2px solid;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
.p-recommend__items .c-slide-arrow::after {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: url(../../assets/images/common/icon_right.svg) no-repeat center center/contain;
}
.p-recommend__items .c-prev-arrow {
  left: -5.3125rem;
}
.p-recommend__items .c-prev-arrow::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-recommend__items .c-next-arrow {
  right: -5.3125rem;
}

.p-recommend__item {
  display: block;
  aspect-ratio: 1/1;
  margin-inline: 0.9375rem;
  border-radius: 15px;
  border: 2px solid;
  -webkit-transition: border-color var(--duration);
  transition: border-color var(--duration);
  overflow: hidden;
}
.p-recommend__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform var(--duration);
  transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
  transition: transform var(--duration), -webkit-transform var(--duration);
}

.p-snsAea {
  -webkit-padding-start: var(--aside-width);
          padding-inline-start: var(--aside-width);
  background: var(--yellow);
}

.p-snsAea__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 2.8125rem;
  position: relative;
}

.p-snsAea__head {
  -webkit-padding-end: 2.1875rem;
          padding-inline-end: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-snsAea__head img {
  width: 100%;
  max-width: 21rem;
}

.p-snsAea__body {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

.p-snsAea__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  -webkit-padding-start: 0.625rem;
          padding-inline-start: 0.625rem;
}

.p-snsAea__item {
  display: block;
  width: 3.4375rem;
  --shadow-position: 0.3125rem;
}

.p-snsAea__img {
  display: grid;
  place-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.p-snsAea__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 2px solid;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: background var(--duration), -webkit-transform var(--duration);
  transition: background var(--duration), -webkit-transform var(--duration);
  transition: transform var(--duration), background var(--duration);
  transition: transform var(--duration), background var(--duration), -webkit-transform var(--duration);
}
.p-snsAea__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black6);
  border-radius: inherit;
  border: 2px solid;
  position: absolute;
  top: var(--shadow-position);
  left: var(--shadow-position);
  z-index: -1;
}
.p-snsAea__img img {
  width: 1.5rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 3;
  -webkit-transition: -webkit-transform var(--duration);
  transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
  transition: transform var(--duration), -webkit-transform var(--duration);
}

.p-snsAea__title {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  text-align: center;
}

.p-snsAea__deco {
  width: 5.625rem;
  height: 6.25rem;
  position: absolute;
  bottom: 0;
  right: -3.75rem;
  z-index: 2;
}

.p-text-buttons {
  display: grid;
  gap: 1.875rem 1.875rem;
  margin-block: 3.125rem;
}
.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.is_center .p-text-buttons__title,
.p-text-buttons.is_round .p-text-buttons__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-text-buttons.is_center .p-text-buttons__title::before,
.p-text-buttons.is_round .p-text-buttons__title::before {
  content: none;
}
.p-text-buttons.is_center .p-text-buttons__title span,
.p-text-buttons.is_round .p-text-buttons__title span {
  position: relative;
}
.p-text-buttons.is_center .p-text-buttons__title span::before,
.p-text-buttons.is_round .p-text-buttons__title span::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.25rem;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: -1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-text-buttons.is_round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-text-buttons.is_round .p-text-buttons__contents {
  border-radius: 50px;
}
.p-text-buttons.is_round .p-text-buttons__contents::after {
  background: var(--white);
}
.p-text-buttons.is_round .p-text-buttons__title {
  border-radius: inherit;
  min-width: 18.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 3.75rem;
  background: var(--yellow);
}

.p-text-buttons.is_black .p-text-buttons__contents::after {
  background: var(--black2);
}

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

.p-text-buttons__contents {
  position: relative;
  border-radius: 10px;
  -webkit-transition: -webkit-transform var(--duration);
  transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
  transition: transform var(--duration), -webkit-transform var(--duration);
}
.p-text-buttons__contents::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: inherit;
  position: absolute;
  border: 2px solid;
  top: 0.4375rem;
  left: 0.4375rem;
  z-index: -1;
  -webkit-transition: -webkit-transform var(--duration);
  transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
  transition: transform var(--duration), -webkit-transform var(--duration);
}

.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: 1.125rem;
  line-height: 1.2222222222;
  font-weight: var(--bold);
  -webkit-transition: background var(--duration), border var(--duration);
  transition: background var(--duration), border var(--duration);
  padding-inline: 1.25rem 0.9375rem;
  min-height: 6.25rem;
  border-radius: inherit;
  border: 2px solid;
  background: var(--white);
  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__title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.p-text-buttons__title span img {
  width: 3.5rem;
  -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.svg) no-repeat center center/contain;
}

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

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

.p-text-buttons__text {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1.25rem;
}

.p-text-buttons__textTop {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  -webkit-margin-after: 1.25rem !important;
          margin-block-end: 1.25rem !important;
}
.p-text-buttons__textTop::before, .p-text-buttons__textTop::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.375rem;
  background: url(../../assets/images/common/deco_var.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
}
.p-text-buttons__textTop::before {
  left: -2.1875rem;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
.p-text-buttons__textTop::after {
  right: -2.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-topcontent .p-topcontent__main {
  border-bottom: 1px solid #ccc;
  padding: 3.75rem 0;
}
.p-topcontent .p-topcontent__sub {
  border-top: 1px solid #fff;
  padding: 3.75rem 0;
}
.p-topcontent .p-topcontent__title {
  color: #90AE3A;
  font-size: 1.875rem;
  text-align: center;
}
.p-topcontent .p-topcontent__link {
  width: 37.5rem;
  margin: 3.75rem auto 0;
}
.p-topcontent .p-topcontent__link .item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin: 1.25rem 0;
}
.p-topcontent .p-topcontent__link .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  background: #fff;
  border-radius: 0.9375rem;
  padding: 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 300;
  border: 2px solid #fff;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.p-topcontent .p-topcontent__link .item a::before {
  content: "";
  display: block;
  background: #90AE3A;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.75rem;
  margin-right: 1.25rem;
}
.p-topcontent .p-topcontent__link .item a::after {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  background-image: url(../../assets/images/common/icon_double_arrow_right_green.webp);
  background-size: 100%;
  background-position: center;
}
.p-topcontent .p-topcontent__link .item a:hover {
  border: 2px solid #90AE3A;
}
.p-topcontent .p-topcontent__link .item.is-window a::after {
  background-image: url(../../assets/images/common/icon_open_green.webp);
}
.p-topcontent .p-topcontent__sublink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 37.5rem;
  margin: 3.75rem auto 0;
  gap: 1.25rem;
}
.p-topcontent .p-topcontent__sublink .item {
  width: calc(50% - 10px);
}
.p-topcontent .p-topcontent__sublink .item img {
  display: block;
  width: 100%;
  height: auto;
}
.p-topcontent .p-topcontent__sublink .item a {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.p-topcontent .p-topcontent__sublink .item a:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media screen and (min-width: 1280px){
  body:has(.p-asideModal[aria-hidden=false]) {
    overflow: hidden;
  }
}
@media screen and (max-width: 1279px){
  .c-breadcrumbs {
    padding-block: 0.9375rem;
    padding-inline: initial;
  }
  .c-breadcrumbs ul {
    padding-inline: 0.9375rem;
  }
  .l-inner {
    padding-inline: var(--padding-tab);
  }
  .l-mainContents {
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
  .p-aside {
    display: none;
  }
  .p-drawer {
    display: block;
    position: fixed;
    width: 100%;
    height: 100dvh;
    padding-bottom: 6.25rem;
    top: var(--header-height-tab);
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: var(--drawer);
    background: var(--yellow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .p-header {
    height: var(--header-height-tab);
    background: var(--white);
    position: fixed;
    border-bottom: 2px solid;
  }
  .p-header.is_top {
    height: var(--header-height-tab);
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
  .p-header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.625rem;
    padding-inline: 1.25rem 0;
  }
  .p-header__logo {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-header__logo a {
    gap: 1.25rem;
  }
  .p-header__logoTitle {
    width: 16.125rem;
  }
  .p-header__menu {
    display: none;
  }
  .p-header__drawer {
    display: block;
  }
  .p-recommend {
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
  .p-recommend__deco {
    left: 2.5rem;
  }
  .p-recommend__items .c-prev-arrow {
    left: -2.8125rem;
  }
  .p-recommend__items .c-next-arrow {
    right: -2.8125rem;
  }
  .p-snsAea {
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
  .p-snsAea__contents {
    grid-template-columns: 42% 1fr;
    padding-inline: 2.5rem;
  }
  .p-snsAea__head {
    -webkit-padding-end: initial;
            padding-inline-end: initial;
  }
  .p-snsAea__head img {
    max-width: 17.3125rem;
  }
  .p-snsAea__items {
    gap: 0.625rem;
    -webkit-padding-start: 1.5625rem;
            padding-inline-start: 1.5625rem;
  }
  .p-snsAea__deco {
    width: 4.375rem;
    height: 5rem;
    right: -1.25rem;
  }
  .p-text-buttons {
    gap: 1.875rem 1.5625rem;
  }
  body:has(.c-hamburger[aria-expanded=true]) {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px){
  .c-breadcrumbs {
    padding-block: 0.625rem;
    min-height: 3.125rem;
  }
  .c-breadcrumbs ul {
    gap: 0.3125rem 0;
  }
  .c-breadcrumbs li {
    font-size: 0.625rem;
  }
  .c-breadcrumbs li:first-child a::after {
    width: 0.875rem;
  }
  .c-hamburger {
    width: 3.875rem;
  }
  .c-hamburger::after {
    bottom: 0.3125rem;
  }
  .c-list {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
    padding-block: 0.9375rem;
    padding-inline: 0.9375rem 3.75rem;
  }
  .c-list::before {
    height: 0.75rem;
    right: 2.8125rem;
  }
  .c-list::after {
    width: 1.125rem;
    right: 0.9375rem;
  }
  .c-list__title {
    line-height: 1.5714285714;
    padding-inline: initial;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .c-list__meta {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 0.3125rem;
  }
  .c-list__date {
    font-size: 0.75rem;
  }
  .c-page-top {
    width: 3.75rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .l-inner {
    padding-inline: var(--padding-sp);
  }
  .p-article-wrap {
    padding: 30px 20px;
  }
  .p-article-wrap h1 {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    padding: 0.5625rem 0.9375rem 0.5625rem 1.875rem;
    margin: 1.875rem 0 1.25rem;
    min-height: 3.75rem;
  }
  .p-article-wrap h1::before {
    width: 0.3125rem;
    left: 15px;
  }
  .p-article-wrap h2 {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    padding-bottom: 1.375rem;
    margin-block: 1.875rem 1.25rem;
  }
  .p-article-wrap h3 {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    padding-bottom: 0.9375rem;
    margin-block: 1.875rem 1.25rem;
  }
  .p-article-wrap h4 {
    font-size: 1rem;
    line-height: 1.75;
    padding-left: 1.5625rem;
    margin-block: 1.875rem 1.25rem;
  }
  .p-article-wrap h4::before {
    width: 1.25rem;
    height: 0.375rem;
    top: 0.6875rem;
    left: -0.3125rem;
  }
  .p-article-wrap h5 {
    font-size: 1rem;
    line-height: 1.75;
    padding-left: 1.5625rem;
    margin-block: 1.875rem 1.25rem;
  }
  .p-article-wrap h5::before {
    width: 1rem;
    top: 0.375rem;
    left: 0;
  }
  .p-article-wrap h6 {
    font-size: 1rem;
    line-height: 1.75;
    margin-block: 1.875rem 1.25rem;
  }
  .p-article-wrap p {
    font-size: 0.875rem;
    margin-block: 1.25rem;
  }
  .p-article-wrap ul,
  .p-article-wrap ol {
    margin-block: 1.25rem;
  }
  .p-article-wrap ul li,
  .p-article-wrap ol li {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    padding-left: 1.625rem;
    margin-top: 5px;
  }
  .p-article-wrap ul li::before {
    width: 1.125rem;
    height: 1.125rem;
  }
  .p-article-wrap ol li::before {
    left: 0.625rem;
  }
  .p-article-wrap img {
    margin: 20px auto;
  }
  .p-article-wrap .box-white {
    border-radius: 10px;
    margin: 10px 0;
  }
  .p-article-wrap .box-white h4 {
    padding: 20px 10px 20px 50px;
  }
  .p-article-wrap .box-white h4::before {
    top: 30px;
    left: 15px;
  }
  .p-article-wrap .box-white h5 {
    padding: 0 0 0 50px;
  }
  .p-article-wrap .box-white h5::before {
    left: 20px;
  }
  .p-article-wrap .box-white ul {
    padding: 15px 20px 20px;
  }
  .p-drawer {
    top: var(--header-height-sp);
  }
  .p-drawer__contents {
    padding-inline: var(--padding-sp);
  }
  .p-drawer__accordionBtn {
    font-size: 1.125rem;
    gap: 1.5625rem;
    padding-block: 0.3125rem;
    padding-inline: 0.9375rem 1.25rem;
    min-height: 5rem;
  }
  .p-drawer__accordionBtn::after {
    width: 1.125rem;
    height: 1.375rem;
  }
  .p-drawer__accordionLink {
    min-height: 3.75rem;
    font-size: 0.875rem;
    gap: 0.625rem;
  }
  .p-drawer__accordionLink::before {
    right: 2.5rem;
  }
  .p-drawer__accordionLink::after {
    width: 1.125rem;
    height: 1.375rem;
    right: 0.625rem;
  }
  .p-drawer__accordionLink img {
    width: 2.25rem;
  }
  .p-drawer__accordionLink.is_top {
    font-size: 1rem;
  }
  .p-drawer__accordionLink.is_top::before {
    right: 0.9375rem;
  }
  .p-drawer__accordionLink.is_top::after {
    right: 1.25rem;
  }
  .p-drawer__area {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
  .p-drawer__link {
    min-height: 3.75rem;
    font-size: 1.125rem;
    padding: 0.3125rem 1.25rem;
  }
  .p-drawer__link::after {
    width: 1.125rem;
    height: 1.375rem;
  }
  .p-drawer__link.is_white {
    font-size: 1rem;
  }
  .p-drawer__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-drawer__subLink {
    font-size: 0.875rem;
    gap: 0.625rem;
  }
  .p-footer {
    padding-block: 1.875rem 5.625rem;
  }
  .p-footer__logoImg {
    width: 12.5rem;
  }
  .p-footer__sns {
    margin-top: 1.875rem;
  }
  .p-footer__sns .p-footer__sns_btn {
    width: 10rem;
  }
  .p-footer__body {
    width: 100%;
    margin: 1.875rem 0 0;
  }
  .p-footer__body .p-footer__text p {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
  .p-footer__links {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
  .p-footer__link {
    width: 7.5rem;
    height: 1.875rem;
    font-size: 0.75rem;
    padding-inline: 0.3125rem 0.3125rem;
  }
  .p-footer__copy {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
  .p-header {
    height: var(--header-height-sp);
  }
  .p-header.is_top {
    height: var(--header-height-sp);
  }
  .p-header__inner {
    padding-inline: 0.9375rem 0;
  }
  .p-header__logo a {
    gap: 0.625rem;
  }
  .p-header__logoImg {
    width: 100%;
    max-width: 5.875rem;
  }
  .p-header__logoTitle {
    width: 100%;
    max-width: 11.25rem;
  }
  .p-lists {
    margin-inline: -0.9375rem;
  }
  .p-pagetitle .p-pagetitle__contents {
    padding: 1.875rem 0;
  }
  .p-pagetitle .p-pagetitle__title img {
    width: 18.125rem;
  }
  .p-pagetitle .p-pagetitle__text {
    font-size: 1.5rem;
    width: 100%;
    margin: 1.875rem 0 0;
    padding: 0 1.25rem;
  }
  .p-pagetitle .p-pagetitle__discription {
    font-size: 0.875rem;
    width: 100%;
    margin: 1.875rem 0 0;
    padding: 0 1.875rem;
  }
  .p-recommend__inner {
    --padding-sp: 0;
  }
  .p-recommend__contents {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: initial;
  }
  .p-recommend__deco {
    left: 1.875rem;
    font-size: 0.875rem;
    padding-inline: 0.625rem;
    min-height: 1.25rem;
  }
  .p-recommend__deco::after {
    width: 0.5rem;
    height: 0.625rem;
    bottom: -30%;
  }
  .p-recommend__items .c-slide-arrow {
    background: var(--yellow);
  }
  .p-recommend__items .c-prev-arrow {
    left: 0.9375rem;
  }
  .p-recommend__items .c-next-arrow {
    right: 0.9375rem;
  }
  .p-recommend__item {
    margin-inline: 0.46875rem;
  }
  .p-snsAea__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    padding-block: 1.875rem 0;
    padding-inline: initial;
  }
  .p-snsAea__head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-snsAea__head img {
    max-width: 21rem;
  }
  .p-snsAea__items {
    gap: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
  .p-snsAea__deco {
    position: initial;
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
    margin-inline: auto;
  }
  .p-text-buttons {
    gap: 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.is_center .p-text-buttons__title span::before,
  .p-text-buttons.is_round .p-text-buttons__title span::before {
    right: -1.25rem;
  }
  .p-text-buttons.is_round .p-text-buttons__title {
    width: 100%;
    min-width: 17.5rem;
    min-height: 3.125rem;
    min-width: initial;
  }
  .p-text-buttons__title {
    font-size: 0.875rem;
    min-height: 3.75rem;
    border-radius: 10px;
    gap: 1.875rem;
    padding-inline: 1.25rem 0.625rem;
  }
  .p-text-buttons__title::before {
    right: 2.5rem;
  }
  .p-text-buttons__title::after {
    width: 1.125rem;
    height: 1.375rem;
  }
  .p-text-buttons__title span img {
    width: 2.25rem;
  }
  .p-text-buttons__title:has(img) {
    padding-inline: 0.625rem 0.625rem;
  }
  .p-text-buttons__text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
  .p-text-buttons__textTop {
    font-size: 0.75rem;
    -webkit-margin-after: 0.625rem !important;
            margin-block-end: 0.625rem !important;
  }
  .p-text-buttons__textTop::before, .p-text-buttons__textTop::after {
    width: 0.6875rem;
    height: 0.875rem;
  }
  .p-text-buttons__textTop::before {
    left: -1.25rem;
  }
  .p-text-buttons__textTop::after {
    right: -1.25rem;
  }
  .p-topcontent .p-topcontent__main {
    padding: 1.875rem 0;
  }
  .p-topcontent .p-topcontent__sub {
    padding: 1.875rem 0;
  }
  .p-topcontent .p-topcontent__title {
    font-size: 1.125rem;
  }
  .p-topcontent .p-topcontent__link {
    width: 100%;
    margin: 1.875rem 0 0;
    padding: 0 1.875rem;
  }
  .p-topcontent .p-topcontent__link .item {
    margin: 0.625rem 0;
  }
  .p-topcontent .p-topcontent__link .item a {
    height: 60px;
    border-radius: 0.625rem;
    padding: 0 0.9375rem;
    font-size: 1.125rem;
  }
  .p-topcontent .p-topcontent__link .item a::before {
    height: 1.125rem;
    width: 1.125rem;
    border-radius: 0.5625rem;
    margin-right: 0.625rem;
  }
  .p-topcontent .p-topcontent__link .item a::after {
    height: 1.125rem;
    width: 1.125rem;
    right: 0.9375rem;
  }
  .p-topcontent .p-topcontent__sublink {
    width: 100%;
    margin: 1.875rem 0 0;
    padding: 0 1.875rem;
    gap: 0.625rem;
  }
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
@media (any-hover: hover){
  .c-breadcrumbs li:first-child a:hover {
    background: #eee;
  }
  .c-list:hover {
    background: var(--beige3);
  }
  .c-page-top:hover {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }
  .p-aside__menuItem:hover {
    background: var(--beige3);
  }
  .p-aside__btn:hover {
    background: var(--beige3);
  }
  .p-footer__link:hover {
    background: var(--gray2);
  }
  .p-header-menu__item:hover span {
    text-decoration: underline;
  }
  .p-header-menu__item:hover .p-header-menu__itemImg {
    background: transparent;
    border: 2px solid;
  }
  .p-header-menu__item:hover.st_search .p-header-menu__itemImg {
    border: 3px solid var(--white);
    background: var(--black2);
  }
  .p-recommend__items .c-slide-arrow:hover {
    background: var(--yellow);
  }
  .p-recommend__item:hover {
    border-color: var(--yellow);
  }
  .p-recommend__item:hover img {
    -webkit-transform: var(--scale);
            transform: var(--scale);
  }
  .p-snsAea__item:hover .p-snsAea__img::before {
    -webkit-transform: translate(var(--shadow-position), var(--shadow-position));
            transform: translate(var(--shadow-position), var(--shadow-position));
    background: var(--beige3);
  }
  .p-snsAea__item:hover .p-snsAea__img img {
    -webkit-transform: translate(var(--shadow-position), var(--shadow-position));
            transform: translate(var(--shadow-position), var(--shadow-position));
  }
  .p-text-buttons__item:hover .p-text-buttons__title {
    background: var(--beige3);
  }
  .p-text-buttons__item:hover .p-text-buttons__contents {
    -webkit-transform: translate(7px, 7px);
            transform: translate(7px, 7px);
  }
  .p-text-buttons__item:hover .p-text-buttons__contents::after {
    -webkit-transform: translate(-7px, -7px);
            transform: translate(-7px, -7px);
  }
  .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){
  .c-breadcrumbs li a:hover {
    color: var(--yellow);
    -webkit-text-decoration-color: var(--yellow);
            text-decoration-color: var(--yellow);
  }
  .p-article-wrap p a:hover {
    color: var(--yellow);
  }
  .p-article-wrap ul li a:hover,
  .p-article-wrap ol li a:hover {
    color: var(--yellow);
  }
}
@media print{
  .c-breadcrumbs {
    padding-block: 0.9375rem;
  }
  .l-inner {
    padding-inline: var(--padding-tab);
  }
  .p-header {
    height: var(--header-height-tab);
    position: absolute;
  }
  .p-header__menu {
    display: none;
  }
}