@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  /* iPhone文字サイズを固定 */
  -webkit-font-smoothing: antialiased;
  /* Mac safari アンリエイリアス対策 ・ hoverちらつき対策 */
  overflow-x: hidden;
  overflow-y: scroll;
  /* モーダルウィンドウによる画面のズレを修正 */
  word-break: break-word;
  /* 句読点や英数字のみのテキストの折り返しを制御 */
}

.wf-active body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input,
textarea {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
}

a,
a:link {
  color: #000;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform, animation, position;
}

input[type="button"] {
  cursor: pointer;
}

input[type="text"] {
  cursor: auto;
}

select {
  cursor: pointer;
}

ul li {
  list-style: none;
}

pre {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

.clearfix:after {
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
  content: ".";
  font-size: 0;
}

.clearfix {
  display: inline-block;
  min-height: 1%;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

* html .clearfix {
  zoom: 1;
}

.clear {
  clear: both;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 
.tableBase {
  border-collapse: collapse;
  width: 680px;
  vertical-align: middle;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.tableBase th {
  font-weight: 400;
  background: #f0f0f0;
}
.tableBase td,
.tableBase th {
  padding: 3px 3px 3px 6px;
  text-align: left;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.tableBase tr .half {
  width: 130px;
}
 */
/* margin-top */
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

/* margin-bottom */
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

/* margin-right */
.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

/* margin-right */
.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

/* Chromeフォーカス設定 */
:focus {
  outline: 0;
}

/* No-js 設定 */
.no-js-display-none {
  display: none !important;
}

/* iOSでのデフォルトスタイルをリセット */
input,
input[type="button"],
input[type="checkbox"],
input[type="radio"],
input[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="button"]::-webkit-search-decoration,
input[type="checkbox"]::-webkit-search-decoration,
input[type="radio"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration {
  display: none;
}

input[type="button"]::focus,
input[type="checkbox"]::focus,
input[type="radio"]::focus,
input[type="submit"]::focus {
  outline-offset: -2px;
}

/* コンテンツのフェードイン */
.fadein {
  opacity: 0;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadein-top {
  opacity: 0;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein-top.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadein-btm {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein-btm.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadein-right {
  opacity: 0;
  position: relative;
  -webkit-transform: translate3d(2%, 2%, 0);
          transform: translate3d(2%, 2%, 0);
  -webkit-transition: all 1.5s 0s cubic-bezier(0.36, 0.01, 0.29, 0.99);
  transition: all 1.5s 0s cubic-bezier(0.36, 0.01, 0.29, 0.99);
}

.fadein-left {
  opacity: 0;
  position: relative;
  -webkit-transform: translate3d(-2%, 2%, 0);
          transform: translate3d(-2%, 2%, 0);
  -webkit-transition: all 1.5s 0s cubic-bezier(0.36, 0.01, 0.29, 0.99);
  transition: all 1.5s 0s cubic-bezier(0.36, 0.01, 0.29, 0.99);
}

.fadein-right.scrollin,
.fadein-left.scrollin {
  -webkit-transform: translate3d(0%, 0, 0) !important;
          transform: translate3d(0%, 0, 0) !important;
  opacity: 1;
}

.fadein.fadeTime20,
.fadein-top.fadeTime20,
.fadein-btm.fadeTime20,
.fadein-right.fadeTime20,
.fadein-left.fadeTime20 {
  -webkit-transition: all 2s;
  transition: all 2s;
}

.fadein.fadeTime30,
.fadein-top.fadeTime30,
.fadein-btm.fadeTime30,
.fadein-right.fadeTime30,
.fadein-left.fadeTime30 {
  -webkit-transition: all 3s;
  transition: all 3s;
}

.fadein.fadeTime40,
.fadein-top.fadeTime40,
.fadein-btm.fadeTime40,
.fadein-right.fadeTime40,
.fadein-left.fadeTime40 {
  -webkit-transition: all 4s;
  transition: all 4s;
}

.fadein.fadeTime50,
.fadein-top.fadeTime50,
.fadein-btm.fadeTime50,
.fadein-right.fadeTime50,
.fadein-left.fadeTime50 {
  -webkit-transition: all 5s;
  transition: all 5s;
}

/* ====================
keyframes
==================== */
.passing .passing_bar {
  display: inline-block;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing .passing_bar:before {
  display: inline-block;
  width: 0;
  height: 90%;
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
}

.passing .passing_content {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing.open .passing_bar:before,
.passing.move .passing_bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}

.passing.open .passing_content,
.passing.move .passing_content {
  -webkit-animation: passing-txt 0s ease 0.5s 1 normal forwards;
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}

@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=common.css.map */