/* ======================================
 Foundation
====================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
  word-break: break-all;
}

body {
  height: 100%;
  font-family: var(--font-family_primary);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-font_text);
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: var(--font-weight_bold);
  text-box: trim-both text;
}

p {
  text-align: justify;
  text-box: trim-both text;
}

a {
  color: inherit;
  transition: opacity 0.3s ease-in-out;
  /*
  	&:hover {
  		opacity: 0.6;
  	}*/
}

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

blockquote,
q {
  quotes: none;
}

figure {
  margin: 0;
}

figcaption {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-weight_bold);
  line-height: 1.4;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

:root {
  --content-width: 1440px;
  --inner-width: 1280px;
  --font-family_primary: "LINE Seed JP", sans-serif;
  --font-family_alex:"Alex Brush", cursive;
  --font-weight_thin: 100;
  --font-weight_regular: 400;
  --font-weight_bold: 700;
  --font-weight_extrabold: 800;
  --color-main: #104469;
  --color-accent_blue: #4f9ec9;
  --color-accent_green: #a4c94f;
  --color-concept: #c39e59;
  --color-white: #ffffff;
  --color-black: #222222;
  --color-border: #d5d5d5;
  --color-grad:linear-gradient(to bottom right, #a4c94f, #4f9ec9);
  --color-bg_beige: #fbf9f5;
  --color-bg_gray: #f7f7f7;
  --color-bg_blue: rgba(79, 158, 201, 0.16);
  --color-bg_green: rgba(164, 201, 79, 0.16);
  --color-bg_grad: linear-gradient(to bottom right, #f0f6e3, #e3f0f6);
  --color-font_text: #222222;
  --color-font_link: #007a88;
  --shadow_low: 0px 2px 6px rgba(0, 0, 0, 0.08);
  --shadow_middle: 0px 6px 15px rgba(0, 0, 0, 0.15);
  --space_24: clamp(16px, 1.875vw, 24px);
  --space_32: clamp(16px, 2.5vw, 32px);
  --space_40: clamp(24px, 3.125vw, 40px);
  --space_56: clamp(28px, 4.375vw, 56px);
}

/* ======================================
 Layout
====================================== */
.l-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 3%;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 160px;
  }
}

.l-hero {
  position: relative;
  width: 100%;
  height: clamp(360px, 60.9vw, 780px);
  padding: 0 3%;
}
.l-hero__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  background-image: url("../img/mv.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .l-hero__inner {
    align-items: center;
  }
}

.l-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px var(--space_32);
  border-radius: 12px;
  background: var(--color-white);
  transition: all 0.25s ease;
  text-decoration: none;
}
.l-btn:hover, .l-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow_low);
}
.l-btn:hover .c-linkBox__btn, .l-btn:focus-visible .c-linkBox__btn {
  right: 12px;
  bottom: 20px;
  background-color: var(--color-main);
}
.l-btn:hover .c-linkBox__icon, .l-btn:focus-visible .c-linkBox__icon {
  color: var(--color-white);
}
.l-btn__appli {
  padding-right: 60px;
  box-shadow: var(--shadow_low);
}
.l-btn__appli__event, .l-btn__appli__report {
  background-color: var(--color-main);
}
.l-btn__appli__entry {
  background-color: var(--color-concept);
}
.l-btn__mail {
  height: clamp(120px, 11.25vw, 144px);
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-main);
  transition: all 0.3s ease-in-out;
}
.l-btn__mail span {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.l-footer {
  position: relative;
  padding: 0 5% 12px;
  background-color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 0 3% 24px;
  }
}
.l-footer__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  gap: 16px;
  border-top: solid 1px var(--color-white);
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    flex-direction: row;
    padding-top: 24px;
  }
}

