@charset "UTF-8";
/********************************************/
/* header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 16px 0 0;
  width: 100%;
  background-color: #FFF;
  border-bottom: 1px solid #CCC;
  z-index: 99;
}

@media (max-width: 1024px) {
  .header {
    padding: 16px 0;
  }
}

.header .header_top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .header .header_top {
    margin-bottom: 0;
  }
}

.header .header_top .logo {
  width: 195px;
}

.header .header_top .logo a {
  display: block;
  width: 100%;
}

.header .header_top .logo a img {
  display: block;
  width: 100%;
  height: auto;
}

.header .header_top .logo a img.pc {
  display: block;
}

@media (max-width: 1024px) {
  .header .header_top .logo a img.pc {
    display: none;
  }
}

.header .header_top .logo a img.tablet {
  display: none;
  width: 174px;
}

@media (max-width: 1024px) {
  .header .header_top .logo a img.tablet {
    display: block;
  }
}

.header .header_top .top_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end;
  gap: 3%;
  width: calc(100% - 195px);
  color: #333;
}

@media (max-width: 1024px) {
  .header .header_top .top_nav {
    display: none;
  }
}

.header .header_top .menu_trigger {
  display: none;
}

@media (max-width: 1024px) {
  .header .header_top .menu_trigger {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
  }
  .header .header_top .menu_trigger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 18px;
    height: 2px;
    margin: auto;
    background-color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header_top .menu_trigger span:nth-child(1) {
    top: 5px;
  }
  .header .header_top .menu_trigger span:nth-child(2) {
    top: 0;
    bottom: 0;
  }
  .header .header_top .menu_trigger span:nth-child(3) {
    bottom: 5px;
  }
  .header .header_top .menu_trigger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .header .header_top .menu_trigger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .header_top .menu_trigger.active span:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
  }
}

.header .arrow_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .header .arrow_nav {
    padding: 24px 12px;
    border-top: 1px solid #CCC;
  }
}

@media (max-width: 1024px) {
  .header .arrow_nav li:not(:last-child) {
    margin-bottom: 28px;
  }
}

.header .arrow_nav li a {
  font: inherit;
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .header .arrow_nav li a {
    font-size: 1.6rem;
  }
}

.header .icon_nav {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .header .icon_nav {
    display: flex !important;
    padding: 0 12px;
  }
}

@media (max-width: 1024px) {
  .header .icon_nav li:not(:last-child) {
    margin-right: 42px;
  }
}

.header .icon_nav li .ac-ico-btn {
  font: inherit;
  cursor: pointer;
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .header .icon_nav li .ac-ico-btn {
    font-size: 1.6rem;
  }
}

.header .icon_nav li .ac-ico-btn.contact:before {
  background: url(../img/ico/ico-mail.svg) no-repeat center/contain;
}

.header .icon_nav li .ac-ico-btn.contact:hover:before {
  background-image: url(../img/ico/ico-mail-red.svg);
}

@media (max-width: 1024px) {
  .header .icon_nav li .ac-ico-btn.contact:hover:before {
    background-image: url(../img/ico/ico-mail.svg);
  }
}

.header .icon_nav li .ac-ico-btn.search:before {
  background: url(../img/ico/ico-search.svg) no-repeat center/contain;
}

.header .icon_nav li .ac-ico-btn.search:hover:before {
  background-image: url(../img/ico/ico-search-red.svg);
}

@media (max-width: 1024px) {
  .header .icon_nav li .ac-ico-btn.search:hover:before {
    background-image: url(../img/ico/ico-search.svg);
  }
}

.header .icon_nav li .ac-ico-btn.lang:before {
  background: url(../img/ico/ico-lang.svg) no-repeat center/contain;
}

.header .icon_nav li .ac-ico-btn.lang:hover:before {
  background-image: url(../img/ico/ico-lang-red.svg);
}

@media (max-width: 1024px) {
  .header .icon_nav li .ac-ico-btn.lang:hover:before {
    background-image: url(../img/ico/ico-lang.svg);
  }
}

.header .search_popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: block;
  padding: 24px;
  border-radius: 8px;
  background-color: #16575C;
  border: 1px solid #FFF;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  width: calc(100% + 200px);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .search_popup.active {
  opacity: 1;
  visibility: visible;
}

.header .search_popup .ac-sub-ttl {
  color: #FFF;
  border-color: #FFF;
  margin-bottom: 16px;
}

.header .search_popup .mod-search-form {
  background-color: #FFF;
}

.header .header_bottom .pc {
  display: block;
}

@media (max-width: 1024px) {
  .header .header_bottom .pc {
    display: none;
  }
}

.header .header_bottom .tablet {
  display: none;
}

@media (max-width: 1024px) {
  .header .header_bottom .tablet {
    display: block;
  }
}

@media (max-width: 1024px) {
  .header .header_bottom {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background-color: #FFF;
    width: 100%;
    height: calc(100vh - 30px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header_bottom.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header .header_bottom .scroll {
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 150px;
  }
}

.header .header_bottom .search_box {
  padding: 24px;
}

.header .header_bottom .search_box .mod-search-form {
  background-color: #F1EEF0;
}

.header .header_bottom .red_btn {
  padding: 0 24px 24px;
}

.header .header_bottom .red_btn a {
  display: block;
  padding: 1em;
  background-color: #C81133;
  color: #FFF;
  border-radius: 8px;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}

.header .header_bottom .bottom_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: end;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav {
    display: block;
  }
}

.header .header_bottom .bottom_nav .nav_item {
  width: calc(100% / 6);
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item {
    width: 100%;
  }
}

.header .header_bottom .bottom_nav .nav_item .parent {
  position: relative;
  display: block;
  padding: 0 .5em 26px;
  color: #333;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .parent {
    padding: 1.2em 40px 1.2em 10px;
    border-top: 1px solid #CCC;
    font-size: 1.6rem;
    text-align: left;
  }
  .header .header_bottom .bottom_nav .nav_item .parent:before, .header .header_bottom .bottom_nav .nav_item .parent:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    background-color: #C81133 !important;
  }
  .header .header_bottom .bottom_nav .nav_item .parent:before {
    right: 15px;
    width: 12px;
    height: 2px;
  }
  .header .header_bottom .bottom_nav .nav_item .parent:after {
    right: 20px;
    width: 2px;
    height: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header_bottom .bottom_nav .nav_item .parent.active:after {
    transform: rotate(90deg);
  }
}

.header .header_bottom .bottom_nav .nav_item .parent .txt {
  position: relative;
  display: inline-block;
}

.header .header_bottom .bottom_nav .nav_item .parent .txt:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  display: block;
  background-color: #C81133;
  width: 100%;
  height: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .parent .txt:before {
    content: none;
  }
}

.header .header_bottom .bottom_nav .nav_item .parent .txt:hover:before {
  opacity: 1;
  visibility: visible;
}

.header .header_bottom .bottom_nav .nav_item:first-child .parent {
  text-align: left;
}

.header .header_bottom .bottom_nav .nav_item:not(:first-child) .parent:before {
  content: '';
  position: absolute;
  top: .2em;
  left: 0;
  display: block;
  width: 2px;
  height: 1em;
  background-color: #333;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item:not(:first-child) .parent:before {
    top: 0;
    bottom: 0;
    left: initial;
    right: 15px;
    width: 12px;
    height: 2px;
  }
}

.header .header_bottom .bottom_nav .nav_item.active .parent .txt:before {
  opacity: 1;
  visibility: visible;
}

.header .header_bottom .bottom_nav .nav_item.btn a {
  position: relative;
  display: block;
  top: -12px;
  padding: .7em .3em;
  width: 100%;
  background-color: #C81133;
  border-radius: 8px;
  color: #FFF;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item.btn a {
    display: none;
  }
}

.header .header_bottom .bottom_nav .nav_item.btn a:hover {
  opacity: .6;
}

.header .header_bottom .bottom_nav .nav_item .child_nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  padding: 30px 0 0;
  background-color: #F1EEF0;
  width: 100%;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav {
    position: static;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}

.header .header_bottom .bottom_nav .nav_item .child_nav.is-open {
  opacity: 1;
  visibility: visible;
}

.header .header_bottom .bottom_nav .nav_item .child_nav .child_box {
  width: 96%;
  max-width: 1040px;
  margin: auto;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box {
    width: 100%;
    max-width: 100%;
  }
}

.header .header_bottom .bottom_nav .nav_item .child_nav .child_box.mb20 {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box.mb20 {
    margin-bottom: 0;
  }
}

.header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-main-btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  padding-top: .1em;
  padding-bottom: .1em;
  height: 3.4em;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-main-btn {
    display: block;
    padding: 1.2em 10px;
    margin-bottom: 0;
    height: auto;
    border: none;
    border-top: 1px solid #CCC;
    background-color: #F1EEF0;
    border-radius: 0;
    font-size: 1.6rem;
    font-weight: 400;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-main-btn:after {
    right: 24px;
  }
}

.header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-sub-ttl {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-sub-ttl {
    padding: 1em 10px;
    margin: 0;
    border-top: 1px solid #CCC;
    background-color: #FFF;
    font-size: 1.4rem;
  }
}

.header .header_bottom .bottom_nav .nav_item .child_nav .child_box .main_nav li a {
  width: 100%;
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav .item {
    margin-bottom: 0;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column02, .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column04 {
    display: block;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column02 .item, .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column04 .item {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-main-btn {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 30px;
    height: 100%;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-main-btn:after {
    right: 10px;
    width: 14px;
    height: 14px;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .ac-main-btn.tab_border_bottom {
    border-bottom: 1px solid #CCC;
    height: calc(100% + 1px);
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column04 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column04 .item {
    width: 50%;
  }
  .header .header_bottom .bottom_nav .nav_item .child_nav .child_box .sub_nav.mod-column04 .item:nth-child(odd) a {
    border-right: 1px solid #CCC;
  }
}

.child_close {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
  padding: 15px 10px;
  background: none;
  border: none;
  letter-spacing: .1em;
  font-size: 14px;
  cursor: pointer;
  background: #CCC;
}

@media (max-width: 1024px) {
  .child_close {
    display: none;
  }
}

.child_close:before {
  content: "×";
  display: block;
  font-size: 1.6em;
}

/********************************************/
/* footer */
/********************************************/
.footer .link_box {
  background-color: #F1EEF0;
  padding: 40px 0 50px;
}

