@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

/*
 * Add the correct display in all browsers.
 */

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */

/**
 * Add the correct display in IE 10.
 */

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button {
  color: #404040;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  clear: both;
}

p {
  margin: 0;
  padding: 0;
}


i {
  font-style: italic;
}


var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dd {
  margin: 0;
}

/* Make sure embeds and iframes fit their containers. */

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

figure {
  margin: 1em 0;
}

/* Links
--------------------------------------------- */
a {
  color: #399d26;
}
a:visited {
  color: #800080;
}
a:hover, a:focus, a:active {
  color: #191970;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus {
  border-color: #aaa #bbb #bbb;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  background-color: #399d26;
}
@media screen and (max-width: 1080px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 78px;
}
.main-navigation ul .sub-menu {
  position: absolute;
  top: 50px;
  left: 186px;
  flex-direction: column;
  width: 240px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #fff;
  background-color: #399d26;
  transform: skewX(-135deg);
  box-shadow: 5px 5px 10px rgba(34, 34, 34, 0.1);
  transition: opacity 0.2s ease-out;
  z-index: 400;
}
.main-navigation ul .sub-menu::before {
  --size: 19px;
  position: absolute;
  content: "";
  inline-size: var(--size);
  block-size: calc(var(--size) / 2 * 1.7320508076);
  inset-block-end: 100%;
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin-inline: auto;
  -webkit-clip-path: var(--clip-triangle-top);
          clip-path: var(--clip-triangle-top);
  background-color: #fff;
}
.main-navigation ul .sub-menu::after {
  --size: 16px;
  position: absolute;
  content: "";
  inline-size: var(--size);
  block-size: calc(var(--size) / 2 * 1.7320508076);
  inset-block-end: 100%;
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin-inline: auto;
  -webkit-clip-path: var(--clip-triangle-top);
          clip-path: var(--clip-triangle-top);
  background-color: #399d26;
}
.main-navigation ul .sub-menu li {
  position: relative;
  height: 60px;
  border: none;
  transform: skewX(0);
}
.main-navigation ul .sub-menu li:last-child {
  border-right: none;
}
.main-navigation ul .sub-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
  transition: var(--transition);
  transform: skewX(0);
}
.main-navigation ul .sub-menu li a:hover {
  background-color: white;
  color: #399d26;
  transform: skewX(0);
}
.main-navigation ul li {
  padding: 0 1em;
  border-left: 1px solid #fff;
  font-size: 20px;
  font-size: 1.25rem;
  transform: skewX(135deg);
}
.main-navigation ul li:last-child {
  border-right: 1px solid #fff;
}
.main-navigation ul li.sub-list:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transition: var(--transition);
}
.main-navigation ul li a {
  display: block;
  padding: 0.25em;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: skewX(-135deg);
}
.main-navigation ul li a:hover {
  background-color: white;
  color: #399d26;
  transform: skewX(-135deg);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1080px) {
  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 70px;
    height: 70px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    color: #404040;
    z-index: 1000;
  }
  .hamburger.-active .hamburger__line {
    background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
    top: 0;
    background-color: #fff;
    transform: rotate(45deg);
  }
  .hamburger.-active .hamburger__line::after {
    top: 0;
    background-color: #fff;
    transform: rotate(-45deg);
  }
  .hamburger.-active .hamburger__text::before {
    content: "CLOSE";
    color: #fff;
  }
}

.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background-color: #404040;
  transition: 0.4s;
}
.hamburger__line::before, .hamburger__line::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #404040;
  transition: inherit;
}
.hamburger__line::before {
  top: -6px;
}
.hamburger__line::after {
  top: 6px;
}