.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.l-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 64px 5%;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 160px 3%;
  }
}
.l-section__bg__beige {
  background: var(--color-bg_beige);
}
.l-section__bg__gray {
  background: var(--color-bg_gray);
}
.l-section__bg__blue {
  background: var(--color-bg_blue);
}
.l-section__bg__green {
  background: var(--color-bg_green);
}
.l-section__bg__main {
  background: var(--color-main);
}
.l-section__bg__grad {
  background: var(--color-bg_grad);
}
.l-section__banner {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .l-section__banner {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.l-section__sns {
  position: relative;
  padding-top: 40x;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-section__sns {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.l-section__contact {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-section__contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.l-content {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-content {
    max-width: var(--content-width);
  }
}

.l-boxCol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space_32);
  margin-top: clamp(28px, 4.375vw, 56px);
}
@media screen and (min-width: 768px) {
  .l-boxCol__col2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l-boxCol__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l-boxCol__col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l-boxCol__col4 .linkBox {
    padding: 16px 16px 48px 16px;
  }
}
.l-boxCol__program {
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .l-boxCol__program {
    margin-bottom: 128px;
  }
}
.l-boxCol__initiative {
  margin: 80px 0 60px;
  gap: var(--space_40);
}
@media screen and (min-width: 768px) {
  .l-boxCol__initiative {
    margin: 80px 0 120px;
  }
}

.colSpan1 {
  grid-column: 1/-1;
}

.l-linkBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 40px 24px;
  border-radius: 12px;
  border: 3px solid var(--color-white);
  background: var(--color-white);
  transition: all 0.25s ease;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-linkBox {
    padding: var(--space_40);
  }
}
.l-linkBox:hover, .l-linkBox:focus-visible {
  outline: none;
  border: 3px solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(135deg, #a4c94f 0%, #4f9ec9 100%) border-box;
  box-shadow: var(--shadow_low);
}
.l-linkBox:hover .c-linkBox__btn, .l-linkBox:focus-visible .c-linkBox__btn {
  right: 12px;
  bottom: 20px;
  background-color: var(--color-main);
}
.l-linkBox:hover .c-linkBox__icon, .l-linkBox:focus-visible .c-linkBox__icon {
  color: var(--color-white);
}
.l-linkBox__cooperate {
  padding: 16px 16px 48px 16px;
}

.l-symposium {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space_56) var(--space_40);
  border-radius: 12px;
  background: var(--color-bg_blue);
}
.l-symposium__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--space_40);
  gap: var(--space_40);
}
@media screen and (min-width: 768px) {
  .l-symposium__info {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .l-symposium__info__content {
    flex: 1;
  }
}
.l-symposium__info__outline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-symposium__info__outline {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-symposium__info__thumb {
    width: 25%;
    min-width: 240px;
  }
}
.l-symposium__archive {
  width: 100%;
  padding-top: var(--space_40);
  border-top: solid 1px var(--color-border);
}
.l-symposium__box {
  position: absolute;
  right: 0;
  bottom: 8px;
  padding: 24px 16px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 24px rgba(16, 68, 205, 0.2);
}
@media screen and (min-width: 768px) {
  .l-symposium__box {
    bottom: 40px;
  }
}

/* ======================================
 Object
====================================== */
/**
 Component
----------------------------------- */
.c-heading {
  position: relative;
}
.c-heading__lv2 {
  margin-bottom: clamp(32px, 5vw, 64px);
  font-size: clamp(2rem, 4.375vw, 3.5rem);
  color: var(--color-main);
  line-height: 1.4;
}
.c-heading__lv2 span {
  position: absolute;
  display: inline-block;
  padding-left: 44px;
  left: -40px;
  top: -36px;
  font-family: var(--font-family_alex);
  font-size: clamp(4rem, 5.625vw, 6rem);
  font-weight: 400;
  transform: rotate(-4deg);
  background: linear-gradient(to bottom right, rgba(164, 201, 79, 0.2) 0%, rgba(79, 158, 201, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-heading__lv2 span {
    padding-left: 44px;
    left: -80px;
    top: -96px;
    font-size: clamp(10rem, 14.0625vw, 11.25rem);
  }
}
.c-heading__lv3 {
  margin: clamp(48px, 7.5vw, 96px) 0 clamp(28px, 4.375vw, 56px);
  padding: 4px 0 4px clamp(10px, 1.25vw, 16px);
  font-size: clamp(1.5rem, 2.8125vw, 2.25rem);
  border-left: solid 6px var(--color-accent_green);
}

.c-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.c-linkBox__title {
  width: 100%;
  margin-bottom: clamp(16px, 1.5625vw, 20px);
  padding-bottom: clamp(16px, 1.5625vw, 20px);
  font-size: 1.125rem;
  color: var(--color-main);
  border-bottom: solid 1px var(--color-border);
}
.c-linkBox__wrap {
  display: flex;
}
.c-linkBox__thumb img {
  border-radius: 4px;
}
.c-linkBox__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-linkBox__degreeList {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.c-linkBox__degreeList__item {
  display: flex;
  align-items: center;
  padding: 0px clamp(8px, 0.9375vw, 12px);
  font-size: 0.75rem;
  border: solid 1px var(--color-border);
  border-radius: 50px;
  text-box: trim-both text;
}
.c-linkBox__degreeList__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50px;
}
.c-linkBox__degreeList__item__undergraduate::before {
  background-color: var(--color-accent_green);
}
.c-linkBox__degreeList__item__master::before {
  background-color: var(--color-accent_blue);
}
.c-linkBox__degreeList__item__doctor::before {
  background-color: var(--color-main);
}
.c-linkBox__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 28px;
  right: 16px;
  bottom: 16px;
  border: solid 1px var(--color-main);
  border-radius: 50px;
  background-color: var(--color-white);
  box-shadow: var(--shadow_low);
  transition: all 0.3s ease;
}
.c-linkBox__icon {
  display: inline-flex;
  width: 10px;
  height: 10px;
  color: var(--color-main);
}
.c-linkBox__icon svg {
  width: 100%;
  height: 100%;
}
.c-linkBox__icon path {
  transition: stroke 0.25s ease;
}

.p-btn {
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  font-weight: var(--font-weight_bold);
  line-height: 1.4;
  text-box: trim-both text;
}
.p-btn__appli {
  color: var(--color-white);
}
.p-btn__appli::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 24px;
  top: calc(50% - 12px);
  right: 16px;
  background-color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.p-btn__appli:hover::after {
  right: 8px;
}
.p-btn__appli__link::after {
  background-image: url(../img/icon-link.svg);
  background-size: 15px;
}
.p-btn__appli__exlink::after {
  background-image: url(../img/icon-exlink.svg);
  background-size: 12px;
}
.p-btn__sns {
  color: var(--color-main);
}
.p-btn__sns span {
  display: flex;
  align-items: center;
}
.p-btn__sns span::before {
  content: "";
  position: relative;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.p-btn__sns__x span::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-sns_x.png);
}
.p-btn__sns::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  top: calc(50% - 6px);
  right: 16px;
  background-image: url(../img/icon-exlink.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.3s ease-in-out;
}
.p-btn__sns:hover::after {
  right: 8px;
}
.p-btn__mail {
  height: clamp(120px, 11.25vw, 144px);
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-main);
  transition: all 0.3s ease-in-out;
}
.p-btn__mail span {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.p-btn__mail span::before {
  content: "";
  position: relative;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  background-image: url(../img/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.p-btn__mail span:hover, .p-btn__mail span:focus-visible {
  opacity: 0.5;
  outline: none;
}

/**
 Project
----------------------------------- */
.logo__img {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .logo__img {
    width: 100%;
  }
}

.p-hamburger {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 4px;
  background-color: var(--color-white);
  box-shadow: 0 2px 24px rgba(16, 68, 205, 0.2);
  outline: none;
  transition: all 0.3s ease-in-out;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}
.p-hamburger:hover, .p-hamburger:focus {
  box-shadow: var(--shadow_middle);
}
.p-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 32px;
  height: 1.5px;
  background: var(--color-main);
  transition: inherit;
}
.p-hamburger__line::before, .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-main);
  content: "";
  transition: inherit;
}
.p-hamburger__line::before {
  top: -8px;
}
.p-hamburger__line::after {
  top: 8px;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line {
  background: transparent;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  transform: rotate(45deg);
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  transform: rotate(-45deg);
}

.is-drawerActive .p-globalNav {
  right: 0;
}

.p-globalNav {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100vh;
  padding: 96px 6.4% 0;
  gap: 24px;
  top: 0;
  right: -100%;
  background: var(--color-bg_grad);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-globalNav {
    flex-direction: row;
    width: auto;
    height: auto;
    top: 48px;
    right: 3%;
    padding: 24px clamp(24px, 3.125vw, 40px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 24px rgba(16, 68, 205, 0.2);
    border-radius: 50px;
  }
}
.p-globalNav__item {
  font-size: 1rem;
  font-weight: var(--font-weight_bold);
  color: var(--color-main);
  text-box: trim-both text;
}
.p-globalNav__item a {
  text-decoration: none;
  display: inline-block;
  line-height: 2;
  transition: all 0.3s ease-in-out;
}
.p-globalNav__item a:hover, .p-globalNav__item a:focus-visible {
  opacity: 0.5;
  outline: none;
}

.p-hero__copy__sub {
  display: inline-block;
  padding: clamp(4px, 0.625vw, 8px) clamp(6px, 0.9375vw, 12px);
  font-size: 1.125rem;
  font-weight: var(--font-weight_bold);
  color: var(--color-white);
  text-box: trim-both text;
  background-color: var(--color-main);
  border-radius: 2px;
}
.p-hero__copy__sub span {
  font-size: 1rem;
  font-weight: var(--font-weight_regular);
}
@media screen and (min-width: 768px) {
  .p-hero__copy__sub {
    font-size: clamp(1.5rem, 2.8125vw, 2.25rem);
  }
  .p-hero__copy__sub span {
    font-size: clamp(1.3125rem, 2.5vw, 2rem);
  }
}
.p-hero__copy__main {
  margin: 12px 0 16px;
  font-size: 2rem;
  font-weight: var(--font-weight_bold);
  line-height: 1.4;
  color: var(--color-main);
  text-box: trim-both text;
}
@media screen and (min-width: 768px) {
  .p-hero__copy__main {
    margin: clamp(24px, 2.5vw, 40px) 0 clamp(16px, 2.5vw, 32px);
    font-size: clamp(3rem, 5vw, 4rem);
  }
}
.p-hero__copy__body {
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-hero__copy__body {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.p-initiative {
  position: relative;
  padding: 56px 40px 48px 40px;
  background-color: var(--color-bg_green);
  border-radius: 12px;
}
.p-initiative__title {
  width: 100%;
  margin-bottom: clamp(24px, 2.5vw, 32px);
  padding-bottom: clamp(24px, 2.5vw, 32px);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.6;
  border-bottom: solid 1px var(--color-border);
}
.p-initiative__title span {
  position: absolute;
  left: -16px;
  top: -64px;
  display: inline-block;
  font-family: var(--font-family_alex);
  font-size: 5rem;
  font-weight: 400;
  line-height: 2;
  color: var(--color-accent_blue);
}
@media screen and (min-width: 768px) {
  .p-initiative__title span {
    left: -24px;
    font-size: 6rem;
  }
}

.p-symposium {
  position: relative;
}
.p-symposium__info__status {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: -8px;
  font-size: 1.25rem;
  font-weight: var(--font-weight_bold);
}
.p-symposium__info__status__accept {
  color: var(--color-concept);
}
.p-symposium__info__title {
  margin-bottom: 32px;
  font-size: clamp(2rem, 3.125vw, 3rem);
  color: var(--color-main);
  line-height: 1.4;
}
.p-symposium__info__days {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-symposium__info__Mmdd {
  font-size: 3rem;
  font-weight: var(--font-weight_bold);
}
.p-symposium__info__YearWeek {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.p-symposium__info__Year {
  font-size: 1.125rem;
  font-weight: var(--font-weight_bold);
}
.p-symposium__info__Week {
  font-size: 1.125rem;
  font-weight: var(--font-weight_bold);
}
.p-symposium__info__venue {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-symposium__info__fee {
  width: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  font-weight: var(--font-weight_bold);
  color: var(--color-white);
  background-color: var(--color-accent_blue);
  border-radius: 4px;
}
.p-symposium__info__thumb img {
  border-radius: 4px;
}
.p-symposium__archive__title {
  margin-bottom: clamp(16px, 2.5vw, 32px);
  font-size: 2rem;
}
.p-symposium__archive__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.p-symposium__archive__list__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-white);
  transition: all 0.25s ease;
}
.p-symposium__archive__list__item:hover, .p-symposium__archive__list__item:focus-visible {
  box-shadow: var(--shadow_low);
  outline: none;
}
.p-symposium__archive__list__item a {
  padding: 16px;
  font-weight: var(--font-weight_bold);
  color: var(--color-main);
  line-height: 1;
  text-box: trim-both text;
  text-decoration: none;
}
.p-symposium__archive__list__item a:hover {
  opacity: 0.5;
}

.l-symposium__box .l-symposium__info__outline {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.l-symposium__box .l-symposium__info__application {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 8px;
}
.l-symposium__box .p-symposium__info__status {
  top: 2px;
  font-size: 0.75rem;
}
.l-symposium__box .p-symposium__info__title {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.1875vw, 1.75rem);
}
.l-symposium__box .p-symposium__info__Year,
.l-symposium__box .p-symposium__info__Week,
.l-symposium__box .p-symposium__info__time,
.l-symposium__box .p-symposium__info__venue {
  font-size: 0.875rem;
}
.l-symposium__box .p-symposium__info__Mmdd {
  font-size: 2.25rem;
}
.l-symposium__box .p-symposium__info__venue {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.l-symposium__box .p-symposium__info__fee {
  width: 60px;
  padding: 3px 0;
  font-size: 0.75rem;
  line-height: 1;
}
.l-symposium__box .p-btn__appli {
  padding: 10px 32px 10px 12px;
  font-size: 0.9375rem;
  border-radius: 6px;
}

.p-linkBox__title__cooperate {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.p-linkBox__wrap__movie {
  width: 100%;
  flex-direction: column;
  gap: 16px 40px;
}
@media screen and (min-width: 768px) {
  .p-linkBox__wrap__movie {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-linkBox__thumb__movie {
    width: 25%;
    min-width: 240px;
  }
}
@media screen and (min-width: 768px) {
  .p-linkBox__content__movie {
    flex: 1;
  }
}

.p-banner {
  position: relative;
}
.p-banner__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(4px, 0.9375vw, 12px) 1%;
}
.p-banner__list__item {
  display: inline-block;
  width: 49%;
}
@media screen and (min-width: 768px) {
  .p-banner__list__item {
    width: 24%;
  }
}
.p-banner__list__item a:hover,
.p-banner__list__item a:focus-visible {
  opacity: 0.5;
  box-shadow: var(--shadow_low);
  outline: none;
}

.p-contact .c-heading__lv2 {
  color: var(--color-white);
}
.p-contact__text {
  color: var(--color-white);
}

.p-footer__copyright {
  color: var(--color-white);
  text-box: trim-both text;
}

/**
 Utility
----------------------------------- */
.pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.pc-inline {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
/*# sourceMappingURL=common.css.map */