@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

/*** ここから ***/
:root {
  --darkBlue: #1e3760;
  --white: #fff;
  --black: #000;
  --red: #ed1c24;
}

html {
  font-family: "Zen Old Mincho", serif;
}

body {
  overflow-x: hidden;
}

img {
  width: 100%;
}

.l-section {
  padding: 50px 0;
}
.l-section__container {
  margin: 0 auto;
  padding: 0 15px;
}
.l-section__container--basic {
  max-width: 900px;
}
.l-section__container--small {
  max-width: 750px;
}
.l-section__title--big {
  text-align: center;
  font-size: clamp(1.25rem, 0.848rem + 2.01vw, 1.813rem);
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .l-section__title--big {
    line-height: 2.5;
  }
}
.l-section__title--side-border {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
  margin-bottom: 5rem;
  text-align: center;
}
.l-section__title--side-border::before, .l-section__title--side-border::after {
  content: "";
  flex: 1;
  max-width: 150px;
  height: 1px;
  background-color: var(--black);
}
.l-section__title--side-border::before {
  margin-right: 1em;
}
.l-section__title--side-border::after {
  margin-left: 1em;
}
.l-section__title--side-border--max::before, .l-section__title--side-border--max::after {
  max-width: 100%;
}

.c-kv {
  position: relative;
}
.c-kv__img {
  height: 50vh;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .c-kv__img {
    height: auto;
  }
}
.c-kv__img--top {
  object-position: left center;
}
.c-kv__img--other {
  object-position: center center;
}
.c-kv__title {
  position: absolute;
}
.c-kv__title--rb {
  right: 5%;
  bottom: 5%;
  font-size: 10vw;
  color: white;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .c-kv__title--rb {
    font-size: 4.5vw;
    -webkit-text-stroke-width: 1px;
    color: var(--black);
    text-shadow: 4px 4px #fff;
  }
}
.c-kv__title--cc {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 15vw;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .c-kv__title--cc {
    font-size: 4vw;
  }
}

.p-top-anchor__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
}
.p-top-anchor__buttons-link {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
}
.p-top-anchor__news {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 7.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--black);
}
@media screen and (min-width: 769px) {
  .p-top-anchor__news {
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
  }
}
.p-top-anchor__news-2column {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .p-top-anchor__news-2column {
    flex-direction: row;
    gap: 30px;
  }
}
.p-top-anchor__news-label {
  position: relative;
  font-size: clamp(1.125rem, 0.857rem + 1.34vw, 1.5rem);
  padding-left: 0.75em;
}
.p-top-anchor__news-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  aspect-ratio: 1;
  background: var(--black);
}
.p-top-anchor__news-info {
  font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
}
.p-top-anchor__contact {
  text-align: center;
  margin-top: 15rem;
}
.p-top-anchor__contact-link {
  position: relative;
  padding-left: 70px;
  font-size: clamp(1.125rem, 0.991rem + 0.67vw, 1.313rem);
}
.p-top-anchor__contact-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../images/mail-icon.png");
  background-size: contain;
  width: 57px;
  height: 36px;
}

.p-overview-establishment {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
}
.p-overview-establishment__title {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
  margin-bottom: 2rem;
}
.p-overview-establishment__intro {
  text-indent: 1em;
  line-height: 1.75;
}
.p-overview-establishment__name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 2.5rem 0;
}
@media screen and (min-width: 769px) {
  .p-overview-establishment__name {
    justify-content: flex-end;
    flex-direction: row;
    gap: 1em;
  }
}

.p-archive-report__list {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
}
.p-archive-report__list-item + .p-archive-report__list-item {
  margin-top: 1rem;
}
.p-archive-report__list-link {
  border-bottom: 1px solid var(--black);
}

.p-office-contact__text {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
}
.p-office-contact__text + .p-office-contact__text {
  margin-top: 2.5rem;
}

