@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@1,400..700&display=swap');
:root {
  --color_main: #2B1EA6;
  --color_main-thin: #6173D5;
  --color_sub: #60BCED;
  --color_sub-pale: #ECF7FD;
  --color_red: #BF1304;
  --color_red-thin: #EF1D4D;
  --color_brown: #551700;
  --color_brown-thin: #A35100;
  --text-color_main: #333333;
  --border_color: rgb(0 0 0 / 12%);
  --ff-en: "STIX Two Text", serif;
  --shadow-s: 0 0 4px rgb(0 0 0 / 20%);
  --shadow-m: 0 2px 12px rgb(0 0 0 / 20%);
  --header-h: 48px;
  --content-padding: 16px;
  --content-width: 1200px;
}
@media all and (min-width: 600px) {
  :root {
    --header-h: 64px;
    --content-padding: 24px;
  }
}
@media all and (min-width: 960px) {
  :root {
    --header-h: min(8vw, 100px);
    --content-padding: min(2.4vw, 40px);
  }
}
ol,
ul {
  list-style: none;
}
img {
  vertical-align: bottom;
}
* {
  box-sizing: border-box;
  margin-top: 0;
}
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: #ffffff;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  font-feature-settings: "pwid";
  color: var(--text-color_main);
  letter-spacing: 0.05em;
  overflow-x: hidden;
}
@media not all and (min-width: 400px) {
  body {
    font-size: 4vw;
  }
}
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition-property: color, background;
  transition-duration: 0.3s;
}
a > img {
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}
a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}
a:link {
  color: var(--color_main);
}
a:visited {
  color: var(--color_main);
}
a:hover {
  color: var(--color_main-thin);
}
a:active {
  color: var(--color_main);
}
ol,
ul {
  padding-left: 0;
}
li {
  margin-bottom: 0.5em;
}
li:last-of-type {
  margin-bottom: 0;
}
h2 {
  margin-top: 0;
  margin-bottom: calc(1em + 8px);
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 700;
}
@media all and (min-width: 600px) {
  h2 {
    font-size: 1.75em;
  }
}
@media all and (min-width: 960px) {
  h2 {
    font-size: 2em;
  }
}
h3 {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.375em;
  line-height: 1.5;
  font-weight: 700;
}
@media all and (min-width: 600px) {
  h3 {
    font-size: 1.5em;
  }
}
@media all and (min-width: 1000px) {
  h3 {
    font-size: 1.75em;
  }
}
h4 {
  margin-top: 0;
  margin-bottom: 0.75em;
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 700;
}
@media all and (min-width: 600px) {
  h4 {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1000px) {
  h4 {
    font-size: 1.5em;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.l-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--content-padding);
  padding-left: var(--content-padding);
  max-width: calc(var(--content-width, 1200px) + var(--content-padding) * 2);
}
.fl-wrap {
  display: flex;
  flex-wrap: wrap;
}
.fl-nowrap {
  display: flex;
  flex-wrap: nowrap;
}
.fl-sb {
  justify-content: space-between;
}
.fl-sa {
  justify-content: space-around;
}
.fl-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fl-center__item {
  display: block;
}
table {
  display: block;
  width: 100%;
  border: none;
  border-spacing: 1px;
}
table thead,
table tbody,
table tr,
table th,
table td {
  display: block;
  width: 100%;
}
table th {
  border-right: 0;
  padding: .5em 1em;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
table td {
  padding: .5em 1em;
  text-align: left;
}
@media all and (min-width: 600px) {
  table {
    display: table;
  }
  table thead,
  table tbody {
    display: table-header-group;
  }
  table tr {
    display: table-row;
  }
  table th,
  table td {
    display: table-cell;
  }
  table th {
    padding: 1em 1.5em;
    width: auto;
  }
  table td {
    padding: 1em 1.5em;
    width: auto;
  }
}
.is-pc {
  display: none;
}
@media all and (min-width: 960px) {
  .is-pc {
    display: block;
  }
}
.is-tab {
  display: none;
}
@media all and (min-width: 600px) {
  .is-tab {
    display: block;
  }
}
@media all and (min-width: 600px) {
  .is-sp {
    display: none;
  }
}
/* Layout
 * ========================================================================== */
/* Header
 ----------------- */
.l-header__top {
  position: fixed;
  top: 0;
  background: white;
  width: 100%;
  height: var(--header-h);
  z-index: 10;
}
.l-header__top .l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  height: 100%;
}
.l-header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-shrink: 1;
  font-size: 1em;
  margin: 0 auto 0 0;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: auto;
  height: 32px;
  vertical-align: top;
}
@media all and (min-width: 600px) {
  .l-header__top .l-container {
    padding-left: 16px;
  }
  .l-header__logo img {
    height: 48px;
  }
}



