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

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

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    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 {
  padding-bottom: 2.5rem;
  background: url(../images/bg.webp) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .l-bg {
    padding-bottom: 5rem;
  }
}

.l-contents {
  margin-top: 2rem;
}

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

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

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

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

.l-drawer nav {
  margin-top: 4.875rem;
  border-bottom: 1px solid #fff;
}

.l-drawer nav ul li {
  border-top: 1px solid #fff;
}

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

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

/* ハンバーガーメニュー
-----------------------------------------------------*/
.l-drawer-hamburger {
  position: fixed;
  width: 3.125rem;
  height: 2.875rem;
  top: 0.4375rem;
  right: 0.625rem;
  cursor: pointer;
  z-index: 9999;
}

.l-drawer-hamburger span {
  position: absolute;
  display: inline-block;
  width: 1.125rem;
  height: 0.125rem;
  right: 0.9375rem;
  background-color: #000;
  -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 {
  background-color: #fff;
}

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

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

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

.l-drawer-btn {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}

.l-drawer-btn li + li {
  margin-top: 1rem;
}

.l-drawer-lang {
  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: 1.5rem;
  margin-top: 1.5rem;
}

.l-drawer-lang li a {
  position: relative;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1rem;
  color: #fff;
}

.l-drawer-lang li:last-child a::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 1.25rem;
  top: 50%;
  left: -0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}

.l-footer {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .l-footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -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;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer-items {
    gap: 4.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-footer-item.is-grid ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 0;
}

.l-footer-item p {
  font-weight: 300;
  font-size: 1rem;
}

.l-footer-item ul {
  margin-top: 0.75rem;
}

.l-footer-item ul li img {
  margin-left: auto;
  margin-right: auto;
}

.l-footer-item__link {
  text-align: center;
}

.l-footer-item__link a {
  font-weight: 300;
  font-size: 0.875rem;
  color: #1d1068;
  text-decoration: underline;
}

.l-footer-item__link p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.l-footer-copy {
  font-weight: 300;
  font-size: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-copy {
    margin-top: 2.5rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, .9);
  z-index: 9000;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}

.l-header-inner {
  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;
  height: inherit;
  padding: 0.5rem 1.375rem;
}

.l-header h1 {
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-header h1 {
    width: 8.25rem;
  }
}

.l-header-menu,
.l-header-menu__lists,
.l-header-menu__btn,
.l-header-menu__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header-menu__lists {
  gap: 3rem;
}

.l-header-menu__lists li a {
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1.375rem;
}

.l-header-menu__btn {
  gap: 0.75rem;
  margin-left: 3.625rem;
}

.l-header-menu__lang {
  gap: 1.5rem;
  margin-left: 1.125rem;
}

.l-header-menu__lang li a {
  position: relative;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1.375rem;
}

.l-header-menu__lang li:last-child a::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 1.25rem;
  top: 50%;
  left: -0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #000;
}

.l-inner {
  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: calc(55rem + 50px);
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.l-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-modal-box {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90vw;
  max-height: 90dvh;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 4rem 2rem 3rem;
  z-index: 1;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-modal-box {
    max-width: 53.4375rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 6.25rem 3.75rem 3.75rem;
  }
}

.l-modal-scroll {
  min-height: 0;
  padding-bottom: 0.625rem;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.l-modal-scroll::-webkit-scrollbar {
  display: none;
}

.l-modal-title p {
  font-weight: bold;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-modal-title p {
    font-size: 2rem;
  }
}

.l-modal-head p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-modal-head p {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

.l-modal-contents p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-modal-contents p {
    margin-top: 2rem;
  }
}

.l-modal-contents p span.is-bold {
  font-weight: bold;
}

.l-modal-contents p span.is-red {
  color: #ba1c24;
}

.l-modal-contents p span.is-blue {
  color: #5ac3e1;
}

.l-modal-box .c-btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-modal-box .c-btn {
    margin-top: 2rem;
  }
}

.l-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
}

.l-modal-close::before,
.l-modal-close::after {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 2rem;
  top: 50%;
  left: 50%;
  background-color: #000;
}

.l-modal-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.l-modal-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.l-modal-overflow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
}

.js-modal-panel {
  display: none;
}

.js-modal-panel.is-show {
  display: block;
}

.l-section {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 8.125rem;
  }
}

