/* ==========================================================================
  Foundation
========================================================================== */

/* Reset
----------------------------------------------------------------- */
*, *::before, *::after { padding: 0; margin: 0; outline: none; box-sizing: border-box; }
main { display: block; }
ul, li { list-style: none; }
a { color: inherit; text-decoration: none; }
img { width: 100%; max-width: 100%; vertical-align: middle; height: auto; }
input, select, button, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

/* Base
----------------------------------------------------------------- */
:root {
  --color-default: #000;
  --color-primary: #024BA5;
  --color-light-primary: #ecfdff;
  --color-secondary: #00bccb;
  --color-caution: #fe4b21;
  --color-gray: #707070;
  --color-gray-secondary: #757575;
  --color-light-gray: #B3B3B3;
  --color-lighter-gray: #EBEBEB;
  --color-lightest-gray: #F5F5F5;
  --color-tertiary: #0b3784;
  --color-quaternary: #F4F9FF;
  --color-highlight: #57d8ff;
  --color-marker-a: #f67656;
  --color-marker-b: #fff399;
  --color-shadow-a: rgba(0, 0, 0, 0.1);
  --color-shadow-b: rgba(0, 0, 0, 0.05);
  --color-futureshop-primary: #014ba5;
  --color-futureshop-secondary: #fe4b21;
  /*--font-family-default: 'M PLUS 1', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, Meiryo, sans-serif;*/
  --font-family-default: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, Meiryo, sans-serif;
  --font-family-english: 'Oswald', sans-serif;
  --opacity-hover: .7;
  --text-underline-offset: 0.5rem;

  --font-size-extra-large-regular: 3.2rem;
  --font-size-extra-large: 3.0rem;
  --font-size-large-regular: 2.4rem;
  --font-size-large-short: 2.0rem;
  --font-size-large: 1.8rem;
  --font-size-medium: 1.6rem;
  --font-size-small-regular: 1.4rem;
  --font-size-small: 1.2rem;
  --font-size-extra-small: 1.0rem;
}
body {
  color: var(--color-default);
  font-family: var(--font-family-default);
  font-size: var(--font-size-medium);
  font-weight: 400;
  line-height: 1.6;
  background: var(--color-lightest-gray);
  -webkit-text-size-adjust: 100%;
}
a, button {
  color: var(--color-default);
  text-decoration: none;
  text-underline-offset: var(--text-underline-offset);
}
svg { display: block; width: 100%; height: auto; }
table{ border-collapse: collapse; border-spacing: 0; /*table-layout: fixed;*/ }
table, th, td {
  vertical-align: middle;
  border: 1px solid var(--color-gray);
  padding: 0.5em;
}
th {
  background-color: var(--color-lighter-gray);
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  a, button {
    transition: opacity .3s ease;
  }
  a:hover, button:hover {
    /*opacity: var(--opacity-hover);
    color: var(--color-tertiary);
    color: var(--color-highlight);*/
    color: var(--color-primary);
    text-decoration: underline;
  }
}

/* ==========================================================================
  Layout
========================================================================== */

/* Container
----------------------------------------------------------------- */
.l-container {
  padding: 0 0 62px;
  /*overflow: hidden;*/
  background: var(--color-lightest-gray);
}
@media (min-width: 48.0625em) {
  .l-container {
    padding: 66px 0 0;
  }
}

/* Main
----------------------------------------------------------------- */
.l-main {
  background: var(--color-lightest-gray);
}
.l-main::selection {
  background: var(--color-caution);
  color: #FFF;
}

/* 1column Container
----------------------------------------------------------------- */
.l-1col-container {
  padding: 0;
}
.l-1col-container__content {
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 48.0625em) {
  .l-1col-container {
    padding: 0;
  }
  .l-1col-container__content {
    width: 100%;
    padding: 40px;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1420px;
  }
}

