@charset "UTF-8";
@import url('./reset.css');
@import url('./variables.css');


/* base
----------------------------------*/
html {
  font-size: 62.5%; /* root: 10px */
  height: 100%;
}
body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  background-color: var(--base-bg);
  color: var(--text-color-a-01);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings : "palt";
}
/* Safariのみ仮名文字のみをカーニングする指定 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, body {
    font-feature-settings: "pkna";
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}
/* IEだけインラインSVGの表示サイズがおかしくなるバグへの対処方法 */
img[src$=".svg"] {
  width: 100%; /* lte IE10 */
}
a {
  text-decoration: none;
  color: inherit;
  outline: none; /* lte IE8 */
}
h1, h2, h3, h4 {
  font-weight: bold;
  line-height: 1.4;
}
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: 16px;
}
label,
buttom {
  cursor: pointer;
}
a,
.button {
  text-decoration: none;
  color: inherit;
  outline: none; /* lte IE8 */
  transition-property: border,background,color;
  transition-duration: .05s;
  transition-timing-function: ease-in-out;
}
body[data-ccc_useragent="desktop"] a:hover,
body[data-ccc_useragent="desktop"] .button:hover {
  color: var(--action-color-a-01);
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}
a.selected,
.button.selected {
  pointer-events: none;
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}
.button,
input[type="checkbox"],
input[type="radio"],
input[type="file"] {
  cursor: pointer;
}
body[data-ccc_useragent="desktop"] a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}
a.link {
  color: var(--action-color-a-01);
  text-decoration: underline;
}

