@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  /* カラー */
  --color-text: #323232;
  --color-green: #008d82;
  --color-light-green: #72baa7;
  --color-gray: #ececec;
  --color-yellow: #ecff00;
  --color-orange: #d7a600;
  --color-dark-gray: #989898;
  --color-brown: #d2b478;
  /* duration */
  --duration: 0.4s;
  /* font-family */
  --font-family-jp: 'Raleway', 'Noto Sans JP', sans-serif;
  --font-family-en: 'Raleway', sans-serif;
  /* header margin */
  --margin-header-left: 234px;
  --margin-header-right: 74px;
}
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg,
img,
embed,
object,
iframe {
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  cursor: pointer;
}
button:disabled,
[type='button']:disabled,
[type='reset']:disabled,
[type='submit']:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
[type='number'] {
  -moz-appearance: textfield;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td,
th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}
a,
span {
  display: inline-block;
}
/* ===============================================
#ベース
=============================================== */
html {
  font-size: 62.5%;
}
body {
  background-color: #fff;
  color: #323232;
  font-family: var(--font-family-jp);
  font-weight: 400;
  line-height: 1.5;
  word-break: normal;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
a {
  color: #323232;
  transition: opacity 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1279px) {
  strong span {
    font-size: 20px !important;
  }
}

/* ===============================================
#レイアウト
=============================================== */
.l-main__container {
  overflow-x: clip;
}
.l-main__inner {
  position: relative;
  height: 100%;
  z-index: 10;
}
#contact-form {
    min-height: 800px;
}
.l-main__inner-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-main__inner {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--margin-header-left);
    padding-right: 75px;
  }
  
}

@media screen and (max-width: 1345px) {
  .l-main__inner-1000 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .l-main__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .l-main__inner-1000 {
    padding: 0px 15px;
  }
}
/* ===============================================
#ボタン
=============================================== */
.c-btn__arrow {
  padding-left: 45px;
  position: relative;
  letter-spacing: 0.03em;
}
.c-btn__arrow::before,
.c-btn__arrow::after {
  content: '';
  position: absolute;
  background-color: #323232;
  height: 1px;
  left: 0;
}
.c-btn__arrow::before {
  width: 30px;
  bottom: 7px;
  left: 0;
}
.c-btn__arrow::after {
  width: 9px;
  rotate: 45deg;
  bottom: 10px;
  left: 22px;
}
.c-btn__type1 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.02em;
  padding: 5px;
  width: 100%;
  border-radius: 50vw;
  text-align: center;
  font-weight: 600;
  background-color: var(--color-text);
}

