@charset "UTF-8";
/*　共通変数ファイル読み込み　*/
/*　Webフォント読み込み　*/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/* CSS Document */
/*-----------------------------
 *
 * 初期スタイル
 *
 *----------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*16px × 62.5%=10px*/
}

body {
  color: #4d4d4d;
  background-color: #ffffff;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.85;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

.pc__img {
  display: block;
  margin: 0 auto;
}

.sp__img {
  display: none;
}

/*-----------------------------
 *
 * 汎用スタイル
 *
 *----------------------------*/
/*　デバイス切り替え*/
/* SPで見たときは"SP"のclassがついた画像が表示される */
.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

/*　余白　*/
.mt50 {
  margin-top: 50px;
}

.mb40 {
  margin-bottom: 40px;
}

.genericTable {
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.genericTable .genericTable__tr {
  border-top: 1px #000 solid;
}

.genericTable .genericTable__tr .genericTable__th {
  background-color: #fff;
  display: block;
  padding: 10px 15px;
  text-align: left;
  color: #999;
}

.genericTable .genericTable__tr .genericTable__td {
  display: block;
  padding: 10px 15px;
  vertical-align: top;
  line-height: 1.7;
  background-color: #fff;
  margin-bottom: 20px;
  color: #4d4d4d;
}

.tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tab-wrap .tab-label {
  color: White;
  background: LightGray;
  margin-right: 5px;
  padding: 3px 12px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 20px;
}

.tab-wrap .tab-content {
  width: 100%;
  display: none;
}

.tab-wrap .tab-switch {
  display: none;
}

.tab-wrap .tab-switch:checked + .tab-label {
  background: #0066cc;
}

.tab-wrap .tab-switch:checked + .tab-label + .tab-content {
  display: block;
}

/*　タイトルスタイル　*/
.lv1_ttl {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0066cc;
  padding-left: 16px;
  border-left: 4px #0066cc solid;
  margin-bottom: 40px;
}

.lv1_ttl span {
  display: block;
  font-size: 1.2rem;
  font-style: italic;
  margin-top: -8px;
  padding-bottom: 10px;
}

.lv2_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  color: #0066cc;
  padding-bottom: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 20px;
}

.lv2_ttl:after {
  content: "";
  width: 160px;
  height: 2px;
  background: #0066cc;
  position: absolute;
  left: 0;
  bottom: 0;
}

.lv2_ttl span {
  font-size: 1.2rem;
  font-style: italic;
  padding-left: 10px;
}

.lv3_ttl {
  font-size: 1.8rem;
  font-weight: 500;
  color: #0066cc;
}

/*　文章スタイル　*/
.lead_txt {
  font-size: 1.8rem;
  font-weight: 600;
  -webkit-columns: #000;
          columns: #000;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-bottom: 40px;
}

.lead2_txt {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 40px;
}

/*　ボタンスタイル　*/
a.primaryBtn {
  position: relative;
  display: block;
  max-width: 450px;
  min-width: 215px;
  margin: 0 auto;
  border: 2px #0066cc solid;
  color: #0066cc;
  background: #fff;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: background 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  transition: background 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  transition: background 0.2s ease 0s, transform 0.2s ease 0s;
  transition: background 0.2s ease 0s, transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
}

a.primaryBtn:hover {
  background-color: #daeefb;
}

a.primaryBtn i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

a.primaryBtn span {
  position: relative;
}

a.secondaryBtn {
  position: relative;
  display: block;
  max-width: 450px;
  min-width: 215px;
  margin: 0 auto;
  color: #fff;
  background: #000;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: background 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  transition: background 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  transition: background 0.2s ease 0s, transform 0.2s ease 0s;
  transition: background 0.2s ease 0s, transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  border: 1px #000 solid;
}

a.secondaryBtn:hover {
  background: #fff;
  color: #000;
}

a.secondaryBtn i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.primaryBtn--pdf span:after {
  content: "";
  display: block;
  width: 19px;
  height: 22px;
  background: url(/common/img/pdf.png) no-repeat center center;
  background-size: 19px 22px;
  position: absolute;
  right: -30px;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.textLink {
  text-decoration: underline;
  color: #0066cc;
}

.textLink:hover {
  text-decoration: none;
  color: #0066cc;
}

.textLink:hover:active {
  color: #5800cc;
}

/*-----------------------------
 *
 * pagetop
 *
 *----------------------------*/
#page-top {
  width: 40px;
  height: 40px;
  position: -webkit-sticky;
  /* safari対応 */
  position: sticky;
  bottom: 50px;
  background: #666;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0;
  z-index: 900;
  margin: 20px 10px 20px auto;
}

#page-top.fadein {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 1;
}

#page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

#page-top a:hover {
  opacity: 0.8;
}

#page-top a:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  content: '\f077';
  font-size: 21px;
  color: #fff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 1px;
  text-align: center;
}

/*-----------------------------
 *
 * wrap
 *コンテンツ部分の調整
 *----------------------------*/
.wrapper {
  min-height: 100vh;
  /*　コンテンツの高さの最小値＝ブラウザの高さに指定　*/
  position: relative;
  /*　相対位置　*/
  padding-bottom: 460px;
  /*　フッターの高さを指定　*/
  /*　ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定　*/
}

.wrapper::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-position: 50% 100%;
  background-image: url(../img/wrapper_bk.svg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.wrapper_header {
  height: 60px;
  border-bottom: #ccc 1px solid;
  background-color: #fff;
}

.wrapper_section {
  margin-bottom: 100px;
}

.inner {
  padding: 0 20px;
}

/*-----------------------------
 *
 * header
 *
 *----------------------------*/
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000;
  /*　ハンバーガーボタン　*/
  /*　ヘッダーナビゲーションの設定　*/
}

header .headMain {
  -webkit-transition: height 0.2s ease 0s;
  transition: height 0.2s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .headMain a:hover {
  opacity: 0.7;
}

header .headMain a.headMain__logo {
  margin: 19px 20px;
}

header .headMain a.headMain__logo img {
  max-width: 170px;
  display: block;
}

header .hamburger {
  display: block;
  z-index: 101;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  position: relative;
  margin: 9px 20px;
  /* ナビ開いてる時のボタン */
}

header .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 6px;
  background: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .hamburger span:nth-child(1) {
  top: 10px;
}

header .hamburger span:nth-child(2) {
  top: 20px;
}

header .hamburger span:nth-child(3) {
  top: 30px;
}

header .hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

header .hamburger.active span:nth-child(2) {
  opacity: 0;
}

header .hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

header nav.globalMenuSp {
  color: #000;
  background: #fff;
  text-align: center;
  z-index: -1;
  display: none;
  width: 100%;
  border-bottom: 1px solid #ccc;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
}

header nav.globalMenuSp.active {
  /* このクラスを、jQueryで付与・削除する */
  z-index: -1;
  display: block;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

header nav.globalMenuSp ul {
  list-style: none;
  display: block;
  width: 100%;
}

header nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

header nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

header nav.globalMenuSp ul li a {
  display: block;
  color: #4d4d4d;
  padding: 15px 0;
  text-decoration: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: relative;
  /*　カレント表示　*/
}

header nav.globalMenuSp ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #999;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

header nav.globalMenuSp ul li a:hover {
  background-color: #ededed;
}

header nav.globalMenuSp ul li a.active {
  background-color: #333;
  color: #fff;
  pointer-events: none;
}

/*-----------------------------
 *
 * main
 *
 *----------------------------*/
/*　下層KVスタイル　*/
.kv_category {
  margin-bottom: 50px;
}

.kv_category img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-----------------------------
 *
 * footer
 *
 *----------------------------*/
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

footer .inner {
  padding: 0;
}

footer .footerMenu {
  border-top: 1px #ccc solid;
  /* border-bottom: 1px #ccc solid; */
}

footer .footerMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
}

footer .footerMenu ul li {
  border-left: 1px #ccc solid;
  width: 50%;
  position: relative;
  border-bottom: 1px #ccc solid;
}

footer .footerMenu ul li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  color: #4d4d4d;
  -webkit-transition: background 0.4s ease 0s;
  transition: background 0.4s ease 0s;
}

footer .footerMenu ul li a:hover {
  background-color: #ededed;
}

footer .footerMenu ul li a.active {
  background-color: #333;
  color: #fff;
  pointer-events: none;
}

footer .logo {
  margin: 60px;
}

footer .logo a {
  display: inherit;
}

footer .logo a:hover {
  opacity: 0.7;
}

footer .companytitle {
  margin-bottom: 40px;
  font-size: 1.4rem;
}

footer small {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ccc;
}