.hamburger__text {
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.hamburger__text::before {
  content: "MENU";
  color: #404040;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 900;
  text-align: center;
}

.modal-container-1 {
  display: none;
}
.modal-container-1.-active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(57, 157, 38, 0.85);
  color: #fff;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 800;
  overflow-y: scroll;
  animation: 1s cubic-bezier(0.25, 1, 0.3, 1) square-in-top-right both;
}
.modal-container-1[aria-hidden=false] {
  animation: 1s cubic-bezier(0.25, 1, 0.3, 1) square-in-bottom-left both;
}
.modal-container-1 #modal-1-content {
  width: 100%;
  height: 100%;
  background: url(../images/logo_white.png) no-repeat 90% 100%;
}
.modal-container-1 #modal-1-content .modal-main {
  padding: 4em;
}
@media screen and (max-width: 520px) {
  .modal-container-1 #modal-1-content .modal-main {
    padding: 2em;
  }
}
.modal-container-1 #modal-1-content ul {
  display: flex;
  flex-direction: column;
  margin: 0 0 1em;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 520px) {
  .modal-container-1 #modal-1-content ul {
    font-size: 32px;
    font-size: 2rem;
  }
}
.modal-container-1 #modal-1-content ul li {
  margin: 0 0 0.5em;
}
.modal-container-1 #modal-1-content ul li a {
  color: #fff;
  letter-spacing: 0.25em;
  text-decoration: none;
}
.modal-container-1 #modal-1-content ul li a:focus {
  outline: none;
}
.modal-container-1 #modal-1-content ul li a:focus-visible {
  outline: 1px dotted #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Posts and pages
--------------------------------------------- */
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.5s var(--easing);
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
    -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
    -0.8rem -0.8rem 1.2rem rgba(255, 255, 255, 0.2);
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