.c-btn__type1.yellow {
  color: var(--color-text);
  background-color: var(--color-yellow);
}
/* ===============================================
#見出し
=============================================== */
.c-heading__box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-heading__en {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 400;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}
.c-heading__en.center {
  text-align: center;
}
.c-heading__ja {
  font-size: 21px;
  font-size: 2.1rem;
  font-family: var(--font-family-jp);
  letter-spacing: 0.06em;
  margin-top: 3px;
}
/* ===============================================
#共通margin
=============================================== */

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-43 {
  margin-top: 43px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-53 {
  margin-top: 53px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-117 {
  margin-top: 117px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-136 {
  margin-top: 136px !important;
}

.mt-minus142 {
  margin-top: -142px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-43 {
  margin-bottom: 43px !important;
}

.mb-53 {
  margin-bottom: 53px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-minus142 {
  margin-bottom: -142px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-117 {
  margin-bottom: 117px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.c-margin__bottom-50 {
  margin-bottom: 50px;
}
.c-margin__bottom {
  margin-bottom: 150px;
}
.c-margin__heading-bottom {
  margin-bottom: 60px;
}
@media screen and (max-width: 1279px) {
  .c-margin__mid-120 {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .mt-53 {
    margin-top: 32px !important;
  }

  .mt-60 {
    margin-top: 30px !important;
  }

  .mt-80 {
    margin-top: 40px !important;
  }

  .mt-100 {
    margin-top: 50px !important;
  }

  .mt-117 {
    margin-top: 62px !important;
  }

  .mt-120 {
    margin-top: 60px !important;
  }

  .mt-136 {
    margin-top: 68px !important;
  }

  .mb-117 {
    margin-bottom: 62px !important;
  }

  .mt-minus142 {
    margin-top: 0 !important;
    width: 100% !important;
  }
  .c-margin__bottom-50 {
    margin-bottom: 30px !important;
  }
  .c-margin__bottom {
    margin-bottom: 80px !important;
  }
  .c-margin__heading-bottom {
    margin-bottom: 40px !important;
  }
}

/* ===============================================
#共通padding
=============================================== */
.pt-117 {
  padding-top: 117px;
}

.pt-136 {
  padding-top: 136px;
}

.c-padding__mid {
  padding-top: 150px;
  padding-bottom: 150px;
}

.c-padding__mid-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1279px) {
  .pt-136 {
    padding-top: 98px;
  }

  .c-padding__mid {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .c-padding__mid-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ===============================================
#article 共通部品
=============================================== */
.h1 {
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 30px;
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.article h2,
.article__text h2,
.h2 {
  position: relative;
  font-size: 25px;
  padding-left: 8px;
  margin-bottom: 60px;
  border-left: 5px solid;
  font-weight: 600;
}

.article h2.border-none,
.h2.border-none {
  padding-left: 0px;
  border-left: none;
}

.article h2.border-none.light-green,
.h2.border-none.light-green {
  color: var(--color-light-green);
}

.article h3,
.article__text h3,
.h3 {
  font-size: 17px;
  margin-bottom: 28px;
  font-weight: 600;
}

.article h3.underline,
.h3.underline {
  text-decoration: underline;
}

.article h3::before,
.article__text h3::before,
.h3::before {
  content: '■';
}

.article h3.content-none::before,
.article__text h3.content-none::before,
.h3.content-none::before {
  content: none;
}

.article a,
.article span {
  display: inline;
}

.article__text h3.dashed {
  display: flex;
  align-items: center;
}

.article__text h3.dashed::after {
  content: '';
  border-top: 1px dashed var(--color-light-green);
  flex: 1;
  margin-left: 10px;
}

.org-h3-link {
  color: inherit;
}

.article p,
.p {
  line-height: 2;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.p.green {
  color: var(--color-green);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.article p > small,
.p > small {
  font-size: 1.3rem;
}

.article table p {
  margin-bottom: 0;
}

.article.orange h2,
.article.orange h3,
.h2.orange,
.h3.orange {
  color: var(--color-orange);
}

.article.green h3,
.article.news-color h3,
.h3.green {
  color: var(--color-green);
}

.article.light-green h3,
.article__text h3.light-green,
.h3.light-green {
  color: var(--color-light-green);
}

.article.brown h3,
.article__text h3.brown,
.h3.brown {
  color: var(--color-brown);
}

.article.orange h2,
.h2.orange {
  border-color: var(--color-orange);
}

.article.green h2,
.h2.green {
  border-color: var(--color-green);
}

.article.light-green h2,
.article__text h2.light-green,
.h2.light-green {
  border-color: var(--color-light-green);
}

.article.brown h2,
.article__text h2.brown,
.h2.brown {
  border-color: var(--color-brown);
}

.article.black h2,
.article.black h3,
h2.black,
h3.black {
  color: var(--color-text);
}

.article__text h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.75;
}

.article li,
.ogaTheme__container li {
  line-height: 2;
  position: relative;
  list-style: none;
  padding-left: 18px;
}

.article li:nth-of-type(n + 2),
.ogaTheme__container li:nth-of-type(n + 2) {
  margin-top: 2em;
}

.article li::before,
.ogaTheme__container li::before,
.article__text li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: 0;
  background-color: var(--color-green);
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
}

ul.no-bull li {
  padding-left: 0;
}

ul.no-bull li::before {
  display: none !important;
}

.article.orange li::before,
.ogaTheme__container.orange li::before,
.article__text.orange li::before {
  background-color: var(--color-orange);
}

.article.light-green li::before,
.ogaTheme__container.light-green li::before,
.article__text.light-green li::before {
  background-color: var(--color-light-green);
}

.article.list-yellow li::before,
.ogaTheme__container.list-yellow li::before,
.article__text.list-yellow li::before {
  background-color: var(--color-yellow);
}

.article.dark-gray li::before,
.ogaTheme__container.dark-gray li::before,
.article__text.dark-gray li::before {
  color: var(--color-dark-gray);
}

.article.brown li::before,
.ogaTheme__container.brown li::before,
.article__text.brown li::before {
  background-color: var(--color-brown);
}

.article__img-box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.article__img-col {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.article__img-box.w-90 {
  width: 90%;
}

.article__img-box.w-75 {
  width: 75%;
}

.article__img-box.w-67 {
  width: 67%;
}

.article__img-box.w-50 {
  width: 50%;
}

.article__img-box.w-35 {
  width: 35%;
}

.article__img-item {
  width: calc(100% / 2 - 60px * 1 / 2);
}

.article__img-col.col-70-30 .article__img-item:nth-of-type(odd),
.article__column.col-70-30 .article__col-item:nth-of-type(odd) {
  width: calc(67.4% - 30px);
}

.article__img-col.col-70-30 .article__img-item:nth-of-type(even),
.article__column.col-70-30 .article__col-item:nth-of-type(even) {
  width: calc(32.6% - 30px);
}

.article__img-col.col-43-57 .article__img-item:nth-of-type(odd),
.article__column.col-43-57 .article__col-item:nth-of-type(odd) {
  width: calc(43% - 30px);
}

.article__img-col.col-43-57 .article__img-item:nth-of-type(even),
.article__column.col-43-57 .article__col-item:nth-of-type(even) {
  width: calc(57% - 30px);
}

.article__cap {
  letter-spacing: 0.02em;
  margin-top: 1em;
  text-align: center;
}

.article__text {
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}

.article__text a,
.a {
  text-decoration: underline;
  position: relative;
  display: inline;
}

.ogaTheme__container a,
a.underline {
  text-decoration: underline;
}

.article__text a[href$='.pdf'],
.a[href$='.pdf'] {
  padding-left: 1.3em;
}

.article__text a[href$='.pdf']::before,
.a[href$='.pdf']::before {
  content: '';
  background: transparent url(/assets/common/pdf-icon.png) no-repeat
    center center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0em;
  display: block;
  width: 12px;
  height: 14px;
}

.article__column {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.article__column.align-center {
  align-items: center;
}

.article__column.access-col {
  gap: 40px;
}

.article__col-item {
  width: calc(50% - 30px);
}

.article__column.access-col .article__col-item:nth-of-type(odd) {
  width: 300px;
}

.article__column.access-col .article__col-item:nth-of-type(even) {
  width: calc(100% - 340px);
}

.article__map {
  position: relative;
  aspect-ratio: 2 / 1;
}

.article__map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article__map-link-box {
  text-align: right;
}

a.article__map-link {
  position: relative;
  padding-left: 40px;
  text-decoration: none;
}

.article__map-link::before,
.article__map-link::after {
  content: '';
  position: absolute;
  height: 1px;
  background-color: var(--color-text);
}

.article__map-link::before {
  width: 26px;
  top: 13px;
  left: 0;
}

.article__map-link::after {
  width: 12px;
  top: 9px;
  left: 16px;
  rotate: 40deg;
}

.article__list-col {
  display: flex;
  flex-wrap: wrap;
}

.article__list-col-left {
  width: 150px;
}

.article__list-col-right {
  flex: 1;
}

.article__back-1150 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.article__back-1150::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75px;
  background-color: #f9f7ed;
  width: 1150px;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}

.article__back-1150 > .h2 {
  line-height: normal;
}

@media screen and (max-width: 1279px) {
  .article h3,
  .article__text h3,
  .h3 {
    margin-bottom: 12px;
  }

  .article__column {
    flex-direction: column;
    padding-right: 15px;
    gap: 30px;
  }

  .article__col-item {
    width: 100% !important;
  }

  .article__column.access-col {
    gap: 20px;
  }

  .article__column.access-col .article__col-item .article__text {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 0;
  }

  .article__column.access-col .article__col-item .article__text p {
    margin-bottom: 0;
  }

  .article__back-1150::before {
    width: calc(100% + 150px);
  }

  .article__text {
    line-height: 2;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }

  .article__img-box.w-50 {
    width: 75%;
  }

  .regulationList_txt {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }

  .article__img-item {
    width: 100%;
  }

  .article__map {
    aspect-ratio: 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  .article__back-1150::before {
    left: -30px;
    width: calc(100% + 60px);
  }

  .article__list-col-left {
    width: 100%;
  }

  .article__list-col-right {
    width: 100%;
  }
}

/* ===============================================
#共通フォントサイズ
=============================================== */
.fs-h3 {
  font-size: 24px;
  font-size: 2.4rem;
}

.fs-h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fs-25 {
  font-size: 2.5rem;
}

@media screen and (max-width: 1279px) {
  .h1 {
    font-size: 2rem;
  }
  .fs-h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .fs-h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .table__container table th {
    white-space: nowrap;
  }

  .article h2,
  .article__text h2,
  .h2 {
    font-size: 18px;
    margin-bottom: 26px;
  }

  .article__text {
    margin-bottom: 46px;
  }
}

@media screen and (max-width: 767px) {
  .fs-25 {
    font-size: 1.8rem;
  }
}
/* ===============================================
#共通ホバー
=============================================== */
.hover__underline {
  position: relative;
}
.hover__underline::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #323232;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 800ms cubic-bezier(0, 0.7, 0.22, 1);
}
.hover__underline:hover::after {
  transform: scale(1, 1);
}
.hover__zoom-up {
  transition: 1s cubic-bezier(0.4, 0.4, 0, 1);
}
.hover__zoom-up:hover {
  scale: 1.05;
}
.hover__opacity {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}
.hover__opacity:hover {
  opacity: 0.5;
}
/* ===============================================
#ページトップボタン
=============================================== */
.c-pageTop {
  position: fixed;
  bottom: 44px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid #323232;
  border-radius: 50%;
  z-index: 100;
}
.c-pageTop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #323232;
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0, 0 80%, 100% 80%);
}
/* ===============================================
#ユーティリティークラス
=============================================== */
@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc_tb {
    display: none;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .pc_sp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tb {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tb_sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* ===============================================
#スマートフォンメニュー
=============================================== */

.sp-nav {
  display: none;
}

@media screen and (max-width: 767px) {
  body.show {
    height: 100vh;
    overflow-y: hidden;
  }

  .sp-nav {
    background-color: #ececec;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding-bottom: 20px;
    overflow-y: scroll;
  }

  .sp-nav.show {
    display: block;
  }

  .sp-nav__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 13px 76px 0 20px;
    gap: 12px;
  }

  .sp-nav__header-logo {
    flex: 1;
    max-width: 86px;
  }

  .sp-nav__header-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
  }

  .sp-nav__header-office {
    font-size: 11px;
    background-color: #323232;
    color: #fff;
    padding: 8px 8px;
    border-radius: 999px;
    text-align: center;
  }

  .sp-nav__header-office a {
    color: #fff;
  }

  .sp-nav__header-contact {
    font-size: 11px;
    background-color: var(--color-yellow);
    padding: 8px 8px;
    border-radius: 4px;
    text-align: center;
  }

  .sp-nav__footer {
    margin-top: 50px;
  }

  .sp-nav-footer__container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .sp-nav-footer__left-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .sp-nav-footer__btn-box {
    display: flex;
    gap: 10px;
  }
  .sp-nav-footer__btn {
    background-color: #323232;
    color: #fff;
    min-width: 100px;
    padding: 8px 8px;
    border-radius: 5px;
    text-align: center;
    font-size: 9px;
  }

  .sp-nav-footer__lists {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sp-nav-footer__list a {
    font-size: 9px;
  }

  .sp-nav__lists {
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 50px;
  }

  .sp-nav__list {
    font-size: 18px;
    margin-top: 35px;
  }

  .sp-nav__list > a {
    margin-left: 24px;
  }

  .sp-nav__list:first-child {
    margin-top: 0;
  }

  .sp-nav__menu-title {
    display: flex;
    gap: 8px;
    font-weight: bold;
  }

  .sp-nav__accordion-btn {
    position: relative;
    width: 16px;
  }

  .sp-nav__accordion-btn span {
    background-color: var(--color-text);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    transform: translateX(-50%) translateY(-50%);
  }

  .sp-nav__accordion-btn span:nth-child(2) {
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transition: 0.3s all;
  }

  .sp-nav__accordion {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
  }

  .sp-nav__list[aria-hidden='false'] .sp-nav__accordion {
    grid-template-rows: 1fr;
  }

  .sp-nav__list[aria-hidden='false'] .sp-nav__accordion-btn span:nth-child(2) {
    transform: translateX(-50%) translateY(-50%) rotate(0);
  }

  .sp-nav__accordion-inner {
    padding-left: 18px;
    overflow: hidden;
  }

  .sp-nav__accordion-lists {
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .sp-nav__accordion-list {
    position: relative;
    padding-left: 24px;
  }

  .sp-nav__accordion-list > a {
    display: block;
    position: relative;
    transition: color var(--duration);
  }

  .sp-nav__accordion-list::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    background-color: #008d82;
    display: block;
    width: 10px;
    height: 2px;
    transform: translateY(-50%);
  }

  .sp-nav__accordion-logo-link {
    width: 230px;
    margin: 30px 0 10px 0;
  }

  .sp-nav__accordion-logo-text {
    line-height: 2;
    letter-spacing: 0.02em;
  }

  .sp-nav__ex-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
  }
  .sp-nav__ex-text {
    margin-top: 8px;
  }
}

.backNo_item {
  margin-top: 12px !important;
}

/* ===============================================
#ヘッダー
=============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

body:has(.mv) .header {
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 1s;
}

body.loaded:has(.mv) .header {
  opacity: 1;
}

.header__top-container {
  margin-top: 16px;
  margin-right: 22px;
  width: fit-content;
  margin-left: auto;
  transition: opacity 0.3s;
  cursor: pointer;
}

body.loaded:has(.mv) .header__top-container {
  opacity: 0;
  pointer-events: none;
}

body.loaded:has(.mv) .header__top-container.inview {
  opacity: 1;
  pointer-events: auto;
}

.header__top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__top-lists {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__top-list a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.header__top-link-black {
  background-color: #323232;
  border-radius: 50vw;
  padding: 1px 10px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}
.header__top-icon {
  width: 27px;
}

.header__left-container {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 40px;
  padding-bottom: 20px;
  width: 220px;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

.header__left-container.show {
  background-color: rgba(255, 255, 255, 0.97);
  transition: all var(--duration);
}

.header__logo {
  pointer-events: auto;
  width: 120px;
  margin: 0px 0px 74px 40px;
}
.header__left-nav {
  pointer-events: auto;
  margin-bottom: 25px;
}
.header__left-lists {
  display: flex;
  flex-direction: column;
}

.header__menu-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 20px 5px 40px;
  cursor: pointer;
  transition: color var(--duration);
  position: relative;
  display: block;
  z-index: 110;
}

.header__menu-title::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 0;
  width: 13px;
  height: 16px;
  background-color: #ecececf7;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration);
}

.header__menu-title:hover,
.header__sub-menu-list > a:hover {
  opacity: 1;
  color: var(--color-green);
}

.header__menu-title:has(+ .header__sub-menu-box.show)::after {
  opacity: 1;
  visibility: visible;
}

.header__sub-menu-box.show {
  left: 220px;
  opacity: 1;
  visibility: visible;
}

.header__sub-menu-box.show > .header__ex-box {
  left: calc(100% - 1px);
  opacity: 1;
  visibility: visible;
}

.header__sub-menu-box {
  background-color: #ecececf7;
  padding: 242px 25px 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration);
  z-index: 105;
}

.header__sub-menu-lists {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__sub-menu-list > a {
  display: block;
  padding-left: 18px;
  position: relative;
  font-weight: 600;
  transition: color var(--duration);
}

.header__sub-menu-list > a::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 2px;
  background-color: var(--color-green);
}

.header__ex-box {
  background-color: #ecff00f7;
  padding: 171px 25px 25px;
  width: 360px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration);
}

.header__ex-title {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.header__ex-text {
  line-height: 2;
}

.header__lang-box {
  display: flex;
  align-items: center;
  margin-left: 40px;
  pointer-events: auto !important;
}

@media screen and (max-width: 767px) {
  .header__lang-box {
    margin-left: 0px;
  }
}

.header__lang-img {
  width: 27px;
  margin-right: 5px;
}
.header__lang {
  font-weight: 600;
}
.header__right-container {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  pointer-events: auto;
}
.header__sns-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20px;
  margin-bottom: 38px;
}
.header__sns-item {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.header__sns-item:nth-of-type(1) {
  width: 56%;
}
.header__sns-item:nth-of-type(2) {
  width: 90%;
}
.header__university-logo {
  width: 20px;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 90;
  display: none;
  pointer-events: auto;
}

.header__overlay.show {
  display: block;
}

.header__sub-menu-logo-link {
  width: 230px;
  margin: 30px 18px 10px;
}

.header__sub-menu-logo-text {
  line-height: 2;
  letter-spacing: 0.02em;
  margin: 0 18px;
}

.header__sp {
  display: none;
}

.header__sp-btn {
  display: none;
}

.page-links {
  display: none;
  position: fixed;
  flex-direction: row-reverse;
  justify-content: space-between;
  background-color: var(--color-yellow);
  width: 75px;
  top: 110px;
  right: 0;
  gap: 30px;
  padding-left: 15px;
  border-radius: 50% 0 0 50%;
  z-index: 999;
}

.page-links.exist {
  display: flex;
}

#page-links-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform-origin: center;
  height: 65px;
  padding-right: 20px;
  justify-content: center;
}

.page-links__btn-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  /* padding-right: 25px; */
  /* height: 65px; */
}

.page-links__list {
  display: none;
}

.page-links.show {
  width: 70%;
  max-width: min(1100px, 95%);
  height: auto;
  /* padding: 0 0 20px 30px; */  
  font-size: 16px;
  border-radius: 30px 0 0 30px;
  transform: translateY(0);
}

.page-links.show .page-links__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: bold;
  gap: 20px max(5%, 20px);
  margin: 20px max(5%, 20px);
  flex-grow: 1;
  line-height: 1;
  align-items: center;
}

.header__sp-btn,
#page-links-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform-origin: center;
}

.header__sp-btn span,
#page-links-btn span {
  background-color: var(--color-text);
  width: 24px;
  height: 1px;
  transition: 0.2s ease;
}

body.show .header__sp-btn span:nth-child(1),
.page-links.show #page-links-btn span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

body.show .header__sp-btn span:nth-child(2),
.page-links.show #page-links-btn span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.header__sp-img {
  display: none;
}

@media screen and (max-width: 1279px) {
  .header__ex-box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    position: relative;
  }
  .header__top-container,
  .header__right-container,
  .header__left-container {
    display: none;
  }

  body.show .header__right-container {
    display: block;
    top: 150px;
    transform: none;
  }

  .header__sp {
    display: block;
    position: fixed;
    width: 100%;
    display: flex;
    top: 0;
    right: 6px;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px 0px 20px;
    pointer-events: none;
  }

  .header__sp-img {
    display: block;
    position: absolute;
    top: 15px;
    left: 10px;
    width: 170px;
  }

  body.show .header__sp-img {
    display: none;
  }

  .header__sp-btn-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    pointer-events: fill;
  }

  .page-links {
    display: block;
    top: 90px;
    z-index: 13;
    gap: 0;
  }

  .page-links.show {
    width: fit-content;
    height: auto;
    /* padding: 0 0 20px 20px; */
    font-size: 16px;
    border-radius: 16px 0 0 16px;
    transform: translateY(0);
  }

  .page-links.show .page-links__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 0;
    align-items: flex-start;
  }
}
/* ===============================================
#フッター
=============================================== */
.footer {
  width: 100%;
  margin-top: 200px;
  padding-bottom: 30px;
  position: relative;
}


.footer .top-wrapper {
  position: static;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}
.footer__banner-box {
  width: fit-content;
  display: flex;
  gap: 40px;
  border-radius: 20px;
  margin: 0 auto 100px;
}
.footer__banner-item {
  max-width: 350px;
}

.footer__banner-item img {
  border: 1px solid #d6d6d6;
  border-radius: 6px;
}

.footer__container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.footer__left-box {
  position: absolute;
  left: 40px;
  z-index: 100;
}
.footer__btn-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.footer__btn {
  background-color: #323232;
  color: #fff;
  min-width: 100px;
  padding: 9px 12px;
  border-radius: 5px;
  text-align: center;
}
.footer__list:nth-of-type(n + 2) {
  margin-top: 3px;
}
.footer__list a {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
.footer__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-bottom: 30px;
}
.footer__sanken-logo {
  width: 175px;
}
.footer__osaka-logo {
  width: 150px;
}

.footer__osaka-logo.en {
  width: 260px;
}

.footer__copy {
  font-size: 10px;
  font-size: 1rem;
  font-family: var(--font-family-jp);
  display: block;
  text-align: center;
}

.footer__link-box {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.footer__link-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__link-icon {
  display: inline-block !important;
  width: 14px;
  height: 14px;
  background-color: var(--color-green);
  border-radius: 50%;
  position: relative;
}

.footer__link-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 5px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.footer__link {
}

@media screen and (max-width: 1279px) {
  .footer {
    margin-top: 100px;
  }
  .footer__inner {
    padding: 0 10px;
  }

  .footer__banner-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
  }

  .footer__list:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .footer__center-box {
    margin: 0 auto;
    margin-top: 12px;
  }

  .footer__logo-box {
    justify-content: center;
  }

  .footer__sanken-logo {
    width: 150px;
  }

  .footer__sanken-logo.en {
    width: 110px;
  }

  .footer__osaka-logo {
    width: 125px;
  }

  .footer__osaka-logo.en {
    width: 175px;
  }

  .footer__link-box {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer__btn-box {
    flex-direction: row;
  }

  .footer__left-box {
    display: none;
  }

  .footer__lists {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
}

/* ===============================================
#TOP共通
=============================================== */

.top-wrapper {
  position: relative;
}

@media screen and (min-width: 768px) {
  .top-wrapper {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--margin-header-left);
    padding-right: 75px;
  }
}
@media screen and (max-width: 767px) {
  .top-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ===============================================
#TOPメインビジュアル
=============================================== */

.mv {
  position: relative;
  height: 100vh;
  background-image: linear-gradient(0deg, transparent 20px, #eeeeee 21px),
    linear-gradient(90deg, transparent 20px, #eeeeee 21px);
  background-size: 21px 21px;
}

.top-wrapper.mv__inner {
  margin: 0;
  max-width: none;
}

.mv__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.mv__image > div {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded .mv__image > div {
  animation: upAndDown 10s ease 0s infinite;
  transform: translateY(0);
  opacity: 1;
  border-radius: 50%;
}

@keyframes upAndDown {
  25% {
    transform: translateY(10px);
  }

  75% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.mv__image.first {
  transform: translateY(-40%);
  position: absolute;
  top: 0;
  right: 4%;
  width: 41vw;
  height: 41vw;
}

.mv__image.second {
  position: absolute;
  top: 44%;
  left: 40%;
  width: 26vw;
  height: 26vw;
}

.mv__image.third {
  position: absolute;
  top: 68%;
  right: 10%;
  width: 15vw;
  height: 15vw;
}

.mv__image img {
  transform: scale(1);
  transition: all 50s ease;
}

body.loaded .mv__image img {
  transform: scale(1.3);
}

.mv__heading {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.5s;
}

body.loaded .mv__heading {
  opacity: 1;
}

.mv__heading-top {
  font-size: 3rem;
}
.mv__heading-center {
  font-size: 10.8rem;
  line-height: 1.05;
}
.mv__heading-bottom {
  font-size: 3.8rem;
  margin-top: 10px;
}
.mv__banner {
  position: absolute;
  right: 0;
  bottom: 120px;
  width: 200px;
}

@media screen and (max-width: 1279px) {
  .mv__inner {
    justify-content: flex-start;
  }
  .mv__heading-top {
    font-size: 2.5rem;
  }
  .mv__heading-center {
    font-size: 6.5rem;
  }
  .mv__heading-bottom {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    max-height: 100vh;
  }

  .mv__image.first {
    transform: translateY(-10%);
    position: absolute;
    right: 5%;
    width: 65vw;
    height: 60vw;
  }

  .mv__image.second {
    position: absolute;
    top: 60%;
    left: 2%;
    width: 40vw;
    height: 40vw;
  }

  .mv__image.third {
    position: absolute;
    top: 70%;
    right: 10%;
    width: 30vw;
    height: 30vw;
  }

  .mv__heading {
    padding-top: 0;
    padding-bottom: 15px;
    margin: 0 auto;
  }
  .mv__heading-top {
    padding-top: 0;
    font-size: 1.2rem;
  }
  .mv__heading-center {
    font-size: 4.2rem;
    line-height: 1.05;
  }
  .mv__heading-bottom {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .mv__inner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    padding: 0;
    margin: 0 15px;
  }

  .mv__banner {
    bottom: 60px;
  }
}
/* ===============================================
#topWhat
=============================================== */
.what {
  /* 
  background-image: url('/assets/common/what-img.png');
  background-position: 30% center;
  background-size: contain;
  background-repeat: no-repeat;
  */
  margin-top: 50px;
}
.what__inner {
  max-width: 1345px;
  padding-left: 15px;
  padding-right: 15px;
}
.what__container {
  display: flex;
  position: relative;
}

.what__img-box {
  margin-right: -7vw;
  flex-grow: 1;
}

.what__text-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 33rem;
  width: 440px;
  min-width: 440px;
  padding-right: 40px;
}

.what__heading {
  font-size: 45px;
  font-size: 4.5rem;
  margin-bottom: 29px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.what__text {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1000px) {
  .what__img-box {
    opacity: 0.3;
    z-index: -1;
    margin-right: -15vw;
  }
  .what__text-box {
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 1279px) {
  .what__container {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .what {
    margin-top: 40px;
    background-image: none;
  }

  .what__inner {
    width: fit-content;
    margin: 0 auto;
  }

  .what__img-box {
    display: none;
  }

  .what__text-box {
    display: block;
    padding-right: 0;
    width: 100%;
    min-width: auto;
    margin-bottom: 0;
  }

  .what__heading {
    font-size: 3.5rem;
  }

  .what__text {
    font-size: 1.6rem;
  }
}
/* ===============================================
#topNews
=============================================== */
.news {
  margin-top: 120px;
}
.news__container {
  background-color: #ececec;
  border-radius: 20px;
  padding: 24px 45px;
  display: flex;
  width: 94%;
  margin: 0 auto;
}
.news__container-left {
  width: 186px;
  border-right: 3px solid #fff;
  padding: 13px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news__container-right {
  flex: 1;
  padding: 13px 0 13px 50px;
}
.news__list:nth-of-type(n + 2) {
  margin-top: 15px;
}
.news__link {
  display: flex;
  align-items: baseline;
}
.news__time {
  width: 120px;
  font-family: var(--font-family-jp);
}
.news__list-title {
  font-weight: 500;
  line-height: 2;
  flex: 1;
  font-family: var(--font-family-jp);
}

@media screen and (max-width: 1279px) {
  .news {
    margin-top: 60px;
  }
  .news__container {
    flex-direction: column;
  }
  .news__container-left {
    width: 100%;
    border-right: none;
    border-bottom: 3px solid #fff;
  }
  .news__container-right {
    padding: 12px 20px;
  }
  .news__link {
    flex-direction: column;
  }
}
@media screen and (max-width: 1279px) {
  .news__container {
    padding: 40px 20px;
  }
  .news__container-left {
    align-items: flex-end;
    flex-direction: row;
    padding: 0 10px 35px 10px;
  }
  .news__container-right {
    padding: 25px 10px 0 10px;
  }
  .news__link {
    flex-direction: row;
  }

  .news__list:nth-of-type(n + 2) {
    margin-top: 30px;
  }

  .time {
    width: 100px;
  }

  .news .c-heading__en {
    line-height: 1;
  }
}
/* ===============================================
#topEvent
=============================================== */
.topEvent {
  position: relative;
  padding: 40px 0;
}

.topEvent::before,
.topEvent::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}
.topEvent::before {
  left: 0;
  width: calc(
    49% + (var(--margin-header-left) / 2 - var(--margin-header-right) / 2)
  );
  border-radius: 0 20px 20px 0;
  background-color: #ecff00;
}
.topEvent::after {
  right: 0;
  width: calc(
    49% - (var(--margin-header-left) / 2 - var(--margin-header-right) / 2)
  );
  border-radius: 20px 0 0 20px;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: radial-gradient(#ecff00 26%, transparent 29%),
    radial-gradient(#ecff00 26%, transparent 29%);
  background-position: 0 0, 6px 6px;
  background-size: 12px 12px;
}
.event__top-box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 40px;
  position: relative;
  width: 70%;
}

.event__btn {
  position: absolute;
  bottom: 10px;
  right: 0;
}
.event__cards {
  display: flex;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}
.event__card {
  width: calc(33.3333333333% - 26.6666666667px);
}
.event__card-link:hover {
  opacity: 1;
}

.event__img-box img,
.event__time,
.event__card-title {
  transition: opacity var(--duration);
}

.event__card:hover .event__img-box img,
.event__card:hover .event__time,
.event__card:hover .event__card-title {
  opacity: 0.7;
}
.event__img-box {
  aspect-ratio: 1/0.65;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 10px;
}
.event__img-box img {
  height: 100%;
  border-radius: 10px;
}
.event__time {
  font-family: var(--font-family-jp);
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}
.event__card-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.83;
  font-family: var(--font-family-jp);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .topEvent::before {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
  .topEvent::after {
    display: none;
  }

  .event__top-box {
    width: 100%;
    margin: 0;
    padding: 0 35px;
    justify-content: flex-start;
  }

  .topEvent .c-heading__en.center {
    line-height: 1;
    text-align: left;
  }

  .event__cards {
    margin-top: 45px;
  }

  .event__btn {
    bottom: 0px;
  }
  .event__cards {
    flex-direction: column;
  }
  .event__card {
    width: 100%;
  }
}
/* ===============================================
#topFeatures
=============================================== */
.features__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 96%;
  margin: 0 auto;
}
.features__card {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: radial-gradient(#ecff00 26%, transparent 29%),
    radial-gradient(#ecff00 26%, transparent 29%);
  background-position: 0 0, 6px 6px;
  background-size: 12px 12px;
  border-radius: 20px;
  width: calc(33.3333333333% - 26.6666666667px);
}

.features__img-box img {
  aspect-ratio: 1/1;
  object-fit: contain;
  width: 50%;
}

.features__card-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
}

.features__img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.features__card-link.book img {
  aspect-ratio: 145 / 131;
  object-fit: contain;
}

.features__card-title {
  width: 60%;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-family-jp);
  line-height: 1.4;
}

@media screen and (max-width: 1279px) {
  .features__cards {
    flex-direction: column;
  }

  .features__card {
    width: 100%;
  }

  .features__img-box {
    width: 30%;
  }

  .features__card-title {
    width: 60%;
  }

  .features__card-link {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .features .top-wrapper {
    padding: 0 30px;
  }
  .features__cards {
    flex-direction: row;
    width: 100%;
    gap: 37px;
  }

  .features__card {
    width: calc(50% - 37px / 2);
    border-radius: 0;
  }

  .features__img-box {
    width: 100%;
  }

  .features__img-box img {
    width: 80px;
  }
  .features__card {
    height: 200px;
  }

  .features__card-title {
    width: auto;
  }

  .features__card-link {
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    padding-bottom: 25px;
    gap: 15px;
  }
}

/* ===============================================
#産研の研究者
=============================================== */

.researchers__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, calc(100vw / 7 - 6px));
  grid-template-rows: repeat(5, calc(100vw / 7 - 6px));
  gap: 4px;
}

.researchers__img-box {
  position: relative;
  pointer-events: auto !important;
  overflow: hidden;
  cursor: pointer;
}
.researchers__img-box.large {
  grid-column: span 2;
  grid-row: span 2;
}

.researchers__img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.researchers__img.hover {
  opacity: 0;
  transition: opacity var(--duration);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.researchers h2 {
  padding-left: var(--margin-header-left);
  padding-right: var(--margin-header-right);
}

.researchers__img-box:hover {
  opacity: 1;
}

.researchers__img-box:hover .researchers__img.hover {
  opacity: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .researchers h2 {
    padding-left: 0;
    padding-right: 0;
  }
  .researchers__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, calc(100vw / 3 - 2px));
    grid-template-rows: repeat(9, calc(100vw / 3 - 2px));
    gap: 4px;
  }

  .researchers__img-box:nth-child(1) {
    order: 1;
  }
  .researchers__img-box:nth-child(2) {
    order: 2;
  }
  .researchers__img-box:nth-child(3) {
    order: 3;
  }
  .researchers__img-box:nth-child(4) {
    order: 18;
  }
  .researchers__img-box:nth-child(5) {
    order: 5;
  }
  .researchers__img-box:nth-child(6) {
    order: 6;
  }
  .researchers__img-box:nth-child(7) {
    order: 7;
  }
  .researchers__img-box:nth-child(8) {
    order: 8;
  }
  .researchers__img-box:nth-child(9) {
    order: 9;
  }
  .researchers__img-box:nth-child(10) {
    order: 4;
  }
  .researchers__img-box:nth-child(11) {
    order: 11;
  }
  .researchers__img-box:nth-child(12) {
    order: 12;
  }
  .researchers__img-box:nth-child(13) {
    order: 13;
  }
  .researchers__img-box:nth-child(14) {
    order: 14;
  }
  .researchers__img-box:nth-child(15) {
    order: 15;
  }
  .researchers__img-box:nth-child(16) {
    order: 16;
  }
  .researchers__img-box:nth-child(17) {
    order: 17;
  }
  .researchers__img-box:nth-child(18) {
    order: 10;
  }

  .researchers__img-box:nth-child(19),
  .researchers__img-box:nth-child(20),
  .researchers__img-box:nth-child(21),
  .researchers__img-box:nth-child(22),
  .researchers__img-box:nth-child(23),
  .researchers__img-box:nth-child(24),
  .researchers__img-box:nth-child(25),
  .researchers__img-box:nth-child(26) {
    display: none;
  }
}
/* ===============================================
#研究室詳細
=============================================== */
.ogaSingleTop__heading-box {
  display: flex;
  align-items: center;
  border-left: 6px solid var(--color-dark-gray);
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ogaSingleTop__heading-box.col-1 {
  margin-bottom: 100px;
}

.ogaSingleTop__heading-box.light-green,
.ogaSingleTop__heading-box.socialinnovation {
  border-left: 6px solid var(--color-light-green);
}

.ogaSingleTop__heading-box.green,
.ogaSingleTop__heading-box.about {
  border-left: 6px solid var(--color-green);
}

.ogaSingleTop__heading-box.education,
.ogaSingleTop__heading-box.brown {
  border-left: 6px solid var(--color-brown);
}

.ogaSingleTop__heading-box.black {
  border-left: 6px solid var(--color-text);
}

.ogaSingleTop__heading-box-left {
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--color-text);
}

.ogaSingleTop__info-text {
  font-size: 3rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--color-dark-gray);
  line-height: 1.16;
  margin-bottom: 7px;
}

.ogaSingleTop__heading-box.light-green .ogaSingleTop__info-text,
.ogaSingleTop__heading-box.socialinnovation .ogaSingleTop__info-text {
  color: var(--color-light-green);
}

.ogaSingleTop__heading-box.green .ogaSingleTop__info-text,
.ogaSingleTop__heading-box.about .ogaSingleTop__info-text {
  color: var(--color-green);
}

.ogaSingleTop__heading-box.black .ogaSingleTop__info-text {
  color: var(--color-text);
}

.ogaSingleTop__heading-box.education .ogaSingleTop__info-text,
.ogaSingleTop__heading-box.brown .ogaSingleTop__info-text {
  color: var(--color-brown);
}

.ogaSingleTop__link {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.ogaSingleTop__link-icon {
  display: inline-block !important;
  width: 14px;
  height: 14px;
  background-color: var(--color-dark-gray);
  border-radius: 50%;
  position: relative;
}

.ogaSingleTop__heading-box.light-green .ogaSingleTop__link-icon,
.ogaSingleTop__heading-box.socialinnovation .ogaSingleTop__link-icon {
  background-color: var(--color-light-green);
}

.ogaSingleTop__heading-box.green .ogaSingleTop__link-icon,
.ogaSingleTop__heading-box.about .ogaSingleTop__link-icon {
  background-color: var(--color-green);
}

.ogaSingleTop__link-icon.dark-gray {
  background-color: var(--color-dark-gray);
}

.ogaSingleTop__heading-box.education .ogaSingleTop__link-icon,
.ogaSingleTop__heading-box.brown .ogaSingleTop__link-icon {
  background-color: var(--color-brown);
}

.ogaSingleTop__link-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 5px;
  height: 8px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.ogaSingleTop__link-text {
  font-weight: 600;
}
.ogaSingleTop__heading-box-right {
  flex: 1;
  padding-left: 20px;
}
.ogaSingleTop__heading-jp {
  font-size: 3rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.16;
  display: block !important;
  margin-bottom: 4px;
}
.ogaSingleTop__heading-en {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  display: block !important;
}
.ogaSingleTop__tag-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ogaSingleTop__tag {
  background-color: var(--color-yellow);
  padding: 2px 15px;
  border-radius: 50vw;
  letter-spacing: 0.02em;
}
.ogaSingleTop__text {
  line-height: 2;
  letter-spacing: 0.02em;
}

.ogaSingleTop__site-link {
  width: 66px;
  aspect-ratio: 1 / 1;
  background-color: var(--color-orange);
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}

.ogaSingleTop__site-link::before,
.ogaSingleTop__site-link::after {
  content: '';
  position: absolute;
  height: 1px;
  background-color: #fff;
}

.ogaSingleTop__site-link::before {
  bottom: 12px;
  width: 16px;
  left: 26px;
}

.ogaSingleTop__site-link::after {
  bottom: 15px;
  width: 8px;
  right: 24px;
  rotate: 35deg;
}

.ogaMember {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.ogaMember::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
  border-radius: 0 10px 10px 0;
  background-color: #c8af501a;
}
.ogaMember__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 60px;
}
.ogaMember__card.main {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.ogaMember__card.main .ogaMember__img-box {
  width: 200px;
}
.ogaMember__card.main .ogaMember__textarea {
  width: calc(100% - 230px);
}
.ogaMember__card.main .ogaMember__name-box {
  display: flex;
  align-items: flex-end;
  font-size: 1.8rem;
  margin-right: 20px;
  font-weight: 600;
}
.ogaMember__card.main .ogaMember__name {
  font-size: 2.5rem;
  line-height: 1.3;
}
.ogaMember__card.main .ogaMember__name-en {
  margin-left: 1em;
}
.ogaMember__card:not(.main) .ogaMember__map-link {
  margin-top: 5px;
}
.ogaMember__card:not(.main) .ogaMember__name-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}
.ogaMember__card {
  width: calc(100% / 4 - 60px * 3 / 4);
}
.ogaMember__img-box {
  width: 100%;
  aspect-ratio: 100 / 133;
}
.ogaMember__img-box img {
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.ogaMember__top-text {
  display: flex;
  align-items: flex-end;
}
.ogaMember__name-box {
  letter-spacing: 0.02em;
}
.ogaMember__name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ogaMember__map-link {
  background-color: var(--color-green);
  padding: 2px 8px 3px;
  border-radius: 2px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.ogaMember__bottom-text-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.ogaMember__bottom-text-item {
  display: flex;
  align-items: flex-start;
}
.ogaMember__bottom-title {
  line-height: 2;
  width: 70px;
}
.ogaMember__bottom-text {
  line-height: 2;
  width: calc(100% - 60px);
}

.ogaTheme {
  background-color: #c8af501a;
  border-radius: 10px;
  padding: 60px 20px;
}

@media screen and (max-width: 1279px) {
  .ogaSingleTop__heading-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .ogaSingleTop__heading-box.col-1 {
    margin-bottom: 60px;
  }

  .ogaSingleTop__heading-box-left {
    width: 100%;
    border-right: none;
  }

  .ogaSingleTop__heading-en {
    font-size: 1.4rem;
  }

  .ogaSingleTop__site-link {
    margin-left: 20px;
  }

  .ogaMember__cards {
    gap: 30px;
  }

  .ogaMember__card {
    width: calc(50% - 15px);
  }

  .ogaMember__card.main {
    flex-direction: column;
  }

  .ogaMember__card.main .ogaMember__textarea {
    width: 100%;
  }

  .ogaMember__card.main .ogaMember__name-box {
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8px;
  }

  .ogaMember__card.main .ogaMember__name-en {
    margin-left: 0px;
  }

  .ogaMember__card.main .ogaMember__v-bar {
    display: none;
  }

  .ogaMember__top-text {
    flex-direction: column;
    align-items: center;
  }

  .ogaMember__map-link {
    margin-top: 16px;
  }

  .ogaTheme {
    padding: 30px 20px;
  }
}
/* ===============================================
#研究室詳細-自然材料機能化研究分野（能木研）専用
=============================================== */
.nogiLab{
  display:flex;
  gap: 40px;
}

.nogiLab iframe {
  height: 300px;
}

@media screen and (max-width: 1279px) {
.nogiLab{
  flex-direction: column;
}
}
@media screen and (max-width: 767px) {
.nogiLab iframe {
  height: 225px;
}
}

}

/* ===============================================
#活動成果
=============================================== */
.achSingleTop {
  position: relative;
}

.achSingleTop::after {
  content: '';
  position: absolute;
  top: -180px;
  right: 50px;
  width: 550px;
  height: 550px;
  display: block;
}

.achSingleTop.release::after {
  background: transparent url(/assets/common/achievement-parts_1.png)
    no-repeat center center / contain;
}

.achSingleTop.project::after {
  background: transparent url(/assets/common/achievement-parts_2.png)
    no-repeat center center / contain;
}

.achSingleTop.award::after,
.achSingleTop.award-en::after {
  background: transparent url(/assets/common/achievement-parts_3.png)
    no-repeat center center / contain;
}

.achSingleTop.media::after,
.achSingleTop.media-en::after {
  background: transparent url(/assets/common/achievement-parts_4.png)
    no-repeat center center / contain;
}

.achSingleTop.launch::after,
.achSingleTop.launch-en::after {
  background: transparent url(/assets/common/achievement-parts_5.png)
    no-repeat center center / contain;
}

.achSingleTop.report::after {
  background: transparent url(/assets/common/achievement-parts_6.png)
    no-repeat center center / contain;
}

.achSingleTop.activity::after {
  background: transparent url(/assets/common/achievement-parts_7.png)
    no-repeat center center / contain;
}

.achSingleTop.release-all::after {
  background: transparent
    url(/assets/common/achievement-all-parts_1.png) no-repeat center
    center / contain;
}

.achSingleTop.project-all::after {
  background: transparent
    url(/assets/common/achievement-all-parts_2.png) no-repeat center
    center / contain;
}

.achSingleTop.report-all::after {
  background: transparent
    url(/assets/common/achievement-all-parts_6.png) no-repeat center
    center / contain;
}

.achSingleTop.activity-all::after {
  background: transparent
    url(/assets/common/achievement-all-parts_7.png) no-repeat center
    center / contain;
}

.ogaSingleTop__heading-box.col-1 .ogaSingleTop__heading-box-left {
  border-right: none;
}

.ogaSingleTop__heading-box.orange .ogaSingleTop__info-text {
  color: var(--color-orange);
}

.ogaSingleTop__heading-box.orange {
  border-left: 6px solid var(--color-orange);
}

.ogaSingleTop__heading-box.orange .ogaSingleTop__link-icon {
  background-color: var(--color-orange);
}

.achSingleTop__time {
  color: var(--color-orange);
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}

.achSingleTop__time.green {
  color: var(--color-green);
}

.achSingleTop__item-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.achSingleTop__sdgs-box {
  width: calc(100% - 130px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sdgsArea img,
.achSingleTop__sdgs-box img {
  width: 50px;
}

.achSingleTop__xbtn {
  width: 110px;
  text-align: right;
}

.twitter-share-button {
}

/* ===============================================
#テーブルスタイル
=============================================== */
.table__select-container {
  display: flex;
  align-items: center;
}

.table__select-name {
  background-color: var(--color-orange);
  padding: 2px 8px;
  color: #fff;
}

.table__select-container.light-green .table__select-name {
  background-color: var(--color-light-green);
}

.table__select-box {
  position: relative;
  background-color: #f9f7ed;
}

.table__select-container.light-green .table__select-box {
  color: var(--color-light-green);
}

.table__select-box::after {
  content: '';
  background-color: var(--color-orange);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 10px;
  height: 8px;
  display: block;
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}

.table__select-container.light-green .table__select-box::after {
  background-color: var(--color-light-green);
}

.table__select {
  padding: 1px 35px 2px 20px;
  cursor: pointer;
}

.table__select-note {
  font-size: 1.3rem;
  margin-left: 30px;
}

.table__container table {
  width: 100%;
}

.table__container table thead {
  border-top: 1px solid var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  background-color: #f8f5ea;
}

.table__container table tbody {
  border-bottom: 1px solid var(--color-orange);
}

.table__container.directors table tbody,
.table__container.contact table tbody {
  border-bottom: 1px solid var(--color-text);
}

.table__container.ach-table table tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}

.table__container.ach-table table tbody tr:nth-of-type(even) {
  background-color: #f5f5f5;
}

.table__container table th,
.table__container table td {
  padding: 10px 20px;
  vertical-align: middle;
  line-height: 2;
  letter-spacing: 0.02em;
}

.table__container table th:nth-of-type(n + 2),
.table__container table td:nth-of-type(n + 2) {
  border-left: 1px dashed var(--color-orange);
}

.table__container table th {
  font-weight: 600;
  text-align: center;
}

.table__container.gray table {
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.table__container.gray table th:nth-of-type(n + 2),
.table__container.gray table td:nth-of-type(n + 2) {
  border-left: 1px dashed var(--color-text);
}

.table__container.gray table tbody tr:nth-of-type(even) {
  background-color: transparent;
}

.table__container.gray table tbody tr:nth-of-type(odd) {
  background-color: #f5f5f5;
}

.table__container.text-left table th,
.table__container.text-left table td {
  text-align: left;
  vertical-align: top;
}

.table__container.exhibit table tbody {
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.table__container.exhibit table td {
  border-left: none;
  text-align: left;
}

.table__container.exhibit table tr:nth-of-type(odd) td:nth-of-type(1) {
  background-color: #faf7ee;
}

.table__container.exhibit table tr:nth-of-type(even) td:nth-of-type(1) {
  background-color: #f0ede5;
}

.table__container.exhibit table tr:nth-of-type(odd) td:nth-of-type(2) {
  background-color: transparent;
}

.table__container.exhibit table tr:nth-of-type(even) td:nth-of-type(2) {
  background-color: #f5f5f5;
}

.table__container.academics table thead {
  background-color: #faf7f1;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.table__container.academics table th,
.table__container.academics table td {
  border-left: none;
  text-align: left;
}

.table__container table tbody tr:nth-of-type(even) {
  background-color: #fff;
}

.table__container.academics table tbody {
  border-bottom: 1px solid #989898;
}

.table__container.academics table .border {
  border-bottom: 1px dashed #989898;
}

.table__container.academics table .bg-gray {
  background-color: #f5f5f5;
}

.table__nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 1279px) {
  .table__select-container {
    align-items: flex-start;
  }
  .table__select-name {
    flex-shrink: 0;
  }

  .table__container {
    overflow-x: scroll;
  }

  .table__container table th,
  .table__container table td {
    min-width: 200px;
  }

  .table__container table th:first-child,
  .table__container table td:first-child {
    min-width: 150px;
  }
}

/* ===============================================
#組織運営スタイル
=============================================== */
table.org-table-row {
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 1279px) {
  table.org-table-row th,
  table.org-table-row td {
    width: 100%;
    display: block;
  }
}

/* ===============================================
#刊行物スタイル
=============================================== */
.disclosure__container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.disclosure__wrapper {
  position: relative;
  width: calc(100% / 3 - 50px * 2 / 3);
  overflow: hidden;
  padding: 20px;
  background-color: var(--color-gray);
  border-radius: 10px;
}

.disclosure__wrapper-body {
  padding: 0 20px;
}

.disclosure__img-box {
  margin-bottom: 20px;
}

.disclosure__btn-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclosure__click-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 45px 30px;
  background-color: var(--color-yellow);
  transition: all 1.3s;
  transform: translate3d(0, 100%, 0);
}

.disclosure__click-box.show {
  transform: translate3d(0, 0, 0);
}

.disclosure__close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 15px;
  height: 15px;
  display: block;
  cursor: pointer;
}

.disclosure__close-btn span {
  background-color: var(--color-text);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
}

.disclosure__close-btn span:nth-of-type(1) {
  rotate: 45deg;
}

.disclosure__close-btn span:nth-of-type(2) {
  rotate: -45deg;
}

.disclosure__link {
  text-decoration: underline;
  letter-spacing: 0.02em;
  display: inline-block !important;
}

.disclosure__link:nth-of-type(n + 2) {
  margin-top: 1em;
}

.disclosure__click-box-body {
  text-align: center;
  overflow-y: scroll;
  height: 380px;
  display: flex;
  flex-direction: column;
}

.disclosure__click-box-body::-webkit-scrollbar {
  width: 5px;
}
.disclosure__click-box-body::-webkit-scrollbar-thumb {
  background-color: var(--color-text);
}
.disclosure__click-box-body::-webkit-scrollbar-track {
  background-color: transparent;
}

.disclosure__link-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.disclosure__page-link {
  width: calc(100% / 3 - 50px * 2 / 3);
  background-color: var(--color-green);
  border-radius: 10px;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-align: center;
  padding: 30px 5px;
}

@media screen and (max-width: 1279px) {
  .disclosure__container {
    flex-direction: row;
    gap: 20px;
  }

  .disclosure__wrapper {
    position: relative;
    width: calc(50% - 10px);
  }

  .disclosure__link-box {
    gap: 25px;
  }

  .disclosure__page-link {
    width: 100%;
    padding: 15px 0px;
  }
}

@media screen and (max-width: 767px) {
  .disclosure__container {
    flex-direction: column;
  }

  .disclosure__wrapper {
    position: relative;
    width: 100%;
  }
}
/* ===============================================
#所長挨拶
=============================================== */
.greetings__inner {
  padding-right: 0;
  max-width: 100%;
}

.greetings__bg {
  background: transparent url(/assets/common/greetings-img.webp)
    no-repeat center center / cover;
  height: 600px;
  border-radius: 10px 0 0 10px;
  padding-right: 75px;
}

.greetings__bg.research {
  background: transparent url(/assets/common/research-img_1.webp)
    no-repeat center center / cover;
}

.greetings__bg.academics {
  background: transparent url(/assets/common/academics-mv.webp)
    no-repeat center center / cover;
}

.greetings__bg.admissions {
  background: transparent url(/assets/common/admissions-mv.webp)
    no-repeat center center / cover;
}

.greetings__bg.openclass {
  background: transparent url(/assets/common/openclass-mv.webp)
    no-repeat center center / cover;
}

.greetings__bg.educationEvent {
  background: transparent url(/assets/common/educationEvent-mv.webp)
    no-repeat center center / cover;
  width: calc(100vw - 220px);
  margin-left: calc(((100vw - 100%) / -2) + 140px);
}

.greetings__name-box {
  padding-top: 435px;
  color: #008D82;
}

.greetings__post {
  line-height: 2;
  letter-spacing: 0.02em;
}

.greetings__name {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 5px;
}

.greetings__text-box {
  position: relative;
  max-width: 600px;
}

.greetings__text-box::after {
  content: '';
  position: absolute;
  top: -267px;
  right: -662px;
  width: 782px;
  height: 1604px;
  background: transparent url(/assets/common/greetings-object.png)
    no-repeat center center / contain;
  display: block;
  z-index: 1;
}

.greetings__text {
  position: relative;
  line-height: 2;
  letter-spacing: 0.02em;
  z-index: 2;
  text-indent: 1em;
}

.greetings__text:nth-of-type(n + 2) {
  margin-top: 2em;
}

@media screen and (max-width: 1279px) {
  .greetings__inner {
    padding-right: 15px;
  }
  .greetings__bg {
    background: transparent url(/assets/common/greetings-img.webp)
      no-repeat center center / cover;
  }

  .greetings__bg.academics,
  .greetings__bg.admissions,
  .greetings__bg.educationEvent {
    width: 80%;
    margin: 0 auto;
  }

  .greetings__text-box::after {
    display: none;
  }
}
/* ===============================================
#産研について、独自スタイル
=============================================== */
.l-main__container.global {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.l-main__container.global::after {
  content: '';
  position: absolute;
  top: -190px;
  right: -180px;
  width: 860px;
  height: 1010px;
  display: block;
  background: transparent url(/assets/common/global-img_1.png) no-repeat
    center center / contain;
}

.about__history-table dl {
  border-radius: 10px;
  display: flex;
}

.about__history-table dl:nth-of-type(odd) {
  background-color: #f8f5ea;
}

.about__history-table dt,
.about__history-table dd {
  line-height: 2;
  letter-spacing: 0.02em;
  padding: 15px 24px;
  font-weight: 400;
}

.about__history-table dt {
  width: 17%;
}

.about__history-table dd {
  width: 83%;
}

.about__content:nth-of-type(n + 2) {
  margin-top: 100px;
}

.article__img-box.history-bt-img {
  width: 100vw;
  margin: 0 calc(50% - 50vw + -90px);
}

a.about__yellow-btn,
a[href$='.pdf'].about__yellow-btn {
  background-color: var(--color-yellow);
  padding: 8px 30px;
  border-radius: 50vw;
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  @media screen and (max-width: 1279px) {
    text-align: center;
  }
}

a[href$='.pdf'].about__yellow-btn::before {
  display: none;
}

@media screen and (max-width: 1279px) {
  .l-main__container.global::after {
    top: -190px;
    right: -130px;
    width: 540px;
    height: 800px;
  }

  .about__history-table dl {
    flex-direction: column;
    padding: 12px;
  }
  .about__history-table dt {
    width: 100%;
    padding: 0;
  }
  .about__history-table dd {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-main__container.global::after {
    top: -180px;
    right: -110px;
    width: 380px;
    height: 690px;
  }

  .article__img-box.history-bt-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  a.about__yellow-btn,
  a[href$='.pdf'].about__yellow-btn {
    font-size: 1.6rem;
  }
}

/* ===============================================
#研究・施設
=============================================== */
.ogaList__container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.ogaList__wrapper {
  position: relative;
}

.ogaList__wrapper:nth-of-type(4n + 2),
.ogaList__wrapper:nth-of-type(4n + 4) {
  padding: 60px 0;
}

.ogaList__wrapper:nth-of-type(4n + 2):before {
  content: '';
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
  border-radius: 0 10px 10px 0;
  background-color: #c8af501a;
  right: 0;
}

.ogaList__wrapper:nth-of-type(4n + 4):before {
  content: '';
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
  border-radius: 10px 0px 0px 10px;
  background-color: #c8af501a;
  left: -100px;
}

.ogaList__heading-box {
  display: flex;
  align-items: center;
  gap: 20px 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.ogaList__heading-box .h2 {
  margin-bottom: 0;
}

.ogaList__link {
  background-color: var(--color-yellow);
  padding: 2px 20px;
  border-radius: 2px;
}

.ogaList__text {
  line-height: 2;
  letter-spacing: 0.02em;
}

.ogaList__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 60px;
}

.ogaList__card {
  width: calc(100% / 4 - 60px * 3 / 4);
}

.ogaList__cards.col-2 .ogaList__card {
  width: calc(100% / 2 - 60px * 1 / 2);
}

.ogaList__card-img {
  height: 266px;
}

.ogaList__cards.col-2 .ogaList__card-img {
  height: 311px;
}

.ogaList__cards.col-2 .ogaList__card-img > img {
  object-position: center 10%;
}

.ogaList__cards.col-2 .ogaList__card-img.center > img {
  object-position: center;
}

.ogaList__card-img img {
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}

.ogaList__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ogaList__cards.col-2 .ogaList__card-title {
  font-size:1.3rem;
  font-weight: 400;
}

@media screen and (max-width: 1279px) {
  .ogaList__card-title {
    font-size: 1.3em;
  }

  .ogaList__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 30px;
  }

  .ogaList__heading-box {
    margin-bottom: 24px !important;
  }

  .ogaList__card {
    width: calc(100% / 2 - 15px);
  }

  .ogaList__card-img,
  .ogaList__cards.col-2 .ogaList__card-img {
    height: 50vw;
  }

  .ogaList__wrapper {
    padding-right: 20px;
  }

  .ogaList__wrapper:nth-of-type(4n + 4):before {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .ogaList__wrapper {
    padding-right: 0;
  }
}
.ogaSingleTop__link.ogaSingleTop__deco {
  padding-top: 40px;
  @media screen and (max-width: 1279px) {
    align-items: flex-start;
  }
}
.ogaSingleTop__link-icon.ogaSingleTop__deco-icon {
  background-color: var(--color-green);
  min-width: 14px;
  margin-bottom: 3px;
  @media screen and (max-width: 1279px) {
    margin-top: 3px;
  }
}
.ogaSingleTop__link-icon.ogaSingleTop__deco-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 5px;
  height: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/* ===============================================
#社会共創スタイル
=============================================== */
.l-main__container.socialinnovation::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1000px;
  height: 866px;
  display: block;
  opacity: 0.5;
}

.l-main__container.socialinnovation.spin::after {
  background: transparent url(/assets/common/social-parts_1.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.social-performance::after {
  background: transparent url(/assets/common/social-parts_2.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.use-case::after {
  background: transparent url(/assets/common/social-parts_3.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.case-interview::after {
  background: transparent url(/assets/common/social-parts_4.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.social-event::after {
  background: transparent url(/assets/common/social-parts_5.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.exhibit::after {
  background: transparent url(/assets/common/social-parts_6.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.research-park::after {
  background: transparent url(/assets/common/social-parts_7.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.consultation::after {
  background: transparent url(/assets/common/social-parts_8.png)
    no-repeat center center / contain;
}

.l-main__container.socialinnovation.donate::after {
  background: transparent url(/assets/common/social-parts_9.png)
    no-repeat center center / contain;
}

.socialPage__section {
  position: relative;
  z-index: 2;
}

.socialPage__text-box span {
  font-size: 1.7rem;
  color: var(--color-light-green);
}

.socialPage__text-box strong {
  font-weight: 600;
  font-size: 2rem;
}

.socialPage__text-box a {
  text-decoration: underline;
}

.socialPage__cards {
  display: flex;
  gap: 40px;
}

.socialPage__card {
  text-align: center;
  background-color: #faf7ee;
  border-radius: 10px;
  padding: 25px 5px;
  width: calc(100% / 4 - 40px * 3 / 4);
  color: var(--color-light-green);
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialPage__resarch-box {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.socialPage__resarch-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 100vw;
  height: 100%;
  z-index: -1;
  border-radius: 10px 0px 0px 10px;
  background-color: #ffffff;
  background-image: radial-gradient(#ecff01 25%, transparent 26.5%), radial-gradient(#ecff01 25%, transparent 26.5%);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
}

.socialPage__resarch-logo {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.socialPage__resarch-logo:hover {
  opacity: 1;
}

.socialPage__wide-img {
  position: relative;
  width: calc(100% + ((100vw / 2) - 330px));
  margin-left: -250px;
}

.socialPage__banner {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.socialPage__type-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.socialPage__type-wrapper {
  display: flex;
  gap: 30px;
}

.socialPage__type-dt {
  width: calc(40% - 15px);
  background-color: #faf7ee;
  border-radius: 10px;
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.socialPage__type-dd {
  width: calc(60% - 15px);
  line-height: 2;
  letter-spacing: 0.02em;
}

.socialPage__donate-col {
  display: flex;
  align-items: center;
  gap: 60px;
}

.socialPage__donate-col-text {
  width: calc(70% - 30px);
}

.socialPage__donate-col-text a {
  text-decoration: underline;
}

.socialPage__donate-col-link {
  width: calc(30% - 30px);
}

@media screen and (max-width: 1279px) {
  .socialPage__cards {
    flex-direction: column;
    gap: 20px;
  }

  .socialPage__card {
    width: 100%;
  }

  .socialPage__resarch-box::before {
    left: -12px;
  }

  .socialPage__wide-img {
    position: relative;
    width: 100%;
    margin-left: 0;
  }

  .socialPage__type-wrapper {
    flex-direction: column;
  }

  .socialPage__donate-col {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .socialPage__donate-col-text {
    width: 100%;
  }

  .socialPage__donate-col-link {
    width: 50%;
  }

  .socialPage__type-dt,
  .socialPage__type-dd {
    width: 100%;
  }

  .socialPage__type-dt {
    padding: 15px 0;
    height: auto;
  }

  .socialPage__type-dd {
    font-size: 16px;
  }

  .l-main__container.socialinnovation.spin::after,
  .l-main__container.socialinnovation.social-performance::after,
  .l-main__container.socialinnovation.use-case::after,
  .l-main__container.socialinnovation.case-interview::after,
  .l-main__container.socialinnovation.social-event::after,
  .l-main__container.socialinnovation.exhibit::after,
  .l-main__container.socialinnovation.research-park::after,
  .l-main__container.socialinnovation.consultation::after,
  .l-main__container.socialinnovation.donate::after {
    opacity: 0.4;
  }
}

/* ===============================================
#活動成果一覧
=============================================== */
.lists__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 50px;
}

.lists__card {
  width: calc(100% / 3 - 50px * 2 / 3);
}

.lists__card-img {
  aspect-ratio: 212 / 283;
  background-color: var(--color-gray);
  border-radius: 10px;
}

.lists__card-img img {
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}

.lists__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.88;
}

.lists__card-time {
  color: var(--color-orange);
  font-weight: 600;
  display: block;
}

.lists__card-text {
  line-height: 2;
  letter-spacing: 0.02em;
  text-indent: 1em;
}

.lists__cards.news .lists__card {
  width: calc(100% / 3 - 50px * 2 / 3);
}

.lists__cards.news .lists__card-img {
  aspect-ratio: 3 / 4;
}

.lists__cards.news .lists__card-time {
  color: var(--color-green);
}

@media screen and (max-width: 1279px) {
  .lists__cards {
    gap: 30px 20px;
  }

  .lists__cards.news .lists__card {
    width: calc(50% - 10px);
  }

  .lists__card-title {
    font-size: 16px;
  }

  .lists__card-img {
    /* width: 80%; */
    margin: 0 auto;
    aspect-ratio: auto !important;
  }
}

@media screen and (max-width: 767px) {
  .lists__cards.news .lists__card {
    width: 100%;
  }
}
/* ===============================================
#ユースケース
=============================================== */
.useCase__content {
}

.useCase__wrapper {
  padding: 30px 0;
  border-top: 1px dashed var(--color-text);
  display: flex;
  gap: 60px;
}

.useCase__wrapper:nth-last-of-type(1) {
  border-bottom: 1px dashed var(--color-text);
}

.useCase__img-box {
  width: calc(35% - 30px);
}

.useCase__textarea {
  width: calc(65% - 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.useCase__cat {
  background-color: var(--color-yellow);
  display: inline-block;
  padding: 0px 40px;
  border-radius: 50vw;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.useCase__title {
  margin-bottom: 20px;
}

.useCase__title::before {
  display: none;
}

.useCase__info {
  padding-left: 14px;
  border-left: 4px solid var(--color-light-green);
  line-height: 2;
  letter-spacing: 0.02em;
  margin-top: auto;
}

@media screen and (max-width: 1279px) {
  .useCase__wrapper {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .useCase__img-box {
    width: 80%;
    margin: 0 auto;
  }

  .useCase__textarea {
    width: 100%;
  }
}

/* ===============================================
#ヘッダー部スタイル
=============================================== */
.dark-gray {
  color: var(--color-dark-gray);
}

.headerSec__heading-box {
  display: flex;
  align-items: center;
  border-left: 6px solid var(--color-green);
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.headerSec__heading-box.light-green,
.headerSec__heading-box.socialinnovation {
  border-left: 6px solid var(--color-light-green);
}

.headerSec__heading-box-left {
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--color-text);
}

.h2.headerSecH2 {
  position: relative;
  font-size: 25px;
  padding-left: 8px;
  margin-bottom: 60px;
  border-left: 5px solid var(--color-dark-gray);
  font-weight: 600;
}
.headerSecTheme__container li {
  position: relative;
  list-style: none;
  padding-left: 18px;
}

.article__text.headerSecTheme__container ol > li {
  padding-left: 1em;
}

.article__text.headerSecTheme__container ol > li {
  list-style: decimal;
  padding-left: 0.5em;
}

.article__text.headerSecTheme__container ol > li::before {
  display: none;
}

.article__text.headerSecTheme__container ul > li::before {
  background-color: var(--color-dark-gray);
}

a.preparation {
  background-color: var(--color-green);
  border-radius: 10px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 350px;
  max-width: 100%;
  text-decoration: none;
}

.article__text .h2.darkGray {
  border-color: var(--color-dark-gray);
  border-left: 6px solid var(--color-dark-gray);
  line-height: 1.3;
}

.socialEvent.headerSecContact {
  position: relative;
}

.article__text h2.headerSecContact {
  margin-bottom: 60px;
}

.article__column.headerSecContact {
  flex-wrap: nowrap;
  gap: 0px;
  margin-bottom: 0px;
  align-items: center;
}

.headerSecContact__img {
  width: 242px;
  height: 56px;
  padding-right: 34px;
}

.headerSecContact__text {
  padding-left: 34px;
  border-left: 1px solid;
}

.headerSecContact__text p {
  margin-bottom: 0;
}

.headerSecContact__text p:first-child {
  font-size: 20px;
  font-weight: 600;
}

.headerSecContact__text p:nth-child(2) {
  font-size: 15px;
}

.article__col-item .article__img-box.access-img .article__img-item {
  width: 100%;
}

.article__text .headerSec-link {
  text-indent: 0;
}

.siteMap > li::before,
.siteMap_list > li::before {
  display: none;
}

/* ===============================================
# 採用情報テーブルスタイル
=============================================== */
.table__hd-sec__container {
  overflow-x: auto;
}

.table__hd-sec__container table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.table__hd-sec__container table tbody tr:nth-of-type(even) {
  background-color: #f5f5f5;
}

.table__hd-sec__container table th,
.table__hd-sec__container table td {
  padding: 10px 20px;
  vertical-align: middle;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 12px;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/* 1列目：募集分野・部署 */
.table__hd-sec__container table th:nth-of-type(1),
.table__hd-sec__container table td:nth-of-type(1) {
  min-width: 160px;
  width: 22%;
}

/* 2列目：専門分野等 */
.table__hd-sec__container table th:nth-of-type(2),
.table__hd-sec__container table td:nth-of-type(2) {
  min-width: 160px;
  width: 22%;
}

/* 3列目：職名（広め） */
.table__hd-sec__container table th:nth-of-type(3),
.table__hd-sec__container table td:nth-of-type(3) {
  min-width: 240px;
  width: 34%;
}

/* 4列目：応募締切（狭め） */
.table__hd-sec__container table th:nth-of-type(4),
.table__hd-sec__container table td:nth-of-type(4) {
  min-width: 100px;
  width: 14%;
}

/* 5列目：要項（PDF） */
.table__hd-sec__container table th:nth-of-type(5),
.table__hd-sec__container table td:nth-of-type(5) {
  min-width: 60px;
  max-width: 80px;
  width: 8%;
  text-align: center;
}

.table__hd-sec__container table th:last-child,
.table__hd-sec__container table td:last-child {
  min-width: 60px;
}

.table__hd-sec__container table th:nth-of-type(n + 2),
.table__hd-sec__container table td:nth-of-type(n + 2) {
  border-left: 1px dashed var(--color-orange);
}

.table__hd-sec__container table th {
  font-weight: 600;
  text-align: center;
}

.table__hd-sec__container.text-left table th,
.table__hd-sec__container.text-left table td {
  text-align: left;
  vertical-align: top;
}

.table__hd-sec__container.exhibit table {
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.table__hd-sec__container.exhibit table tr:nth-of-type(odd) td:nth-of-type(1) {
  background-color: #faf7ee;
}

.table__hd-sec__container.exhibit table tr:nth-of-type(even) td:nth-of-type(1) {
  background-color: #f0ede5;
}

.table__hd-sec__container.exhibit table tr:nth-of-type(odd) td:nth-of-type(2) {
  background-color: transparent;
}

.table__hd-sec__container.exhibit table tr:nth-of-type(even) td:nth-of-type(2) {
  background-color: #f5f5f5;
}

.table__hd-sec__container.academics table tbody,
.headerSecContact.table__hd-sec__container table tbody {
  border-bottom: 1px solid var(--color-dark-gray);
}

.table__hd-sec__container.academics table .border {
  border-bottom: 1px dashed var(--color-dark-gray);
}

.table__hd-sec__container.academics table .bg-gray {
  background-color: #f5f5f5;
}

.headerSecContact.table__hd-sec__container table thead {
  border-top: 1px solid var(--color-dark-gray);
  border-bottom: 1px solid var(--color-dark-gray);
  background-color: #f5f5f5;
}

.headerSecContact.table__hd-sec__container table tbody tr:nth-of-type(even) {
  background-color: #f5f5f5;
}

.headerSecContact.table__hd-sec__container table th:nth-of-type(n + 2),
.headerSecContact.table__hd-sec__container table td:nth-of-type(n + 2) {
  border-left: 1px dashed var(--color-dark-gray);
}

.article__col-item .article__img-box.access-img .article__img-item {
  width: 100%;
}

.table__container.contact thead {
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  background-color: #f5f5f5;
}

.table__container.contact tbody tr:nth-of-type(odd) {
  background-color: #fff;
}

.table__container.contact tbody tr:nth-of-type(even) {
  background-color: #f5f5f5;
}

.table__container.contact table th:nth-of-type(n + 2),
.table__container.contact table td:nth-of-type(n + 2) {
  border-color: var(--color-text);
}

.table__container.contact tbody td:nth-of-type(1) {
  text-align: left;
  width: 50%;
}

@media screen and (max-width: 1279px) {
  .headerSecContact__text {
    border-left: none;
  }
  .headerSecTheme__container {
    flex-direction: column;
  }

  .h2.headerSecH2 {
    font-size: 18px;
    margin-bottom: 26px;
  }

  .table__hd-sec__container {
    overflow-x: scroll;
  }

  .table__hd-sec__container table th,
  .table__hd-sec__container table td {
    min-width: 200px;
  }

  .table__hd-sec__container table th:first-child,
  .table__hd-sec__container table td:first-child {
    min-width: 150px;
  }
}

.article__text td a.recruit-pdf{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.article__text td a.recruit-pdf[href$='.pdf']::before{
 background: none;
}

.article__text td a.recruit-pdf img,
.table__hd-sec__container table td a.recruit-pdf img {
  width: 40px;
  height: auto;
}

/* ===============================================
#教育・地域連携
=============================================== */
.imgLoop {
  display: flex;
  overflow: hidden;
}
.imgLoop__box {
  display: flex;
  animation: loop-list 50s linear infinite;
}
.imgLoop__item {
  width: calc(100vw / 3);
  display: block;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.UnderConstruction {
  height: 330px;
  background-color: var(--color-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.education__btn {
  background-color: var(--color-brown);
  padding: 8px 30px;
  border-radius: 50vw;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.education__btn strong {
  font-size: 3rem;
  font-weight: 600;
}

.education__banner-box {
  max-width: 592px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 1279px) {
  .education__btn {
    font-size: 1.6rem;
  }

  .education__btn strong {
    font-size: 2rem;
  }
}

/* ===============================================
#旧サイト用スタイル
=============================================== */

.sdgsArea li {
  display: inline-block;
  padding-left: 0;
}

.sdgsArea li:before {
  display: none;
}
/* ===============================================
#検索ページ
=============================================== */
.c-search {
  position: absolute;
  top: 60px;
  right: 0;
  display: none;
  background-color: var(--color-text);
  padding: 15px;
  z-index: 10;
}

.c-search__box {
  display: flex;
  align-items: center;
}

.c-search__input-box {
  display: flex;
  gap: 4px;
}

.c-search__input {
  width: 300px;
  height: 100%;
  background-color: #fff;
  padding: 0.5em;
}

.c-search__btn {
  background-color: var(--color-light-green);
  color: #fff;
  font-weight: 600;
  padding: 2px 10px;
}

.c-search__close-btn {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 58px;
  margin-right: 12px;
}

.c-search__close-btn span {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 1px;
}

.c-search__close-btn span:nth-of-type(1) {
  rotate: 45deg;
}

.c-search__close-btn span:nth-of-type(2) {
  rotate: -45deg;
}

.search__lists {
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.search__list {
  padding: 60px 0;
  border-bottom: 1px dashed var(--color-text);
}

.search__list:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .c-search {
    width: 100%;
  }

  .c-search__box {
    justify-content: space-between;
  }

  .c-search__box > form {
    width: calc(100% - 30px);
  }

  .c-search__close-btn {
    margin-left: 0;
    margin-right: 0;
  }

  .c-search__input-box {
    flex-wrap: wrap;
  }

  .search__list {
    padding: 30px 0;
  }

  .c-search__input-box > label,
  .c-search__input {
    width: 100%;
  }
}
/* ===============================================
#お問い合わせページ
=============================================== */
.form-table {
  width: 100%;
}

.form-table th,
.form-table td {
  padding-top: 20px;
  padding-bottom: 20px;
}

.form-table tr:nth-of-type(1) th,
.form-table tr:nth-of-type(1) td {
  padding-top: 0;
  padding-bottom: 50px;
}

.form-table.confirm tr:nth-of-type(1) th,
.form-table.confirm tr:nth-of-type(1) td {
  padding-bottom: 20px;
}

.form-table tr:nth-last-of-type(1) th,
.form-table tr:nth-last-of-type(1) td {
  padding-bottom: 0px;
  padding-top: 60px;
}

.form-table th {
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-right: 40px;
}

.form-table th label {
  padding-top: 2px;
  display: block;
  line-height: 2;
}

.form-table.confirm th label {
  padding-top: 0;
}

.form-table th small {
  font-size: 1.5rem;
  color: #e93c34;
}

.form-table .checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-table .checkboxes .custom-checkbox {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
}

.form-table .custom-control-indicator {
  cursor: pointer;
  display: inline-block;
  position: relative;
  height: 15px;
  width: 15px;
  background: #fff;
  border: 1px solid var(--color-text);
  margin-right: 15px;
  overflow: hidden;
}

.form-table .custom-control-indicator::before,
.form-table .custom-control-indicator::after {
  content: '';
  position: absolute;
  top: calc(50% - 0.5px);
  left: -2px;
  width: calc(100% + 4.5px);
  height: 1px;
  background-color: var(--color-light-green);
  opacity: 0;
}

.form-table .custom-control-indicator::before {
  rotate: 45deg;
}

.form-table .custom-control-indicator::after {
  rotate: -45deg;
}

.form-table .custom-control-description {
  width: calc(100% - 30px);
}

.form-table .watch-changed:checked + .custom-control-indicator::before,
.form-table .watch-changed:checked + .custom-control-indicator::after {
  opacity: 1;
}

.form-table input[type='text'],
.form-table textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--color-text);
  padding: 0.5em;
}

.form-table textarea {
  height: 200px;
}

.cell-form-input:is(.kana, .email, .tel) {
  display: flex;
  align-items: center;
}

.cell-form-input.kana {
  gap: 30px;
}

.cell-form-input.tel {
  gap: 12px;
}

.cell-form-input.email {
  gap: 9px;
}

.form-table button[type='submit'] {
  background-color: var(--color-green);
  padding: 15px 60px;
  border-radius: 50vw;
  color: #fff;
  font-weight: 700;
  margin: 0 10px;
}

@media screen and (max-width: 1279px) {
  .form-table th {
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .form-table th,
  .form-table td {
    display: block;
  }

  .form-table th {
    padding-top: 10px;
    padding-bottom: 5px;
    padding-right: 0;
  }

  .form-table td {
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .form-table tr:nth-of-type(1) th,
  .form-table tr:nth-of-type(1) td {
    padding-bottom: 20px;
  }

  .form-table tr:nth-last-of-type(1) th,
  .form-table tr:nth-last-of-type(1) td {
    padding-top: 20px;
  }
}

/* ===============================================
#英語ページ共通クラス
=============================================== */
.jp-only {
  font-size: 12px;
}

/* ===============================================
#google検索アイコン
=============================================== */
.gsc-search-button-v2 svg {
  width: 13px;
}

.gssb_c {
  display: none !important;
}

td.gsc-input {
  padding-right: 0 !important;
  width: 300px !important;
}

.gsc-search-button-v2 {
  margin-left: 4px !important;
  padding: 10px 27px !important;
  background-color: var(--color-light-green) !important;
  border-color: var(--color-light-green) !important;
}

.gsc-control-cse {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
}

.gcsc-find-more-on-google-magnifier {
  width: 12px;
}

/* ===============================================
#お問い合わせメールアドレス用スタイル
=============================================== */
tr.contact-email .cell-form-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

tr.contact-email .cell-form-input-item:first-child {
  width: 65%;
}
tr.contact-email .cell-form-input-item {

/* ===============================================
#Youtube埋め込み
=============================================== */
.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
  width: 35%;
}
/* ===============================================
#万博対応分
=============================================== */
/* 万博ワイドカード：横幅のみ広げて、他と揃える */
.features__card--wide {
  width: calc(66.666% + 20px); /* 通常カード2列分 + gap */
  min-height: auto; /* 他カードと高さ合わせるなら不要 */
  background-color: rgba(255, 255, 255, 0.1);
  background-image: radial-gradient(#ecff00 26%, transparent 29%),
                    radial-gradient(#ecff00 26%, transparent 29%);
  background-position: 0 0, 6px 6px;
  background-size: 12px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* アイコンや文字は通常カードと同じCSSを流用 */
.features__card--wide .features__img-box {
  width: 50%; /* 通常カードと揃える */
  display: flex;
  justify-content: center;
  align-items: center;
}

.features__card--wide .features__img-box img {
  width: 50%; /* 通常カードと同じ */
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.features__card--wide .features__card-title {
  width: 60%;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  font-family: var(--font-family-jp); /* 通常カードと統一 */
}

/* モバイルでは通常カードと同じ処理でOK */
@media screen and (max-width: 767px) {
  .features__card--wide {
    width: 100%;
  }

  .features__card-link--wide {
    flex-direction: column;
    gap: 15px;
    justify-content: flex-end;
    padding-bottom: 25px;
  }

  .features__card--wide .features__img-box {
    width: 100%;
  }

  .features__card--wide .features__card-title {
    width: auto;
    text-align: center;
  }
}

/* ===============================================
#万博個別ページ対応追記
=============================================== */
.expoexhibit-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.expoexhibit-thumbnail {
  flex: 0 0 30%;
  max-width: 30%;
}

.expoexhibit-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.expoexhibit-table {
  flex: 0 0 70%;
  max-width: 70%;
  overflow-x: auto;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .expoexhibit-thumbnail,
  .expoexhibit-table {
    flex: 0 0 100%;
    max-width: 100%;
  }
}