@charset "UTF-8";
html {
  overflow-x: hidden;
}

img {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: 1.5;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*------------------------------------------*
*サイトの基本設定
*------------------------------------------*/
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 60px;
  z-index: 1;
}

.l-header.active {
  display: block;
}

.l-header__space {
  display: block;
  height: 60px;
}

.l-content {
  position: relative;
  width: 100vw;
  height: auto;
}

.l-footer {
  position: relative;
  width: 100vw;
  height: auto;
}

.c-inner {
  margin: 0 auto;
}

.c-heading {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-heading {
    font-size: 28px;
  }
}
@media screen and (min-width: 1069px) {
  .c-heading {
    font-size: 35px;
  }
}

.c-subheading {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-subheading {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-subheading {
    font-size: 20px;
  }
}
@media screen and (min-width: 1069px) {
  .c-subheading {
    font-size: 22px;
  }
}

.c-default {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-default {
    margin-top: 5px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-default {
    font-size: 16px;
  }
}
@media screen and (min-width: 1069px) {
  .c-default {
    margin-top: 10px;
    font-size: 17px;
  }
}

.c-button {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 150px;
    margin: 10px auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-button {
    width: 200px;
    margin: 10px auto;
  }
}
@media screen and (min-width: 1069px) {
  .c-button {
    width: 250px;
    margin: 10px auto;
  }
}
.c-button a {
  display: flex;
  justify-content: space-around;
  font-family: "Noto Serif JP", serif;
  color: #000;
  border-style: solid;
  border-width: 1px;
}
@media screen and (max-width: 767px) {
  .c-button a {
    padding: 2vw;
    border-radius: 1vw;
    font-size: calc(3px + 2.5vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-button a {
    padding: 1.5vw;
    border-radius: 0.6vw;
    font-size: 16px;
  }
}
@media screen and (min-width: 1069px) {
  .c-button a {
    padding: 1vw;
    border-radius: 0.4vw;
    font-size: calc(6px + 1vw);
  }
}
.c-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  border-top-style: solid;
  border-right-style: solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button a::after {
    width: 4.5px;
    height: 4.5px;
    right: 1rem;
    border-top-width: 1.3px;
    border-right-width: 1.3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-button a::after {
    width: 5px;
    height: 5px;
    right: 1.7rem;
    border-top-width: 1.3px;
    border-right-width: 1.3px;
  }
}
@media screen and (min-width: 1069px) {
  .c-button a::after {
    width: 5px;
    height: 5px;
    right: 2rem;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-button a:hover::after {
    right: 0.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-button a:hover::after {
    right: 1rem;
  }
}
@media screen and (min-width: 1069px) {
  .c-button a:hover::after {
    right: 1.4rem;
  }
}

.c-grid-item--center {
  align-self: center;
  justify-self: center;
}

@media screen and (max-width: 767px) {
  .c-for-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-for-pc {
    display: none;
  }
}
@media screen and (min-width: 1069px) {
  .c-for-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .c-for-sp-tl {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .c-for-sp-tl {
    display: block;
  }
}
@media screen and (min-width: 1069px) {
  .c-for-sp-tl {
    display: none;
  }
}

.p-header {
  width: 100%;
  height: 100%;
  background-color: #000;
}

.p-header__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__inner {
    width: 80%;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__inner {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 90%;
    height: 100%;
  }
}

.p-header__logo img {
  position: relative;
  height: 55px;
  top: 2.5px;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__logo img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__logo {
    grid-column: 1/2;
    width: 100%;
    height: 100%;
  }
}

.p-header__hamburger {
  width: 30px;
  height: 25px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: absolute;
    top: 17.5px;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__hamburger {
    position: absolute;
    top: 17.5px;
    left: 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__hamburger span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background-color: #FFF;
  border-radius: 1.5px;
  transition: all 0.5s;
}
.p-header__hamburger span:nth-of-type(1) {
  top: 0;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 8px;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 16px;
}
.p-header__hamburger.active span:nth-of-type(1) {
  transform: translateY(11.1px) rotate(45deg);
}
.p-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.active span:nth-of-type(3) {
  transform: translateY(-11.1px) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .p-header__menu {
    position: fixed;
    width: 60vw;
    height: 100vh;
    top: 60px;
    left: -60vw;
    z-index: 10;
    background-color: #FFF;
    transition: all 0.6s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__menu {
    position: fixed;
    width: 40vw;
    height: 100vh;
    top: 60px;
    left: -40vw;
    z-index: 10;
    background-color: #FFF;
    transition: all 0.6s;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__menu {
    width: 100%;
    height: 100%;
    grid-column: 2/8;
  }
}
.p-header__menu.open {
  left: 0;
}

.p-header__list {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__list {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    place-items: center;
    width: 100%;
    height: 100%;
  }
}

.p-header__item {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    border-bottom: solid 1.5px #a9a9a9;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__item {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    border-bottom: solid 1.5px #a9a9a9;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__item {
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
  }
}

@media screen and (max-width: 767px) {
  .p-header__sns-menu {
    position: fixed;
    width: 60vw;
    height: 80px;
    bottom: 120px;
    left: calc(-60vw - 1.5px);
    z-index: 10;
    transition: all 0.6s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__sns-menu {
    position: fixed;
    width: 40vw;
    bottom: 120px;
    left: calc(-40vw - 1.5px);
    z-index: 10;
    transition: all 0.6s;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__sns-menu {
    display: none;
  }
}
.p-header__sns-menu.open {
  left: 0;
}

.p-header__sns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__sns-list {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__sns-list {
    width: 70%;
    margin: 0 auto;
  }
}

.p-header__sns-item {
  width: 40%;
}
.p-header__sns-item img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

@media screen and (max-width: 767px) {
  .p-header__menu-mask {
    display: none;
    position: fixed;
    width: 100vw;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.6s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__menu-mask {
    display: none;
    position: fixed;
    width: 100vw;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.6s;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__menu-mask {
    display: none;
  }
}
.p-header__menu-mask.open {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-header__language-change {
    background-color: #FFF;
    position: fixed;
    top: 50px;
    left: -60vw;
    width: 60vw;
    height: 100vh;
    z-index: 10;
    transition: all 0.6s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-header__language-change {
    display: none;
  }
}
@media screen and (min-width: 1069px) {
  .p-header__language-change {
    display: block;
    grid-column: 7/8;
  }
}

.p-h-top {
  width: 100%;
  height: calc(100vh - 60px);
}
@media screen and (min-width: 1069px) {
  .p-h-top {
    min-height: 600px;
  }
}

.p-h-top__inner {
  width: 100%;
  height: 100%;
}

.p-h-top__image {
  width: 100%;
  height: calc(100% - 45px);
}
@media screen and (min-width: 1069px) {
  .p-h-top__image {
    min-height: 540px;
  }
}
.p-h-top__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.p-h-top__scroll {
  width: 100%;
  height: 45px;
  background-color: #000;
}

.p-h-top__chevron-box {
  position: relative;
  width: 14.4px;
  height: 14.4px;
  margin: 0 auto;
}

.chevron {
  position: absolute;
  width: 21px;
  height: 4.8px;
  opacity: 0;
  animation: move 3s ease-out infinite;
  transform: scale3d(0.5, 0.5, 0.5);
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  width: 51%;
  height: 100%;
  background: #FFF;
}

.chevron:before {
  transform: skew(0deg, 30deg);
}

.chevron:after {
  width: 50%;
  right: 0;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(18px);
  }
  67% {
    opacity: 1;
    transform: translateY(24px);
  }
  100% {
    opacity: 0;
    transform: translateY(33px) scale3d(0.5, 0.5, 0.5);
  }
}
.p-h-event2022 {
  display: grid;
  place-items: center;
  width: 100%;
  background-image: url("../assets/event2022/PatchworkBG.png");
}
@media screen and (max-width: 767px) {
  .p-h-event2022 {
    height: 140vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-event2022 {
    height: 70vw;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-event2022 {
    height: 56.25vw;
  }
}

.p-h-event2022__inner {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  background-color: #FFF;
  border: 10px solid;
  border-image: url("../assets/event2022/PatchFrame.svg") 33%/16px 16px round;
  border-image-outset: 5px;
}
@media screen and (max-width: 767px) {
  .p-h-event2022__inner {
    grid-template-rows: 20vw 1fr 20vw;
    width: 80vw;
    height: 120vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-event2022__inner {
    grid-template-rows: 10vw 1fr 10vw;
    width: 85vw;
    height: 55vw;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-event2022__inner {
    grid-template-rows: 10vw 1fr 9vw;
    width: 85vw;
    height: 41.25vw;
  }
}

@media screen and (max-width: 767px) {
  .p-h-event2022__title {
    width: 85%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-event2022__title {
    width: 50%;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-event2022__title {
    width: 50%;
  }
}
.p-h-event2022__title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-h-event2022__description {
    width: 85%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-event2022__description {
    width: 60%;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-event2022__description {
    width: 60%;
  }
}

.p-h-event2022__button a {
  color: #000;
  border-color: #000;
}
.p-h-event2022__button a::after {
  border-color: #000;
}
.p-h-event2022__button a:hover {
  background: rgba(220, 88, 42, 0.3);
}

.p-h-talks__inner {
  width: 100%;
  border-top: solid 3px #a9a9a9;
}

.p-h-talks__headline {
  line-height: 2;
  text-align: center;
  border-bottom: solid 1.5px #a9a9a9;
}

@media screen and (min-width: 1069px) {
  .p-h-talks__row1 {
    width: 100%;
    background-color: #dcdcdc;
  }
}

.p-h-talks__row1-tiles {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-h-talks__row1-tiles {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-talks__row1-tiles {
    width: 100%;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-talks__row1-tiles {
    display: grid;
    width: 900px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .p-h-talks__row1-tiles {
    width: 1350px;
  }
}

.p-h-talks__column1row1,
.p-h-talks__column2row1,
.p-h-talks__column3row1 {
  width: 100%;
  color: #000;
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .p-h-talks__column1row1,
.p-h-talks__column2row1,
.p-h-talks__column3row1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-talks__column1row1,
.p-h-talks__column2row1,
.p-h-talks__column3row1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-h-talks__column1row1:hover,
.p-h-talks__column2row1:hover,
.p-h-talks__column3row1:hover {
  padding: 15px;
}

.p-h-talks__tile-image {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-h-talks__tile-image {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-talks__tile-image {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 300px;
    align-self: center;
    justify-self: start;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-talks__tile-image {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-h-talks__tile-description {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-talks__tile-description {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 300px;
    align-self: center;
    justify-self: end;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-talks__tile-description {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-talks__tile-description p.c-default {
    margin-bottom: 20px;
  }
}

.p-h-talks__column1row1,
.p-h-talks__column3row1 {
  background-color: #f5f5f5;
}

.p-h-talks__column2row1 {
  background-color: #dcdcdc;
}

.p-h-talks__button-row {
  width: 100%;
  border-top: solid 1.5px #a9a9a9;
}

.p-h-talks__button a {
  color: #000;
  border-color: #000;
}
.p-h-talks__button a::after {
  border-color: #000;
}
.p-h-talks__button a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.p-h-events__inner {
  width: 100%;
  border-top: solid 3px #a9a9a9;
}

.p-h-events__headline {
  line-height: 2;
  text-align: center;
  border-bottom: solid 1.5px #a9a9a9;
}

.p-h-events__row1 {
  width: 100%;
  background-color: #dcdcdc;
}

.p-h-events__row2 {
  width: 100%;
  background-color: #f5f5f5;
}

.p-h-events__column1row1,
.p-h-events__column1row2 {
  display: grid;
  place-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-h-events__column1row1,
.p-h-events__column1row2 {
    width: 100%;
    padding: 10px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-events__column1row1,
.p-h-events__column1row2 {
    display: grid;
    width: 600px;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-events__column1row1,
.p-h-events__column1row2 {
    display: grid;
    width: 900px;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }
}
@media screen and (min-width: 1600px) {
  .p-h-events__column1row1,
.p-h-events__column1row2 {
    width: 1350px;
  }
}
.p-h-events__column1row1:hover,
.p-h-events__column1row2:hover {
  padding: 0.5vw;
}

.p-h-events__tile-image {
  width: 100%;
}

.p-h-events__tile-description {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 1069px) {
  .p-h-events__column1row1 {
    background-color: #f5f5f5;
  }
}

@media screen and (min-width: 1069px) {
  .p-h-events__column1row2 {
    background-color: #dcdcdc;
  }
}

.p-h-events__button-row {
  width: 100%;
  border-top: solid 1.5px #a9a9a9;
}

.p-h-events__button a {
  color: #000;
  border-color: #000;
}
.p-h-events__button a::after {
  border-color: #000;
}
.p-h-events__button a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.p-h-ted {
  border-top: solid 3px #a9a9a9;
  background-color: #3c3c3c;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-h-ted {
    padding: 15px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-ted {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-ted {
    padding: 25px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-h-ted__inner {
    width: 75vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-ted__inner {
    width: 500px;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-ted__inner {
    width: 700px;
  }
}
@media screen and (min-width: 1600px) {
  .p-h-ted__inner {
    width: 900px;
  }
}

.p-h-ted__description {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-h-ted__description {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-ted__description {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-ted__description {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-h-ted__button {
    margin: 7vw auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-h-ted__button {
    margin: 5vw auto 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-h-ted__button {
    margin: 2vw auto 0;
  }
}
.p-h-ted__button a {
  color: #FFF;
  border-color: #FFF;
}
.p-h-ted__button a::after {
  border-color: #FFF;
}
.p-h-ted__button a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.p-footer {
  background-color: #000;
  color: #797979;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-footer {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-footer {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    width: 70vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-footer__inner {
    width: 600px;
  }
}
@media screen and (min-width: 1069px) {
  .p-footer__inner {
    width: 800px;
  }
}
@media screen and (min-width: 1600px) {
  .p-footer__inner {
    width: 1000px;
  }
}

.p-footer__sns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}

.p-footer__sns-item {
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a img {
    width: 35px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-footer__sns-item a img {
    width: 40px;
  }
}
@media screen and (min-width: 1069px) {
  .p-footer__sns-item a img {
    width: 45px;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__inquiry-button {
    margin: 5vw auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-footer__inquiry-button {
    margin: 4vw auto 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-footer__inquiry-button {
    margin: 2vw auto 0;
  }
}
.p-footer__inquiry-button a {
  color: #FFF;
  border-color: #FFF;
}
.p-footer__inquiry-button a::after {
  border-color: #FFF;
}
.p-footer__inquiry-button a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.p-footer__right-text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-footer__right-text {
    margin-top: 3vw;
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-footer__right-text {
    margin-top: 4vw;
    font-size: 12px;
  }
}
@media screen and (min-width: 1069px) {
  .p-footer__right-text {
    margin-top: 4vw;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-a-about {
    padding-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-about {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-about {
    padding-top: 25px;
  }
}

.p-a-about__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-a-about__inner {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-about__inner {
    width: 85%;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-about__inner {
    width: 85%;
    min-width: 1000px;
  }
}

.p-a-about__heading {
  width: 100%;
  border-bottom: solid 1.5px #000;
  text-align: center;
}

.p-a-mission-vision {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-mission-vision {
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-mission-vision {
    background-color: #dcdcdc;
  }
}

@media screen and (max-width: 767px) {
  .p-a-mission-vision__inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-mission-vision__inner {
    width: 660px;
    margin: 0 auto;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-mission-vision__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    width: 1000px;
    margin: 0 auto;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-mission-vision__inner {
    width: 1400px;
  }
}

.p-a-mission__inner {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-a-mission__inner {
    width: 100%;
    padding: 15px 35px;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-mission__inner {
    width: 100%;
    padding: 20px 35px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-mission__inner {
    display: grid;
    width: 500px;
    padding: 25px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-mission__inner {
    width: 700px;
  }
}

.p-a-vision__inner {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-a-vision__inner {
    width: 100%;
    padding: 15px 35px;
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-vision__inner {
    width: 100%;
    padding: 20px 35px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-vision__inner {
    display: grid;
    width: 500px;
    padding: 25px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-vision__inner {
    width: 700px;
  }
}

.p-a-history {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-history {
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-history {
    background-color: #f5f5f5;
  }
}

.p-a-history__inner {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-a-history__inner {
    width: 100%;
    padding: 15px 35px;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-history__inner {
    width: 660px;
    margin: 0 auto;
    padding: 20px 35px;
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-history__inner {
    width: 1000px;
    margin: 0 auto;
    padding: 25px 30px;
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-history__inner {
    width: 1400px;
  }
}

.p-a-ted-tedx-tedxut {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-ted-tedx-tedxut {
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-ted-tedx-tedxut {
    background-color: #dcdcdc;
  }
}

@media screen and (max-width: 767px) {
  .p-a-ted-tedx-tedxut__inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-ted-tedx-tedxut__inner {
    width: 660px;
    margin: 0 auto;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-ted-tedx-tedxut__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    width: 1000px;
    margin: 0 auto;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-ted-tedx-tedxut__inner {
    width: 1400px;
  }
}

.p-a-ted__inner {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-a-ted__inner {
    width: 100%;
    padding: 35px 35px;
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-ted__inner {
    width: 100%;
    padding: 20px 35px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-ted__inner {
    width: 333.3px;
    padding: 25px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-ted__inner {
    width: 466.6px;
  }
}

.p-a-tedx__inner {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-a-tedx__inner {
    width: 100%;
    padding: 35px 35px;
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-tedx__inner {
    width: 100%;
    padding: 20px 35px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-tedx__inner {
    width: 333.3px;
    padding: 25px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-tedx__inner {
    width: 466.6px;
  }
}

.p-a-tedxut__inner {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-a-tedxut__inner {
    width: 100%;
    padding: 35px 35px;
    background-color: #dcdcdc;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-tedxut__inner {
    width: 100%;
    padding: 20px 35px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-tedxut__inner {
    width: 333.3px;
    padding: 25px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .p-a-tedxut__inner {
    width: 466.6px;
  }
}

@media screen and (min-width: 1069px) {
  .p-a-tedx__subheading {
    line-height: 1;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-tedx__subheading span {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .p-a-mission__description,
.p-a-vision__description,
.p-a-history__description,
.p-a-ted__description,
.p-a-tedx__description,
.p-a-tedxut__description {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-a-mission__description,
.p-a-vision__description,
.p-a-history__description,
.p-a-ted__description,
.p-a-tedx__description,
.p-a-tedxut__description {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1069px) {
  .p-a-mission__description,
.p-a-vision__description,
.p-a-history__description,
.p-a-ted__description,
.p-a-tedx__description,
.p-a-tedxut__description {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .p-p-about {
    padding: 15px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-about {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-about {
    padding: 25px 0;
  }
}

.p-p-about__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-p-about__inner {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-about__inner {
    width: 85%;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-about__inner {
    width: 80%;
  }
}

.p-p-about__heading {
  width: 100%;
  border-bottom: solid 1.5px #000;
  text-align: center;
}

.p-p-about__description {
  width: 90%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-p-about__description {
    margin: 5px auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-about__description {
    margin: 10px auto 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-about__description {
    margin: 15px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .p-p-about__logo {
    margin: 5px auto 0;
    width: 250px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-about__logo {
    margin: 10px auto 0;
    width: 400px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-about__logo {
    margin: 15px auto 0;
    width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .p-p-2022 {
    padding: 15px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-2022 {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-2022 {
    padding: 25px 0;
  }
}

.p-p-2022__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-p-2022__inner {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-2022__inner {
    width: 85%;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-2022__inner {
    width: 80%;
  }
}

.p-p-2022__heading {
  width: 100%;
  border-bottom: solid 1.5px #000;
  text-align: center;
}

.p-p-core {
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-p-core {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 27px repeat(2, 120px);
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-core {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 36px 180px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-core {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 45px 200px;
    margin-top: 30px;
  }
}

.p-p-core__heading {
  border-bottom: solid 1.5px #000;
}
@media screen and (max-width: 767px) {
  .p-p-core__heading {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-core__heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-core__heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .p-p-core__logo {
    width: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-core__logo {
    width: 270px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-core__logo {
    width: 360px;
  }
}

.p-p-normal {
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-p-normal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 27px 120px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-normal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 36px 180px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-normal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 45px 200px;
    margin-top: 30px;
  }
}

.p-p-normal__heading {
  border-bottom: solid 1.5px #000;
}
@media screen and (max-width: 767px) {
  .p-p-normal__heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-normal__heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-normal__heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .p-p-normal__logo {
    width: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-normal__logo {
    width: 180px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-normal__logo {
    width: 240px;
  }
}

.p-p-inkind {
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-p-inkind {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 27px repeat(8, 120px);
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-inkind {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 36px repeat(5, 180px);
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-inkind {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 45px repeat(5, 200px);
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.p-p-inkind__heading {
  border-bottom: solid 1.5px #000;
}
@media screen and (max-width: 767px) {
  .p-p-inkind__heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-inkind__heading {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-inkind__heading {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .p-p-inkind__logo {
    width: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .p-p-inkind__logo {
    width: 180px;
  }
}
@media screen and (min-width: 1069px) {
  .p-p-inkind__logo {
    width: 240px;
  }
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.modal__bg {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .modal__content {
    width: 280px;
    padding: 20px 20px 15px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__content {
    display: grid;
    grid-template-columns: 200px 300px;
    grid-template-rows: 1fr 30px;
    padding: 30px 30px 20px;
    border-radius: 7.5px;
  }
}
@media screen and (min-width: 1069px) {
  .modal__content {
    display: grid;
    grid-template-columns: 300px 500px;
    grid-template-rows: 1fr 30px;
    padding: 50px 50px 30px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__image-box {
    display: grid;
    place-items: center;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1069px) {
  .modal__image-box {
    display: grid;
    place-items: center;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .modal__image--core {
    width: 210px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__image--core {
    width: 180px;
  }
}
@media screen and (min-width: 1069px) {
  .modal__image--core {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .modal__image--normal,
.modal__image--inkind {
    width: 140px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__image--normal,
.modal__image--inkind {
    width: 120px;
  }
}
@media screen and (min-width: 1069px) {
  .modal__image--normal,
.modal__image--inkind {
    width: 200px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__text-box {
    display: grid;
    place-items: center;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1069px) {
  .modal__text-box {
    display: grid;
    place-items: center;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__button-box {
    display: grid;
    place-items: center;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1069px) {
  .modal__button-box {
    display: grid;
    place-items: center;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

@media screen and (max-width: 767px) {
  .modal__name {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__name {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1069px) {
  .modal__name {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .modal__description {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .modal__description {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1069px) {
  .modal__description {
    margin-bottom: 30px;
  }
}

.modal__button {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 5%;
  background: #000;
}
@media screen and (max-width: 767px) {
  .modal__button {
    margin: 0 auto;
  }
}

.modal__button::before, .modal__button::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 27px;
  top: 50%;
  left: 50%;
  background: #FFF;
}

.modal__button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .u-margin__area {
    margin-top: 3vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1068px) {
  .u-margin__area {
    margin-top: 2.5vw;
  }
}
@media screen and (min-width: 1069px) {
  .u-margin__area {
    margin-top: 2vw;
  }
}

@media screen and (min-width: 1069px) {
  .u-margin__description {
    margin-top: 2vw;
  }
}

/*------------------------------------------*
*foundation
*------------------------------------------*/
/*------------------------------------------*
*layout
*------------------------------------------*/
/*------------------------------------------*
*component
*------------------------------------------*/
/*------------------------------------------*
*project
*------------------------------------------*/
/*------------------------------------------*
*utility
*------------------------------------------*/