/* 2column Container
----------------------------------------------------------------- */
.l-2col-container {
  padding: 0;
}
.l-2col-container__primary {
  padding-bottom: 20px;
}
.l-2col-container__primary-box {
  width: 100%;
  /*background: #FFF;*/
  padding: 40px 20px 20px 20px;
}
.l-2col-container__primary-box ~ .l-2col-container__primary-box {
  /*margin-top: 20px;*/
}
.l-2col-container__primary-box.has_border_bottom {
  padding-bottom: 20px;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 20px;
}
.l-2col-container__primary-content {
  background: #FFF;
  padding: 16px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
}
.l-2col-container__primary-content:nth-of-type(n+2) {
  margin-top: 40px;
}
.l-2col-container__secondary {
  margin: 0;
  padding: 20px 20px 40px 20px;
}
.l-2col-container__primary-box.no_padding .l-2col-container__primary-content {
  background: transparent;
  padding: 0;
  border: none;
}
@media (min-width: 48.0625em) {
  .l-2col-container {
    padding: 0;
  }
  .l-2col-container__content {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
    padding: 40px 0 0px;
  }
  .l-2col-container__primary {
    /*width: 100%;*/
    padding: 0 0 0 0;
    /*flex: 1 1 auto;*/
    overflow: hidden;
    flex-basis: 100%;
    max-width: 1120px;
    display: flex;
    flex-direction: column;
  }
  .l-2col-container__primary.has_border_bottom {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-lighter-gray);
    margin-bottom: 0px;
  }
  .l-2col-container__primary-box {
    /*width: 110%;*/
    /*
    min-height: 100%;
    height: 100%;
    */
    padding: 0 0 0 40px;
    /*
    border-top: 2px solid var(--color-lighter-gray);
    border-bottom: 2px solid var(--color-lighter-gray);
    border-left: 2px solid var(--color-lighter-gray);
    */
    /*
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    */
    /*
    box-shadow:
      10px 10px 30px #E7E7E7,
      -10px -10px 30px #F5F5F5,
      inset 10px 10px 30px transparent,
      inset -10px -10px 30px transparent;
    */
    
    /* shadow
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 1);
    box-shadow:
      24px 24px 48px 0px rgba(168, 168, 168, 0.5),
      inset -2px -2px 8px 0px rgba(168, 168, 168, 0.6),
      inset 0px 8px 8px 0px rgb(255, 255, 255)
    ;
    box-shadow:
      24px 24px 48px 0px rgba(168, 168, 168, 0.5),
      inset -4px -4px 14px 0px rgba(168, 168, 168, 0.6)
    ;
    */
  }
  .l-2col-container__primary-box ~ .l-2col-container__primary-box {
    margin-top: 60px;
  }
  .l-2col-container__primary-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 0 0;
    padding: 18px 28px 18px 28px;

    border-radius: 16px;
  }
  .l-2col-container__primary-content:nth-of-type(n+2) {
    margin-top: 60px;
  }
  .l-2col-container__secondary {
    width: 340px;
    padding: 0 40px 0 40px;
    margin: 0;
    flex: 0 0 auto;
  }
  .l-2col-container__secondary-content {
    /*position: sticky;
    top: 120px;*/
  }
  .l-2col-container__primary-box.no_padding .l-2col-container__primary-content {
    margin: 0;
    padding: 0;
    border-radius: 0;
  }


  .pg-home .l-2col-container__primary {
    padding-bottom: 60px;
  }
  .pg-search .l-2col-container__primary-box,
  .pg-tag .l-2col-container__primary-box {
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .pg-search .l-2col-container__primary-content,
  .pg-tag .l-2col-container__primary-content {
    flex: 1;
    height: 100%;
    min-height: 0%;
  }
}

/* Inner
----------------------------------------------------------------- */
.l-inner {
  padding: 0 20px;
}
@media (min-width: 48.0625em) {
  .l-inner {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
.l-inner-2 {
  padding: 0 20px;
}
@media (min-width: 48.0625em) {
  .l-inner-2 {
    max-width: 1280px;
    padding: 0;
    margin: 0 auto;
  }
}

/* Header
----------------------------------------------------------------- */
.l-header {
  /*
  background: var(--color-primary);
  color: #FFF;
  */
  background: #FFF;
  position: sticky;
  top: 0px;
  z-index: 10000;
  box-shadow: 0 4px 4px var(--color-shadow-a);
}
.l-header__inner {
  display: flex;
  padding: 0 20px;
}
.l-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 6px 0;
}
@media (min-width: 48.0625em) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 8px 8px var(--color-shadow-a);
  }
  .l-header__inner {
    padding: 0 40px;
    margin: 0 auto;
  }
  .l-header__content {
    min-height: 60px;
    padding: 12px 0;
  }
}