@media (max-width: 768px) {
  .footer .link_box {
    padding: 30px 0;
  }
}

.footer .link_box .ttl {
  display: block;
  margin-bottom: .5em;
  color: #C81133;
  font-size: clamp(2rem, 2.3vw, 2.5rem);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .footer .link_box .list .item {
    margin-bottom: 15px;
  }
}

.footer .link_box .list .item a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .link_box .list .item a:hover {
  opacity: .6;
}

.footer .link_box .list .item a img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.footer .footer_box {
  padding: 50px 0 12px;
  background-color: #333;
}

.footer .footer_box .footer_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 5%;
  padding-top: 46px;
  padding-bottom: 56px;
  border-top: 1px solid #CCC;
  color: #FFF;
}

@media (max-width: 768px) {
  .footer .footer_box .footer_nav {
    padding-bottom: 35px;
  }
}

.footer .footer_box .footer_nav .item {
  width: calc((100% / 4) - 3.75%);
}

@media (max-width: 1024px) {
  .footer .footer_box .footer_nav .item {
    width: calc((100% / 2) - 3.75%);
    margin-bottom: 20px;
  }
}

.footer .footer_box .footer_nav .item .list:not(:last-child) {
  margin-bottom: 35px;
}

.footer .footer_box .footer_nav .item .list li {
  color: inherit;
  font-size: 1.4rem;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  .footer .footer_box .footer_nav .item .list li {
    font-size: 1.2rem;
  }
}

