@charset "utf-8";
:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --grayColor: #ddd;
  --redColor: #e60012;
}
/*----------------------------------*/
/* 共通
/*----------------------------------*/
body {
  color: var(--blackColor);
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h1, h2, h3, h4, h5, p, li {
  color: var(--blackColor);
}

@media only screen and (max-width: 767px) {
  /* display */
  .u-only-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  /* display */
  .u-only-sp {
    display: none !important;
  }
}

.sec_inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 70px 0;
}
.sec_inner .sec_title{
  display: block;
  margin: 0 auto;
  line-height: 1.0;
}
@media screen and (max-width: 767px) {
  .sec_inner {
    width: 100%;
    padding: 5vh 0;
  }
}
.note {
  text-align: left;
}
.note .note_list_item {
  font-size: 15px;
  color: var(--blackColor);
  font-weight: 400;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .note .note_list_item {
    font-size: clamp(10px, 3.1vw, 15px);
  }
}

/*----------------------------------*/
/* fv
/*----------------------------------*/
.fv {
  background-color: var(--redColor);
}
.fv_inner {
  padding-bottom: 30px;
}
.fv h1 {
  max-width: 1200px;
  margin: 0 auto;
}
.fv .fv_btn {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 20px;
}
.fv_bg {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .fv .fv_btn {
    width: 80vw;
  }
  .fv_inner {
    padding-bottom: 0;
  }
}

/*----------------------------------*/
/* sec01
/*----------------------------------*/
.sec01 {
  background-color: #FFF1C2;
}
.sec01 .sec_title {
  max-width: 510px;
}

@media screen and (max-width: 767px) {
  .sec01 .sec_title {
    width: 80vw;
    margin-top: 10px;
  }
}
/* circle */
.circle_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  margin: 35px auto 0;
}
.circle_list_item {
  width: calc((100% - 48px) / 3);
  margin-right: 24px;
}
.circle_list_item:nth-child(3n) {
  margin-right: 0;
}
.circle_img {
  display: block;
  width: 100%;
  max-width: 100%;
}
/* sp/pcで画像切り替え有 */
@media screen and (max-width: 767.9px) {
  .circle_list {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .circle_list_item {
    width: 95%;
    margin-bottom: 10px;
  }
  .circle_list_item:nth-child(2n-1) {
    margin-left: 0;
    margin-right: auto;
  }
  .circle_list_item:nth-child(2n) {
    margin-right: 0;
    margin-left: auto;
    width: 82%;
  }
  .circle_list_item:last-child {
    margin-bottom: 0;
  }
}

/*----------------------------------*/
/* sec02
/*----------------------------------*/
.sec02 {
  background-color: #f3e0e0fb;
}
.sec02 .sec_title {
  max-width: 674px;
}
@media screen and (max-width: 767px) {
  .sec02 {
    padding: 0 3vw;
  }
  .sec02 .sec_title {
    width: 85vw;
    margin-top: 10px;
  }
}
/* box */
.box_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  margin-top: 35px;
}
.box_list_item {
  width: calc((100% - 24px) / 2);
  margin-right: 24px;
}
.box_list_item:nth-child(2n) {
  margin-right: 0;
}
.sec02 .note {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .box_list {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
  }
  .box_list_item {
    width: 95%;
    margin: 0 auto 5px;
  }
  .box_list_item:nth-child(2n) {
    margin: 0 auto 5px;
  }
  .box_list_item:last-child {
    margin-bottom: 0;
  }
  .sec02 .note {
    margin-top: 5px;
  }
}
/*----------------------------------*/
/* sec03
/*----------------------------------*/
.sec03 {
  width: 100%;
  padding: 0 3vw;
  background-color: var(--whiteColor);
}
.sec03 .sec_title {
  max-width: 740px;
}
.sec03 .note {
  margin: 0 18%;
}
.sub_title {
  padding: 10px 45px;
  align-items: center;
  color: var(--whiteColor);
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin: 35px auto;
  border-radius: 50px;
  background: var(--redColor);
  line-height: 1.0;
  width: 510px;
  max-width: 100%;
}
.txt {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec03 .sec_title {
    width: 80vw;
    margin-top: 10px;
  }
  .sub_title {
    padding: 8px 10px;
    font-size: clamp(15px, 4.6vw, 30px);
    margin: 20px auto 10px;
    width: 85%;
  }
  .txt {
    font-size: clamp(15px, 4.6vw, 32px);
    margin-bottom: 5px;
  }
  .sec03 .note {
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }
}


/*----------------------------------*/
/* 店舗一覧
/*----------------------------------*/
/* accordion */
.accordion {
  margin-top: 24px;
  background-color: #fff;
  line-height: 1.48;
}

.accordion_head {
  cursor: pointer;
  padding: 16px 0;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  position: relative;
  background-color: var(--redColor);
  color: var(--whiteColor);
}

.accordion_head::after,
.accordion_head::before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: 24px;
  background-color: var(--whiteColor);
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}

.accordion_head::before {
  transform: rotate(90deg);
}

.accordion_head._active::before {
  transform: rotate(270deg);
}

.accordion_head._active::after {
  transform: rotate(90deg);
}

.accordion_inner {
  display: none;
  padding: 30px;
  font-size: 17px;
  border: solid 1px var(--redColor);
  background-color: #fbede8;
}

.accordion_inner_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  align-items: flex-start;
}

.accordion_inner_list_item {
  margin-bottom: 10px;
}

.accordion_inner_list_item {
  width: calc((100% - 54px) / 4);
  margin-right: 18px;
}

.accordion_inner_list_item:nth-child(4n) {
  margin-right: 0;
}

