header {
  width: 100%;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  header .header_content {
    margin-bottom: 1em;
  }
}

header .header_top {
  /*padding-left: 1em;*/
}

@media (max-width: 767.98px) {
  header .header_top {
    /*height: 50px;*/
    height:initial;
  }
}

@media (min-width: 768px) {
  header .header_top {
    /*height: 60px;*/
    height:initial;
  }
}

header .header_top h1 {
  margin-bottom: 0;
}

header .header_top .header_data {
    font-size: 0.75em;
    padding: 1em;
    width: 600px;
    text-align: right;
    margin-right: 50px;
}

@media (max-width: 767.98px) {
  header .header_top .header_data {
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  header .header_top .header_data {
    visibility: visible;
  }
}

/*ユーザ名とログインボタンを1200pxを境に
    ヘッダとハンバーバーメニュー内の切替する*/
@media (max-width: 1199.98px) {
    .user_name_header {
        visibility: hidden;
    }
}

@media (max-width: 1199.98px) {
    .user_name_hamburger {
        visibility: visible;
    }
}

@media (min-width: 1200px) {
    .user_name_hamburger {
        visibility: hidden;
    }
}

header .header_top .logo {
  width: 150px;
  min-width: 110px;
}

header .header_top .logo img {
  width: 75%;
}

header .header_top .login {
  border: none;
  background-color: #444444;
  color: #ffffff;
  height: 100%;
  font-size: 1.25em;
}

@media (max-width: 767.98px) {
  header .header_top .login {
    width: 6em;
    font-size: 1em;
  }
}

@media (min-width: 768px) {
  header .header_top .login {
    width: 155px;
    min-width: 110px;
  }
}

header .header_top .search {
  border: none;
  background-color: #6187E5;
  color: #ffffff;
  height: 100%;
  font-size: 1.25em;
  width: 4em;
}

header .header_top .login-new {
  border: none;
  background-color: #444444;
  color: #ffffff;
  height: 100%;
  font-size: 1.25em;
}

@media (max-width: 767.98px) {
  header .header_top .login-new {
    width: 4em;
    font-size: 1em;
  }
}

@media (min-width: 768px) {
  header .header_top .login-new {
    width: 155px;
    min-width: 110px;
  }
}

header .header_top #fontsize_block {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #ffffff;
    /*height: 135px;*/
    height: 65px;
}

header .header_top #fontsize_block ul {
  margin-bottom: 0;
  list-style: none;
  height: 100%;
}

    header .header_top #fontsize_block ul li {
        float: left;
        margin: 0 1px 0 0;
        text-align: center;
        line-height: 25px;
        cursor: pointer;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        /*height: 100%;*/
        height: 50px;
        width: 50px;
        min-width: 50px;
        /*padding: 1em;*/
        background-color: #000000;
        font-size: 1.25em;
    }

header .header_top #fontsize_block ul li.active {
  display: block;
  text-decoration: none;
  background: #6187E5;
}

/*=== burger ===*/
/*burger btn*/
#btn_gNav {
  position : fixed;
  top : 0em;
  right : 0em;
  cursor : pointer;
  width : 40px;
  height : 40px;
  z-index : 90;
  background: #3584bb;
}

/*burger btn inner*/
#btn_gNav span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  width: 18px;
}

#btn_gNav span:nth-of-type(1) {
  top: 14px;
}

#btn_gNav span:nth-of-type(2) {
  top: 19px;
}

#btn_gNav span:nth-of-type(3) {
  top:24px;
}

#nav_gNav.open #btn_gNav span{
  width: 18px;
  background: #000000;
}

#nav_gNav.open #btn_gNav span:nth-of-type(1) {
  top: 13px;
  left: 11px;
  transform: translateY(6px) rotate(-45deg);
}

#nav_gNav.open #btn_gNav span:nth-of-type(2) {
  opacity: 0;
}

#nav_gNav.open #btn_gNav span:nth-of-type(3) {
  top: 25px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
}