.c-btn a {
  position: relative;
  display: inline-block;
  min-width: 8.4375rem;
  font-weight: 300;
  font-size: 0.875rem;
  padding: 0.4375rem 2rem 0.4375rem 1.5rem;
  color: #fff;
  background-color: #f39800;
  border-radius: 6.25rem;
  -webkit-box-shadow: 0 0.25rem 0.125rem #000;
          box-shadow: 0 0.25rem 0.125rem #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn a {
    min-width: 10.875rem;
    font-size: 1rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.c-btn a::after {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.75rem;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/arrow-white.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-btn a::after {
    width: 0.625rem;
    height: 0.9375rem;
    right: 0.9375rem;
  }
}

.c-title {
  text-align: center;
}

.c-title h2 {
  display: inline-block;
  position: relative;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 2rem;
  padding-bottom: 0.625rem;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title h2 {
    font-size: 2.375rem;
    padding-bottom: 0.9375rem;
  }
}

.c-title h2::after {
  position: absolute;
  content: "";
  width: 5rem;
  height: 0.125rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/title-border.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-title h2::after {
    width: 7.6875rem;
    height: 0.1875rem;
  }
}

.c-title p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: #fff;
  line-height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-title p {
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.75rem;
  }
}

.p-about {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  background: url(../images/about01.webp) no-repeat bottom left/contain;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .5);
  }
}

@media screen and (max-width: 767px) {
  .p-about-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-about-inner {
    margin-left: 50%;
  }
}

.p-about-text {
  position: relative;
  z-index: 1;
}

.p-about-text h2 {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about-text h2 {
    font-size: 1.75rem;
  }
}

.p-about-text p {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 0.875rem;
  margin-top: 2rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about-text p {
    font-size: 1.125rem;
    margin-top: 3.25rem;
  }
}

.p-access-map {
  margin-top: 1.5rem;
}

.p-access-map iframe {
  width: 100%;
}

.p-contents-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-contents-inner {
    max-width: calc(74rem + 50px);
    padding-left: 25px;
    padding-right: 25px;
  }
}

.p-contents-lists {
  display: grid;
  gap: 2rem 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contents-lists {
    gap: 3rem;
    margin-top: 2rem;
  }
}

.p-contents-lists.is-top {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-contents-lists.is-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-contents-lists.is-bottom {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-contents-lists.is-bottom {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-contents-lists h3 {
  position: relative;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1.25rem;
  margin-top: 0.75rem;
  padding-bottom: 0.4375rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contents-lists h3 {
    font-size: 1.75rem;
  }
}

.p-contents-lists h3 span {
  font-family: "Noto Sans", sans-serif;
}

.p-contents-lists h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.125rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/subtitle-border.webp) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-contents-lists h3::after {
    height: 0.1875rem;
  }
}

.p-contents-lists li > p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: #fff;
}

.p-contents-lists__box {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #000;
  border: 0.0625rem solid #fff;
}
@media screen and (min-width: 768px) {
  .p-contents-lists__box {
    margin-top: 1.375rem;
    padding: 1.125rem;
  }
}

.p-contents-lists__box p {
  font-weight: 300;
  font-size: 0.75rem;
  color: #fff;
}

.p-contents-lists__box p span {
  font-weight: 300;
  font-size: 0.8125rem;
}

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

.p-fv::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, .4);
}

.p-fv-box {
  position: relative;
  padding-top: 5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-fv-box {
    padding-top: 7.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-fv-box img {
    width: 47.1875rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-fv-box p {
  font-family: "din-2014-narrow", sans-serif;
  font-size: 3rem;
  margin-top: 0.625rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="17" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0.625rem 0.25rem #000);
          filter: drop-shadow(0px 0.625rem 0.25rem #000);
}
@media screen and (min-width: 768px) {
  .p-fv-box p {
    font-size: 3.8125rem;
  }
}

.p-fv-box p .is-sm {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv-box p .is-sm {
    font-size: 2.625rem;
  }
}

.p-fv-box p .is-md {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: bold;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv-box p .is-md {
    font-size: 2.8125rem;
  }
}

.p-fv-news {
  position: relative;
  margin-top: 2.8125rem;
  padding-top: 1.625rem;
  padding-bottom: 1.625rem;
  background-color: rgba(0, 0, 0, .75);
  z-index: 1;
}

.p-fv-news li {
  position: relative;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 1rem;
  color: #fff;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-fv-news li {
    font-size: 1.5rem;
    padding-left: 1.25rem;
  }
}

.p-fv-news li::before {
  position: absolute;
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  top: 0.625rem;
  left: 0;
  background-color: #fff;
  border-radius: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-fv-news li::before {
    width: 0.625rem;
    height: 0.625rem;
    top: 0.9375rem;
  }
}

.p-movie-youtube iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-movie-youtube iframe {
    height: 18.75rem;
  }
}

.p-outline-dl {
  padding: 0.75rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-outline-dl {
    padding: 1.25rem;
  }
}

.p-outline-dl__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.25rem;
}

.p-outline-dl__info + .p-outline-dl__info {
  margin-top: 0.625rem;
}

.p-outline-dl__info dt,
.p-outline-dl__info dd {
  font-weight: 300;
  font-size: 0.875rem;
}

.p-outline-dl__info 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: 0.125rem 1.0625rem;
  color: #fff;
  background-color: #333;
  text-align: center;
}

.p-outline-dl__info dd {
  width: calc(100% - 5.875rem);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.5rem;
  border-bottom: 0.0625rem solid #ccc;
}

.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 */