.accordion_inner_list_item a {
  color: var(--blackColor);
  position: relative;
  display: block;
  justify-content: flex-start;
  align-items: center;
  transition: 0.1s ease;
  font-size: 16px;
  margin-right: 12px;
  margin-left: 12px;
  text-decoration: underline;
}

.u-link-newWindow {
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: top;
  font-size: 0 !important;
  background-image: url(../images/ico_new_window_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .accordion_head {
    cursor: pointer;
    padding: 15px 0;
    text-align: center;
    font-size: clamp(15px, 4.6vw, 24px);
    font-weight: 400;
    position: relative;
    background-color: var(--redColor);
    color: var(--whiteColor);
  }
  .accordion_head::after,
  .accordion_head::before {
    width: 2px;
    height: 13px;
    right: 15px;
  }
  .accordion_inner {
    padding: 15px 3vw;
    font-size: 17px;
    border: solid 1px var(--redColor);
    background-color: #fbede8;
  }
  .accordion_inner_list_item {
    width: calc((100% - 6px) / 2);
    margin-right: 6px;
  }
  .accordion_inner_list_item:nth-child(2n) {
    margin-right: 0;
  }
  .accordion_inner_list_item a {
    font-size: clamp(10px, 3.1vw, 15px);
    margin-right: 10px;
    margin-left: 10px;
  }
  .u-link-newWindow {
    width: 10px;
    height: 10px;
  }
}
/*----------------------------------*/
/* 店舗一覧
/*----------------------------------*/

/*----------------------------------*/
/* 検索フォーム
/*----------------------------------*/
/* serch */
.search_wrap {
  margin: 70px auto 30px;
  width: 100%;
  max-width: 430px;
}

.search_box {
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  align-content: center;
  border: 1px solid var(--redColor);
  background-color: var(--whiteColor);
  margin-top: 10px;
}

.search_keyweord {
  width: 100%;
  height: 100%;
}
.search_select {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
  color: #aaaaaa;
  font-size: 16px;
}
.search_select option {
  color: #000000 !important;
}
.search_select:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.search_ico_btn {
  width: 50px;
  height: 50px;
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  background-color: var(--redColor);
  cursor: pointer;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.search_ico_btn:after {
  content: "";
  position: absolute;
  background-image: url(../images/ico_search.png);
  top: 16px;
  right: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.search_ico_select {
  width: 50px;
  height: 50px;
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  background-color: var(--redColor);
  cursor: pointer;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search_ico_select:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 17px;
  width: 16px;
  height: 16px;
  border-top: solid 2px var(--whiteColor);
  border-right: solid 2px var(--whiteColor);
  transform: rotate(135deg);
}

.search_count {
  font-size: 20px;
}
.search_count span {
  font-size: 24px;
  padding: 0 0.25em;
}
.search_null {
  font-size: 20px;
}
.search_list_wrap {
  padding-top: 30px;
}

.search_ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

#shop-list {
  padding-top: 30px;
}

#keyword-input {
  font-size: 16px;
  outline: none;
  padding: 5px 55px 5px 10px;
}

.search_list h3 span {
  display: block;
  border-left: 4px solid var(--redColor);
  font-size: 20px;
  padding: 5px 10px;
}
.search_list h3 {
  display: block;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9da;
}

.search_inner_list {
  padding: 20px 0;
}

.search_inner_list li {
  padding: 10px 0;
}

.search_inner_list li p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search_inner_list li p span {
  font-size: 20px;
  padding-right: 1.0em;
}
.search_inner_list li p a {
  position: relative;
  font-size: 16px;
  max-width: 125px;
  width: 100%;
  color: #ffffff;
  background-color: var(--redColor);
  padding: 4px 37px 4px 20px;
  border-radius: 24px;
}
.search_inner_list li p a::after {
  content: "";
  position: absolute;
  background-image: url(../images/ico_result.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  top: 6px;
  right: 12px;
}

@media screen and (max-width: 767px) {
  .search_wrap {
    margin: 15px auto;
    width: 82%;
  }
  .search_box {
    padding: 3px 55px 3px 10px;
    width: 100%;
    height: 50px;
  }
  .search_ico_btn {
    border-radius: 0px 10px 10px 0px;
    position: absolute;
    background-color: var(--redColor);
    cursor: pointer;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .search_count {
    font-size: 16px;
  }
  .search_null {
    font-size: 16px;
  }
  .search_list h3 {
    font-size: 24px;
  }
  .search_inner_list li p span {
    font-size: 16px;
    padding-right: 1.0em;
  }
  .search_inner_list li p a {
    position: relative;
    font-size: 14px;
    max-width: 115px;
    padding: 2px 35px 4px 20px;
    border-radius: 24px;
  }
  .search_inner_list li p a::after {
    width: 18px;
    height: 18px;
    top: 4px;
    right: 12px;
  }
  #keyword-input {
    padding: 0;
  }
  .search_select {
    padding: 3px 40px 3px 10px;
  }
  .search_ttl {
    font-size: 16px;
  }
}
/*----------------------------------*/
/* 検索フォーム
/*----------------------------------*/


/*----------------------------------*/
/* sec04
/*----------------------------------*/
.sec04 .sec_inner {
  width: 100%;
  padding: 10px 0 60px;
}
.sec04 .note {
  text-align: center;
}
.bnr_img {
  display: block;
  width: 600px;
  max-width: 100%;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding: 0 4vw;
  }
  .sec04 .sec_inner {
    width: 100%;
    padding: 10px 0 30px;
  }
  .sec04 .note {
    text-align: left;
  }
}