@charset "UTF-8";
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@400;500;600&family=Poppins:wght@500;600&display=swap");
@media screen and (min-width: 769px), print {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", 游ゴシック体, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS ゴシック", "MS Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

body header, body footer {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.5;
}

main {
  display: block;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.8;
}

/* float解除 */
.cbox:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
  font-family: "Poppins", sans-serif;
}

.min {
  font-family: "Shippori Mincho", serif;
}

/* 色 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.col_1 {
  color: #6ac9ff;
}

/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.win {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.win:after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/win.svg") no-repeat center;
  background-size: cover;
  width: 10px;
  height: 10px;
  right: 0;
  top: 5px;
}

/* リスト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.num_list {
  counter-reset: section;
}

.num_list li {
  position: relative;
  padding-left: 30px;
  counter-increment: section;
}

.num_list li:not(:first-child) {
  margin-top: 10px;
}

.num_list li::before {
  content: counter(section);
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #6ac9ff;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  font-weight: 500;
  padding: 2.5px 0 0 1px;
  font-size: 12px;
  line-height: 1em;
}

.circle_list li {
  position: relative;
  padding-left: 10px;
}

.circle_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #000;
}

/* テーブル */
.table {
  border-collapse: collapse;
  width: 100%;
}
.table tr th {
  border-bottom: 2px solid #dedede;
  padding: 15px 20px;
  font-weight: 600;
  vertical-align: top;
}
.table tr td {
  border-bottom: 1px solid #dedede;
  background-color: #fff;
  padding: 15px 20px;
}