.l-header__logo {
  /*width: 100%;*/
  /*max-width: 202px;*/
  word-break: keep-all;
  /*font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-size: clamp(14px, 13.296px + 0.188vw, 16px);*/
  font-size: clamp(12px, 10.592px + 0.376vw, 16px);
  max-width: calc(100% - 120px);
}
.l-header__logo > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /*color: #FFF;*/
  text-decoration: none;
}
.l-header__logo > a svg {
  max-width: clamp(200px, 185.915px + 3.756vw, 240px);
}
.l-header__logo > a span {
  /*display: none;*/
  font-size: clamp(10px, 9.296px + 0.188vw, 12px);
}
@media (min-width: 48.0625em) {
  .l-header__logo {
    /*max-width: clamp(240px, 26.6667vw, 320px);*/
    max-width: calc(100% - 40px);
    flex-grow: 0;
  }
  .l-header__logo a:hover {
    opacity: var(--opacity-hover);
    /*color: #FFF;*/
    color: var(--color-default);
  }
  .l-header__logo > a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .l-header__logo > a svg {
    /*max-width: clamp(240px, 26.6667vw, 320px);*/
    max-width: clamp(200px, 185.915px + 3.756vw, 240px);
    margin-right: 20px;
    /*display: none;*/
  }
  .l-header__logo > a span {
    display: inline-block;
    font-size: clamp(12px, 10.592px + 0.376vw, 16px);
  }
}

.l-header__nav {
  /*position: relative;*/
}

/* l-header__search-wrap */
.l-header__search-wrap {
  margin-left: auto;
}
.l-header__search-icon {

}
.l-header__search__check {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  position: absolute;
}
.l-header__search__btn {
  position: relative;
  cursor: pointer;
}
.l-header__search__check:checked+.l-header__search__btn+.l-header__search-box {
  visibility: visible;
  opacity: 1;
  z-index: 10001;
  box-shadow: 0 4px 4px var(--color-shadow-a);
}
.l-header__search-box {
  position: absolute;
  right: 0;
  top: calc(100% + 0px);
  z-index: 10000;
  visibility: hidden;
  width: 100%;
  /*background: #FFF;*/
  background: var(--color-primary);
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
  /*border-bottom: 1px solid #E7E7E7;*/
}
.l-header__search-keyword {
  color: var(--color-default);
}
.l-header__search-submit {
  text-decoration: none;
}
.l-header__link a {
  display: inline-block;
  color: #FFF;
  text-decoration: none;
}
.l-header__search-form {
  display: flex;
  overflow: hidden;

  border-radius: 8px;
  border: 1px solid #E7E7E7;
}
.l-header__search-keyword {
  display: block;
  width: 100%;
  height: 40px;
  font-size: var(--font-size-medium);
  background: #FFF;
  padding: 8px 12px;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 auto;
  border-right: 1px solid #E7E7E7;

  /* shadow
  box-shadow:
    inset -2px -2px 4px 0 rgba(0,0,0,.25),
    inset 2px 2px 4px 0 hsla(0,0%,100%,.2);
  */
}
.l-header__search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
  /*color: var(--color-primary);
  background: var(--color-quaternary);*/
  color: #FFF;
  background: var(--color-futureshop-secondary);
  font-size: var(--font-size-medium);
  font-weight: bold;
  text-align: center;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  

  /* shadow
  box-shadow:
    inset -2px -2px 4px 0 rgba(0,0,0,.25),
    inset 2px 2px 4px 0 hsla(0,0%,100%,.2);
  */
}

@media (min-width: 48.0625em) {
  .l-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 40px 0 0;
    /*flex: 1 1 auto;*/
    flex-grow: 1;
  }
  .l-header__links {
    display: flex;
    align-items: center;
  }
  .l-header__link:nth-of-type(n+2) {
    margin-left: 30px;
  }
  .l-header__link a {
    font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
    letter-spacing: 1px;
    text-align: center;
    transition-property: color;
  }
  .l-header__link a:hover {
    /*color: var(--color-primary);*/
    opacity: var(--opacity-hover);
  }
  .l-header__buttons {
    display: flex;
    overflow: hidden;
  }
  .l-header__buttons:not(:first-child) {
    margin-left: 30px;
  }
  .l-header__button {
    width: clamp(120px, 16vw, 200px);
    max-width: 100%;
    flex: 1 1 auto;
  }
  .l-header__button:nth-of-type(n+2) {
    margin-left: 20px;
  }
  .l-header__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: clamp(40px, 5vw, 60px);
    font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    background: #FFF;
    padding: 10px 12px 8px;
    border: 2px solid #CCC;
    border-radius: 4px;
    transition-property: color, background, border-color;
  }
  .l-header__button:nth-of-type(2) a {
    color: #FFF;
    background: #ED9700;
    border-color: #ED9700;
  }
  .l-header__button a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    opacity: 1;
  }
  .l-header__button:nth-of-type(2) a:hover {
    color: #ED9700;
    background: #FFF;
    border-color: #ED9700;
  }

  .l-header__search-wrap {
    margin: 0;
    flex-grow: 0;
  }
  .l-header__search {
    width: 400px;
    margin: 0;
  }
  .l-header__search__check:checked+.l-header__search__btn+.l-header__search-box {
      box-shadow: 0 8px 8px var(--color-shadow-a);
    }
  .l-header__search-box {
    position: absolute;
    right: 0;
    top: calc(100% + 0px);
    padding: 20px 40px;
  }
  .l-header__search-submit:hover {
    color: #FFF;
    background: var(--color-primary);
    text-decoration: none;
  }
}