@keyframes square-in-top-right {
  from {
    -webkit-clip-path: inset(100% 100% 0 0);
            clip-path: inset(100% 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes square-in-bottom-left {
  from {
    -webkit-clip-path: inset(0 0 100% 100%);
            clip-path: inset(0 0 100% 100%);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes wipe-in-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1088px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .container {
    width: 94%;
  }
}

.site-header .site-title {
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #399d26;
  text-align: center;
}

.home-mv {
  background: url(../images/mv@2x.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 1080px) {
  .home-mv {
    border-bottom: 1px solid #399d26;
  }
}

.mv {
  margin: 0;
}

.site-main .home {
  padding: 0 0 200px;
}
.site-main .home .years {
  margin: 80px auto 60px;
  font-size: clamp(1.375rem, 0.295rem + 4.61vw, 3.75rem);
  text-align: center;
}
@media screen and (max-width: 520px) {
  .site-main .home .years {
    letter-spacing: -1px;
  }
}
.site-main .home .years img {
  margin: 0 0 60px;
}
.site-main .home h3 {
  color: #399d26;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  text-align: center;
}
.site-main .home p {
  font-size: clamp(1rem, 0.773rem + 0.97vw, 1.5rem);
}
.site-main .page-title {
  margin: 80px auto;
  color: #399d26;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
}

.support {
  padding: 60px;
  border: 1px solid #399d26;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .support {
    padding: 2em;
  }
}
.support figure {
  margin: 3em 0;
}
.support .iug-collaboration-seminar {
  padding: 32px;
  color: #399d26;
  border: 1px solid #399d26;
  border-radius: 6px;
  background-color: #eff6e8;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
.support .iug-collaboration-seminar ul {
  display: flex;
  justify-content: space-between;
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .support .iug-collaboration-seminar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }
}

.sub-title {
  font-size: clamp(1.25rem, 0.932rem + 1.59vw, 2.125rem);
  text-align: center;
}
.sub-title span {
  color: #399d26;
}

.message .profile {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: -1;
}
.message .profile figure {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .message .profile figure {
    text-align: center;
  }
}
.message .profile div {
  position: absolute;
  top: 33.3333333333%;
  left: 300px;
  width: 100%;
  padding: 1em;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(57, 157, 38, 0.1);
}
@media screen and (max-width: 768px) {
  .message .profile div {
    position: inherit;
    top: 0;
    left: 0;
    margin: 0.5em 0 0;
  }
}
.message .profile div h3 {
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
.message .profile div h3 + p {
  margin: 0;
}
.message .message-inner {
  margin: 4em 0 0 0;
}
.message .message-inner p {
  margin: 1em 0;
}
.message .brief-personal-record dt {
  padding: 1em;
  background: url(../images/wavy.png) no-repeat center top;
  background-size: contain;
  color: #399d26;
  font-size: 20px;
  font-size: 1.25rem;
}
.message .brief-personal-record dd {
  margin: 0;
  padding: 0 1em 2em;
  background: url(../images/wavy.png) no-repeat center bottom;
  background-size: contain;
}
.message .research {
  margin: 2em auto;
  text-align: center;
}
.message .references {
  margin: 2em 0;
}
.message .references p {
  padding: 1em;
  color: #399d26;
  border: 1px solid #399d26;
  border-radius: 6px;
}
.message .references ol {
  list-style: inside decimal;
  margin: 1em 0;
}

.history > p {
  margin: 2em 0;
  font-size: 18px;
  font-size: 1.125rem;
}
.history .time-series {
  list-style: square inside;
}
.history .time-series dt {
  clear: both;
  display: list-item;
  color: #399d26;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
.history .time-series dt span {
  font-size: 16px;
  font-size: 1rem;
}
.history .time-series dd {
  margin: 0.5em 0 1em 0;
  padding: 0 0 0 1em;
}
.history .time-series dd p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .history .time-series dd .alignright {
    float: none;
    text-align: center;
  }
}
.history .time-series dd .notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0;
  padding: 1em;
  border: 1px solid #399d26;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .history .time-series dd .notice {
    flex-wrap: wrap;
  }
}
.history .time-series dd .notice .title {
  width: 26%;
  margin: 0 1em 0 0;
  color: #399d26;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .history .time-series dd .notice .title {
    width: 100%;
  }
}
.history .time-series dd .notice p {
  margin: 0;
  font-weight: 500;
}
.history .time-series dd .event {
  margin: 1em 0;
}
.history .time-series dd .event li {
  margin: 0 0 0.5em;
  font-weight: 700;
}
.history .time-series dd .event li::before {
  display: inline-block;
  color: rgba(57, 157, 38, 0.5);
  content: "●";
}
.history .time-series dd .event li > p {
  margin: 0.5em 0 1em;
  font-weight: 500;
}

.bdd ul {
  margin: 4em 0;
}
.bdd ul li {
  display: flex;
  justify-content: space-between;
  margin: 0 0 6em;
}
@media screen and (max-width: 768px) {
  .bdd ul li {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.bdd ul li .profile {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .bdd ul li .profile {
    width: 100%;
  }
}
.bdd ul li .profile .name {
  display: flex;
  flex-direction: column;
  margin: 0 0 2em;
  padding: 0 0 2em;
  background: url(../images/arrow01.png) no-repeat right bottom;
  font-weight: 700;
}
.bdd ul li .profile .name h3 {
  order: 2;
  margin: 0;
  font-size: 32px;
  font-size: 2rem;
}
.bdd ul li .profile .name h3 span {
  font-size: 16px;
  font-size: 1rem;
}
.bdd ul li .profile .name .en {
  order: 1;
  margin: 0 0 0.5em;
  color: #399d26;
}
.bdd ul li .profile .name .occupation {
  order: 3;
  color: #399d26;
}
.bdd ul li .profile .column {
  display: flex;
  align-items: center;
  margin: 2em 0 0;
}
.bdd ul li .profile .column p {
  display: grid;
  align-items: center;
  position: relative;
  width: 6em;
  height: 6em;
  padding: 1em;
  border: 1px solid #399d26;
  border-radius: 6px;
  color: #399d26;
  font-weight: 700;
  text-align: center;
}
.bdd ul li .profile .column p::after {
  --size: 16px;
  position: absolute;
  content: "";
  inline-size: calc(var(--size) / 2 * 1.7320508076);
  block-size: var(--size);
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 100%;
  margin-block: auto;
  -webkit-clip-path: var(--clip-triangle-right);
          clip-path: var(--clip-triangle-right);
  background-color: #fff;
}
.bdd ul li .profile .column p::before {
  --size: 19px;
  position: absolute;
  content: "";
  inline-size: calc(var(--size) / 2 * 1.7320508076);
  block-size: var(--size);
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 100%;
  margin-block: auto;
  -webkit-clip-path: var(--clip-triangle-right);
          clip-path: var(--clip-triangle-right);
  background-color: #399d26;
}
.bdd ul li .profile .column > ul {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 80%;
  margin: 0 0 0 2em;
}
.bdd ul li .profile .column > ul li {
  margin: 0;
}
.bdd ul li .profile .column > ul li .qr {
  width: 160px;
  margin: 0;
}
.bdd ul li figure {
  width: 28%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .bdd ul li figure {
    width: 100%;
    margin: 0 0 2em;
    text-align: center;
  }
}

.successive-managers h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #399d26;
}
.successive-managers h2 img {
  margin: 0 0.25em 0 0;
}
.successive-managers ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
  margin: 4em 0 6em;
}
.successive-managers ul li {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .successive-managers ul li {
    width: 100%;
  }
}
.successive-managers ul li .name {
  display: flex;
  flex-direction: column-reverse;
}
.successive-managers ul li .name h3 {
  margin: 0;
  font-size: 32px;
  font-size: 2rem;
}
.successive-managers ul li .term {
  display: flex;
  align-items: center;
  gap: 1em;
  color: #399d26;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.successive-managers ul li .term dt {
  padding: 0.5em 1em;
  border: 1px solid #399d26;
  border-radius: 6px;
}

.archive ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin: 4em 0 6em;
}
@media screen and (max-width: 520px) {
  .archive ul {
    max-width: 440px;
    margin: 4em auto 6em;
  }
}
.archive ul li {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  width: 31%;
}
@media screen and (max-width: 768px) {
  .archive ul li {
    width: 47%;
  }
}
@media screen and (max-width: 520px) {
  .archive ul li {
    width: 90%;
  }
}
.archive ul li .support-detail h3 {
  color: #399d26;
  font-size: 16px;
  font-size: 1rem;
}
.archive ul li .support-detail .meister {
  font-size: 14px;
  font-size: 0.875rem;
}
.archive ul li figure {
  margin: 0;
}

.supported-companies {
  clear: both;
}
.supported-companies section h3 {
  margin: 2em 0;
}
.supported-companies section h4 {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
.supported-companies section p {
  margin: 0 0 1em;
}
@media screen and (max-width: 768px) {
  .supported-companies section p .alignright {
    display: block;
    float: none;
    width: 70%;
    margin: 2em auto;
  }
}
.supported-companies section .column-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
}
.supported-companies section .column-2 li {
  display: flex;
  flex-direction: column;
  width: 47%;
}
@media screen and (max-width: 768px) {
  .supported-companies section .column-2 li {
    width: 100%;
  }
}
.supported-companies section .corporate-info {
  clear: both;
  margin-top: auto;
}
.supported-companies section .corporate-info > li {
  position: relative;
  height: 300px;
}
.supported-companies section .corporate-info > li p {
  position: relative;
  display: grid;
  place-items: center;
  width: 6em;
  margin: 0;
  padding: 1em;
  background-color: #399d26;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  z-index: 10;
}
.supported-companies section .corporate-info > li dl {
  position: absolute;
  top: 16px;
  width: 400px;
  margin: 0;
  padding: 4em 2em 2em;
  border: 1px solid #399d26;
}
@media screen and (max-width: 768px) {
  .supported-companies section .corporate-info > li dl {
    width: 100%;
  }
}

.sub-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin: 6em auto;
}
.sub-nav li {
  border: 1px solid #399d26;
  border-radius: 6px;
  width: 31%;
}
@media screen and (max-width: 768px) {
  .sub-nav li {
    width: 45%;
  }
}
@media screen and (max-width: 520px) {
  .sub-nav li {
    width: 90%;
  }
}
.sub-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 1em;
  text-decoration: none;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .sub-nav li a {
    padding: 0 0.5em;
    height: 80px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sub-nav li a span {
  display: block;
  width: 70px;
  height: 1px;
  background-color: #399d26;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .sub-nav li a span {
    width: 35px;
  }
}
.sub-nav li a:hover {
  background-color: #399d26;
  color: #fff;
}
.sub-nav li a:hover span {
  background-color: #fff;
}
.sub-nav li a svg {
  width: 20px;
}

.special-dialogue {
  max-width: 80%;
  margin-inline: auto;
  font-size: 22px;
  font-size: 1.375rem;
}

.chapter-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto 0;
  padding: 0 0 1em;
  background: url(../images/arrow01.png) no-repeat right bottom;
  background-size: contain;
  color: #399d26;
  font-size: 26px;
  font-size: 1.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .chapter-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 520px) {
  .chapter-title {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: left;
  }
  .chapter-title img {
    display: block;
    margin: 0 0 0.5em;
  }
}

.chapter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2em auto 4em;
}
.chapter .member {
  width: 23%;
}
@media screen and (max-width: 520px) {
  .chapter .member {
    width: 100%;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #399d26;
  }
}
.chapter .member .profile {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  border: 1px solid #399d26;
  border-radius: 6px;
  color: #399d26;
  font-size: 14px;
  font-size: 0.875rem;
}
.chapter dl {
  display: flex;
  flex-wrap: wrap;
  width: 72%;
}
@media screen and (max-width: 520px) {
  .chapter dl {
    width: 100%;
  }
}
.chapter dl dt {
  width: 100%;
  margin: 0 0 0.25em;
}
.chapter dl dt::before {
  display: inline-block;
  color: #399d26;
  content: "●";
}
.chapter dl dd {
  width: 100%;
  margin: 0 0 1em;
}

.tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  width: 100%;
  margin: 4em 0;
}
@media screen and (max-width: 768px) {
  .tab {
    gap: 4em;
    align-items: center;
  }
}
.tab li a {
  padding: 1em;
  border: 1px solid;
  border-radius: 6px;
}
.tab li a:hover {
  background-color: #399d26;
  color: #fff;
}
.tab li a:hover span {
  background-color: #fff;
}

.area {
  display: none;
  opacity: 0;
  padding: 30px 0;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.meister-message {
  max-width: 76%;
  margin-inline: auto;
  font-size: 22px;
  font-size: 1.375rem;
}
.meister-message p:last-child {
  font-size: 16px;
  font-size: 1rem;
}

.meister-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em 1em;
  margin: 4em 0 8em;
}
@media screen and (max-width: 768px) {
  .meister-list {
    gap: 1.5em;
    width: 80%;
    margin: 2em auto 4em;
  }
}
@media screen and (max-width: 520px) {
  .meister-list {
    width: 100%;
  }
}
.meister-list li {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .meister-list li {
    width: 100%;
  }
}
.meister-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: #404040;
  font-weight: 600;
  text-decoration: none;
}
.meister-list li a:hover {
  background-color: rgba(57, 157, 38, 0.5);
  transition: var(--transition);
}
.meister-list li a figure {
  width: 117px;
  margin: 0 1em 0 0;
}
@media screen and (max-width: 768px) {
  .meister-list li a figure {
    margin: 0 0.75em 0 0;
  }
}
.meister-list li a div {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .meister-list li a div {
    width: 70%;
  }
}
.meister-list li a div .name {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}
.meister-list li a div .name span {
  margin: 0 0 0 1em;
  font-size: 16px;
  font-size: 1rem;
}
.meister-list li a div .name + p {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.meister {
  width: 88%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .meister {
    width: 100%;
  }
}
.meister .number {
  max-width: 117px;
  margin-inline: auto;
}
.meister .profile {
  display: flex;
  justify-content: center;
  gap: 2em;
  width: 90%;
  margin: 48px auto 68px;
}
@media screen and (max-width: 768px) {
  .meister .profile {
    max-width: 375px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .meister .profile div {
    width: 100%;
  }
}
.meister .profile div h2 {
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
}
.meister .profile div h2 .mr {
  margin: 0 0 0 1em;
  font-size: 16px;
  font-size: 1rem;
}
.meister .profile div h2 .en {
  color: #399d26;
  font-size: 18px;
  font-size: 1.125rem;
}
.meister .profile div .post {
  margin: 24px 0 48px;
  font-size: 20px;
  font-size: 1.25rem;
}
.meister .profile div .field dt {
  color: #399d26;
  font-weight: 700;
  background: url(../images/arrow01.png) no-repeat top right;
}
.meister .profile div .field dt span {
  display: inline-block;
  padding: 0 0.5em 0 0;
  background-color: #fff;
}
.meister .profile .meister-photo {
  max-width: 300px;
  margin: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .meister .profile .meister-photo {
    margin: 0 auto;
  }
}
.meister .profile .meister-photo figure {
  margin: 0 0 1.5em;
}
.meister .profile .meister-photo .qr {
  width: 100px;
}
.meister section p {
  margin-bottom: 1em;
}
.meister section .brief-personal-record {
  display: table;
  margin: 48px 0 178px;
  border: 1px solid;
}
.meister section .brief-personal-record dt,
.meister section .brief-personal-record dd {
  padding: 1em;
}
.meister section .brief-personal-record dt {
  border-bottom: 1px solid;
}

.section-title {
  margin: 60px 0;
  color: #399d26;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.057rem + 1.59vw, 2.25rem);
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .section-title {
    word-break: normal;
  }
}

.terakoya-sendai {
  padding: 0 0 8em;
}
.terakoya-sendai > figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto;
}
@media screen and (max-width: 768px) {
  .terakoya-sendai > figure {
    width: 80%;
  }
}
.terakoya-sendai > p {
  margin: 2em 0;
  font-size: 18px;
  font-size: 1.125rem;
}
.terakoya-sendai .fiscal-year > li {
  margin: 0 0 48px;
}
.terakoya-sendai .fiscal-year > li .year {
  margin: 0 0 24px;
  border-bottom: 1px solid #399d26;
  color: #399d26;
  font-size: clamp(1.375rem, 1.284rem + 0.45vw, 1.625rem);
}
.terakoya-sendai .fiscal-year > li .year span {
  font-size: 16px;
  font-size: 1rem;
}
.terakoya-sendai .fiscal-year > li .year2020 {
  color: #399d26;
  font-size: clamp(1.375rem, 1.284rem + 0.45vw, 1.625rem);
}
.terakoya-sendai .fiscal-year > li ul li {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #399d26;
}
.terakoya-sendai .fiscal-year > li ul li h3 {
  margin: 0;
  color: #399d26;
}
.terakoya-sendai .terakoya-archive {
  width: 50%;
  margin: 2em auto;
  color: #399d26;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .terakoya-sendai .terakoya-archive {
    width: 70%;
  }
}
@media screen and (max-width: 520px) {
  .terakoya-sendai .terakoya-archive {
    width: 100%;
  }
}
.terakoya-sendai .terakoya-archive dt {
  font-weight: 700;
  background: url(../images/arrow01.png) no-repeat bottom right;
}
.terakoya-sendai .terakoya-archive dd {
  padding: 1em 0 2em;
}
.terakoya-sendai .terakoya-archive dd img {
  width: 120px;
}