/*　PC用（768px以上）---------------------------------------------------------------　*/
@media screen and (min-width: 768px) {
  /*-----------------------------
    *
    * 汎用スタイル
    *
    *----------------------------*/
  /*　デバイス切り替え*/
  /* PCで見たときは"PC"のclassがついた画像が表示される */
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .sp_br {
    display: block;
  }
  .genericTable {
    width: 80%;
    margin: 0 auto 40px;
    font-size: 1.6rem;
    border-collapse: separate;
    border-spacing: 0px 10px;
  }
  .genericTable .genericTable__tr {
    border: none;
  }
  .genericTable .genericTable__tr .genericTable__th {
    display: table-cell;
    border-top: 1px #000 solid;
  }
  .genericTable .genericTable__tr .genericTable__td {
    display: table-cell;
    border-top: 1px #ccc solid;
  }
  /*-----------------------------
   *
   * wrap
   *
  *----------------------------*/
  .inner {
    padding: 0 40px;
    max-width: 1360px;
    margin: 0 auto;
  }
  .wrapper_section {
    margin-bottom: 100px;
  }
  /*-----------------------------
     *
     * header
     *
     *----------------------------*/
  header .wrapper_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .wrapper_header .headMain .headMain__logo {
    margin: 19px 40px;
  }
  header .wrapper_header .headMain .hamburger {
    display: none;
  }
  header .wrapper_header nav.globalMenuSp {
    width: 500px;
    margin: 0 40px 0 auto;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    border: none;
    z-index: auto;
    background-color: transparent;
    display: block;
  }
  header .wrapper_header nav.globalMenuSp ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    margin: -1px;
  }
  header .wrapper_header nav.globalMenuSp ul li {
    border: none;
  }
  header .wrapper_header nav.globalMenuSp ul li:last-child {
    display: none;
  }
  header .wrapper_header nav.globalMenuSp ul li a {
    padding: 15px 0;
    background-color: transparent;
  }
  header .wrapper_header nav.globalMenuSp ul li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  header .wrapper_header nav.globalMenuSp ul li a.active {
    color: #0066cc;
    pointer-events: none;
    border-bottom: 2px #0066cc solid;
  }
  /*-----------------------------
   *
   * main
   *
  *----------------------------*/
  .kv_category img {
    height: 300px;
  }
}

/*　footerPC用（900px以上）---------------------------------------------------------------　*/
@media screen and (min-width: 900px) {
  .wrapper {
    padding-bottom: 132px;
  }
  .wrapper_main {
    margin-bottom: 100px;
  }
  .wrapper_section {
    margin-bottom: 100px;
  }
  /*-----------------------------
     *
     * footer
     *
     *----------------------------*/
  footer .footerborder {
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
  }
  footer .wrapper_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .wrapper_footer .footerMenu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-preferred-size: 670px;
        flex-basis: 670px;
    height: 99px;
    border: none;
  }
  footer .wrapper_footer .footerMenu ul {
    height: 100%;
    margin: 1px;
  }
  footer .wrapper_footer .footerMenu ul li {
    width: 33.3%;
  }
  footer .wrapper_footer .footerMenu ul li:nth-child(3n) {
    border-right: 1px #ccc solid;
  }
  footer .wrapper_footer .footerMenu ul li::before {
    content: "";
    width: 58%;
    height: calc(100% + 3px);
    background: #fff;
    position: absolute;
    left: 50%;
    top: -2px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: background 0.4s ease 0s;
    transition: background 0.4s ease 0s;
  }
  footer .wrapper_footer .footerMenu ul li::after {
    content: "";
    width: calc(100% + 2px);
    height: 62%;
    background: #fff;
    position: absolute;
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: background 0.4s ease 0s;
    transition: background 0.4s ease 0s;
  }
  footer .wrapper_footer .footerMenu ul a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  footer .wrapper_footer .footerMenu ul a.active, footer .wrapper_footer .footerMenu ul a:hover {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    line-height: 1.9;
  }
  footer .wrapper_footer .logo {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -ms-flex-preferred-size: 345px;
        flex-basis: 345px;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 20px;
  }
  footer .wrapper_footer .logo img {
    max-width: 200px;
  }
  footer .wrapper_footer .companytitle {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-flex-preferred-size: 345px;
        flex-basis: 345px;
    margin: auto;
    padding-left: 20px;
  }
  footer .wrapper_footer .companytitle p {
    font-size: 1.2rem;
    text-align: left;
  }
}
/*# sourceMappingURL=base.css.map */