/* l-header__menu-wrap */
.l-header__menu-wrap {
  margin-left: 20px;
}
.l-header__menu-icon {

}
.l-header__menu__check {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  position: absolute;
}
.l-header__menu__btn {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(/wp-content/themes/FS_FAQ/assets/images/common/icon_menu.svg) no-repeat 0px 0px;
}
.l-header__menu__check:checked+.l-header__menu__btn {
  background-position: 0px -32px;
}
.l-header__menu__check:checked+.l-header__menu__btn+.l-header__menu-box {
  visibility: visible;
  opacity: 1;
  z-index: 10001;

  overflow: hidden;
  height: 100vh;
}
.l-header__menu-box {
  position: absolute;
  right: 0;
  top: calc(100% + 0px);
  z-index: 10000;
  visibility: hidden;
  width: 100%;
  background: var(--color-lightest-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 40px;
  border-bottom: 1px solid #E7E7E7;
}
.l-header__menu-box-title {
  font-size: var(--font-size-medium);
  font-weight: bold;
  margin: 0 0 10px 0;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}
.l-header__menu-box-title.no_bg {
  background-color: transparent;
  color: var(--color-gray-secondary);
  padding: 0;
  border-radius: 0;
}
@media (min-width: 48.0625em) {
  .l-header__menu-wrap {
    display: none;
  }
}


/* l-header__menu-box-content
----------------------------------------------------------------- */
.l-header__menu-box-content {
  overflow-y: scroll;
  padding-bottom: 40px;
}
.l-header__menu-box-content:nth-of-type(n+2) {
  margin-top: 40px;
}
.l-header__menu-items {
  display: flex;
  flex-direction: column;
  background: #FFF;
  border: 1px solid #E7E7E7;
  border-radius: 16px;
}
.l-header__menu-item {
  padding: 10px;
}
.l-header__menu-item:nth-of-type(n+2) {
  border-top: 1px solid #E7E7E7;
}
.l-header__menu-item a {
  display: block;
  max-width: 100%;
  color: var(--color-primary);
  background: var(--color-quaternary);
  font-size: var(--font-size-small-regular);
  font-weight: bold;
  border-radius: 6px;
  padding: 8px;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.l-header__menu-item a.is-current {
  color: #FFF;
  background: var(--color-primary);
}
.l-header__menu-item ul {
  margin-left: 1em;
}
.l-header__menu-item li {
  margin-top: 10px;
}
.l-header__menu-item li a {
  font-weight: normal;
  color: var(--color-default);
  background: transparent;
  padding: 4px 8px;
}




/* TODO: aaa */

/* Footer
----------------------------------------------------------------- */
.l-footer {
  /*margin-top: 40px;*/
  border-top: 1px solid var(--color-lighter-gray);
}
.l-footer__primary {
  text-align: center;
  padding: 15px 0 13px;
  background: #FFF;
}
.l-footer__primary-inner {
  padding: 0 20px;
}
.l-footer__copyright {
  font-size: var(--font-size-small);
  letter-spacing: 1px;
}
@media (min-width: 48.0625em) {
  .l-footer {
    /*margin-top: 80px;*/
  }
  .l-footer__primary {
    padding: 20px 0;
  }
  .l-footer__primary-inner {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.l-footer__secondary {
  background: var(--color-primary);
  padding: 10px 10px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
}
.l-footer__buttons {
  display: flex;
}
.l-footer__button {
  display: flex;
  width: 100%;
}
.l-footer__button:nth-of-type(n+2) {
  margin-left: 15px;
}
.l-footer__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 42px;
  font-size: var(--font-size-small-regular);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  background: #FFF;
  padding: 8px 8px 9px;
  border-radius: 4px;
  box-shadow: 5px 0 16px rgba(51,51,51,.12);
}
.l-footer__button:nth-of-type(2) a {
  color: #FFF;
  background: #ED9700;
}
.l-footer__search {
  margin: 0 0 0px;
}
.l-footer__search-form {
  display: flex;
  overflow: hidden;

  border-radius: 8px;
  border: 1px solid #E7E7E7;
}
.l-footer__search-keyword {
  display: block;
  width: 100%;
  height: 40px;
  font-size: var(--font-size-medium);
  background: #FFF;
  padding: 8px 12px;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 auto;
  border-right: 1px solid #E7E7E7;
  /* shadow
  box-shadow:
    inset -2px -2px 4px 0 rgba(0,0,0,.25),
    inset 2px 2px 4px 0 hsla(0,0%,100%,.2);
  */
}
.l-footer__search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
  color: #FFF;
  font-size: var(--font-size-small-regular);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: var(--color-secondary);
  border: none;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  /* shadow
  box-shadow:
    inset -2px -2px 4px 0 rgba(0,0,0,.25),
    inset 2px 2px 4px 0 hsla(0,0%,100%,.2);
  */
}
@media (min-width: 48.0625em) {
  .l-footer__secondary {
    display: none;
  }
}


/* l-footer__section
----------------------------------------------------------------- */
.l-footer__section {
  background: #3d4043;
  color: #FFF;
}
.l-footer__section a {
  color: #FFF;
  text-decoration: none;
}
.l-footer__section a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 10px;
  overflow: hidden;
  background: url(/wp-content/themes/FS_FAQ/assets/images/common/icon_blank.svg) no-repeat 0px -20px;
  background-size: 12px 40px;
  margin: 0 0.3em 0 0.3em;
}
.l-footer__section-inner {
  padding: 40px 20px;
  margin: 0 auto;
}
.l-footer__section-content__row {
  display: flex;
  flex-direction: column;
}
.l-footer__section-content__row .l-footer__section-content__block {
  margin-bottom: 20px;
}
@media (min-width: 48.0625em) {
  .l-footer__section {
  }
  .l-footer__section a:hover {
    opacity: var(--opacity-hover);
  }
  .l-footer__section-inner {
    padding: 80px 40px;
  }
  .l-footer__section-content__row {
    flex-direction: row;
  }
  .l-footer__section-content__row .l-footer__section-content__block {
    margin-right: 40px;
    margin-bottom: 20px;
  }
}
/* l-footer__info
----------------------------------------------------------------- */
.l-footer__info {
  background: #FFF;
  text-align: center;
  border-bottom: 1px solid var(--color-lighter-gray);
}
.l-footer__info a {
  color: var(--color-primary);
  text-decoration: none;
}
.l-footer__info a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 10px;
  overflow: hidden;
  background: url(/wp-content/themes/FS_FAQ/assets/images/common/icon_blank.svg) no-repeat 0px -20px;
  background-size: 12px 40px;
  margin: 0 0.3em 0 0.3em;
}
.l-footer__info-inner {
  padding: 24px 10px;
  margin: 0 auto;
}
.l-footer__info-box-heading {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .l-footer__info {
  }
  .l-footer__info a:hover {
    opacity: var(--opacity-hover);
  }
  .l-footer__info-inner {
    padding: 40px 20px;
  }
  .l-footer__info-box-heading {
    font-size: 20px;
    font-weight: bold;
  }
}