.footer .footer_box .footer_nav .item .list li.list_ttl {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 768px) {
  .footer .footer_box .footer_nav .item .list li.list_ttl {
    font-size: 1.4rem;
  }
}

.footer .footer_box .footer_nav .item .list li a {
  display: inline-block;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .footer_box .footer_nav .item .list li a:hover {
  opacity: .6;
}

.footer .footer_box .footer_nav .item .list .child_list li:not(.list_ttl) {
  padding-left: 1em;
}

.footer .footer_box .info_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3%;
  padding-bottom: 40px;
  margin: auto;
  max-width: 78/0px;
}

@media (max-width: 768px) {
  .footer .footer_box .info_box {
    display: block;
  }
}

.footer .footer_box .info_box .company {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 18px;
  border-radius: 8px;
  width: 75%;
  background-color: #FFF;
}

@media (max-width: 768px) {
  .footer .footer_box .info_box .company {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
  }
}

.footer .footer_box .info_box .company .img {
  width: 230px;
  padding-right: 25px;
}

@media (max-width: 768px) {
  .footer .footer_box .info_box .company .img {
    width: 150px;
    padding-right: 0;
    padding-bottom: 10px;
    margin: auto;
  }
}

.footer .footer_box .info_box .company .img img {
  display: block;
  width: 100%;
}

.footer .footer_box .info_box .company .txt {
  border-left: 1px solid #CCC;
  width: calc(100% - 200px);
  padding-left: 25px;
}

@media (max-width: 768px) {
  .footer .footer_box .info_box .company .txt {
    border-left: none;
    border-top: 1px solid #CCC;
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }
}

.footer .footer_box .info_box .company .txt p {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
}

.footer .footer_box .info_box .company .txt p.bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.footer .footer_box .info_box .sns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 3%;
  width: 25%;
}

@media (max-width: 768px) {
  .footer .footer_box .info_box .sns {
    width: 100%;
    justify-content: center;
    gap: 5%;
  }
}

.footer .footer_box .info_box .sns .item a {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .footer_box .info_box .sns .item a img {
  display: block;
  width: 100%;
  height: auto;
}

.footer .footer_box .info_box .sns .item a:hover {
  opacity: .6;
}

.footer .footer_box .info_box .sns .item:last-child a {
  width: 77px;
  height: 17px;
}

.footer .footer_box .copyright {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

/*# sourceMappingURL=navigation.css.map */