*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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%;
  font: inherit;
  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;
}

a {
  text-decoration: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-Liver: #672422;
  --color-raisin-black: #232020;
  --color-satin-sheen-gold: #c3a63c;
  --color-root-beer: #200000;
  --color-silver-foil: #b0b0b0;
}

html {
  font-size: 10px;
}

body {
  background-color: var(--color-white);
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.2;
}
body.of-hidden {
  overflow: hidden;
}
body h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.container {
  display: block;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 1125px;
  }
}

main {
  margin-top: 20px;
}

.miya-btns {
  max-width: 1290px;
  margin-inline: auto;
  padding-inline: 15px;
}
.miya-btns__wpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 81px 0 95px;
}
@media only screen and (max-width: 991px) {
  .miya-btns__wpr {
    padding: 60px 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .miya-btns__wpr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 54px;
    padding: 56px 0 84px;
  }
}

.btn-primary {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #000;
  border-radius: 13px;
  border: 3px solid #000;
  max-width: 354px;
  width: 100%;
  margin-inline: auto;
  padding: 21px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-box-shadow: 8px 8px 0 #a6a6a6;
  box-shadow: 8px 8px 0 #a6a6a6;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .btn-primary {
    font-size: 1.8rem;
    padding-right: 25px;
    padding: 20px 25px 20px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-primary {
    font-size: 2rem;
    padding: 21px 25px 21px 5px;
  }
}
.btn-primary:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-primary::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(./../img/common/new-tab-icon.png);
  background-position: center;
  background-size: 19px;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 44px;
  right: 14px;
}
@media only screen and (max-width: 991px) {
  .btn-primary::after {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-primary::after {
    width: 45px;
    height: 45px;
  }
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.header__logo {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo-image {
  display: block;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .header__logo-image {
    max-width: 245px;
  }
}

.footer {
  padding: 57px 0 52px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#5c5c5c),
    to(#000)
  );
  background: -webkit-linear-gradient(top, #5c5c5c, #000);
  background: linear-gradient(to bottom, #5c5c5c, #000);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 43px 0 52px;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .footer__sns {
    margin-bottom: 70px;
  }
}
.footer__sns-link {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__sns-link:hover {
  opacity: 0.7;
}
.footer__honda-logo {
  margin-bottom: 30px;
  display: inline-block;
}
.footer__text {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__text {
    font-size: 1.5rem;
  }
}

.mv {
  max-width: 1260px;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mv {
    margin-bottom: 45px;
  }
}
.mv-image {
  border-radius: 50px;
  border: 3px solid #6f6f6f;
}

.miyazaki-custom.--mb-50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .miyazaki-custom.--mb-50 {
    margin-bottom: 60px;
  }
}
.miyazaki-custom__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .miyazaki-custom__title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .miyazaki-custom__title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-custom__title {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 425px) {
  .miyazaki-custom__title {
    font-size: 1.7rem;
  }
}
.miyazaki-custom__title span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(40%, #ffe537),
    to(#ffe537)
  );
  background: -webkit-linear-gradient(
    transparent 60%,
    #ffe537 40%,
    #ffe537 100%
  );
  background: linear-gradient(transparent 60%, #ffe537 40%, #ffe537 100%);
  padding: 0 25px 6px;
}
@media only screen and (max-width: 991px) {
  .miyazaki-custom__title span {
    padding: 0 10px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-custom__title span {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(60%, transparent),
      color-stop(60%, #ffe537),
      to(#ffe537)
    );
    background: -webkit-linear-gradient(
      transparent 60%,
      #ffe537 60%,
      #ffe537 100%
    );
    background: linear-gradient(transparent 60%, #ffe537 60%, #ffe537 100%);
  }
  .miyazaki-custom__title span:nth-child(3) {
    margin-top: 10px;
  }
}
.miyazaki-custom__title span:nth-child(2) {
  margin-top: 10px;
}
.miyazaki-custom__desc {
  font-size: 2rem;
  letter-spacing: 0.005em;
  line-height: 1.7272727273;
}
@media only screen and (max-width: 1199px) {
  .miyazaki-custom__desc {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 991px) {
  .miyazaki-custom__desc {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-custom__desc {
    font-size: 1.6rem;
    line-height: 1.6944444444;
  }
}
.miyazaki-custom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 19px;
  margin-block: 23px 70px;
}
@media only screen and (max-width: 767px) {
  .miyazaki-custom__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-block: 36px 47px;
  }
}
.miyazaki-custom__image {
  width: 100%;
  max-width: 319px;
  padding: 58px 29px;
  border: 3px solid #6f6f6f;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .miyazaki-custom__image {
    max-width: 185px;
    padding: 0;
    border: none;
  }
}

.miyazaki-exhibition {
  max-width: 1290px;
  margin-inline: auto;
  padding-inline: 15px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .miyazaki-exhibition {
    margin-bottom: 125px;
  }
}
@media only screen and (max-width: 425px) {
  .miyazaki-exhibition .miyazaki-custom__title {
    font-size: 2rem;
  }
}
.miyazaki-exhibition__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 575px) {
  .miyazaki-exhibition__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
  }
}
.miyazaki-exhibition__content {
  color: #000;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - 3.75px);
  flex: 0 0 -webkit-calc(25% - 3.75px);
  flex: 0 0 calc(25% - 3.75px);
  max-width: -webkit-calc(25% - 3.75px);
  max-width: calc(25% - 3.75px);
}
@media only screen and (max-width: 767px) {
  .miyazaki-exhibition__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 2.5px);
    flex: 0 0 -webkit-calc(50% - 2.5px);
    flex: 0 0 calc(50% - 2.5px);
    max-width: -webkit-calc(50% - 2.5px);
    max-width: calc(50% - 2.5px);
  }
}
@media only screen and (max-width: 575px) {
  .miyazaki-exhibition__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
}
.miyazaki-exhibition__content-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-block: 17px 14px;
}
@media only screen and (max-width: 991px) {
  .miyazaki-exhibition__content-title {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-exhibition__content-title {
    font-size: 1.9rem;
    margin-block: 12px;
  }
}
.miyazaki-exhibition__content-title span {
  display: block;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  margin-bottom: 5px;
}
.miyazaki-exhibition__content-text {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1199px) {
  .miyazaki-exhibition__content-text {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 991px) {
  .miyazaki-exhibition__content-text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-exhibition__content-text {
    font-size: 1.8rem;
  }
}

.miyazaki-details {
  background-image: url(../img/details/exhibition-bg.jpg);
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 43px;
  padding: 65px 0 50px;
}
@media only screen and (max-width: 767px) {
  .miyazaki-details {
    padding: 45px 0 35px;
  }
  .miyazaki-details .miyazaki-custom__title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 425px) {
  .miyazaki-details .miyazaki-custom__title {
    font-size: 2rem;
  }
}
.miyazaki-details__wpr {
  max-width: 990px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__wpr .miyazaki-custom__title {
    margin-bottom: 35px;
  }
}
.miyazaki-details__text {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 34px;
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__text {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__text {
    font-size: 2.1rem;
    margin-bottom: 20px;
    line-height: 1.380952381;
  }
}
.miyazaki-details__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  margin-bottom: 54px;
}
.miyazaki-details__col {
  max-width: 566px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__col {
    max-width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__col {
    max-width: 100%;
  }
}
.miyazaki-details__img {
  width: -webkit-calc(100% - 550px);
  width: calc(100% - 550px);
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__img {
    width: -webkit-calc(100% - 450px);
    width: calc(100% - 450px);
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__img {
    width: 100%;
    margin-block: 25px 35px;
  }
}
.miyazaki-details__img img {
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__img img {
    margin-inline: auto;
    display: block;
  }
}
.miyazaki-details__desc {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.5681818182;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  word-break: break-all;
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__desc {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__desc {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.miyazaki-details__desc span {
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.miyazaki-details__desc small {
  font-size: 1.8rem;
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__desc small {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__desc.--mb-5 {
    margin-bottom: 5px;
  }
}
.miyazaki-details__desc-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 400 !important;
}
.miyazaki-details__subttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  background-color: #fff5b2;
  padding-left: 10px;
  border-left: 8px solid #ffe537;
  margin-top: 15px;
  margin-bottom: 5px;
  padding-right: 5px;
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__subttl {
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .miyazaki-details__subttl {
    margin-inline: auto;
    font-size: 1.8rem;
    margin-bottom: 17px;
  }
}
.miyazaki-details__req {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media only screen and (max-width: 991px) {
  .miyazaki-details__req {
    font-size: 1.6rem;
  }
}
.miyazaki-details__location {
  max-width: 1290px;
  padding-inline: 15px;
  margin-inline: auto;
}
.miyazaki-details__location iframe {
  border-radius: 30px;
  overflow: hidden;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination__item {
  background-color: var(--color-black);
  height: 30px;
  min-width: 30px;
}
.pagination__item:not(:last-of-type) {
  margin-right: 10px;
}
.pagination__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: var(--color-white);
  height: 100%;
  padding: 7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pagination__item a:hover {
  opacity: 0.7;
}
.pagination__item.-dots {
  background-color: transparent;
  min-width: auto;
}
.pagination__item.-dots a {
  color: var(--color-black);
  padding-left: 0;
  padding-right: 0;
}
.pagination__item.-active {
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
}
.pagination__item.-active a {
  color: var(--color-black);
}
.pagination__item.-prev a,
.pagination__item.-next a {
  position: relative;
  width: auto;
}
.pagination__item.-prev a::after,
.pagination__item.-next a::after {
  content: "";
  background-image: url(../img/pagination-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 6px;
  width: 8px;
  position: absolute;
}
.pagination__item.-prev a {
  padding: 5px 7px 5px 20px;
}
.pagination__item.-prev a:after {
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pagination__item.-next a {
  padding: 5px 20px 5px 7px;
}
.pagination__item.-next a:after {
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
/*# sourceMappingURL=app.css.map */