body:not(.request-filtering) .current > a {
  color: var(--action-color-a-01);
  pointer-events: none;
}
.action,
.action-primary,
.action-secondary {
  display: inline-block;
  vertical-align: top;
  background: var(--action-color-a-01);
  border-color: var(--action-color-a-01);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  border: solid 1px #000;
  padding: 5px 10px;
  color: var(--action-color-b-01);
  cursor: pointer;
}
.action-primary {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  min-height: 40px;
}
.action-secondary {
  background: var(--text-color-b-04);
  border-color: var( --text-color-a-02);
}
body[data-ccc_useragent="desktop"] .action:hover,
body[data-ccc_useragent="desktop"] .action-primary:hover,
body[data-ccc_useragent="desktop"] .action-secondary:hover {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
  color: var(--action-color-b-01);
}
.font-wgt-01 {
  font-weight: bold;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.vertical-align-middle {
  vertical-align: middle;
}
.vertical-align-bottom {
  vertical-align: bottom;
}

/* basic
----------------------------------*/
.outer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.inner-00,
.inner-01,
.inner-02,
.inner-03,
.inner-04 {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.inner-01 {
  max-width: 1500px;
}
.inner-02 {
  max-width: 1200px;
}
.inner-03 {
  max-width: 1000px;
}
.inner-04 {
  max-width: 750px;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.fas {
  margin-right: 0.3em;
}
.fas.fa-external-link-alt {
  margin-left: 0.3em;
}

/* JSで非表示 */
.disp-none {
  display: none !important;
}


/* switching PC/SP
----------------------------------*/
/****** ccc_breakpoint（jQueryプラグイン）---START--- ******/
/* jQuery と メディアクエリを連動して一元管理 */
#ccc_window_size-desktop,
#ccc_window_size-tablet,
#ccc_window_size-phone {
  display: none;
}

/*** switching PC/SP ***/
/* jQuery と メディアクエリを連動して一元管理 */
@media only screen and (min-width: 751px) {
  #ccc_window_size-desktop {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  #ccc_window_size-phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
/****** ccc_breakpoint（jQueryプラグイン）---END--- ******/



/*** keyframes slideIn ***/
@-webkit-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* テーマ切り替え（theme-switcher.css） */
.theme-switch-wrapper {
  margin-bottom: 3em;
}
.theme-switch-wrapper::before {
  content: "ライトモード" !important;
  font-size: 0.8em;
}
:root[data-theme='dark'] .theme-switch-wrapper::before {
  content: "ダークモード" !important;
}

/* 背景のスクロールを固定（ common.jsのjQueryプラグイン「ccc_base_fixed()」） */
body.ccc-base-fixed {
  position: fixed;
  z-index: 1;
  width: 100%;
}

/* クリックした要素の中身をクリップボードにコピー（ common.jsのjQueryプラグイン「ccc_clipboard_copy()」） */
.js-clipboard-copy {
  cursor: copy !important;
  position: relative;
}
/* Tooltip */
.js-clipboard-copy:active::after {
  content: 'Copied!';
  background: #555;
  display: inline-block;
  vertical-align: middle;
  width: max-content;
  line-height: 1;
  color: #fff;
  border-radius: 5px;
  position: absolute;
  z-index: 99999;
  left: 50%;
  top: -2em;
  transform: translate(-50%, 0);
  font-size: 0.75em;
  padding: 8px 10px 6px 10px;
}

.attention {}
.caution {}
.warning {}

/* unique
----------------------------------*/
.header-group,
.footer-group {
  background-color: var(--controller-bg-a-01);
  color: var(--text-color-a-02);
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
}
.header-group {
  border-bottom: 1px solid var(--contents-bg-a-02);
  z-index: 99999;
}
.header-group.fixed,
body.request-filtering .header-group {
  position: fixed;
  top: 0;
  -webkit-animation: slideIn 0.5s linear 0s 1;
  -moz-animation: slideIn 0.5s linear 0s 1;
  animation: slideIn 0.5s linear 0s 1;
}
.header-inner,
.footer-inner {
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
.header-inner {
  padding-left: 10px;
}
.footer-inner {
  display: table;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-item {
  display: table-cell;
}
.header-item {
  font-size: 0.94em;
  font-weight: bold;
}
.footer-item {
  vertical-align: top;
  font-size: 0.93em;
}

.header-logo,
.footer-logo {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.header-logo {
  width: 70px;
  padding-right: 0.25em;
  line-height: 1;
  position: relative;
}
.header-catchphrase,
.footer-logo > a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

body[data-ccc_useragent="desktop"] a:hover .header-logo > img,
body[data-ccc_useragent="desktop"] .footer-logo > a:hover > img {
  -webkit-filter: blur(1px);
  filter: blur(1px);
  transition: none;
}
:root[data-theme='dark'] .header-logo > img,
:root[data-theme='dark'] .footer-logo > a > img {
  -webkit-filter: var(--filter-invert-a-01);
  filter: var(--filter-invert-a-01);
}
:root[data-theme='dark'] body[data-ccc_useragent="desktop"] a:hover .header-logo > img,
:root[data-theme='dark'] body[data-ccc_useragent="desktop"] .footer-logo > a:hover > img {
  -webkit-filter: blur(1px) var(--filter-invert-a-01);
  filter: blur(1px) var(--filter-invert-a-01);
}

.header-profile {
  display: inline-block;
  vertical-align: top;
}
.header-name {
  display: inline-block;
  vertical-align: middle;
}
.header-nav {
  padding-left: 1em;
  float: right;
}
.header-nav .global-menu {
  display: table;
}

.header-nav .global-menu > li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.header-nav .global-menu > li::before,
.header-nav .global-menu > li:last-child::after {
  content: " ";
  width: 1px;
  height: 90%;
  background: var(--text-color-a-04);
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-nav .global-menu > li:last-child::after {
  left: auto;
  right: 0;
}
.header-nav .global-menu > li > a,
.header-nav .global-menu > li > .not-link {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1em;
  box-sizing: border-box;
}


#loading {
  position: fixed;
  z-index: 999999;
  background: rgba(0,0,0,0.7);
  height: 100%;
  width: 100%;
}
.loading-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url('../images/loading.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10%;
}


.footer-nav .menu {
  display: inline-block;
  vertical-align: top;
  margin-right: 2em;
  padding-left: 1em;
  box-sizing: border-box;
  position: relative;
}
.footer-nav .menu::before {
  content: " ";
  width: 1px;
  height: 100%;
  background: var(--text-color-a-04);
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.footer-nav .menu li + li {
  margin-top: 0.35em;
}
.footer-nav .menu .menu-get-request-btn {
  font-weight: normal;
}
.footer-profile {
  line-height: 1.7;
  text-align: right;
  vertical-align: bottom;
}
.footer-logo {
  width: 116px;
  margin-bottom: 0.65em;
}
.saas-catchphrase {
  font-size: 1.2em;
  font-weight: bold;
}
.saas-version {
  margin-bottom: 1em;
}
.saas-version,
.footer-copyright {
  font-size: 0.9em;
}

input[type="text"]:read-only {
  width: 100%;
  background: no-repeat;
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  color: var(--text-color-a-01);
}
.gender-ratio {
  display: inline-block;
  vertical-align: top;
}
.gender-ratio + .gender-ratio {
  margin-left: 1em;
}


/*** 条件絞り込みによる法人検索 ***/
.ajax-request-menu-toggle {
  position: relative;
  font-weight: bold;
  cursor: pointer;
  padding-right: 2em !important;
}
.ajax-request-menu-toggle.opened {
  color: var(--action-color-a-01);
}
.ajax-request-menu-toggle::before,
.ajax-request-menu-toggle::after {
  content: " ";
  width: 0.7em;
  height: 2px;
  background: var(--text-color-a-01);
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
}
.ajax-request-menu-toggle::after {
  transform: rotate(-90deg);
}
.ajax-request-menu-toggle.opened::before {
  transform: rotate(45deg);
}
.ajax-request-menu-toggle.opened::after {
  transform: rotate(-45deg);
}
body[data-ccc_useragent="desktop"] .ajax-request-menu-toggle:hover::before,
body[data-ccc_useragent="desktop"] .ajax-request-menu-toggle:hover::after,
.ajax-request-menu-toggle.opened::before,
.ajax-request-menu-toggle.opened::after {
  background: var(--action-color-a-01);
}
.request-menu-header {
  display: none;
}
.request-menu-header.opened {
  display: block;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: var(--alpha-bg-b-70);
}
.close-background {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  cursor: pointer;
}
.form-request-menu {
  margin: calc(38px + 1em) auto 2em auto;
  width: 96%;
  max-width: 1300px;
  background-color: var(--alpha-bg-a-80);
  color: var(--text-color-a-01);
  position: relative;
  z-index: 999;
  box-sizing: border-box;
  border-radius: 1em;
  border: 1px solid var(--text-color-b-01);
  padding: 2em;
}
.form-request-menu input[type="text"]{
  box-sizing: border-box;
  border: 1px solid var(--text-color-b-03);
  border-radius: 5px;
  padding: 0.25em;
  width: 350px;
}
.form-request-menu .form-button {
  text-align: center;
  margin-top: 1em;
}
.form-request-menu button[type="submit"],
.form-request-menu button[type="reset"],
.form-request-menu button[type="button"] {
  line-height: 1.6;
  margin: 0 0.5em;
  min-width: 80px;
  margin: 1em auto;
}
.form-request-menu button[type="submit"] {
  display: block;
}
.close-wrap {
  text-align: right;
}
.close-btn {

}
.ajax-request-menu-close {
  margin-top: 1em;
  cursor: pointer;
}


.form-request-menu .request-query:not(.request-type_text) {
  box-sizing: border-box;
  border: 1px solid var(--text-color-a-04);
  border-radius: 5px;
  padding: 1em;
}
.form-request-menu .request-query + .request-query {
  margin-top: 1em;
}
.form-request-menu .request-qualification-header {
  box-sizing: border-box;
  padding: 1em;
  margin-top: 0.25em;
}
.form-request-menu .request-qualification-header .title .text,
.form-request-menu .request-qualification-header .title .action {
  vertical-align: middle;
}
.form-request-menu .request-qualification-header .title .action {
  margin-left: 0.75em;
}
.form-request-menu .request-qualification-header .title + .description {
  margin-top: 0.75em;
}
.form-request-menu .corporate-dl {
  display: table;
  margin: 0 auto;
}
.form-request-menu .corporate-dl dt,
.form-request-menu .corporate-dl dd {
  display: table-cell;
}
.form-request-menu .corporate-dl dt {
  width: 5em;
  font-weight: bold;
}
.form-request-menu .title,
.form-request-menu .category-title {
  font-weight: bold;
}
.form-request-menu .title .title-sub {
  font-weight: normal;
  font-size: 0.85em;
}
.form-request-menu .description {
  font-size: 0.9em;
}
.form-request-menu .category {
  box-sizing: border-box;
  padding: 0.35em 1em;
}
.form-request-menu .category + .category {
  border-top: 1px solid var(--alpha-bg-a-70);
}

.form-request-menu .list-checkbox li,
.form-request-menu .list-radio li {
  display: inline-block;
  vertical-align: top;
  margin: 0.25em 1.5em 0.25em 0;
}
.form-request-menu .list-radio li[data-big_city_flag="2"] {
  display: none;
}
.form-request-menu .list-radio-city {
  box-sizing: border-box;
  border-radius: 5px;
  padding: 0.5em 1em;
  border: 1px solid var(--text-color-a-04);
  background-color: var(--alpha-bg-a-70);
  margin-left: 1.5em;
}
.form-request-menu .link {
  color: var(--text-color-a-01);
}
.form-request-menu .attention {
  font-size: 0.75em;
}
.form-request-menu .attention::before {
  content: "※";
  color: red;
}



/****** ヘッダードロワァー ---START--- ******/
/*** ヘッダートグル ***/
.header-drawer {
  cursor: pointer;
  width: auto;
  background: none;
  box-sizing: border-box;
  padding: 0;
  float: right;
  margin: 6px 0 0 1.5em;
}
/*** アイコン ***/
.drawer-icon {
  position: relative;
  margin: 0 auto;
  width: 24px;
  height: 16px;
}
.drawer-icon-bar {
  display: block;
  background: var(--text-color-a-01);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}
.drawer-icon-bar:first-child {
  bottom: auto;
}
.drawer-icon-bar:nth-child(2) {
}
.drawer-icon-bar:last-child {
  top: auto;
}
.hg-opened .drawer-icon {
  width: 20px;
}
.hg-opened .drawer-icon-bar {
  height: 2px;
}
.hg-opened .drawer-icon-bar:first-child {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 0;
  bottom: 0;
}
.hg-opened .drawer-icon-bar:nth-child(2) {
  filter: alpha(opacity=0); /* lte IE8 */
  opacity: 0;
}
.hg-opened .drawer-icon-bar:last-child {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  top: 0;
  bottom: 0;
}
/*** アイコンのテキスト ***/
.drawer-txt {
  display: none; /* 現在未使用 */
  font-size: 10px;
  font-size: 1.0rem;
  color: #000;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10px;
}
.drawer-txt:before {
  content: "MENU";
}
.hg-opened .drawer-txt:before {
  color: #fff;
  content: "CLOSE";
  -webkit-animation: fadeIn 0.8s linear 0s 1;
  -moz-animation: fadeIn 0.8s linear 0s 1;
  -ms-animation: fadeIn 0.8s linear 0s 1;
  -o-animation: fadeIn 0.8s linear 0s 1;
  animation: fadeIn 0.8s linear 0s 1;
}
/*** ヘッダークローズ ***/
.header-closed-wrap {
  display: none;
}
.hg-opened .header-closed-wrap,
.sf-opened .header-closed-wrap {
  display: block;
}
.header-closed {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  cursor: pointer;
  box-sizing: border-box;
  margin: 1em 0;
}
.header-closed::before {
  content: " ";
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -99;
}
.closed-icon {
  width: 14px;
  height: 14px;
  position: relative;
  margin: 0 auto;
  display: inline-block;
  vertical-align: top;
}
.closed-icon-bar {
  display: block;
  background: var(--text-color-a-01);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}
.closed-icon-bar:first-child {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.closed-icon-bar:nth-child(2) {
  filter: alpha(opacity=0); /* IE lt 8 */
  opacity: 0;
}
.closed-icon-bar:last-child {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.closed-txt {
  color: var(--text-color-a-02);
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}

.hg-opened .header-group {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* 必須 */
  -webkit-overflow-scrolling: touch;
  background-color: var(--alpha-bg-a-80);
}
.hg-opened .header-inner {
  background-color: var(--controller-bg-a-01);
}
.hg-opened .header-group .header-nav {
  display: block; /* JSで制御 */
  -webkit-animation: fadeIn 0.8s linear 0s 1;
  -moz-animation: fadeIn 0.8s linear 0s 1;
  -ms-animation: fadeIn 0.8s linear 0s 1;
  -o-animation: fadeIn 0.8s linear 0s 1;
  animation: fadeIn 0.8s linear 0s 1;
}
/****** ヘッダードロワァー ---END--- ******/



.main-group {
  min-height: calc( 100vh - 38px - 250px );
}
.my_data-delete {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  text-align: center;
  padding: 12px;
  border: 1px solid;
  border-radius: 100%;
  box-sizing: border-box;
  background-color: var(--contents-bg-a-01);
  cursor: pointer;
  position: relative;
}
.my_data-delete::before,
.my_data-delete::after {
  content: " ";
  display: block;
  width: 0.9em;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 5px;
  background: var(--text-color-a-03);
  transition: all 0.3s;
  transform: rotate(45deg);
}
.my_data-delete::before {
  transform: rotate(135deg);
}
.my_data-delete:hover {
  border-color: var(--action-color-a-01);
  background-color: var(--contents-bg-a-03);
}
.my_data-delete:hover::before,
.my_data-delete:hover::after {
  background-color: var(--action-color-a-01);
}

/*チャットメッセージより上に表示される様に z-index を調整：START*/
body div#hs-eu-cookie-confirmation {
  z-index: 2222222222 !important;
}
body div#hubspot-messages-iframe-container {
  z-index: 2147483646;
}
/*チャットメッセージより上に表示される様に z-index を調整：END*/

@media only screen and (max-width: 750px) {
  .search-filter-sp {
    float: right;
    padding-top: 1px;
  }
  .search-filter-sp .ajax-request-menu-toggle {
    padding-right: 0.4em !important;
  }
  .search-filter-sp .ajax-request-menu-toggle::before,
  .search-filter-sp .ajax-request-menu-toggle::after {
    right: 0;
  }
  .header-inner {
    padding-right: 10px;
  }
  .header-nav {
    display: none; /* JSで制御 */
    float: none;
    padding: 0;
  }
  .header-nav .global-menu {
    display: block;
    margin: 2em auto;
  }
  .header-nav .global-menu > li {
    display: block;
    padding: 0.75em;
  }
  .header-nav .global-menu > li::before,
  .header-nav .global-menu > li:last-child::after {
    display: none;
  }
  .form-request-menu {
    padding: 1.5em;
  }
  .form-request-menu .corporate-dl {
    width: 100%;
  }
  .form-request-menu .corporate-dl dt,
  .form-request-menu .corporate-dl dd {
    display: block;
  }
  .form-request-menu input[type="text"] {
    width: 100%;
  }
  .footer-inner,
  .footer-item {
    display: block;
  }
  .footer-nav {
    display: table;
    width: 100%;
  }
  .footer-nav .menu {
    padding-left: 0;
    margin-right: 0;
    display: table-cell;
  }
  .footer-nav .menu:nth-child(odd) {
    padding-right: 1em;
  }
  .footer-nav .menu:nth-child(even) {
    padding-left: 1em;
  }
  .footer-nav .menu::before {
    display: none;
  }
  .footer-profile {
    margin-top: 1em;
  }
  .main-group {
    min-height: calc( 100vh - 38px - 378px );
  }

}