/* アニメーション */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
@-webkit-keyframes blur_in {
  0% {
    filter: blur(10px);
    transform: scale(1.05);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes blur_in {
  0% {
    filter: blur(10px);
    transform: scale(1.05);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
}

.fadein_t {
  opacity: 0;
  transition-duration: 1s;
  transform: translateY(10px);
}

.fadein_b {
  opacity: 0;
  transition-duration: 1s;
  transform: translateY(-10px);
}

.fadein_l {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transform: translateX(-10px);
}

.fadein_r {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transform: translateX(10px);
}

.blur_in {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transform: translateX(10px);
}

.fadein.on,
.fadein_t.on,
.fadein_b.on,
.fadein_l.on,
.fadein_r.on {
  opacity: 1;
  transform: translateY(0px);
  transform: translateX(0px);
}

.blur_in {
  opacity: 0;
}

.blur_in.on {
  -webkit-animation: blur_in 1s ease-out forwards;
          animation: blur_in 1s ease-out forwards;
}

img {
  max-width: 100%;
}

.no-scroll {
  overflow: hidden;
}

#page-top {
  z-index: 9999;
}

/*  #contents  */
.contents {
  letter-spacing: 1px;
  font-feature-settings: "palt";
}
.contents a {
  text-decoration: none;
  color: #222;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++    PC    ++++++++++++++++++++++++++++++++++++++++++++++  */
/* 769px ~ */
@media screen and (min-width: 769px), print {
  body {
    min-width: 1040px;
  }
  #pagetop {
    z-index: 2;
  }
  /* ヘッダー pc */
  #sub_header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9999;
    background-color: #fff;
  }
  #sub_header.is-open {
    position: fixed;
  }
  #sub_header #header_wrap {
    position: relative;
    width: calc(100% - 60px);
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
  }
  #sub_header #header_wrap #header_logo {
    align-items: center;
    display: flex;
  }
  #sub_header #header_wrap #hamburger {
    cursor: pointer;
    width: 80px;
    height: 60px;
    position: relative;
    z-index: 9999;
    border: none;
    background-color: transparent;
  }
  #sub_header #header_wrap #hamburger .bdr {
    display: block;
    position: absolute;
    width: 42px;
    height: 3px;
    margin: auto;
    background-color: #343434;
    transition: 0.4s;
    margin: auto;
    right: 0;
    top: 10px;
    bottom: 0;
  }
  #sub_header #header_wrap #hamburger .bdr:before, #sub_header #header_wrap #hamburger .bdr:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #343434;
    right: 0;
    transition: 0.4s;
  }
  #sub_header #header_wrap #hamburger .bdr:before {
    top: -9px;
  }
  #sub_header #header_wrap #hamburger .bdr:after {
    bottom: -9px;
    width: 55%;
  }
  #sub_header #header_wrap #hamburger .txt {
    position: absolute;
    top: 4px;
    right: 0;
    letter-spacing: 0.07em;
    transition: 0.4s;
  }
  #sub_header #header_wrap #hamburger.is-open .bdr {
    background-color: transparent;
  }
  #sub_header #header_wrap #hamburger.is-open .bdr:before {
    top: 0;
    transform: rotate(25deg);
    background-color: #fff;
  }
  #sub_header #header_wrap #hamburger.is-open .bdr:after {
    bottom: 0;
    transform: rotate(-25deg);
    width: 100%;
    background-color: #fff;
  }
  #sub_header #header_wrap #hamburger.is-open .txt {
    color: #fff;
  }
  #sub_header #header_wrap #header_menu {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    transform: translateX(100%);
    transition: 0.4s;
    left: 0;
    top: 0;
    z-index: 9998;
    background-color: rgba(106, 201, 255, 0.95);
    overflow: auto;
  }
  #sub_header #header_wrap #header_menu.is-open {
    transform: translateX(0);
  }
  #sub_header #header_wrap #header_menu #nav_logo {
    width: 410px;
    font-size: 0;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
  }
  #sub_header #header_wrap #header_menu #header_nav {
    width: 1040px;
    margin: auto;
    box-sizing: border-box;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
  }
  #sub_header #header_wrap #header_menu #header_nav:after {
    display: none;
  }
  #sub_header #header_wrap #header_menu #header_nav > li {
    width: 30%;
    position: relative;
    line-height: 1.5;
  }
  #sub_header #header_wrap #header_menu #header_nav > li:not(:nth-child(3n+1)) {
    margin-left: 5%;
  }
  #sub_header #header_wrap #header_menu #header_nav > li:nth-child(n+4) {
    margin-top: 4%;
  }
  #sub_header #header_wrap #header_menu #header_nav > li.active:before {
    background-color: #b7b7b7;
  }
  #sub_header #header_wrap #header_menu #header_nav > li > .cat_name {
    padding: 0;
    border: none;
    background-color: transparent;
    text-align: left;
    color: #6ac9ff;
    display: block;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
    font-feature-settings: "palt";
    width: 100%;
    position: relative;
    transition: 0.4s;
  }
  #sub_header #header_wrap #header_menu #header_nav > li > .cat_name:before {
    transform: rotate(-135deg);
  }
  #sub_header #header_wrap #header_menu #header_nav > li > .cat_name .en {
    color: #fff;
    opacity: 0.5;
    letter-spacing: 1px;
    display: block;
  }
  #sub_header #header_wrap #header_menu #header_nav > li > .cat_name .jp {
    background-color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 10px;
    letter-spacing: 2px;
    display: block;
  }
  #sub_header #header_wrap #header_menu #header_nav > li > .cat_name .jp .sml {
    display: inline-block;
    font-size: 80%;
    margin-left: 8px;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu {
    width: 100%;
    box-sizing: border-box;
    z-index: -1;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu > li {
    margin-top: 25px;
    position: relative;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu > li + li {
    margin-top: 15px;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu > li > a {
    display: block;
    padding: 0 55px 0 0;
    line-height: 1.5;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu > li > a .win {
    padding-bottom: 1em;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu > li > a .win .sml {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 70%;
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu > li::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 25px;
    height: 4px;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    transform: skew(45deg);
  }
  #sub_header #header_wrap #header_menu #header_nav > li .second_menu .second_cat_name {
    padding: 15px 20px 5px;
    display: block;
  }
  #sub_header #header_wrap #header_menu #header_nav > li.active .second_menu {
    transform: translateY(0);
  }
  #sub_header #header_wrap #header_menu #header_nav .com a {
    color: #35647f !important;
    opacity: 0.6;
    pointer-events: none;
  }
  #sub_header #header_wrap #site_name {
    font-size: 30px;
    padding: 0;
    font-weight: 500;
    width: auto;
  }
  #sub_header #header_wrap #site_name a {
    text-decoration: none;
  }
  #sub_header #header_internbtn, #sub_header #header_entrybtn {
    transition: 0.4s;
  }
  #sub_header #header_internbtn:hover, #sub_header #header_entrybtn:hover {
    background-color: #fff;
    text-decoration: none;
  }
  #sub_header #header_internbtn span, #sub_header #header_entrybtn span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
  #sub_header #header_internbtn span .sml, #sub_header #header_entrybtn span .sml {
    font-size: 70%;
    letter-spacing: 0;
    display: block;
  }
  #sub_header #header_internbtn {
    position: absolute;
    right: 280px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0075be;
    width: 200px;
    height: 100%;
    color: #fff;
    text-align: center;
    font-size: 12px;
    box-sizing: border-box;
    border: 3px solid #0075be;
    z-index: 9999;
  }
  #sub_header #header_internbtn:hover {
    color: #0075be;
  }
  #sub_header #header_entrybtn {
    position: fixed;
    top: 0;
    right: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6ac9ff;
    width: 200px;
    height: 100%;
    color: #fff;
    text-align: center;
    font-size: 12px;
    box-sizing: border-box;
    border: 3px solid #6ac9ff;
    z-index: 9999;
  }
  #sub_header #header_entrybtn:hover {
    color: #6ac9ff;
  }
  #sub_header.is-open #header_entrybtn {
    background-color: #fff;
    border-color: #fff;
    color: #31a7ff;
  }
  #sub_header.is-open #header_entrybtn:hover {
    border-color: #31a7ff;
  }
  #header_btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    transition: bottom 0s ease;
  }
  #header_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 65px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    transition: 0.4s;
  }
  #header_btn a:hover {
    background-color: #fff !important;
    text-decoration: none !important;
  }
  #header_btn a#header_internbtn {
    background-color: #0075be;
    border: 3px solid #0075be;
  }
  #header_btn a#header_internbtn:hover {
    color: #0075be;
  }
  #header_btn a#header_entrybtn {
    background-color: #6ac9ff;
    border: 3px solid #6ac9ff;
  }
  #header_btn a#header_entrybtn:hover {
    color: #6ac9ff;
  }
  #header_btn a#header_entrybtn span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
  #header_btn a#header_entrybtn span .sml {
    font-size: 60%;
    letter-spacing: 0;
    display: block;
  }
  /*  contents  */
  .content {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  .wrap {
    margin-left: auto;
    margin-right: auto;
    width: 1040px;
  }
  .ft_logo {
    width: 476px;
    margin: 150px auto 100px;
  }
  /* 下層ページ */
  /* 下層ページ end */
}
/* ++++++++++++++++++++++++++++++++++++++++++++++    sp    ++++++++++++++++++++++++++++++++++++++++++++++  */
/* ~ 768px */
@media only screen and (max-width: 768px) {
  body footer {
    padding-bottom: 60px;
  }
  .table tr:first-child th {
    padding-top: 0 !important;
  }
  .table tr th {
    border-bottom: none;
    padding: 20px 0 0 0 !important;
  }
  .table tr td {
    padding: 8px 0 20px 0 !important;
  }
  #pagetop {
    display: none;
  }
  div.fat-nav__wrapper {
    height: 100% !important;
  }
  /* ヘッダー sp */
  #header_btn {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    z-index: 9999;
  }
  #header_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 60px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.4s;
  }
  #header_btn a:hover {
    background-color: #fff !important;
    text-decoration: none !important;
  }
  #header_btn a#header_internbtn {
    background-color: #0075be;
    border: 3px solid #0075be;
  }
  #header_btn a#header_internbtn:hover {
    color: #0075be;
  }
  #header_btn a#header_entrybtn {
    background-color: #6ac9ff;
    border: 3px solid #6ac9ff;
  }
  #header_btn a#header_entrybtn:hover {
    color: #6ac9ff;
  }
  #header_btn a#header_entrybtn span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
  #header_btn a#header_entrybtn span .sml {
    font-size: 60%;
    letter-spacing: 0;
    display: block;
  }
  /* ヘッダー sp end */
  /*  contents sp  */
  .wrap {
    padding: 0 5%;
  }
  .ft_logo {
    width: 70%;
    margin: 60px auto 50px;
  }
  table th {
    padding: 10px 10px !important;
  }
  table td {
    font-size: 13px;
    padding: 10px 10px !important;
  }
  .scroll {
    overflow: scroll;
    position: relative;
  }
  .scroll:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
  .scroll:after {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    width: 51px;
    height: 60px;
    background-image: url("../img/touch.svg");
    background-size: cover;
    z-index: 2;
  }
  .scroll.off:before, .scroll.off:after {
    display: none;
  }
  .scroll table {
    overflow: auto;
    width: 600px;
    background: #fff;
  }
  /* contents sp end */
  /* 下層ページ */
  /* 下層ページ end */
}
/*# sourceMappingURL=base.css.map */