/* p-contact
----------------------------------------------------------------- */
.p-contact-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contact-phone .p-contact-phone-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--color-primary);
}
.p-contact-phone .p-contact-phone-number > svg {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.p-contact-phone .p-contact-phone-number > span {
}
@media (min-width: 48.0625em) {
  .p-contact-phone {
  }
  .p-contact-phone .p-contact-phone-number {
    display: flex;
    flex-direction: row;
    font-size: 4.8rem;
    font-weight: bold;
  }
  .p-contact-phone .p-contact-phone-number > svg {
    width: 48px;
    height: 48px;
    margin-right: 10px;
  }
  .p-contact-phone .p-contact-phone-number > span {
  }
}

.p-contact-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}
.p-contact-mail .p-contact-mail-to {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-contact-mail .p-contact-mail-to > svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.p-contact-mail .p-contact-mail-to > span {
}
@media (min-width: 48.0625em) {
  .p-contact-mail {
    margin-top: 20px;
  }
  .p-contact-mail .p-contact-mail-to > svg {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .p-contact-mail .p-contact-mail-to > span {
  }
}

.p-contact-phone-note {
  font-size: 1.4rem;
}
@media (min-width: 48.0625em) {
  .p-contact-phone-note {
    font-size: 1.4rem;
  }
}


/* OTHERS
----------------------------------------------------------------- */
.c-text-none {
  color: var(--color-light-gray);
}
