@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6666666667vw;
  }
}
@media (min-width: 960px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.9" /><feFuncG type="linear" slope="0.9" /><feFuncB type="linear" slope="0.9" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
ol {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-bg {
  background: url(../images/img_bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 2080px) {
  .l-bg {
    background: url(../images/img_bg.jpg) no-repeat center/100% 100%;
  }
}

.l-drawer {
  pointer-events: initial;
}

.l-drawer-inner {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  z-index: 7777;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.l-drawer-inner.is-open {
  opacity: 1;
}

.l-drawer-inner.is-open {
  pointer-events: initial;
}

.l-drawer nav {
  margin-top: 4.875rem;
}

.l-drawer nav ul li a,
.l-drawer nav ul li p {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.25rem 3.75rem;
  text-transform: uppercase;
}

.l-drawer-language {
  width: 100%;
  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;
  margin-top: 1.875rem;
}

.l-drawer-language li a,
.l-drawer-language li p {
  font-weight: 400 !important;
  padding: 0 !important;
}

.l-drawer-language li:nth-child(2) {
  margin-left: 0.625rem;
}

.l-drawer-language li:nth-child(2) {
  position: relative;
}

.l-drawer-language li:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1.25rem;
  top: 50%;
  left: -0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333;
}

.l-drawer-language .is-active p,
.l-drawer-language .is-active a {
  font-weight: 700 !important;
}

.l-drawer__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  z-index: 3000;
}

/* ハンバーガーメニュー
-----------------------------------------------------*/
.l-drawer-hamburger {
  position: fixed;
  width: 3rem;
  height: 2.75rem;
  top: 0.8125rem;
  right: 1rem;
  background-color: #fff;
  cursor: pointer;
  z-index: 9999;
  border-radius: 100%;
}

.l-drawer-hamburger span {
  position: absolute;
  display: inline-block;
  width: 1.125rem;
  height: 0.125rem;
  right: 0.9375rem;
  background-color: #231815;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.l-drawer-hamburger span:nth-of-type(1) {
  top: 0.9375rem;
}

.l-drawer-hamburger span:nth-of-type(2) {
  top: 1.3125rem;
}

.l-drawer-hamburger span:nth-of-type(3) {
  top: 1.6875rem;
}

/* クリック時
------------------------------------*/
.l-drawer-hamburger.is-open span:nth-of-type(1) {
  top: 1rem;
  left: 0.75rem;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 50%;
}

.l-drawer-hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.l-drawer-hamburger.is-open span:nth-of-type(3) {
  top: 1.75rem;
  left: 0.75rem;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

.l-footer {
  padding: 32px 0 42px;
  -webkit-box-shadow: 0 -5px 5px rgba(0, 0, 0, .2);
          box-shadow: 0 -5px 5px rgba(0, 0, 0, .2);
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .l-footer__inner {
    max-width: 710px;
    width: 100%;
    margin: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
}

.l-footer__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.l-footer__columns:nth-child(2) {
  margin-left: 48px;
}
@media screen and (max-width: 1199px) {
  .l-footer__columns:nth-child(2) {
    margin-left: 0;
  }
}
.l-footer__columns:nth-child(3) {
  margin-left: 96px;
}
@media screen and (max-width: 1199px) {
  .l-footer__columns:nth-child(3) {
    margin-left: 0;
  }
}

.l-footer__text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer__logo-wrap {
  width: 276px;
}

.l-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 6px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 170px));
  }
}

.l-footer__grid-item {
  margin-inline: auto;
}
.l-footer__grid-item:nth-child(1) {
  width: min(100%, 60px);
}
.l-footer__grid-item:nth-child(2) {
  width: min(100%, 170px);
}
.l-footer__grid-item:nth-child(3) {
  width: min(100%, 105px);
}
.l-footer__grid-item:nth-child(4) {
  width: min(100%, 95px);
}
.l-footer__grid-item:nth-child(5) {
  width: min(100%, 93px);
}
.l-footer__grid-item:nth-child(6) {
  width: min(100%, 141px);
}

.l-footer__booster-wrap {
  width: 215px;
  margin-top: 10px;
}

