/* -HEADER
--------------------------------------------------------------------------------------------- */
#headertop {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  transition: .6s;
}
#headertop.fixed {
  transform: translateY(0%);
  transition: .3s;
}
/*||トグルメニュー開いたら背景を暗く||*/
#headertop::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
body.fixed #headertop::before {
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease-in-out;
  z-index: 100;
}
/*||トグルメニュー開いたら背景を暗く-END||*/
#header {
  height: 60px;
  position: relative;
  background-color: #fff;
}
#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  /*  transform: translateY(-100%);*/
  transform: translateY(0%);
}
#headertop.fixed #header.view {
  transform: translateY(0%);
  transition: .3s;
}
.scroll_logo {
  /*  position: relative;*/
  margin-bottom: 0;
  line-height: 1;
  display: block;
  width: 196px;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translate(0%, -50%);
}
.scroll_logo::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/logo_black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.scroll_logo a {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
.scroll_logo a:hover {
  text-decoration: none;
}
.scroll_logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scroll_logo a picture {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #header {
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  #header {
    height: 110px;
  }
  .scroll_logo {
    width: 170px;
  }
}
@media screen and (min-width: 1200px) {
  .scroll_logo {
    width: 160px;
    left: 3.3%;
  }
}
/*||トップ以外||*/
.header_page{
   border-bottom: 1px solid rgba(160, 160, 160, 0.25); 
}
/* -Toggle
--------------------------------------------------------------------------------------------- */
/*Toggle*/
.Toggle {
  display: block;
  cursor: pointer;
  z-index: 6666;
  transition: 0.5s ease-in-out;
  width: 52px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  background-color: #000;
}
.Toggle span {
  display: block;
  position: absolute;
  border-bottom: solid 1px rgba(255, 255, 255, 1);
  transition: .3s ease-in-out;
  width: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.Toggle span:nth-child(1) {
  top: 14px;
}
.Toggle span:nth-child(2) {
  top: 20px;
}
.Toggle span:nth-child(3) {
  top: 27px;
  position: relative;
}
.Toggle span:nth-child(3)::before {
  content: "Menu";
  font-size: 0.71rem;
  color: #fff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: .3s ease-in-out;
}
/*Toggle.tgl-active*/
.Toggle.tgl-active {
  position: absolute;
}
.Toggle.tgl-active span {
  transition: 0.3s ease-in-out;
  border-bottom: solid 1px rgba(255, 255, 255, 1);
}
.Toggle.tgl-active span:nth-child(1) {
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
}
.Toggle.tgl-active span:nth-child(2) {
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
}
.Toggle.tgl-active span:nth-child(3) {
  border-bottom: solid 1px rgba(0, 0, 0, 1);
  z-index: -1;
}
.Toggle.tgl-active span:nth-child(3)::before {
  content: "Close";
  transition: .3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .Toggle {
    width: 72px;
    height: 80px;
  }
  .Toggle span:nth-child(1) {
    top: 29px;
  }
  .Toggle span:nth-child(2) {
    top: 36px;
  }
  .Toggle span:nth-child(3) {
    top: 43px;
  }
}
@media screen and (min-width: 992px) {
  .Toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 35px;
  }
  .Toggle span:nth-child(1) {
    top: 19px;
  }
  .Toggle span:nth-child(2) {
    top: 25px;
  }
  .Toggle span:nth-child(3) {
    top: 31px;
  }
  .Toggle span:nth-child(3)::before {
    content: none;
  }
  .Toggle.tgl-active span:nth-child(1) {
    top: 50%;
  }
  .Toggle.tgl-active span:nth-child(2) {
    top: 50%;
  }
  .Toggle.tgl-active span:nth-child(3)::before {
    content: none;
  }
}
@media screen and (min-width: 1200px) {
  .Toggle {
    right: 60px;
  }
}
/* -NAVI
--------------------------------------------------------------------------------------------- */
.pc_navi_right {
  display: block;
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translate(0%, -50%);
  transition: .6s;
}
.pc_navi_right .navi {
  display: none;
}
.pc_navi_btn_wrap {
  display: flex;
}
.navi_btn {
  font-size: 0.71rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 52px;
  height: 60px;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
}
.navi_btn_blue {
  color: #fff;
  background-color: #11438a;
  border: 1px solid rgba(17, 67, 138, 1);
}
.navi_btn_blue:hover {
  color: #11438a;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.5s;
}
.navi_btn_yellow {
  color: #000;
  background-color: #fad205;
}
.navi_btn_yellow:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 1);
  transition: all 0.5s;
}
.navi_btn_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.navi_btn_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navi_btn_img01 {
  width: 15px;
  height: 14px;
}
.navi_btn_img01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/calender_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.5s;
}
a:hover .navi_btn_img01::before {
  background-image: url("../images/calender_blue.svg");
  transition: all 0.5s;
}
.navi_btn_img02 {
  width: 11px;
  height: 15px;
}
.navi_btn_img02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/map_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.5s;
}
a:hover .navi_btn_img02::before {
  background-image: url("../images/map_white.svg");
  transition: all 0.5s;
}
.navi_btn_txt {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_navi_right {
    right: 72px;
  }
  .navi_btn {
    width: 72px;
    height: 80px;
  }
  .navi_btn_img01 {
    width: 20px;
    height: 19px;
  }
  .navi_btn_img02 {
    width: 16px;
    height: 20px;
  }
}
@media screen and (min-width: 992px) {
  .pc_navi_right {
    right: 110px;
  }
  .navi_btn {
    font-size: 0.75rem;
    flex-direction: row;
    width: 140px;
    height: 40px;
    border-radius: 20px;
  }
  .navi_btn_img01 {
    width: 14px;
    height: 14px;
  }
  .navi_btn_img02 {
    width: 13px;
    height: 18px;
  }
  .navi_btn_img {
    margin-right: 6px;
    margin-bottom: 0;
  }
  .pc_navi_btn_wrap .navi_btn:first-child {
    margin-right: 10px;
  }
  .navi_btn_txt {
    display: inline;
  }
}
@media screen and (min-width: 1200px) {
  .pc_navi_right {
    right: 130px;
  }
  #header.view .pc_navi_right {
    transition: 0.6s ease-in-out;
  }
  .pc_navi_right > #gNav {
    display: flex;
    align-items: center;
  }
  .pc_navi_right .navi {
    display: flex;
    margin-right: 1rem;
  }
  .pc_navi_right .navi > li {
    margin-right: 0.8rem;
  }
  .pc_navi_right .navi > li:last-child {
    margin-right: 0;
  }
  .navi_txt {
    font-size: 0.875rem;
    letter-spacing: 0.07em;
    font-weight: bold;
    color: #000;
    transition: all 0.5s;
  }
  .navi_txt:hover {
    color: #b4b4b4;
    transition: all 0.5s;
  }
}
@media screen and (min-width: 1500px) {
  .pc_navi_right {
    right: 140px;
  }
  .pc_navi_right .navi {
    margin-right: 1.7rem;
  }
  .pc_navi_right .navi > li {
    margin-right: 1.68rem;
  }
}
@media screen and (min-width: 1200px) {
  .sub-menu_box {
    position: relative;
  }
  .sub-menu_box > a {
    cursor: pointer;
  }
  .sub-menu_open {
    position: relative;
    padding-right: 16px;
  }
  .sub-menu_open:hover {
    color: #000;
  }
  .sub-menu_open::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
  }
  .sub-menu_open::after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translate(0%, -50%);
    transition: 0.3s ease-in-out;
    opacity: 1;
  }
  .sub-menu_open:hover::after, .sub-menu_box:hover .sub-menu_open::after {
    opacity: 0;
  }
  .sub-menu_box .sub-menu {
    position: absolute;
    left: 51%;
    top: 23px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 180px;
    padding-top: 21px;
    transform: translateX(-50%);
  }
  .sub-menu_box:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .sub-menu_box .sub-menu > ul {
    border: 1px solid rgba(170, 170, 170, 0.25);
    background-color: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
  }
  .sub-menu_box .sub-menu > ul > li {
    margin-bottom: 0.7rem;
  }
  .sub-menu_box .sub-menu > ul > li:last-child {
    margin-bottom: 0;
  }
  .sub-menu_box .sub-menu a {
    font-size: 0.875rem;
    letter-spacing: 0.07em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    transition: all 0.5s;
    position: relative;
  }
  .sub-menu_box .sub-menu a:hover {
    opacity: 1;
    color: #b4b4b4;
    transition: all 0.5s;
  }
  .sub-menu_icon {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #11438a;
    position: relative;
    border: 1px solid rgba(17, 67, 138, 0.5);
    transition: all 0.5s;
  }
  .sub-menu_box .sub-menu a:hover .sub-menu_icon {
    background-color: #fff;
    transition: all 0.5s;
  }
  .sub-menu_icon::before {
    content: "";
    display: block;
    width: 6px;
    height: 5px;
    background-image: url("../images/arrow_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
  }
  .sub-menu_box .sub-menu a:hover .sub-menu_icon::before {
    background-image: url("../images/arrow_blue.svg");
    transition: all 0.5s;
  }
}
/* -toggle
--------------------------------------------------------------------------------------------- */
/*body.fixed*/
body.fixed {
  position: fixed;
  width: 100%;
  /* height: 100%; 標準*/
  height: auto; /*トグルメニューオープンで背景を暗く*/
  z-index: 0;
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
body.fixed::before {
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease-in-out;
  z-index: 100;
}
/***************************************
toggle
***************************************/
.scroll_tgl_wrap {
  display: block;
  /*    position: fixed;
  right: 0;
  top: 0;*/
  width: 100%;
  z-index: 999999;
}
.togglewrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1111;
  /*    -webkit-transform: translateY(-100%);
  transform: translateY(-100%);*/
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: 0.4s ease-in-out;
  padding-bottom: 11rem;
  /*  display: flex;
  flex-direction: column;
  align-items: center;*/
  overflow: hidden;
  /*  visibility: hidden;
  opacity: 0;*/
  background-color: #f7f7f7;
}
/*togglewrap.active*/
.togglewrap.active {
  /*  -webkit-transform: translateY(0%);
  transform: translateY(0%);*/
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  overflow-y: scroll;
  /*  opacity: 1;
  visibility: visible;*/
}
/*ttogglewrap_inner*/
.togglewrap_inner {
  width: 100%;
  /*height: 100%;*/
  margin: 0;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .togglewrap {
    max-width: 450px;
    padding-bottom: 4rem;
  }
  /*  .togglewrap_inner {
    height: 100%;
  }*/
}
/*トグルメニュー*/
.toggle_head_block {
  position: absolute;
  width: calc(100% - 52px);
  height: 60px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 4%;
  background-color: #fff;
}
.toggle_logo {
  display: block;
  width: 196px;
}
@media screen and (min-width: 768px) {
  .toggle_head_block {
    height: 80px;
    width: calc(100% - 72px);
  }
}
@media screen and (min-width: 992px) {
  .toggle_head_block {
    background-color: #f7f7f7;
    height: 110px;
    width: 100%;
    padding-left: 0;
    padding-right: 110px;
    justify-content: flex-end;
  }
  .toggle_logo {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .toggle_head_block {
    padding-right: 140px;
  }
  .scroll_tgl_wrap .navi_btn {
    font-size: 0.6875rem;
    width: 120px;
  }
}
.toggle_main_block {
  width: 88%;
  margin: 0 auto;
  padding-top: 8.5rem;
}
.toggle_list {
  margin-bottom: 3.55rem;
}
.toggle_list > ul > li {
  margin-bottom: 10px;
}
.toggle_list > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_list_txt {
  letter-spacing: 0.07em;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.86rem 1.3rem;
  border-radius: 10px;
  transition: all 0.5s;
}
.toggle_list_txt:hover {
  color: #fff;
  background-color: #11438a;
  transition: all 0.5s;
}
.toggle_list_arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #11438a;
  position: relative;
  transition: all 0.5s;
}
a:hover .toggle_list_arrow {
  background-color: #fff;
  transition: all 0.5s;
}
.toggle_list_arrow::before {
  content: "";
  display: block;
  width: 4px;
  height: 5px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
a:hover .toggle_list_arrow::before {
  background-image: url("../images/arrow_blue.svg");
  transition: all 0.5s;
}
.toggle_store_block {
  margin-bottom: 3rem;
}
.toggle_store_block > ul > li {
  margin-bottom: 2rem;
}
.toggle_store_block > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_store_item {
  text-align: center;
}
.toggle_store_name {
  font-size: 0.93rem;
  letter-spacing: 0.06em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fad205;
  width: 140px;
  height: 26px;
  border-radius: 13px;
  margin: 0 auto 1rem;
}
.toggle_store_date {
  line-height: 1.57;
  font-weight: bold;
}
.toggle_store_date a {
  color: #000;
}
.toggle_sns_block {
  display: flex;
  justify-content: center;
  margin-bottom: 2.7rem;
}
.toggle_sns_img {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.5s;
}
.toggle_sns_img:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.toggle_sns_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.toggle_policy_block {
  display: flex;
  justify-content: center;
  margin-bottom: 2.7rem;
}
.toggle_policy {
  font-size: 0.86rem;
  color: #8c8c8c;
  text-decoration: underline;
  transition: all 0.5s;
}
.toggle_policy:hover {
  color: #8c8c8c;
  opacity: 0.7;
  transition: all 0.5s;
}
.toggle_copy {
  font-size: 0.86rem;
  text-align: center;
  color: #8c8c8c;
}
@media screen and (min-width: 768px) {
  .toggle_main_block {
    width: 50%;
    padding-top: 10rem;
  }
  .toggle_policy_block {
    margin-bottom: 0;
  }
  .toggle_copy {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .toggle_main_block {
    width: 75%;
    padding-top: 8.7rem;
  }
}
@media screen and (min-width: 1200px) {
  .toggle_list {
    margin-bottom: 3rem;
  }
  .toggle_list_txt {
    font-size: 0.9375rem;
    padding: 0.9rem 1.1rem;
  }
  .toggle_store_block {
    margin-bottom: 2.8rem;
  }
  .toggle_store_block > ul > li {
    margin-bottom: 1.8rem;
  }
  .toggle_store_name {
    font-size: 0.8125rem;
  }
  .toggle_store_date {
    font-size: 0.875rem;
  }
  .toggle_sns_block {
    margin-bottom: 2.2rem;
  }
  .toggle_policy {
    font-size: 0.75rem;
  }
}
/**************************
ページヘッダー
**************************/
.page-head_outer {
  padding-top: 9.3rem;
  margin-bottom: 4rem;
    position: relative;
}
.page-head {
  width: 84%;
  margin: 0 auto;
  max-width: 1300px;
}
.page-head_inner {
  margin-bottom: 3rem;
}
.head-bfont {
  font-size: 2.57rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  word-wrap: break-word;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.h-page-tit {
  font-size: 0.93rem;
  line-height: 1.2;
  letter-spacing: 0.07em;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-head_outer {
    padding-top: 12rem;
  }
  .head-bfont {
    font-size: 3.5rem;
  }
  .h-page-tit {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .page-head {}
}
@media screen and (min-width: 1200px) {
  .page-head_outer {
    padding-top: 18.3rem;
    margin-bottom: 6rem;
  }
  .page-head {
    width: 85.5%;
  }
  .page-head_inner {
    margin-bottom: 8.3rem;
  }
  .head-bfont {
    font-size: 4.5rem;
    margin-bottom: 1.4rem;
  }
  .h-page-tit {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .page-head {
    width: 72%;
  }
}
/**************************
画像有り
**************************/
.page-head_outer_headimg .page-head {
  max-width: 100%;
  margin-bottom: 3.7rem;
}
.page-head_outer_headimg .page-head_inner {
  text-align: center;
  margin-bottom: 0;
}
.page-head_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-head_outer_headimg #pls {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-head_outer.page-head_outer_headimg {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
      margin-bottom: 6rem;
  }
  .page-head_outer_headimg .page-head {
    width: 48%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 0;
  }
  .page-head_outer_headimg .page-head_inner {
    text-align: left;
  }
  .page-head_outer_headimg #pls {
    display: block;
  }
  .page-head_img_wrap {
    width: 48%;
  }
  .page-head_img {
    border-radius: 10px;
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) {
  .page-head_outer_headimg .page-head_inner {
    padding-top: 18%;
  }
}
@media screen and (min-width: 1200px) {
  .page-head_outer.page-head_outer_headimg {
    width: 85.5%;
    padding-top: 15rem;
    margin-bottom: 8rem;
  }
  .page-head_outer_headimg .page-head {
    width: 40%;
  }
  .page-head_outer_headimg .page-head_inner {
    padding-top: 25%;
  }
  .page-head_img_wrap {
    width: 55%;
  }
  .page-head_img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 1500px) {
  .page-head_outer_headimg .page-head {
    width: 34%;
  }
  .page-head_outer_headimg .page-head_inner {
    padding-top: 48%;
  }
  .page-head_img_wrap {
    width: 63.5%;
  }
}
/*+++++++++++++++++
accordion
******************/
.accordion {
  position: relative;
}
.accordion-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  margin-bottom: 0;
}
/*
.toggle_list_arrow {
  width: 25px;
  height: 25px;
  background-color: #737477;
  border-radius: 50%;
  position: relative;
}
.toggle_list_arrow::before {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.5s;
}
.accordion-title.open .toggle_list_arrow::before {
  opacity: 0;
  transition: all 0.5s;
}
.toggle_list_arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
*/
.accordion-content {
  display: none;
  padding-top: 2.1rem;
  padding-bottom: 2.8rem;
}
.toggle_list_2col_inner {
  display: flex;
}
.toggle_list_2col_inner > ul {
  width: 50%;
}
.toggle_list_2col_inner > ul > li {
  margin-bottom: 0.53rem;
}
.toggle_list_2col_inner > ul > li:last-child {
  margin-bottom: 0;
}
.accordion-content > ul {
  position: relative;
  margin-top: -9px;

}
.accordion-content > ul > li {
  margin-bottom: 0.53rem;
}

.accordion-content > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_list_inner_title {
  font-size: 0.857rem;
  color: #555;
}
/*+++++++++++++++++
accordion-end
******************/
/**************************
タグで絞り込む表示
**************************/ 
.page-head_category_2col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-head_category_wrap .accordion-title {
  font-size: 0.714rem;
  color: #fff;
  background-color: #11438a;
  border-radius: 25px;
width: 175px;
  padding: 0 8px 0 20px;
  height: 40px;
  z-index: 2;
  transition: all 0.3s;
}
.accordion-title.js-accordion-title.open {
  border-radius: 7px 7px 0 0;
  transition: all 0.3s;
}
.head_list_arrow {
  background-color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
}
.head_list_arrow::before {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  background-color: rgba(17, 67, 138, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.5s;
}
.accordion-title.open .head_list_arrow::before {
  opacity: 0;
  transition: all 0.5s;
}
.head_list_arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: rgba(17, 67, 138, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.page-head_category_wrap .accordion-content {
  position: absolute;
  background-color: #f7f7f7;
  border-radius: 0 0 7px 7px;
  width: 175px;
  padding: 1rem 20px;
  z-index: 1;
  top: 20px;
  padding-top: 30px;
}

.head_category_list > ul > li {
  margin-bottom: 0.1rem;
}
.head_category_list > ul > li:last-child {
  margin-bottom: 0;
}
.head_category_txt {
  font-size: 0.714rem;
    color: #000;
    	transition: all 0.5s;
}
.head_category_txt:hover{
    color: #000;
    opacity: 0.7;
    	transition: all 0.5s;
}
@media screen and (max-width: 376px) {
  .page-head_category_wrap .accordion-title, .page-head_category_wrap .accordion-content {
    width: 160px;
  }
}
@media screen and (min-width: 768px) {
  .page-head_category_wrap .accordion-title {
font-size: 0.9375rem;

    padding: 0 10px 0 30px;
    width: 280px;
    height: 60px;
      border-radius: 60px;

  }
    .head_list_arrow{
         width: 45px;
    height: 45px;  
    }
  .head_list_arrow::before {
    height: 13px;
  }
  .head_list_arrow::after {
    width: 13px;
  }
  .page-head_category_wrap .accordion-content {
    padding: 1rem 30px;
    width: 280px;
    top: 25px;
    padding-top: 50px;
  }

  .head_category_txt {
  font-size: 0.9375rem;

  }
}
	@media screen and (min-width: 1200px) {
	.page-head_category_wrap {
position: absolute;
        bottom:-1rem;
        right: 7.25%
}	
        .head_category_list > ul > li {
  margin-bottom: 0.3rem;
}
        .accordion-title.js-accordion-title.open{
         border-radius: 20px 20px 0 0;   
        }
        .page-head_category_wrap .accordion-content{
          border-radius: 0 0 20px 20px;  
        }
}

/**************************

**************************/