.p-event-section {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
}
.p-event-section__text {
  line-height: 1.75;
}
.p-event-section__text + .p-event-section__text {
  margin-top: 3rem;
}
.p-event-section__text + .p-event-section__imgs {
  margin-top: 3rem;
}
.p-event-section__instructor-name {
  margin-bottom: 3rem;
}
.p-event-section__instructor-name a {
  border-bottom: 1px solid var(--black);
}
.p-event-section__instructor-title {
  margin-top: 3rem;
}
.p-event-section__list + .p-event-section__list {
  margin-top: 5rem;
}
.p-event-section__list-item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-event-section__list-item {
    flex-direction: row;
  }
}
.p-event-section__list-item + .p-event-section__list-item {
  margin-top: 0.5rem;
}
.p-event-section__list-children {
  padding-left: 2em;
}
@media screen and (min-width: 769px) {
  .p-event-section__list-children {
    padding-left: 3em;
  }
}
.p-event-section__list-children--pl-none {
  padding-left: 0;
}
.p-event-section__list-children-item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-event-section__list-children-item {
    flex-direction: row;
    gap: 3em;
  }
}
.p-event-section__list-children-item + .p-event-section__list-children-item {
  margin-top: 0.5rem;
}
.p-event-section__list-children + .p-event-section__list-item {
  margin-top: 0.5rem;
}
.p-event-section__imgs {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.p-event-section__imgs--column {
  flex-direction: row;
  flex-wrap: wrap;
}
.p-event-section__imgs--column > * {
  max-width: 250px;
}

.p-link-registrant__text {
  margin-bottom: 1.5rem;
}
.p-link-registrant__table {
  width: 100%;
}
.p-link-registrant__table thead {
  background: var(--darkBlue);
  color: var(--white);
}
.p-link-registrant__table td, .p-link-registrant__table th {
  border: 1px solid #000;
  padding: 0.5rem;
  vertical-align: middle;
}
.p-link-registrant__table th {
  text-align: center;
}
.p-link-registrant a {
  border-bottom: 1px solid var(--black);
}
.p-link-connection__list {
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
  padding: 0.5em 1em;
}
.p-link-connection__list:first-of-type {
  border-top: 1px solid var(--black);
}
.p-link-connection__list + .p-link-connection__list {
  border-top: 1px solid var(--black);
}
.p-link-connection__list:last-of-type {
  border-bottom: 1px solid var(--black);
}
.p-link-connection a {
  border-bottom: 1px solid var(--black);
}

.p-member-name__table {
  width: 100%;
}
.p-member-name__table td, .p-member-name__table th {
  border: 1px solid #000;
  padding: 0.5rem;
  vertical-align: middle;
}
.p-member-name__table th {
  text-align: center;
}
.p-member-name__table caption {
  caption-side: bottom;
  text-align: center;
  padding-top: 1rem;
}

.p-bylaws-list__table {
  width: 100%;
}
.p-bylaws-list__table td, .p-bylaws-list__table th {
  border: 1px solid #000;
  padding: 0.5rem;
  vertical-align: middle;
}
.p-bylaws-list__table th {
  min-width: 100px;
  text-align: center;
}
.p-bylaws-list__table caption {
  caption-side: bottom;
  text-align: center;
  padding-top: 1rem;
}

.l-footer {
  padding: 25px 0;
}
.l-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.l-footer__copy {
  font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
  text-align: center;
  margin-bottom: 1rem;
}
.l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
  margin-bottom: 3rem;
}
.l-footer__list-item {
  position: relative;
}
.l-footer__list-item::before, .l-footer__list-item:last-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: var(--black);
}
.l-footer__list-item:last-of-type::after {
  left: auto;
  right: -1em;
}
.l-footer__line {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 15px;
}
.l-footer__line--red {
  background: var(--red);
}
.l-footer__line--blue {
  background: var(--darkBlue);
}
.l-footer__2column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .l-footer__2column {
    flex-direction: row;
  }
}
.l-footer__2column-right {
  display: inline-block;
  max-width: 250px;
  width: 100%;
}
.l-footer__2column-right img {
  width: 100%;
}

.u-mt3 {
  margin-top: 3rem;
}

@media screen and (min-width: 769px) {
  .u-sp-only {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */