.form-field {
  border-top: solid 1px #cccccc;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #cccccc;
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.5rem;
}

.form-required {
  background: #b01616;
}

.form-optional {
  background: #226bbd;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #f9f9f9;
  font-size: 1.7rem;
  font-family: YakuHanJP, "Shippori Mincho", sans-serif;
  line-height: 56px;
  color: #222222;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #222222;
}

select {
  background: url("/congress/2026_tokyo/wp-content/themes/itreat_base/dist/img/common/select.svg") center right 16px/14px 14px no-repeat #f9f9f9;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f9f9f9;
  border: solid 2px #f9f9f9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #222222;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:focus) {
  outline: solid 2px #ffa500;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f9f9f9;
  border: solid 2px #f9f9f9;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #999999;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #999999;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .form-send {
    height: 72px;
  }
}

@media screen and (max-width: 959px) {
  .form-send {
    height: 64px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
}

.form-send:has(input[type="submit"]:focus) {
  outline: solid 2px #ffa500;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #008000;
  color: #008000;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(176, 22, 22, 0.08);
  color: #b01616;
  border: solid 1px #b01616;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 165, 0, 0.08);
  color: #b01616;
  border: solid 1px #ffa500;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #b01616;
  font-size: 1.5rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #b01616;
  font-size: 1.5rem;
  background-color: rgba(176, 22, 22, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

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

.recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.front-page {
  padding-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .front-page {
    padding-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-page {
    padding-bottom: calc((8px * 13) * 0.5);
  }
}

.front-page .headline {
  margin-bottom: 24px;
}

.front-page .headline__main {
  margin-bottom: 4px;
  font-size: 5.0rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media screen and (max-width: 1023px) {
  .front-page .headline__main {
    font-size: 4.0rem;
  }
}

@media screen and (max-width: 959px) {
  .front-page .headline__main {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .front-page .headline__main {
    font-size: 2.5rem;
  }
}

.front-page .headline__sub {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 959px) {
  .front-page .headline__sub {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .front-page .headline__sub {
    font-size: 1.1rem;
  }
}

.front-page .headline.--center {
  position: relative;
  padding-bottom: 24px;
  text-align: center;
}

.front-page .headline.--center::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 16px;
  margin: 0 auto;
  background: #222222;
}

.front-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .front-nav {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-nav {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .front-nav {
    display: none;
  }
}

.front-nav .front-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.front-nav .front-nav-list__item {
  position: relative;
}

.front-nav .front-nav-list__item a {
  display: block;
  padding: 0 20px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1279px) {
  .front-nav .front-nav-list__item a {
    padding: 0 12px;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1023px) {
  .front-nav .front-nav-list__item a {
    font-size: 1.2rem;
  }
}

.front-nav .front-nav-list__item:not(:nth-last-of-type(1))::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  background: #222222;
  translate: 0 -50%;
}

.front-nav .front-nav-language {
  position: relative;
}

.front-nav .front-nav-language .lang-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 32px;
  border: solid 1px #907e6c;
  padding: 0 16px;
  color: #907e6c;
  font-size: 1.3rem;
  font-family: "EB Garamond", sans-serif;
  line-height: 1;
  cursor: pointer;
}

@media screen and (max-width: 1279px) {
  .front-nav .front-nav-language .lang-switch {
    padding: 0 12px;
  }
}

@media screen and (max-width: 1023px) {
  .front-nav .front-nav-language .lang-switch {
    padding: 0 8px;
  }
}

.front-nav .front-nav-language .lang-switch::after {
  content: '';
  width: 6px;
  height: 11px;
  background: #907e6c;
  -webkit-mask-image: url("/congress/2026_tokyo/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/congress/2026_tokyo/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.front-nav .front-nav-language .lang-list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
  padding: 0 8px;
  background: #ffffff;
  border: solid 1px #907e6c;
  border-top: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.front-nav .front-nav-language .lang-list .lang-item:not(:nth-last-of-type(1)) {
  border-bottom: dashed 1px #907e6c;
}

.front-nav .front-nav-language .lang-list .lang-item a {
  display: block;
  padding: 8px 4px;
  color: #907e6c;
  font-size: 1.3rem;
}

@media screen and (max-width: 1023px) {
  .front-nav .front-nav-language .lang-list .lang-item a {
    font-size: 1.2rem;
  }
}

.front-nav .front-nav-language:hover .lang-list {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  margin-bottom: calc(8px * 10);
  width: 100%;
  height: 56vw;
  max-height: 1000px;
  background: url("/congress/2026_tokyo/wp-content/themes/itreat_base/dist/img/top/hero-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 959px) {
  .hero {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .hero {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .hero {
    aspect-ratio: 144 / 80;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    aspect-ratio: 144 / 84;
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 144 / 10;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, transparent), color-stop(50%, #ffffff));
  background: linear-gradient(to bottom right, transparent 50%, #ffffff 50%);
}

.hero .hero-catch {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 38vw;
  max-width: 540px;
}

@media screen and (max-width: 1279px) {
  .hero .hero-catch {
    top: 56px;
    left: 56px;
  }
}

@media screen and (max-width: 1023px) {
  .hero .hero-catch {
    top: 48px;
    left: 48px;
  }
}

@media screen and (max-width: 959px) {
  .hero .hero-catch {
    top: 40px;
    left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-catch {
    top: 32px;
    left: 32px;
    width: 48vw;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-catch {
    top: 20px;
    left: 20px;
    width: 52vw;
  }
}

.greeting-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 64px;
}

@media screen and (max-width: 1023px) {
  .greeting-unit {
    gap: 48px;
  }
}

@media screen and (max-width: 959px) {
  .greeting-unit {
    gap: 32px;
  }
}

.greeting-unit__dtl {
  width: calc(100% - 364px);
}

@media screen and (max-width: 1023px) {
  .greeting-unit__dtl {
    width: calc(100% - 328px);
  }
}

@media screen and (max-width: 959px) {
  .greeting-unit__dtl {
    width: calc(100% - 272px);
  }
}

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

.greeting-unit__dtl .greeting-txt {
  font-size: 1.7rem;
  line-height: 2.0;
}

@media screen and (max-width: 959px) {
  .greeting-unit__dtl .greeting-txt {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.greeting-unit__dtl .greeting-catch {
  font-size: 2.3rem;
  font-weight: 600;
}

@media screen and (max-width: 1023px) {
  .greeting-unit__dtl .greeting-catch {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 959px) {
  .greeting-unit__dtl .greeting-catch {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 767px) {
  .greeting-unit__dtl .greeting-catch {
    font-size: 1.7rem;
  }
}

.greeting-unit__dtl .greeting-catch em {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4px 0;
  padding: 8px 16px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #907e6c), color-stop(50%, #807162));
  background: linear-gradient(to bottom right, #907e6c 50%, #807162 50%);
  border-radius: 3px;
  color: #ffffff;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .greeting-unit__dtl .greeting-catch em {
    padding: 8px 12px;
  }
}

@media screen and (max-width: 767px) {
  .greeting-unit__dtl .greeting-catch em {
    padding: 8px;
  }
}

.greeting-unit__vsl {
  width: 300px;
}

@media screen and (max-width: 1023px) {
  .greeting-unit__vsl {
    width: 280px;
  }
}

@media screen and (max-width: 959px) {
  .greeting-unit__vsl {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.greeting-unit__vsl .greeting-img {
  overflow: clip;
  margin-bottom: 16px;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .greeting-img {
    width: 120px;
    margin-bottom: 0;
  }
}

.greeting-unit__vsl .chairman-profile {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .chairman-profile {
    width: calc(100% - 136px);
    text-align: left;
  }
}

.greeting-unit__vsl .chairman-profile__post {
  display: none;
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .chairman-profile__post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 12px;
  }
}

.greeting-unit__vsl .chairman-profile__post::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #222222;
}

.greeting-unit__vsl .chairman-profile__name {
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .chairman-profile__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
  }
}

.greeting-unit__vsl .chairman-profile__name em {
  display: block;
  position: relative;
  padding: 0 20px;
  font-size: 2.7rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .chairman-profile__name em {
    padding: 0;
    font-size: 1.9rem;
  }
}

.greeting-unit__vsl .chairman-profile__name span {
  color: #a2998f;
  font-size: 1.5rem;
  font-family: "EB Garamond", sans-serif;
}

@media screen and (max-width: 959px) {
  .greeting-unit__vsl .chairman-profile__name span {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .chairman-profile__name span {
    font-size: 1.1rem;
  }
}

.greeting-unit__vsl .chairman-profile__affiliation {
  font-size: 1.5rem;
}

@media screen and (max-width: 959px) {
  .greeting-unit__vsl .chairman-profile__affiliation {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .greeting-unit__vsl .chairman-profile__affiliation {
    font-size: 1.1rem;
  }
}

.officers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 959px) {
  .officers-list {
    gap: 32px;
  }
}

.officers-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  width: calc((100% / 2) - (40px * 1 / 2));
}

@media screen and (max-width: 959px) {
  .officers-list__item {
    width: calc((100% / 2) - (32px * 1 / 2));
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .officers-list__item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.officers-list__item .officers-vsl {
  overflow: clip;
  width: 120px;
  border-radius: 3px;
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-vsl {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .officers-list__item .officers-vsl {
    width: 120px;
  }
}

.officers-list__item .officers-profile {
  position: relative;
  width: calc(100% - 144px);
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-profile {
    width: calc(100% - 116px);
  }
}

@media screen and (max-width: 767px) {
  .officers-list__item .officers-profile {
    width: calc(100% - 136px);
  }
}

.officers-list__item .officers-profile::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -24px;
  width: 100%;
  height: 1px;
  background: #222222;
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-profile::after {
    left: -16px;
  }
}

@media screen and (max-width: 767px) {
  .officers-list__item .officers-profile::after {
    display: none;
  }
}

.officers-list__item .officers-profile__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 1.9rem;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-profile__post {
    font-size: 1.7rem;
  }
}

.officers-list__item .officers-profile__post::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #222222;
}

.officers-list__item .officers-profile__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.officers-list__item .officers-profile__name em {
  font-size: 2.3rem;
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-profile__name em {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .officers-list__item .officers-profile__name em {
    font-size: 1.9rem;
  }
}

.officers-list__item .officers-profile__name span {
  color: #a2998f;
  font-size: 1.3rem;
  font-family: "EB Garamond", sans-serif;
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-profile__name span {
    font-size: 1.1rem;
  }
}

.officers-list__item .officers-profile__affiliation {
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (max-width: 959px) {
  .officers-list__item .officers-profile__affiliation {
    font-size: 1.1rem;
  }
}

.news {
  position: relative;
  padding-top: 120px;
}

.news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 320px;
  background: #f9f9f9;
  -webkit-transform: skewY(-5deg);
  transform: skewY(-5deg);
}

.news .news-frame {
  padding: calc(8px * 6);
  background: #ffffff;
  border-radius: 3px;
}

@media screen and (max-width: 959px) {
  .news .news-frame {
    padding: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news .news-frame {
    padding: calc((8px * 6) * 0.5);
  }
}

.news .news-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .news .news-unit {
    gap: 48px;
  }
}

@media screen and (max-width: 959px) {
  .news .news-unit {
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .news .news-unit {
    gap: 0;
  }
}

.news .news-unit__head {
  width: 300px;
}

@media screen and (max-width: 1023px) {
  .news .news-unit__head {
    width: 240px;
  }
}

@media screen and (max-width: 959px) {
  .news .news-unit__head {
    width: 200px;
  }
}

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

.news .news-unit__list {
  width: calc(100% - 356px);
}

@media screen and (max-width: 1023px) {
  .news .news-unit__list {
    width: calc(100% - 288px);
  }
}

@media screen and (max-width: 959px) {
  .news .news-unit__list {
    width: calc(100% - 240px);
  }
}

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

@media screen and (max-width: 767px) {
  .news .news-list {
    margin-bottom: 32px;
  }
}

.news .news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2px 24px;
  padding: 0 8px;
}

.news .news-list__item:not(:nth-last-of-type(1)) {
  border-bottom: dashed 1px #cccccc;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.news .news-list__item .news-date {
  width: 88px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 959px) {
  .news .news-list__item .news-date {
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 519px) {
  .news .news-list__item .news-date {
    width: 100%;
    color: #999999;
    font-size: 1.3rem;
  }
}

.news .news-list__item .news-ttl {
  width: calc(100% - 112px);
}

@media screen and (max-width: 519px) {
  .news .news-list__item .news-ttl {
    width: 100%;
  }
}

.news .news-list__item .news-ttl a {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 959px) {
  .news .news-list__item .news-ttl a {
    letter-spacing: 0.05em;
  }
}

.news .news-list__item .news-ttl a:hover {
  opacity: 0.6;
  translate: 6px 0;
}

.access .access-add {
  margin-bottom: 32px;
  font-size: 1.9rem;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .access .access-add {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .access .access-add {
    font-size: 1.5rem;
  }
}

.access .access-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .access .access-unit {
    gap: 40px;
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit {
    gap: 40px;
  }
}

.access .access-unit::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: -1;
  width: 240px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #f9f9f9 50%, transparent 50%);
}

@media screen and (max-width: 767px) {
  .access .access-unit::before {
    width: 200px;
  }
}

.access .access-unit__dtl {
  width: 480px;
}

@media screen and (max-width: 1023px) {
  .access .access-unit__dtl {
    width: 440px;
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl {
    width: 380px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

.access .access-unit__dtl .access-route__item:not(:nth-last-of-type(1)) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: dashed 1px #cccccc;
}

.access .access-unit__dtl .access-route__item dt {
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .access-route__item dt {
    font-size: 1.5rem;
  }
}

.access .access-unit__dtl .access-route__item dd .access-route-vsl {
  margin-bottom: 8px;
}

.access .access-unit__dtl .access-route__item dd .access-route-txt {
  font-size: 1.3rem;
}

.access .access-unit__dtl .access-route__item dd .access-route-txt:not(:nth-last-of-type(1)) {
  margin-bottom: 16px;
}

.access .access-unit__map {
  width: calc(100% - 528px);
}

@media screen and (max-width: 1023px) {
  .access .access-unit__map {
    width: calc(100% - 480px);
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit__map {
    width: calc(100% - 412px);
  }
}

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

.access .access-unit__map iframe {
  width: 100%;
  height: 560px;
  margin-bottom: 32px;
  border-radius: 3px;
  vertical-align: bottom;
}

@media screen and (max-width: 959px) {
  .access .access-unit__map iframe {
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__map iframe {
    height: 320px;
  }
}

@media screen and (max-width: 519px) {
  .access .access-unit__map iframe {
    height: 240px;
  }
}

/*# sourceMappingURL=../../maps/pages/top.css.map */