.l-header__logo_en {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-shrink: 1;
  font-size: 1em;
  margin: 0 auto 0 0;
}
.l-header__logo_en a {
  display: block;
}
.l-header__logo_en img {
  width: auto;
  height: 31px;
  vertical-align: top;
}
@media all and (min-width: 600px) {
  .l-header__top .l-container {
    padding-left: 16px;
  }
  .l-header__logo_en img {
    height: 50px;
  }
}








@media all and (min-width: 960px) {
  .l-header__top .l-container {
    max-width: 100%;
    padding: 0 min(2.4vw, 40px);
    align-items: stretch;
  }
  .l-header__top__left {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    width: min(20vw, 356px);
    padding: 22px 0;
  }
  .l-header__top__center {
    display: flex;
    flex-grow: 1;
    padding-right: min(20vw, 356px);
  }
  .l-header__logo {
    align-items: center;
  }
  .l-header__logo img {
    width: 100%;
    height: auto;
    max-height: 56px;
  }
}
.l-copy {
  padding-top: .75rem;
  padding-bottom: .75rem;
  background: var(--color_main);
  font-size: 0.875em;
}
.l-copy p {
  margin: 0 auto;
  text-align: center;
}
.l-copy a {
  color: white;
}
/* Component
 * ========================================================================== */
