@charset "UTF-8";
/*===================================
  
  共通CSS

===================================*/
body {
  position: static;
  height: 100%;
}
body.is_hidden {
  overflow: hidden;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
/* アコーディオン */
.js_ac_box {
  height: 0;
  -webkit-transition: .4s ease-out;
  transition: .4s ease-out;
  visibility: hidden;
  overflow: hidden;
}
.is_open + .js_ac_box {
  height: auto;
  opacity: 1;
  visibility: visible;
}
/*===================================
  
  ヘッダー

===================================*/
/*------------------------------------
ヘッダー （PC） 
------------------------------------*/
@media print, screen and (min-width: 992px) {
  #header {
    background: #fff;
  }
  #header .header_wrap {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .header_wrap .header_inner {
    max-width: 1080px;
    min-width: 960px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  #header .header_wrap .header_inner .header_logo {
    margin: 10px 0 0 20px;
  }
  #header .header_wrap .header_inner .header_logo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 30px;
  }
  #header .header_wrap .header_inner .header_logo a p {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
    color: #003366;
  }
  #header .header_wrap .header_inner .header_logo a p span {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.0;
    background: #003366;
    padding: 2px 10px 4px;
    margin-right: 10px;
  }
  #header .header_wrap .header_inner .header_inquiry {
    margin: 10px 25px 0 0;
  }
  #header .header_wrap .header_inner .header_inquiry ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 35px;
  }
  #header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-mail {
    padding-top: 10px;
  }
  #header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-tel p {
    position: relative;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 28px;
  }
  #header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-tel p::before {
    content: "";
    background: url("../img/img-whole1/icon_tel_01_pc.png") no-repeat left top/contain;
    width: 19px;
    height: 35px;
    position: absolute;
    top: 7px;
    left: 0%;
  }
  #header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-tel p span {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0;
    text-align: center;
  }
  #header .header_wrap .header_inner .header_nav {
    width: 100%;
    margin: 10px 0;
  }
  #header .header_wrap .header_inner .header_nav nav ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #header .header_wrap .header_inner .header_nav nav ul li {
    position: relative;
    height: 38px;
  }
  #header .header_wrap .header_inner .header_nav nav ul li::after {
    content: "";
    background: url("../img/img-whole1/line_01.png") no-repeat left top/contain;
    width: 1px;
    height: 37px;
    position: absolute;
    top: 0;
    right: 0%;
  }
  #header .header_wrap .header_inner .header_nav nav ul li:last-of-type::after {
    display: none;
  }
  #header .header_wrap .header_inner .header_nav nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 21.5px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.5s;
  }
  #header .header_wrap .header_inner .header_nav nav ul li a span {
    position: relative;
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-01 a span {
    padding-left: 40px;
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-01 a span::before {
    content: "";
    background: url("../img/img-whole1/icon_01.png") no-repeat left top/contain;
    width: 23px;
    height: 38px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-03 a span {
    padding-left: 40px;
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-03 a span::before {
    content: "";
    background: url("../img/img-whole1/icon_02.png") no-repeat left top/contain;
    width: 32px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-06 a span {
    padding-left: 29px;
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-06 a span::before {
    content: "";
    background: url("../img/img-whole1/icon_03.png") no-repeat left top/contain;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-07 a span {
    padding-left: 51px;
  }
  #header .header_wrap .header_inner .header_nav nav ul li.header_nav_list-07 a span::before {
    content: "";
    background: url("../img/img-whole1/icon_04.png") no-repeat left top/contain;
    width: 41px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #header .header_wrap .header_inner .header_nav nav ul li a:hover {
    background: #E3F2FF;
  }
  /* 追従ヘッダー   */
  #header #fixed_header {
    box-shadow: 0px 2px 7px -5px #777777;
    position: fixed;
    top: -60px;
    right: 0;
    left: 0;
    margin: auto;
    background: #fff;
    z-index: 100;
    transition: 0.5s;
  }
  #header #fixed_header.is_active {
    top: 0;
  }
  #header #fixed_header .header_wrap .header_inner {
    max-width: 1280px;
    padding: 5px 0;
    justify-content: flex-start;
  }
  #header #fixed_header .header_wrap .header_inner .header_logo {
    margin: 0 20px 0 10px;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav {
    width: 65%;
    margin: 0;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.5s;
  }
  #header #fixed_header .header_wrap .header_inner .header_inquiry {
    margin: 0;
  }
}
@media screen and (min-width: 991px) and (max-width:1280px) {

  #header #fixed_header .header_wrap .header_inner .header_logo {
    margin: 0 15px 0 10px;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav {
    width: 62%;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav nav ul li a {
    padding: 0 10px;
  }
}
@media screen and (min-width: 991px) and (max-width:1234px) {

  #header #fixed_header .header_wrap .header_inner .header_logo {
    margin: 0 15px 0 10px;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav {
    width: 62%;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav nav ul li a {
    padding: 0 10px;
    font-size: 1.3rem;

  }
}

@media screen and (min-width: 991px) and (max-width:1180px) {
  #header .header_wrap .header_inner .header_nav nav ul li a {
    padding: 0 19px;
    font-size: 1.2rem;
  }
  #header #fixed_header .header_wrap .header_inner .header_logo {
    margin: 0 10px 0 10px;
  }
  #header #fixed_header .header_wrap .header_inner .header_logo img {
    width: 100%;
    height: 30px;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav {
    width: 63%;
  }
  #header #fixed_header .header_wrap .header_inner .header_nav nav ul li a {
    padding: 0 10px;
    font-size: 1.2rem;
  }
  #header #fixed_header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-tel p {
    font-size: 1.9rem;
  }
  #header #fixed_header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-tel p::before {
    content: "";
    background: url("../img/img-whole1/icon_tel_01_pc.png") no-repeat left top/contain;
    width: 19px;
    height: 35px;
    position: absolute;
    top: 7px;
    left: 0%;
  }
  #header #fixed_header .header_wrap .header_inner .header_inquiry ul li.header_inquiry-tel p span {
    font-size: 1.0rem;
  }
}
/*------------------------------------
ヘッダー （SP） 
------------------------------------*/
@media screen and (max-width: 991px) {
  #header .header_wrap .header_inner {
    width: 100%;
    padding: 10px 3% 10px 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  #header .header_wrap .header_inner .header_logo {
    margin: 0;
  }
  #header .header_wrap .header_inner .header_logo img {
    height: 25px;
  }
  #header .header_wrap .header_inner .header_logo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
  }
  #header .header_wrap .header_inner .header_logo a p {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0;
    color: #003366;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 5px;
  }
  #header .header_wrap .header_inner .header_logo a p span {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.0;
    background: #003366;
    padding: 4px 10px 4px;
  }
  #header .header_wrap .header_inner .header_inquiry {
    margin: 0;
  }
  #header .header_wrap .header_inner .header_inquiry ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 8px;
  }
  #header .header_wrap .header_inner .header_inquiry ul li img {
    height: 38px;
  }
  /* 追従ヘッダー   */
  #header #fixed_header {
    box-shadow: 0px 2px 7px -5px #777777;
    position: fixed;
    top: -60px;
    right: 0;
    left: 0;
    margin: auto;
    background: #fff;
    z-index: 100;
    transition: 0.5s;
  }
  #header #fixed_header.is_active {
    top: 0;
  }
}
/*===================================
  
  フッター

===================================*/
/*------------------------------------
フッター（PC）
------------------------------------*/
.footer .footer_inner {
  max-width: 1080px;
  min-width: 960px;
  width: 100%;
  height: 200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.footer .footer_inner .footer_logo {
  margin: 0 0 35px 0;
}
.footer .footer_inner .footer_logo a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
.footer .footer_inner .footer_logo a p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
  color: #003366;
}
.footer .footer_inner .footer_logo a p span {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.0;
  background: #003366;
  padding: 2px 10px 4px;
  margin-right: 10px;
}
.footer .footer_inner .footer_logo-02 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 60px;
}
.footer .footer_inner .footer_logo-02 a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 30px;
}
.footer .footer_inner .footer_logo-02 a p {
  font-size: 1.8rem;
  font-weight: bold;
}
.footer .footer_copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  height: 90px;
}
.footer .footer_copyright small {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
/*------------------------------------
フッター（SP）
------------------------------------*/
@media screen and (max-width: 991px) {
  .footer .footer_inner {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    height: 200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .footer_inner .footer_logo {
    margin: 0 0 35px 0;
  }
  .footer .footer_inner .footer_logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
  }
  .footer .footer_inner .footer_logo img {
    height: 29px;
  }
  .footer .footer_inner .footer_logo a p {
    font-size: 1.0rem;
    font-weight: bold;
    letter-spacing: 0;
    color: #003366;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.0;
  }
  .footer .footer_inner .footer_logo a p span {
    font-size: 1.0rem;
    color: #fff;
    line-height: 1.0;
    background: #003366;
    padding: 4px 10px 4px;
    margin-right: 10px;
  }
  .footer .footer_inner .footer_logo-02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0 60px;
  }
  .footer .footer_inner .footer_logo-02 img {
    height: 26px;
  }
  .footer .footer_inner .footer_logo-02 a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 15px;
  }
  .footer .footer_inner .footer_logo-02 a p {
    font-size: 1.0rem;
    font-weight: bold;
  }
  .footer .footer_copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    height: 40px;
  }
  .footer .footer_copyright small {
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
  }
}
/*===================================
  
  ページトップ

===================================*/
.pagetop {
  width: 46px;
  height: 46px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  transition: opacity 1s;
  opacity: 0;
  cursor: pointer;
  z-index: 99;
}
.pagetop.is_active {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .pagetop {
    width: 35px;
    height: 35px;
    bottom: 30px;
    right: 10px;
  }
}
/*===================================
  
#fixed_button

===================================*/
#fixed_button {
  position: fixed;
  bottom: 130px;
  right: 0;
  visibility: hidden;
  transition: 1s;
  opacity: 0;
}
#fixed_button.is_active {
  visibility: visible;
  opacity: 1;
}
#fixed_button ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  #fixed_button {
    display: none;
  }
}