#nav_gNav{
  position: fixed;
  top: 0;
  right: -220px;
  width: 220px;
  height: 100%;
  z-index: 80;
  background: #3584bb;
  transition: all 0.5s;
}
#ul_gNav{
  marign: 0;
  margin-top: 30px;
  padding: 10px 10px 0;
  list-style-type: none;
}

#ul_gNav a{
  position: relative;
  display: block;
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  margin: 0;
  padding: 10px 15px 10px 0;
}

#ul_gNav a::after{
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right:11px;
  top:16px;
}

#nav_gNav.open{
  right: 0;
}

/*footer*/
footer section.links {
  margin-bottom: 2em;
}

footer section.links .list {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding-top: 1em;
  padding-bottom: 1em;
}

footer section.links ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  footer section.links ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  footer section.links ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

footer section.links ul li {
  padding-left: 2em;
  padding-right: 2em;
  margin-bottom: 0.25em;
  margin-top: 0.25em;
}

@media (max-width: 767.98px) {
  footer section.links ul li {
    width: 50%;
    padding-right: 0;
  }
}

footer section.links-2 .list {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding-top: 1em;
  padding-bottom: 0.95em;
}

footer section.links-2 ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0.94em;
}

@media (max-width: 767.98px) {
    footer section.links-2 ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
  footer section.links-2 ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

footer section.links-2 ul li {
    font-size: 1em;
    padding-left: 2em;
    padding-right: 1.7em;
    margin-bottom: 0.3em;
    margin-top: 0.3em;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
  display: inline-block;
}

footer section.banners {
  margin-top: 2em;
  margin-bottom: 2em;
}

footer section.banners .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  footer section.banners .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

@media (min-width: 768px) {
  footer section.banners .list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

footer section.banners .list figure {
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  footer section.banners .list figure {
    width: 25%;
    margin-bottom: 0.25em;
  }
}

@media (min-width: 768px) {
  footer section.banners .list figure {
    width: 162px;
  }
}

footer section.banners .list figure img {
  width: 100%;
}

footer section.about {
  margin-top: 2em;
  margin-bottom: 2em;
}

footer section.about .content {
  word-break: break-word;
}

footer section.gdpr {
  margin-top: 2em;
  margin-bottom: 2em;
}

footer section.gdpr .round-btn {
  width: 205px;
}

footer section.gdpr .content {
  word-break: break-word;
}

footer .site {
  padding-left: 1em;
  padding-right: 1em;
  margin-bottom: 1em;
}

footer .site .logo {
  width: 265px;
}

footer .site .logo img {
  width: 100%;
}

footer .site .links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

footer .site .links li {
  margin: 0;
  padding: 0.07em 0 0 0;
}

footer .site .links li a {
  display: inline;
}

/*footer .site .links li::before {
  content: '|';
  padding: 0 0.92em 0 0.91em;
}*/

/*footer .site .links li:last-of-type::after {
  content: '|';
  padding-left: 0.91em;
}*/

@media (max-width: 570px) {
  footer .site .links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 0 !important;
  }

  footer .site .links li {
    width: 50%;
  }

}

footer .copyright {
  background-color: #000000;
  color: #ffffff;
  padding: 1em;
  text-align: right;
}

@media (max-width: 767.98px) {
  footer .info-bar {
    height: 50px;
  }
}

@media (min-width: 768px) {
  footer .info-bar {
    height: 75px;
    min-height: 65px;
  }
}

footer .info-bar .to-top {
    position: fixed;
    right: 0px;

    background-color: #3153BC;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767.98px) {
  footer .info-bar .to-top {
    width: 50px;
  }
}

@media (min-width: 768px) {
  footer .info-bar .to-top {
    width: 75px;
    min-width: 65px;
  }
}

footer .info-bar .twitter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  footer .info-bar .twitter {
    width: 50px;
  }
}

@media (min-width: 768px) {
  footer .info-bar .twitter {
    width: 75px;
    min-width: 65px;
  }
}

footer .info-bar .youtube {
  width: 100px;
  min-width: 95px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  footer .info-bar .youtube {
    width: 80px;
  }
}

@media (min-width: 768px) {
  footer .info-bar .youtube {
    width: 100px;
    min-width: 95px;
  }
}