.c-section {
  padding-top: 4em;
}
.c-section--hasbg {
  padding-bottom: 4em;
}
.c-section--hasbg.is-bg--sub-pale {
  background-color: var(--color_sub-pale);
}
@media all and (min-width: 600px) {
  .c-section {
    padding-top: 5em;
  }
  .c-section--hasbg {
    padding-bottom: 5em;
  }
}
@media all and (min-width: 960px) {
  .c-section {
    padding-top: 7em;
  }
  .c-section--hasbg {
    padding-bottom: 7em;
  }
}
.c-section__block {
  padding-top: 2.5em;
}
@media all and (min-width: 600px) {
  .c-section__block {
    padding-top: 4em;
  }
}
@media all and (min-width: 960px) {
  .c-section__block {
    padding-top: 5em;
  }
}
.c-sec-title {
  display: flex;
  flex-direction: column-reverse;
}
.c-sec-title.is-center {
  text-align: center;
}
.c-sec-title__main {
  color: var(--color_main);
  font-size: 1.125em;
}
.c-sec-title.is-ondark .c-sec-title__main {
  color: white;
}
.c-sec-title__sub {
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--color_sub);
  font-family: var(--ff-en);
  font-size: 3em;
  font-weight: 400;
  font-style: italic;
  text-transform: capitalize;
}
@media all and (min-width: 960px) {
  .c-sec-title__main {
    font-size: 1.25em;
  }
  .c-sec-title__sub {
    font-size: 3.5em;
  }
}
h2.c-headline {
  display: inline-flex;
  column-gap: 1.25em;
  margin-bottom: 1em;
  color: var(--color_main);
  font-size: clamp(1.2rem, 3vw, 2rem);
  white-space: nowrap;
}
h2.c-headline::before,
h2.c-headline::after {
  content: "";
  display: block;
  width: 2px;
  height: 1.5em;
  border-radius: 2px;
  background-color: var(--color_main);
}
h2.c-headline::before {
  align-self: flex-start;
  background-image: linear-gradient(to bottom, var(--color_sub), var(--color_main) 100%);
  transform-origin: left bottom;
  transform: rotate(30deg) translateY(-.125em);
}
h2.c-headline::after {
  align-self: flex-end;
  background-image: linear-gradient(to top, var(--color_sub), var(--color_main) 100%);
  transform-origin: right top;
  transform: rotate(30deg) translateY(.125em);
}
.c-btn {
  display: block;
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
}
.c-btn--pagetop {
  display: block;
  position: fixed;
  right: 16px;
  bottom: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color_main);
  background-color: white;
  box-shadow: var(--shadow-s);
  z-index: 10;
  transition-property: box-shadow, opacity;
  overflow: hidden;
  opacity: .8;
}
.c-btn--pagetop::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color_main);
  border-left: 2px solid var(--color_main);
  transform: rotate(45deg);
}
.c-btn--pagetop:hover,
.c-btn--pagetop:focus {
  box-shadow: var(--shadow-m);
  opacity: 1;
}
a.c-btn--pagetop {
  color: rgba(255, 255, 255, 0);
  font-size: 0.875rem;
}
@media all and (min-width: 600px) {
  .c-btn--pagetop {
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
  }
  .c-btn--pagetop::after {
    width: 12px;
    height: 12px;
  }
}
.c-btn--link {
  position: relative;
  display: inline-block;
  font-size: 1.125em;
}
.c-btn--link.is-align--left {
  margin-left: auto;
  margin-right: 0;
}
.c-btn--link::before,
.c-btn--link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.c-btn--link::before {
  width: 100%;
  height: 1px;
  background-color: var(--color_sub);
}
.c-btn--link::after {
  width: 0;
  height: 2px;
  background-color: var(--color_main);
  transition: width 0.25s;
}
.c-btn--link:hover::after {
  width: 100%;
}
.c-btn--link a {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0.5em 4.5em .5em .75em;
  width: 100%;
  line-height: 1.5;
  text-decoration: none;
  color: var(--color_main);
}
.c-btn--link a:hover {
  color: var(--color_main-thin);
}
.c-btn--link a::before,
.c-btn--link a::after {
  content: '';
  position: absolute;
  top: 0;
  right: .75em;
  bottom: 0;
  margin: auto;
}
.c-btn--link a::before {
  width: 3em;
  height: 1px;
  background-color: currentColor;
}
.c-btn--link a::after {
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-bottom: 4px solid currentColor;
  transform: translateY(-50%);
}
@media all and (min-width: 960px) {
  .c-btn--link a {
    padding: .75em 5em .75em 1em;
  }
  .c-btn--link a::before,
  .c-btn--link a::after {
    right: 1em;
  }
}
.c-column__item:not(:last-child) {
  margin-bottom: 1.5em;
}
@media all and (min-width: 600px) {
  .c-column {
    display: flex;
    gap: var(--the-gap, 0);
  }
  .c-column__item {
    margin-bottom: 0;
  }
  .c-column.is-2col .c-column__item {
    width: calc((100% - var(--the-gap, 0)) / 2);
  }
}
.c-box {
  padding: 1.5em 1.25em;
  background-color: #fff;
    color: #000;
}
@media all and (min-width: 600px) {
  .c-box {
    padding: 1.5rem 4vw;
  }
}
@media all and (min-width: 960px) {
  .c-box {
    padding: 2rem 2.5rem;
    color: #000;
    text-align: center;
  }
}
.c-box > *:last-of-type {
  margin-bottom: 0;
}
@media all and (min-width: 960px) {
  .c-box--slim {
    padding: 2rem 6vw;
  }
}
@media all and (min-width: 1000px) {
  .c-box--slim {
    padding: 2.5rem 5rem;
  }
}
.c-captionBox__caption {
  display: block;
  padding: .75rem 1rem;
  margin-bottom: 0;
  background-color: var(--color_main);
  color: white;
  line-height: 1.5;
}
.c-captionBox__body {
  padding: 1.25rem;
  background-color: white;
}
.c-captionBox__body > *:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 960px) {
  .c-captionBox__body {
    padding: 1.5rem 1.25rem;
  }
}
.c-media {
  display: flex;
  flex-direction: column;
  gap: var(--the-gap, 1.5em);
}
.c-media__figure {
  margin: 0;
}
.c-media__figure img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 600px) {
  .c-media {
    flex-direction: row;
    align-items: center;
    --the-gap: min(3.2vw, 48px);
    --the-fig-width: 50%;
  }
  .c-media--reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .c-media__figure {
    width: var(--the-fig-width);
  }
  .c-media__body {
    width: calc(100% - var(--the-fig-width, 50%) - var(--the-gap, 48px) / 2);
  }
}
@media all and (min-width: 960px) {
  .c-media {
    --the-gap: min(6vw, 80px);
  }
}
.c-tbl--default th {
  color: var(--color_main);
  border-top: 2px solid var(--color_sub);
}
.c-tbl--default td {
  border-top: 2px solid var(--border_color);
}
.c-tbl--default tr:last-child td {
  border-bottom: 2px solid var(--border_color);
}
@media all and (min-width: 600px) {
  .c-tbl--default tr:last-child th {
    border-bottom: 2px solid var(--color_sub);
  }
}
@media all and (min-width: 960px) {
  .c-tbl--default th {
    width: var(--the-th-width, 20%);
  }
}
.c-pagetitle {
  position: relative;
  margin-top: var(--header-h);
}
.c-pagetitle::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 100%;
  background-color: var(--color_sub-pale);
  z-index: -1;
}
.c-pagetitle__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
.c-pagetitle__main {
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.25em;
  color: var(--color_main)
}
.c-pagetitle__inner {
  position: relative;
}
.c-pagetitle__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100vw - 100%);
  height: 1px;
  margin: auto;
  background-color: var(--color_main);
  transform: translateX(-100%);
}
.c-pagetitle__sub {
  margin-bottom: 0;
  line-height: 1;
  color: var(--color_sub);
  font-family: var(--ff-en);
  font-size: 3em;
  font-weight: 400;
  font-style: italic;
  text-transform: capitalize;
}
.c-pagetitle__mv {
  width: calc(100% - var(--content-padding));
  height: 180px;
}
.c-pagetitle__mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (min-width: 600px) {
  .c-pagetitle__inner {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .c-pagetitle__sub {
    font-size: 4em;
  }
  .c-pagetitle__mv {
    height: 280px;
  }
}
@media all and (min-width: 960px) {
  .c-pagetitle__inner {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .c-pagetitle__main {
    font-size: 1.5em;
  }
  .c-pagetitle__sub {
    font-size: min(6vw, 4em);
  }
  .c-pagetitle__mv {
    height: min(32vw, 400px);
  }
}
@media all and (min-width: 1280px) {
  .c-pagetitle__mv {
    width: calc(50vw + var(--content-width) / 2);
  }
}
.c-breadcrumbs {
  position: relative;
  padding: .75em 0;
  font-size: 12px;
  line-height: 1.5;
}
.c-breadcrumbs::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 100%;
  background-color: var(--color_sub-pale);
  z-index: -1;
}
.c-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.c-breadcrumbs ul li {
  margin-bottom: 0;
}
.c-breadcrumbs ul li:not(:first-child) {
  position: relative;
  padding-left: 16px;
}
.c-breadcrumbs ul li:not(:first-child)::before {
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--text-color_main);
  border-right: 1px solid var(--text-color_main);
  transform: rotate(45deg);
  opacity: .6;
}
.c-breadcrumbs ul li:last-child {
  opacity: .6;
}
.c-breadcrumbs__item {
  display: block;
  padding: 2px 4px 2px 0;
}
@media all and (min-width: 600px) {
  .c-breadcrumbs {
    font-size: 14px;
  }
}
/** Project
* =============================================**/
.p-gnav li {
  width: 100%;
  margin: 0;
}
.p-gnav .drawer-brand {
  line-height: 1.5;
  padding: .75em;
  text-align: center;
  border-bottom: 1px solid var(--border_color);
}
.p-gnav .drawer-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.75em 1em;
  border-bottom: 1px solid var(--border_color);
  color: var(--text-color_main)
}
.p-gnav a:not(.drawer-brand)::after {
  position: absolute;
  display: block;
  right: 16px;
  top: 0;
  bottom: 0;
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin: auto;
  transform: rotate(45deg);
  border-top: 2px solid;
  border-right: 2px solid;
  border-radius: 1px;
  border-color: var(--color_sub);
  transition: all 0.3s;
}
.p-gnav a.drawer-menu-item:hover {
  background-color: var(--color_sub-pale);
  text-decoration: none;
}
.drawer-open .l-header__top::before {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.p-header__translate {
  padding-right: var(--header-h);
}
.p-header__translate a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: var(--header-h);
  height: var(--header-h);
  letter-spacing: 0;
}
.p-header__translate a:hover {
  color: var(--color_main);
}
.p-header__translate a > .text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}
@media all and (min-width: 960px) {
  .p-gnav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-right: 0;
    align-items: stretch;
    height: 100%;
    white-space: nowrap;
  }
  .p-gnav li {
    display: block;
    flex-grow: 1;
    width: auto;
    padding: 0;
  }
  .p-gnav a:not(.drawer-brand)::after {
    top: unset;
    left: 0;
    right: unset;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color_main);
    border: none;
    transform: translate(0);
  }
  .p-gnav a.drawer-menu-item {
    border-bottom: 0;
    font-weight: bold;
    font-size: min(1.4vw, 16px);
  }
  .p-gnav a.drawer-menu-item:hover {
    background-color: transparent;
    color: var(--color_main)
  }
  .p-gnav a.drawer-menu-item:hover::after {
    width: 100%;
  }
  .drawer-nav {
    position: static;
    padding-left: 0;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .drawer-toggle,
  .p-gnav .drawer-brand {
    display: none;
  }
  .p-header__translate {
    padding-right: 0;
  }
  .p-header__translate a {
    position: fixed;
    right: min(2.4vw, 40px);
    flex-direction: row;
    width: auto;
    height: auto;
    margin-top: -1px;
    padding: .25em 1.5em;
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--color_main);
    border-top: 1px solid transparent;
    box-shadow: var(--shadow-s);
    transition: box-shadow .3s;
  }
  .p-header__translate a > .text {
    margin-left: 4px;
    font-size: .875em;
  }
  .p-header__translate a:hover {
    box-shadow: var(--shadow-m);
  }
}
.p-cta {
  background: url("../img/bg_contact.jpg?0226") center no-repeat;
  background-size: cover;
  color: white;
}
.p-cta__column {
  width: min(92%, 480px);
  margin-inline: auto;
}
.p-cta__column__text {
  font-weight: 700;
}
.p-cta__column__tel {
  white-space: nowrap;
  text-align: center;
}
.p-cta__column__tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  line-height: 1.25;
  font-size: 2em;
  font-weight: 700;
}
.p-cta__column__tel img {
  width: 1em;
  height: auto;
  margin-right: 4px;
  vertical-align: middle;
}
.p-cta__column__tel a:hover img {
  opacity: 1;
}
@media all and (min-width: 600px) {
  .p-cta__column {
    width: min(100%, 760px);
    --the-gap: min(3.2vw, 48px);
  }
  .p-cta__column::before {
    content: "";
    display: block;
    width: 1px;
    background-color: rgb(255 255 255 / 60%);
  }
  .p-cta__column__text {
    padding: .25em 0;
    order: -1;
  }
  .p-cta__column .c-column__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .p-cta__column__tel a {
    font-size: min(4vw, 40px);
    letter-spacing: 0;
  }
}
@media all and (min-width: 960px) {
  .p-cta {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .p-cta__column__text {
    font-size: 1.125em;
  }
}
.p-footer {
  font-size: .9375em;
}
.p-footer__address {
  font-style: normal;
}
.p-footer__address dt,
.p-footer__address dd {
  margin-left: 0;
  padding: 0;
}
.p-footer__address dt {
  margin-bottom: .25em;
  font-size: 1.5em;
  font-weight: 800;
  color: var(--color_main);
}
.p-footer__address dd {
  margin-bottom: .5em;
}
.p-footer__address a:link,
.p-footer__address a:active,
.p-footer__address a:visited {
  color: var(--text-color_main);
}
.p-footer__address a:hover {
  color: var(--color_main);
}
.p-footer__nav {
  margin: 0;
}
.p-footer__nav__item {
  width: 100%;
  border-bottom: 1px solid var(--border_color);
  margin-bottom: 0;
  font-weight: 700;
}
.p-footer__nav__item .is-child {
  margin-bottom: .25em;
  font-weight: 400;
}
.p-footer__nav__item .is-child li {
  margin: 0;
  padding-left: 1em;
}
.p-footer__nav__item .is-child li a {
  position: relative;
  padding: .25em 1em;
}
.p-footer__nav__item .is-child li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background-color: var(--color_sub);
}
.p-footer__nav__item a {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
}
.p-footer__nav__item a:link,
.p-footer__nav__item a:active,
.p-footer__nav__item a:visited {
  color: var(--text-color_main);
}
.p-footer__nav__item a:hover {
  color: var(--color_main);
}
@media all and (min-width: 600px) {
  .p-footer .l-container {
    display: flex;
    --the-gap: min(4vw, 64px);
    gap: var(--the-gap);
  }
  .p-footer__address {
    flex-shrink: 1;
  }
  .p-footer nav {
    flex-grow: 1;
  }
}
@media all and (min-width: 960px) {
  .p-footer {
    padding-top: 5.5em;
    padding-bottom: 5.5em;
  }
  .p-footer__nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: min(1.2vw, 32px);
  }
  .p-footer__nav__item {
    width: auto;
    border-bottom: 0;
  }
  .p-footer__nav__item a {
    padding: 0 4px;
  }
  .p-footer__nav__item .is-child li {
    margin-top: .5em;
  }
  .p-footer__nav__item .is-child li a {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 1140px) {
  .p-footer {
    font-size: 1em;
  }
}
/* Utility Classes
======================================== */
.u-inline-block {
  display: inline-block;
}
.u-marg-b--0 {
  margin-bottom: 0;
}
.u-marg-b--s {
  margin-bottom: 1rem;
}
.u-margin-b--m {
  margin-bottom: 1.5rem;
}
.u-margin-b--l {
  margin-bottom: 2.5rem;
}
.u-marg-t1em {
  margin-top: 1em;
}
.u-marg-r--s {
  margin-right: 1rem;
}
.u-marg-l--s {
  margin-left: 1rem;
}
.u-padd-no {
  padding: 0;
}
.u-align--center {
  text-align: center;
}
.u-align--right {
  text-align: right;
}
.u-txt-c--main {
  color: var(--color_main)
}
.u-txt-c--sub {
  color: var(--color_sub);
}
.u-txt-c--red {
  color: var(--color_red);
}
.u-txt-c--brown {
  color: var(--color_brown);
}
.u-txt--s {
  font-size: 0.875rem;
}
.u-txt--lg {
  font-size: 1.25rem;
}
.u-txt--bold {
  font-weight: 700;
}
.u-txt--st {
  font-size: 1.25rem;
  font-weight: 700;
}
.u-marker {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #BFE4F8 50%, #BFE4F8 100%);
  padding: 0 0.25em .125em;
  margin: 0 0.25rem;
}
.u-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}