@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
----------------------------------*/
#main-analytics {
  box-sizing: border-box;
  padding: 2em;
}
#response {
  
}
#response-obj dl {
  display: table;
}
#response-obj dl dt,
#response-obj dl dd {
  display: table-cell;
  vertical-align: top;
  box-sizing: border-box;
}
#response-obj > dl > dt {
  width: 350px;
  text-align: right;
  padding-right: 2em;
}
#response-obj dd dd {
  padding-left: 1em;
}

#form-analytics {
  margin-bottom: 1em;
}
#hojin_search-submit {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
}

/*** Ajax loader : START ***/
#ccc-ajax-loader {
  display: none;
}
#ccc-ajax-loader::before {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; /* for Edge */
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}
#ccc-ajax-loader {
  width: 100px;
  height: 100px;
  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#ccc-ajax-loader > .loader,
#ccc-ajax-loader > .loader:after {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: 99999999;
}
#ccc-ajax-loader > .loader {
  position: relative;
  left: -10%;
  top: -10%;
  margin: 0 auto;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loading 1.1s infinite linear;
  animation: loading 1.1s infinite linear;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*** Ajax loader : END ***/



@media only screen and (max-width: 750px) {


}
