@charset "utf-8";

/* ------------------------------
reset
------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
  }
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,td{vertical-align:middle;}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size:inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  resize: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 0 #EEEEEE inset;
}
input:-internal-autofill-selected {
  background-color: rgb(238, 238, 238)!important;
}
input::placeholder ,
input:-ms-input-placeholder ,
input::-ms-input-placeholder {color: #f00!important;}


select::-ms-expand {
  display: none;
}
select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* ------------------------------
common
------------------------------ */
:root {
	--fluid-scale: 10px;
	--content-max-width: 1366px;
}

@media screen and (max-width: 1366px) {
	:root {
		--fluid-scale: calc(10 / 1366 * 100vw);
  }
}

@media screen and (max-width: 767px) {
	:root {
		--fluid-scale: calc(10 / 375 * 100vw);
	}
}


/* ---------- header ---------- */
.header {
	position: relative;
	z-index: 10;
}
.header__inner {
  position: absolute;
	top: 0;
	left: 0;
  width: 100%;
}
.header__logo {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding: calc(3.5 * var(--fluid-scale)) calc(6 * var(--fluid-scale));
}
.header__logo a {
  display: block;
  width: min(calc(19.3 * var(--fluid-scale)), 100%);
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin: 0;
    padding: calc(1.5 * var(--fluid-scale));
  }
  .header__logo a{
    width: min(160px, calc(14.8 * var(--fluid-scale)));
  }
}


/* ---------- footer ---------- */
.footer {
  background-color: #005BAB;
  padding: calc(2.5 * var(--fluid-scale)) calc(14.3 * var(--fluid-scale));
}
.footer__inner {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.sns-list {
	display: flex;
	column-gap: calc(2.5 * var(--fluid-scale));
	list-style: none;
}
.sns-list li {
	width: calc(5 * var(--fluid-scale))
}
.copyright {
	font-size: 0.875rem;
	font-weight: 700;
  letter-spacing: 0.01em;
	color: #fff;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: calc(2.75 * var(--fluid-scale)) calc(1.5 * var(--fluid-scale)) calc(2.5* var(--fluid-scale));
  }
  .footer__inner {
    flex-direction: column;
    row-gap: calc(3.25 * var(--fluid-scale));
  }
  .sns-list {
    column-gap: calc(2 * var(--fluid-scale));
  }
  .sns-list li {
    width: calc(4 * var(--fluid-scale));
  }
  .copyright {
    font-size: calc(1.05 * var(--fluid-scale))
  }
}


/* ---------- main-copy ---------- */
.bottom-main-copy {
  padding: calc(15 * var(--fluid-scale)) 0;
}
.main-copy__logo {
  width: calc(70 * var(--fluid-scale));
  margin-inline: auto;
}
.main-copy__model-number {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  margin-top: calc(2.5 * var(--fluid-scale));
}
.main-copy__debut {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: calc(6 * var(--fluid-scale));
}

@media screen and (max-width: 1366px) {
  .main-copy__model-number {
    font-size: clamp(1.5rem, 1.0184rem + 1.0033vw, 1.875rem);
  }
  .main-copy__debut {
    font-size: clamp(1.875rem, 1.0723rem + 1.6722vw, 2.5rem);
  }
}

@media screen and (max-width: 767px) {
  .bottom-main-copy {
    padding: 0 0 calc(13 * var(--fluid-scale));
  }
  .main-copy__logo {
    width: calc(35 * var(--fluid-scale));
  }
  .main-copy__model-number {
    font-size: calc(2 * var(--fluid-scale));
    margin-top: calc(2 * var(--fluid-scale));
  }
  .main-copy__debut {
    font-size: calc(3 * var(--fluid-scale));
    margin-top: calc(4 * var(--fluid-scale));
  }
}
