@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
  overflow: hidden;
}

img {
  max-width: 100%;
}

/* ヘッダー */

.traiangles {
  position: relative;
}

.triangle1 {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 60vw solid #ff6d60;
  border-bottom: 10vw solid transparent;
  position: absolute;
  top: 0;
  z-index: 1;
}

.triangle2 {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 100vw solid #ffecdb;
  border-bottom: 16.67vw solid transparent;
  position: absolute;
  top: 0;
  z-index: 0;
}

.backbutton {
  position: fixed;
  z-index: 1;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

.backbutton img {
  width: 28px;
}

.backbutton p {
  padding-top: 3px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

/* メイン */

.timesche {
  transform: rotate(-10deg);
  margin-top: 10px;
}

.timesche p {
  transform: skewX(-10deg);
  font-size: 1.5vw;
  font-weight: bold;
}

.program-data {
  margin-top: 5px;
  transform: skewX(-10deg);
}

.program-data div {
  width: 14vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 3px #000;
  border-radius: 10px;
  padding: 0.5vw;
}

.program-data div h1 {
  font-size: 1.5vw;
}

.program-data div img {
  margin-left: 1vw;
  padding-bottom: 0.3vw;
  width: 1.5vw;
}

.title-outer {
  margin-top: 10vw;
  margin-left: 10vw;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transform: rotate(-10deg);
}

.title {
  position: absolute;
  z-index: 1;
  transform-origin: 0 0;
  transform: skewX(-10deg);
  color: #ffffff;
  font-size: 5vw;
  -webkit-text-stroke: 0.1vw #000;
}

main {
  width: 80vw;
  margin-left: 10vw;
  padding-bottom: 150px;
  overflow: hidden;
}

.subtitle-outer {
  transform: rotate(-10deg);
  margin-bottom: 30px;
  margin-top: 70px;
}

.subtitle {
  transform: skewX(-10deg);
  font-size: 40px;
  border-left: 10px solid #ff6d60;
  padding-left: 5px;
}

.boxes-outer {
  transform: rotate(-10deg);
}

.boxes {
  transform: skewX(-10deg);
}

.boxes ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
}

.boxes ul li {
  flex-basis: 23.25%;
  margin-bottom: 1%;
}

.boxes ul li .image-outer {
  width: 100%;
  border: 3px black solid;
  padding: 5px;
}

.boxes ul li .image-outer img {
  width: 100%;
  height: 10vw;
  object-fit: cover;
}

.boxes ul li .tagname {
  font-size: 22px;
  margin-top: 2%;
}

.modal {
  animation: fadein 0.5s;
  width: 800px !important;
  max-width: 90% !important;
  padding: 0 !important;
  background-image: url(images/mesh.png) !important;
  background-position: center center !important;
  background-size: 70px !important;
  border-radius: 0 !important;
}

@keyframes fadein {
  0%{opacity: 0;}
  100%{opacity: 1;}
}

.modal-inner {
  padding: 30px;
}

.logo {
  width: 100%;
  border: 5px black solid;
  padding: 10px;
}

.logo img {
  width: 100%;
}

.modal-tagname-outer {
  text-align: center;
}

.modal-tagname {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 30px;
  font-size: 30px;
  font-weight: bold;
  background:linear-gradient(transparent 60%, #ff6d60 60%);
}

.modal-mainname {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 10px;
}

.location {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.location img {
  width: 15px;
  margin-right: 5px;
}

.location p {
  font-size: 23px;
  font-weight: bold;
}

.introduction {
  font-size: 18px;
  padding: 15px;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}

.modal-time {
  padding: 20px;
}

.modal-time h1 {
  text-align: center;
}

.modal-time h1 div {
  display: inline-block;
  font-weight: bold;
  font-size: 25px;
  border-left: solid 6px #ff6d60;
  border-right: solid 6px #ff6d60;
  padding: 5px;
}

.modal-time h2 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}

.modal-time p {
  text-align: center;
  font-size: 20px;
  margin-top: 2px;
}