.l-footer__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2px;
  font-size: 14px;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-footer__small {
  position: relative;
  display: block;
  padding-bottom: 11px;
  margin-top: 40px;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid var(--black);
}

.l-header {
  position: fixed;
  top: 1.625rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 9000;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .l-header-inner {
    max-width: 115rem;
    width: 100%;
    height: inherit;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    position: relative;
    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;
    height: inherit;
    background-color: #fff;
    border-radius: 2.5rem;
  }
}

.l-header-lists {
  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;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .l-header-lists {
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .l-header-lists li a {
    font-weight: 500;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .l-header-lists li a {
    font-size: 1rem;
  }
}

.l-header-lists--language {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 3.125rem;
}

.l-header-lists--language li:nth-child(2) {
  position: relative;
}

.l-header-lists--language li:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1.25rem;
  top: 50%;
  left: 0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333;
}

.l-header-lists--language li:nth-child(2) a,
.l-header-lists--language li:nth-child(2) p {
  margin-left: 0.625rem;
}

.l-header-lists--language .is-active {
  font-weight: 700;
}

.l-inner {
  max-width: 31.25rem;
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 960px;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.p-about {
  padding-top: 6.25rem;
  text-align: center;
}

.p-about-content {
  padding: 2.5rem 1.25rem;
  background: url(../images/img_text-bg01.jpg) no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .p-about-content {
    padding-top: 4.1875rem;
    padding-bottom: 3.125rem;
  }
}

.p-about h2 {
  font-size: 1.25rem;
  color: #E4BC00;
}
@media screen and (min-width: 768px) {
  .p-about h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

.p-about p {
  font-size: 0.75rem;
  margin-top: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about p {
    font-size: 1.125rem;
    margin-top: 2.5rem;
    line-height: 2.25rem;
  }
}

.p-booth {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-booth {
    margin-top: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-booth-inner {
    max-width: calc(63rem + 80px);
  }
}

.p-booth h2 img {
  width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-booth h2 img {
    width: 25rem;
  }
}

.p-booth-items__wrap {
  position: relative;
}

.p-booth-items__wrap > img {
  position: absolute;
  width: 11.25rem;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-booth-items__wrap > img {
    width: 14.5rem;
  }
}

.p-booth-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.125rem 2.8125rem;
  margin-top: 3.75rem;
  padding: 1.875rem 1.25rem;
  background-color: #fff;
  border: 0.1875rem solid #E4BC00;
}
@media screen and (min-width: 768px) {
  .p-booth-items {
    grid-template-columns: repeat(2, 1fr);
    padding: 3.75rem 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-booth-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-booth-item__info {
    width: 12.5rem;
  }
}

.p-booth-item__info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-booth-item__info-head p:nth-child(1) {
  position: relative;
  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;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 0.9375rem;
  width: 1.3125rem;
  height: 1.3125rem;
  color: #fff;
  background-color: #003894;
  border-radius: 100%;
  z-index: 1;
}

.p-booth-item__info-head p:nth-child(2) img {
  width: auto;
  width: initial;
  margin-left: 0.5rem;
}

.p-booth-item__info-bottom {
  margin-top: 0.625rem;
}

.p-booth-item__info-bottom h3 {
  font-size: 1rem;
  color: #211815;
}

.p-booth-item__info-bottom p {
  font-size: 0.75rem;
  color: #211815;
  margin-top: 0.3125rem;
  margin-bottom: 0.1875rem;
  line-height: 1.0625rem;
}

.p-booth-item__info-bottom span {
  display: block;
  font-size: 0.625rem;
  color: #2980AB;
}

.p-booth-item__img {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-booth-item__img {
    width: calc(100% - 13.3125rem);
  }
}

.p-for-kids {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-for-kids {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-for-kids-inner {
    max-width: calc(62.5rem + 80px);
  }
}

.p-for-kids h2 img {
  width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-for-kids h2 img {
    width: 25rem;
  }
}

.p-for-kids__character {
  margin-top: 1.875rem;
  padding: 0.9375rem 1.25rem;
  background-color: #fff;
  border: 0.1875rem solid #E4BC00;
}
@media screen and (min-width: 768px) {
  .p-for-kids__character {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.5rem;
    padding: 2.1875rem 1.25rem 2.1875rem 2.5rem;
  }
}

.p-for-kids__character-info p {
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-for-kids__character-info p {
    font-size: 1.375rem;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .p-for-kids__character-info p + p {
    margin-top: 0.625rem;
  }
}

.p-for-kids__character-info p span {
  font-size: 1.125rem;
  color: #003894;
}
@media screen and (min-width: 768px) {
  .p-for-kids__character-info p span {
    font-size: 1.5625rem;
  }
}

.p-for-kids__character-text {
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 1.25rem;
  color: #003894;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-for-kids__character-text {
    font-size: 1.875rem;
    margin-top: 1.6875rem;
    text-align: left;
  }
}

.p-for-kids__character-img {
  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;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-for-kids__character-img {
    width: calc(100% - 40.1875rem);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-top: 0;
  }
}

.p-for-kids__character-img img:nth-child(1) {
  width: 6.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .p-for-kids__character-img img:nth-child(1) {
    width: 5rem;
  }
}

.p-for-kids__character-img img:nth-child(2) {
  width: 11.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .p-for-kids__character-img img:nth-child(2) {
    width: 8.75rem;
  }
}

.p-for-kids__making {
  margin-top: 1.875rem;
  padding: 0.9375rem 1.25rem;
  background-color: #fff;
  border: 0.1875rem solid #E4BC00;
}
@media screen and (min-width: 768px) {
  .p-for-kids__making {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.5rem;
    padding: 2.5rem 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-for-kids__making-left {
    width: calc(100% - 29.8125rem);
    margin-right: 4.8125rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1080px) {
  .p-for-kids__making-left {
    width: calc(100% - 21.875rem);
    margin-right: 3.125rem;
  }
}

.p-for-kids__making-text h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #003894;
}
@media screen and (min-width: 768px) {
  .p-for-kids__making-text h3 {
    font-size: 1.5625rem;
  }
}

.p-for-kids__making-text p {
  font-size: 0.75rem;
  margin-top: 0.625rem;
  line-height: 1.0625rem;
}

.p-for-kids__making-info {
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-for-kids__making-info {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}

.p-for-kids__making-sponsor {
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-for-kids__making-sponsor {
    font-size: 1.25rem;
  }
}

.p-for-kids__making img {
  width: 25rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-for-kids__making img {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .p-for-kids__making img {
    width: 18.75rem;
  }
}

.p-fv {
  height: 31.25rem;
  background: url(../images/img_fv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-fv {
    height: 50.9375rem;
  }
}

.p-fv-inner {
  position: relative;
  max-width: 102rem;
  width: 100%;
  height: inherit;
  margin-left: auto;
  margin-right: auto;
}

.p-fv-text {
  position: absolute;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: bold;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-fv-text {
    top: calc(50% + 3.3125rem);
    padding-left: 40px;
    padding-right: 40px;
  }
}

.p-fv-text p:nth-child(1) {
  font-size: 3.75rem;
  line-height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv-text p:nth-child(1) {
    font-size: 8.125rem;
    line-height: 8.125rem;
  }
}

.p-fv-text p:nth-child(1) span {
  font-size: 2.5rem;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .p-fv-text p:nth-child(1) span {
    font-size: 6.5rem;
  }
}

.p-fv-text p:nth-child(2) {
  font-size: 1.875rem;
  margin-top: 1.25rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-fv-text p:nth-child(2) {
    font-size: 4.625rem;
    margin-top: 4.25rem;
    line-height: 8.125rem;
  }
}

.p-overview {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-overview {
    padding-top: 5.625rem;
    padding-bottom: 3.5rem;
  }
}

.p-overview h2 {
  position: relative;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-overview h2 {
    font-size: 1.875rem;
  }
}

.p-overview h2::after {
  position: absolute;
  content: "";
  width: 5rem;
  height: 0.1875rem;
  bottom: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #003894;
}
@media screen and (min-width: 768px) {
  .p-overview h2::after {
    width: 7.6875rem;
    bottom: -0.8125rem;
  }
}

.p-overview-info {
  margin-top: 2.625rem;
}

.p-overview-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-size: 0.875rem;
}

.p-overview-info dl + dl {
  margin-top: 0.75rem;
}

.p-overview-info dl dt {
  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;
  width: 5.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  color: #fff;
  background-color: #333;
  text-align: center;
}

.p-overview-info dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 5.625rem);
  margin-left: 0.1875rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-left: 0.3125rem;
  border-bottom: 1px solid #333;
}

.p-overview-map {
  margin-top: 2rem;
}

.p-overview-map iframe {
  width: 100%;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-overview-map iframe {
    width: 55rem;
    height: 19.4375rem;
  }
}

.p-recommend {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-recommend {
    margin-top: 6.25rem;
  }
}

.p-recommend h2 {
  text-align: center;
}

.p-recommend h2 p {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-recommend h2 p {
    font-size: 1.75rem;
  }
}

.p-recommend h2 p::before,
.p-recommend h2 p::after {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1px;
  top: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-recommend h2 p::before,
  .p-recommend h2 p::after {
    width: 1.875rem;
  }
}

.p-recommend h2 p::before {
  left: -2rem;
  -webkit-transform: translateY(-50%) rotate(50deg);
          transform: translateY(-50%) rotate(50deg);
}
@media screen and (min-width: 768px) {
  .p-recommend h2 p::before {
    left: -3.125rem;
  }
}

.p-recommend h2 p::after {
  right: -2rem;
  -webkit-transform: translateY(-50%) rotate(-50deg);
          transform: translateY(-50%) rotate(-50deg);
}
@media screen and (min-width: 768px) {
  .p-recommend h2 p::after {
    right: -3.125rem;
  }
}

.p-recommend ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recommend ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
}

.p-recommend ul li {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 11.25rem;
  height: 11.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #fff;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .p-recommend ul li {
    width: 16.25rem;
    height: 16.25rem;
  }
}

.p-recommend ul li img {
  width: 5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-recommend ul li img {
    width: 7.375rem;
  }
}

.p-recommend ul li:nth-child(3) img {
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-recommend ul li:nth-child(3) img {
    width: 5rem;
  }
}

.p-recommend ul li p {
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recommend ul li p {
    font-size: 1.25rem;
  }
}

.p-recommend--en ul li p {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-recommend--en ul li p {
    font-size: 1.1875rem;
  }
}

.p-store {
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-store {
    margin-top: 4.375rem;
    padding-bottom: 5.625rem;
  }
}

.p-store h2 img {
  width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-store h2 img {
    width: 25rem;
  }
}

.p-store-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-store-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
  }
}

.p-store-item {
  height: 100%;
}

.p-store-item a {
  position: relative;
  display: inline-block;
  min-height: 16.5625rem;
  height: inherit;
  padding: 0.8125rem;
  background-color: #fff;
}

.p-store-item a::after {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  bottom: 0.8125rem;
  right: 0.8125rem;
  background: url(../images/icon_target-blank.svg) no-repeat center/contain;
}

.p-store-item__head {
  position: relative;
  height: 4.375rem;
}

.p-store-item__head p:nth-child(1) {
  position: relative;
  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;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1rem;
  width: 1.4375rem;
  height: 1.4375rem;
  color: #fff;
  background-color: #003894;
  border-radius: 100%;
  z-index: 1;
}

.p-store-item__head p:nth-child(2) {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-store-item__head p:nth-child(2) img {
  width: auto;
  width: initial;
  margin-left: auto;
  margin-right: auto;
}

.p-store-item__bottom {
  margin-top: 0.625rem;
  color: #211815;
}

.p-store-item__bottom h3 {
  font-size: 1rem;
  line-height: 1.25rem;
}

.p-store-item__bottom p {
  font-size: 0.75rem;
  margin-top: 0.625rem;
  line-height: 1.0625rem;
}

.p-store-text {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: url(../images/img_text-bg02.jpg) no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .p-store-text {
    margin-top: 3.75rem;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.p-store-text p {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-store-text p {
    font-size: 1.125rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
