@charset "UTF-8";

/* header
================================================= */
header {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
}
@media print, screen and (min-width: 960px) {
  header { width: min(90%,1200px); margin: min(5%,65px) auto; }
}


/* main
================================================= */
main {
  width: min(90%,820px);
  margin: 8% auto;
}
main > section {
  margin-top: 9vw;
  padding-block: 1px;
}
main > div.catch + section {
  margin-top: 11vw;
}
@media print, screen and (min-width: 600px) {
  main { margin-block: min(5%,70px); }
  main > section { margin-top: min(6vw,70px); }
  main > div.catch + section { margin-top: min(8vw,100px); }
}

/* text decoration */
.text-small {
  font-size: 0.85em;
}
.text-large {
  font-size: 1.25em;
}
.text-bold {
  font-weight: bold;
}
.text-red {
  color: #C80028;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* button */
a.btn {
  display: block;
  width: 90%;
  max-width: 280px;
  margin: 1.2rem auto;
  padding: 1.6rem;
  background: #d4473c;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}
a.btn:hover,
a.btn:active {
  background: #000;
}

/* youtube */
div.youtube {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  margin: 0 auto 10px;
  padding: 56.25% 0 0;
}
div.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* elements flex */
div.flex.col1,
div.flex.col2,
div.flex.col3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  margin-top: -14px;
}
div.flex.col1 {
  justify-content: center;
}
div.flex.col2,
div.flex.col3 {
  justify-content: space-between;
}
div.flex.col1.small {
  width: 80%;
  margin-inline: auto;
}
div.flex.col1 > *,
div.flex.col2 > *,
div.flex.col3 > * {
  margin-top: 14px;
}
div.flex.col3 > * {
  width: 48%;
}
@media print, screen and (min-width: 960px) {
  div.flex.col2 > * { width: 48%; }
  div.flex.col3 > * { width: 31%; }
  div.flex.col3 > *:nth-child(3n+2):last-child { margin-left: auto; margin-right: 34.5%; }
}

/* figure */
figure {
}
figcaption {
  margin-top: 3px;
  line-height: 1.4;
}
figcaption .name {
  display: block;
  margin-top: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
}
figcaption .position {
  display: block;
  margin-top: 5px;
  text-align: center;
}

/* h2 & h3 & p & img */
h2 {
  margin-bottom: 0.6em;
	padding: 0.4em 0.6em;
	border-radius: 3px;
	background-color: #00328c;
  color: #ffffff;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
h3 {
  margin: 1.5em 0 0.3em;
  padding-left: 0.5em;
  border-left: 5px solid #dc8c00;
  font-size: 1.9rem;
  line-height: 1.5;
}
h2 + h3 {
  margin-top: 0.8em;
}
h4,
h5 {
  margin: 0.8em 0 0.2em;
  font-size: 1.7rem;
  line-height: 1.6;
}
p + p {
  margin-top: 1.4rem;
}
@media print, screen and (min-width: 960px) {
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2.2rem; }
  h4, h5 { font-size: 1.9rem; }
}

/* catch */
div.catch {
  width: 100%;
  margin: 2% auto;
  padding-block: min(2.5%,20px);
	border-top: 1px solid #181818;
	border-bottom: 1px solid #181818;
	font-size: 1.7rem;
	text-align: center;
}
div.catch .clause {
  display: inline-block;
}
div.catch .video {
  width: min(100%,550px);
  margin: 0.5em auto 0;
}
div.catch img.lineup {
  margin-block: calc(5% + 0.4em) 5%;
}
@media print, screen and (min-width: 600px) {
  div.catch img.lineup { width: 90%; margin-inline: auto; }
}
@media print, screen and (min-width: 960px) {
  div.catch { margin-top: 0.5%; font-size: 2.0rem; }
}

/* ambassador */
figure.ambassador {
  width: min(80%,480px);
  margin: 1.0em auto 0;
}
.ambassador img {
  margin-block: 0.4em;
}

/* sampling */
img.place-pic {
  width: 80%;
  margin-block: 0.4em;
}
img.kaneko-event {
  width: min(100%,480px);
  margin-block: 0.4em;
}
h4.place,
h5.place {
  margin-top: min(6%,30px);
}
.place::before {
  content: "●";
}
h3 + h4.place,
h4 + h5.place {
  margin-top: min(2%,10px);
}
p.notice {
  margin-top: min(6%,30px);
}
@media print, screen and (min-width: 600px) {
  img.place-pic { width: min(70%,480px); }
  h4.place, h5.place { margin-top: min(4%,35px); }
  p.notice { margin-top: min(4%,35px); }
}