footer .info-bar img {
  max-width: 100%;
  padding: 1em;
}

#page-top {
    width: 65px;
    height: 65px;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

section {
    max-width: 1300px;
    margin: 0 auto;
}
section.main-title {
    max-width: unset;
    background-color: #3153BC;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.main-title h3 {
  padding-left: 0.6em;
}
@media (min-width: 768px) {
section.main-title {
    padding: 1.0em 3em;
}
}
@media (max-width: 767.98px){
section.main-title {
    padding: 1em 1.6em;
}
section.main-title h3 {
    font-size: 1.25em;
}
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5em;
}h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5em;
    font-weight: 500;
    line-height: 1.2;
}
h3, .h3 {
    font-size: 1.75em;
}
h3 {
    font-size: 1.75em;
    margin-bottom: 0;
}

@media (min-width: 768px) {
section.main-title h3 {
    font-size: 1.5em;
}
}

.d-none {
    display: none !important;
}
.mr-3, .mx-3 {
    margin-right: 1em !important;
}

.w-100 {
    width: 100% !important;
}
.h-100 {
    height: 100% !important;
}
.m-auto {
    margin: auto !important;
}
.row {
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 768px) {
.d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
}
.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.top-separator {
    width: 100%;
    background-color: #EAEAEA;
}

#kikantop_header_searchKeywordsTXT::placeholder {
  font-size: 0.98em;
}

@media (min-width: 768px) {
.top-separator {
    height: 3em;
}
}
@media (max-width: 767.98px){
.top-separator {
    height: 6.5em;
}

}

.v-center-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575.98px) {
  .search-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

#kikantop_header_searchKeywordsTXT::placeholder {
  font-size: 0.95em;
}

  .option {
    margin-top: 1em;
  }
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

@media (max-width: 575.98px) {
.searchsBtn {
    margin-top: 5px !important;
}
}
@media (min-width: 768px) {
.search_container-w-50 {
    width: 50% !important;
}
}
@media (max-width: 575.98px) {
.search_container-w-50 {
    width: 90% !important;
    margin-top: 5px;
}
.search_container-w-50 input[type="text"] {
    height: initial !important;
}
}

.search-bar .search_container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    border: 0.1px solid #6B6B6B;
    padding: 0 8px;
    border-radius: 20px;
    background-color: #ffffff;
    height: 2.2em;
    overflow: hidden;
}

.search-bar .search_container button {
    cursor: pointer;
    border: none;
    background: #000000;
    color: #fff;
    position: absolute;
    width: 3.5em;
    height: 2.5em;
    right: 0px;
    top: -3px;
    outline: none;
}

.search-bar .search_container button::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.search-bar .search_container input[type="text"] {
  height: 2.2em;
  width: 100%;
  border: none;
}

section.main-title h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
section.main-title h3 img {
    width: 1.25em;
    height: 1.25em;
}

/*footer*/
.round-btn-nonmark {
    background-color: #444444;
    color: #ffffff !important;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    border-radius: 25px;
    position: relative;
    border: 0;
    display: inline-block;
    padding-left: 1em;
    padding-right: 1em;
}

.v-center-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.text-right {
    text-align: right !important;
}

.link-btn {
  position: relative;
}

.link-btn a::before {
  position: absolute;
  content: "";
  top: -0.1em;
  left: 0;
    background-image: url(/assets/images/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  width: 1.5em;
  height: 1.5em;
}

.ml-3, .mx-3 {
    margin-left: 1em!important;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pl-3, .px-3 {
    padding-left: 1em !important;
}

.pr-3, .px-3 {
    padding-right: 1em !important;
}
.pr-2, .px-2 {
    padding-right: 0.5rem !important;
}

.links-2 a , footer .site .links a{
    color: #000000;
    display: inherit;
}
#ul_gNav a[disabled], .links-2 a[disabled] {
    pointer-events: none;
    color: #9b9b9b;
    display: none;
}

.twitter{
margin-right: 60px;
}

/* 2024/12/27追加 スマホの場合の検索フォームボタン*/
.searchsBtn {
  opacity: 0;
}