.hrd {
  padding: 0 0 8em;
}
.hrd + p {
  margin: 2em 0;
  font-size: 18px;
  font-size: 1.125rem;
}
.hrd .lecturer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin: 2em 0 0;
}
@media screen and (max-width: 768px) {
  .hrd .lecturer {
    gap: 1em;
  }
}
.hrd .lecturer dl {
  display: flex;
  align-items: center;
  margin: 0;
}
.hrd .lecturer dl dt {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 120px;
  height: 120px;
  margin: 0 1em 0 0;
  background-color: #399d26;
  color: #fff;
  border-radius: 100%;
  font-size: 24px;
  font-size: 1.5rem;
}
.hrd .lecturer dl dd span {
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .hrd .lecturer dl dd span span {
    display: inline-block;
  }
}
.hrd .lecturer figure {
  margin: 0;
}
.hrd .hrd-achievements {
  margin: 4em 0 1em;
  border: 1px solid #399d26;
  border-radius: 8px;
}
.hrd .hrd-achievements h3 {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0.5em;
  border-radius: 6px;
  background-color: #399d26;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
}
.hrd .hrd-achievements div {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 32px;
       column-gap: 32px;
  padding: 2em;
}
@media screen and (max-width: 768px) {
  .hrd .hrd-achievements div {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.hrd .hrd-achievements div dl {
  margin: 0;
}
.hrd .hrd-achievements div dl dt {
  color: #399d26;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
.hrd .hrd-achievements div dl dt span {
  font-size: 16px;
  font-size: 1rem;
}
.hrd .hrd-achievements div dl dd:not(:last-child) {
  margin: 0 0 1em;
  padding: 0 0 1em;
  border-bottom: 1px solid #399d26;
}
.hrd .hrd-achievements div dl dd ul li .count {
  font-size: 14px;
  font-size: 0.875rem;
}
.hrd .hrd-achievements div dl dd ul li .count::before {
  display: inline-block;
  content: "[";
}
.hrd .hrd-achievements div dl dd ul li .count::after {
  display: inline-block;
  content: "]";
}
.hrd .qr {
  margin: 2em 0 0 0;
  text-align: center;
}
.hrd .qr img {
  width: 120px;
  margin: 0 1em 0 0;
}

.contact {
  padding: 0 0 6em;
}
.contact p,
.contact ul {
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  text-align: center;
}
.contact ul li {
  margin: 0.5em 0;
}
.contact ul li .qr {
  width: 120px;
  margin: 1em 0;
}
.contact .faq {
  margin: 4em 0;
}
.contact .faq h3 {
  margin: 0;
  padding: 0;
  color: #399d26;
  font-size: 32px;
  font-size: 2rem;
  text-align: center;
}
.contact .faq h3 img {
  width: 100px;
  margin: 0 0.5em 0 0;
}
.contact .faq h4 {
  margin: 2em 0 1em;
  padding: 0.5em;
  border-radius: 6px;
  background-color: #399d26;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
}
.contact .faq dl dt {
  font-weight: 700;
}
.contact .faq dl dt::before {
  display: inline-block;
  margin: 0 0.25em 0 0;
  color: #399d26;
  content: "Q";
}
.contact .faq dl dd {
  padding: 0 1em;
}
.contact .faq dl dd:not(:last-child) {
  margin: 0 0 1.5em;
}

.site-footer {
  padding: 80px 0 36px;
  background-color: #399d26;
  color: #fff;
}
@media screen and (max-width: 520px) {
  .site-footer {
    padding: 40px 0;
  }
}
.site-footer .nav-footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .site-footer .nav-footer {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    width: 220px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .nav-footer ul {
    max-width: 220px;
    padding: 0;
  }
}
.site-footer .nav-footer ul.child {
  margin: 0.5em 0 0 1em;
}
@media screen and (max-width: 768px) {
  .site-footer .nav-footer ul.child {
    width: 100%;
    margin: 0.5em 0 0 0.5em;
    padding: 0;
  }
}
.site-footer .nav-footer ul li {
  margin: 0 0 0.5em;
}
@media screen and (max-width: 520px) {
  .site-footer .nav-footer ul li {
    padding: 0.25em 0;
  }
}
.site-footer .nav-footer a {
  color: #fff;
}
.site-footer .nav-footer a:hover {
  text-decoration: underline;
}
.site-footer .copyright {
  margin: 4em 0 0;
  text-align: center;
}
.site-footer .copyright p {
  margin: 1em 0;
}

#btn-pagetop {
  position: fixed;
  right: 15px;
  bottom: 48px;
  z-index: 100;
  height: 0;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}
#btn-pagetop.fixed {
  height: auto;
  opacity: 0.75;
  visibility: visible;
}
#btn-pagetop a {
  display: flex;
  border-radius: 70px;
  color: #404040;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  transition: all 0.4s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: none;
}
#btn-pagetop a:hover {
  opacity: 0.7;
  will-change: transform;
  transform: perspective(0);
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tbc {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}

.mb1em {
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */

/* Do not show the outline on the skip link target. */

/* Alignments
--------------------------------------------- */

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
