@charset "UTF-8";
/* retail_top
------------------------------------------------------------------------------------------------*/
.p-top {
  padding-bottom: 5.2em;
  position: relative;
}
.p-top_txt {
  font-size: 1.5em;
  padding: 2.667em 0;
  text-align: center;
}
.p-top_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .p-top_list {
    margin-top: 1em;
    margin: 0 1em;
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
    height: auto;
  }
}
.p-top_list_item {
  background: #000;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top_list_item {
    height: auto;
  }
}
.p-top_list_item:nth-child(2) a::after {
  background: url(../img/index/bg_item_02.jpg) no-repeat center center/cover;
}
.p-top_list_item:nth-child(3) a::after {
  background: url(../img/index/bg_item_03.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top_list_item:nth-child(3) a::after {
    background: url(../img/index/bg_item_03_sp.jpg) no-repeat center center/cover;
  }
}
.p-top_list_item:nth-child(4) a::after {
  background: url(../img/index/bg_item_04.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top_list_item:nth-child(4) a::after {
    background: url(../img/index/bg_item_04_sp.jpg) no-repeat center center/cover;
  }
}
.p-top_list_item a {
  display: block;
  padding: 0 2.3em 5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top_list_item a {
    height: auto;
    height: 35.5em;
    padding: 0;
  }
}
.p-top_list_item a::before {
  content: "";
  position: absolute;
  bottom: 4.45em;
  transform: translateX(-50%);
  left: 50%;
  width: 1.6em;
  height: 0.8em;
  transition: 0.3s;
  background: url(../img/common/arrow_bottom_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-top_list_item a::before {
    bottom: 2em;
    left: auto;
    transform: translate(0) rotate(-90deg);
    right: 1.5em;
  }
}
.p-top_list_item a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
  background: url(../img/index/bg_item_01.jpg) no-repeat center center/cover;
  transition: 0.3s;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_list_item a::after {
    background: url(../img/index/bg_item_01_sp.jpg) no-repeat center center/cover;
  }
}
.p-top_list_item a * {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top_list_item a:hover::before {
    bottom: 3em;
  }
  .p-top_list_item a:hover::after {
    transform: translateY(-50%) scale(1.05);
  }
}
.p-top_list_item_ttl {
  font-size: 3em;
  font-family: "Oswald", sans-serif;
  padding-bottom: 1em;
  text-align: center;
  position: relative;
}
.p-top_list_item_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 2.667em;
  height: 1px;
  background-color: #fff;
}
.p-top_list_item_txt {
  margin-top: 3em;
  font-size: 1.5em;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top_list_item_txt {
    margin-top: 2em;
  }
}
.p-top_btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25vh;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top_btn {
    position: static;
    transform: translate(0);
    margin: 0 1em;
  }
}
.p-top_btn_link {
  font-size: 2em;
  padding: 0.5em 1em;
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top_btn_link {
    padding: 3em 0;
    width: 100%;
    background-color: #000;
    border: none;
    text-align: center;
  }
  .p-top_btn_link::before {
    content: "";
    position: absolute;
    bottom: 1em;
    transform: translate(0) rotate(-90deg);
    right: 0.75em;
    width: 0.8em;
    height: 0.4em;
    transition: 0.3s;
    background: url(../img/common/arrow_bottom_white.svg) no-repeat center center/contain;
  }
}

/* store-list
------------------------------------------------------------------------------------------------*/
.p-store-list {
  padding-bottom: 12.3em;
}
@media screen and (max-width: 767px) {
  .p-store-list {
    padding-bottom: 11.5em;
  }
}
.p-store-list_ttl {
  font-size: 3em;
  margin-top: 1.333em;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-store-list_ttl {
    margin-top: 0;
    padding-top: 0.667em;
  }
}
.p-store-list_search_box {
  margin-top: 4em;
  border: 1px solid #DDDDDD;
  padding: 4em 8em;
}
@media screen and (max-width: 767px) {
  .p-store-list_search_box {
    margin-top: 2.4em;
    padding: 2em;
  }
}
.p-store-list_search_ttl {
  font-size: 1.7em;
  text-align: center;
  padding-bottom: 0.882em;
  font-weight: 600;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .p-store-list_search_ttl {
    font-size: 1.5em;
    padding-bottom: 1.333;
  }
}
.p-store-list_search_list {
  margin-top: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-store-list_search_list {
    margin-top: 2em;
    flex-wrap: wrap;
    row-gap: 2em;
  }
}
.p-store-list_search_list_item {
  border-right: 1px solid #000;
  line-height: 1;
}
.p-store-list_search_list_item:last-child {
  border: none;
}
@media screen and (max-width: 767px) {
  .p-store-list_search_list_item:last-child a {
    padding-right: 0.3em;
  }
}
@media screen and (max-width: 767px) {
  .p-store-list_search_list_item:nth-child(1) a, .p-store-list_search_list_item:nth-child(5) a {
    padding-left: 0.3em;
  }
}
@media screen and (max-width: 767px) {
  .p-store-list_search_list_item:nth-child(4) {
    border: none;
  }
  .p-store-list_search_list_item:nth-child(4) a {
    padding-right: 0.3em;
  }
}
.p-store-list_search_list_item a {
  line-height: 1;
  padding: 0 1.5em;
  font-size: 1.4em;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-store-list_search_list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-store-list_search_list_item a:hover {
    opacity: 0.7;
  }
}
.p-store-list_search_list_item a.-close {
  color: #D0D0D0;
  pointer-events: none;
}
.p-store-list_list {
  margin-top: 8em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6em 3em;
}
@media screen and (max-width: 767px) {
  .p-store-list_list {
    margin-top: 1.5em;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item {
    padding: 2.3em 0;
    border-bottom: 1px solid #DDDDDD;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-store-list_list_item:last-child {
    border: none;
  }
  .p-store-list_list_item.-start {
    align-items: flex-start;
  }
}
.p-store-list_list_item_img {
  overflow: hidden;
}
.p-store-list_list_item_img img {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-store-list_list_item_img:hover img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_img {
    width: 12em;
    margin-right: 2em;
  }
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_txt-box {
    flex: 1;
  }
}
.p-store-list_list_item_txt-box a {
  display: block;
}
.p-store-list_list_item_ttl {
  font-size: 1.3em;
}
.p-store-list_list_item_ttl_en {
  font-size: 1.846em;
  font-family: "Oswald", sans-serif;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.3em;
  font-weight: 400;
}
.p-store-list_list_item_ttl_en.-letter-10 {
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_ttl_en.-letter-10 {
    letter-spacing: 0;
  }
}
.p-store-list_list_item_ttl a {
  display: block;
  padding-top: 2.4em;
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_ttl a {
    padding-top: 0;
  }
}
.p-store-list_list_item_flex {
  margin-top: 1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_flex {
    display: block;
    margin-top: 1.5em;
  }
}
.p-store-list_list_item_info {
  position: relative;
}
.p-store-list_list_item_info a {
  padding-left: 0.714em;
  font-size: 1.4em;
  position: relative;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-store-list_list_item_info a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.286em;
  height: 1.286em;
  background-color: #000;
}
.p-store-list_list_item_info_note {
  position: absolute;
  bottom: -2em;
  left: 0;
  left: 1em;
  white-space: nowrap;
  font-size: 1.1em;
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_info_note {
    position: static;
  }
}
.p-store-list_list_item_info.-yokohama a {
  display: flex;
}
.p-store-list_list_item_info.-yokohama a::before {
  top: 0.2em;
  transform: translate(0);
}
.p-store-list_list_item_info.-yokohama a span {
  display: block;
  font-family: "Oswald", sans-serif;
}
.p-store-list_list_item_map {
  margin-left: 2em;
}
@media screen and (max-width: 767px) {
  .p-store-list_list_item_map {
    margin-left: 0;
    margin-top: 1.3em;
  }
}
.p-store-list_list_item_map a {
  display: inline-block;
  font-size: 1.2em;
  border-radius: 1.5em;
  padding: 0.23em 1em;
  border: 1px solid #707070;
}

/* store-detail
------------------------------------------------------------------------------------------------*/
.p-store-detail_main {
  display: flex;
  align-items: flex-start;
  padding-bottom: 9em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main {
    display: block;
    padding-bottom: 6em;
  }
}
.p-store-detail_main_info {
  width: 40%;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_info {
    width: 70%;
    margin-left: auto;
    margin-top: 3em;
    padding-right: 2em;
  }
}
.p-store-detail_main_info_inner {
  max-width: 25em;
  margin-right: 15.7em;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_info_inner {
    margin-right: 0;
    max-width: 100%;
  }
}
.p-store-detail_main_info_ttl {
  font-size: 1.3em;
  font-weight: 500;
}
.p-store-detail_main_info_ttl_en {
  font-family: "Oswald", sans-serif;
  font-size: 2.154em;
  display: block;
  line-height: 1;
  margin-bottom: 0.5em;
}
.p-store-detail_main_info_ttl .-nowrap {
  white-space: nowrap;
}
.p-store-detail_main_info_box {
  margin-top: 2em;
  padding-left: 1em;
  position: relative;
}
.p-store-detail_main_info_box:first-of-type {
  margin-top: 2.5em;
}
.p-store-detail_main_info_box::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 0.4em;
  height: 1.8em;
  background-color: #000;
}
.p-store-detail_main_info_txt {
  font-size: 1.4em;
  line-height: 1.57;
  letter-spacing: 0.05em;
}
.p-store-detail_main_info_txt.-letter-25 {
  letter-spacing: -0.025em;
}
.p-store-detail_main_info_txt.-letter0 {
  letter-spacing: 0;
}
.p-store-detail_main_info_txt.-yokohama {
  display: flex;
}
.p-store-detail_main_info_txt .-small {
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .p-store-detail_main_info_txt a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-store-detail_main_info_txt a:hover {
    opacity: 0.7;
  }
}
.p-store-detail_main_info_btn {
  margin-top: 1.3em;
}
.p-store-detail_main_info_btn a {
  display: inline-block;
  font-size: 1.2em;
  border-radius: 1.5em;
  padding: 0.23em 1em;
  border: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .p-store-detail_main_info_btn a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-store-detail_main_info_btn a:hover {
    opacity: 0.7;
  }
}
.p-store-detail_main_info_sns {
  margin-top: 2.5em;
}
.p-store-detail_main_info_sns_box a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-store-detail_main_info_sns_box a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-store-detail_main_info_sns_box a:hover {
    opacity: 0.7;
  }
}
.p-store-detail_main_info_sns_box:nth-child(2) {
  margin-top: 2em;
}
.p-store-detail_main_info_sns_box:nth-child(2) img {
  width: 2.6em;
  margin-left: -0.3em;
}
.p-store-detail_main_info_sns_icon {
  width: 4em;
  border-right: 1px solid #000;
  margin-right: 1em;
}
.p-store-detail_main_info_sns_icon img {
  width: 2em;
}
.p-store-detail_main_info_sns_txt {
  font-size: 1.4em;
  letter-spacing: 0.05em;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.p-store-detail_main_content {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content {
    width: 70%;
    margin-left: auto;
    padding-right: 2em;
  }
}
.p-store-detail_main_content_slider {
  margin-bottom: 0 !important;
  opacity: 0;
}
.p-store-detail_main_content_slider .slick-track {
  display: flex;
}
.p-store-detail_main_content_slider .slick-slide {
  height: auto !important;
}
.p-store-detail_main_content_slider .slick-slide > div {
  height: 100%;
}
.p-store-detail_main_content_slider .slick-slide > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-store-detail_main_content_slider .slick-dots {
  bottom: 1em;
}
.p-store-detail_main_content_slider .slick-dots li {
  width: 3em;
  height: 1px;
  margin: 0 0.3em;
}
.p-store-detail_main_content_slider .slick-dots li.slick-active button {
  background-color: #000;
}
.p-store-detail_main_content_slider .slick-dots li button {
  width: 100%;
  height: 1px;
  background-color: #fff;
  padding: 0;
  margin: 0;
}
.p-store-detail_main_content_slider .slick-dots li button::before {
  content: none;
}
.p-store-detail_main_content_dl {
  max-width: 74em;
}
.p-store-detail_main_content_dl_item {
  margin-top: 6em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content_dl_item {
    margin-top: 4em;
  }
}
.p-store-detail_main_content_dl_item:first-child {
  margin-top: 8em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content_dl_item:first-child {
    margin-top: 4em;
  }
}
.p-store-detail_main_content_dl_ttl {
  font-size: 1.7em;
  font-weight: 500;
  padding-bottom: 0.8em;
  line-height: 1;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content_dl_ttl {
    width: calc(100% + 1em);
    font-weight: 500;
  }
}
.p-store-detail_main_content_dl_ttl::before {
  content: "";
  position: absolute;
  top: 0.2em;
  right: 0;
  width: 0.941em;
  height: 0.471em;
  background: url(../img/common/arrow_bottom_gray.svg) no-repeat center center/contain;
  transition: 0.3s;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content_dl_ttl::before {
    right: 0.8em;
  }
}
.p-store-detail_main_content_dl_ttl.is-active::before {
  transform: rotate(0deg);
}
.p-store-detail_main_content_dl_ttl.-big {
  font-size: 2em;
}
.p-store-detail_main_content_dl_ttl.-normal {
  font-weight: 300;
}
.p-store-detail_main_content_dl_ttl.js-acd {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-store-detail_main_content_dl_ttl.js-acd {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-store-detail_main_content_dl_ttl.js-acd:hover {
    opacity: 0.7;
  }
}
.p-store-detail_main_content_dl_body {
  font-size: 1.4em;
  margin-top: 2.571em;
  line-height: 2;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content_dl_body {
    margin-top: 2em;
    font-weight: 500;
  }
}
.p-store-detail_main_content_settlement {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_main_content_settlement {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.p-store-detail_main_content_settlement_list_item {
  height: 2.2em;
  padding-left: 3.714em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.p-store-detail_main_content_settlement_list_item:nth-child(odd) {
  background-color: #F2F2F2;
}
.p-store-detail_main_content_settlement_list_item::before {
  content: "〇";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.2em;
  width: 1em;
  height: 1.7em;
}
.p-store-detail_main_content_settlement_list_item.-no::before {
  content: "×";
  left: 1.4em;
}
.p-store-detail_main_content_news:nth-child(n+2) {
  margin-top: 2.5em;
}
.p-store-detail_main_content_news_date {
  font-size: 0.857em;
  letter-spacing: 0.05em;
  color: #A0A0A0;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.p-store-detail_main_content_news_ttl {
  font-size: 1.071em;
  font-weight: 700;
  margin-top: 0.2em;
}
.p-store-detail_main_content_news_ttl span {
  font-weight: 600;
}
.p-store-detail_main_content_news_txt {
  margin-top: 1em;
}
.p-store-detail_main_content_news_txt a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-store-detail_main_content_news_txt a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-store-detail_main_content_news_txt a:hover {
    opacity: 0.7;
  }
}
.p-store-detail_other {
  padding-bottom: 16.5em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other {
    padding-bottom: 6em;
  }
}
.p-store-detail_other_block:nth-child(n+2) {
  margin-top: 6em;
}
.p-store-detail_other_img-box {
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other_img-box {
    background: transparent;
  }
}
.p-store-detail_other_img {
  width: 60%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other_img {
    width: 100%;
  }
}
.p-store-detail_other_img iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.p-store-detail_other_txt-box {
  width: 60%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other_txt-box {
    width: 70%;
    padding-right: 2em;
  }
}
.p-store-detail_other_txt-box_inner {
  max-width: 74em;
}
.p-store-detail_other_ttl {
  font-size: 2.8em;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  margin-top: 1.964em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other_ttl {
    line-height: 1.14;
  }
}
.p-store-detail_other_txt {
  margin-top: 1em;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.p-store-detail_other_txt.-red {
  color: #FF0000;
}
.p-store-detail_other_txt.-letter {
  letter-spacing: 0;
}
.p-store-detail_other_txt.-bold {
  font-weight: 700;
}
.p-store-detail_other_txt.-mt5 {
  margin-top: 0.3em;
}
.p-store-detail_other_txt.-mt20 {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other_txt.-mt20 {
    margin-top: 1.5em;
  }
}
.p-store-detail_other_patch-img {
  max-width: 59em;
  margin: 7em 0 6em;
}
@media screen and (max-width: 767px) {
  .p-store-detail_other_patch-img {
    width: 18em;
    margin: 4em auto;
  }
}
.p-store-detail_page-back {
  width: 8.8em;
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 3em;
  transition: 0.3s;
}
.p-store-detail_page-back.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* p-links
------------------------------------------------------------------------------------------------*/
.p-links {
  background-color: #F4F4F4;
  padding: 5em 0 4em;
}
@media screen and (max-width: 767px) {
  .p-links {
    padding: 0;
  }
}
.p-links_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-links_inner {
    display: block;
  }
}
.p-links_ttl {
  font-size: 1.4em;
  font-weight: 600;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #C6C6C6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-links_ttl {
    padding-bottom: 0;
    height: 4.286em;
    width: 70%;
    margin-left: auto;
    display: flex;
    border: none;
    align-items: center;
    position: relative;
  }
  .p-links_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    right: -0.5em;
    width: 1em;
    height: 0.571em;
    transition: 0.3s;
    background: url(../img/common/arrow_bottom_gray.svg) no-repeat center center/contain;
  }
  .p-links_ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1.429em;
    width: 100vw;
    height: 1px;
    background-color: #fff;
  }
  .p-links_ttl.is-active::before {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-links_block {
    position: relative;
  }
  .p-links_block::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -2em;
    width: 100vw;
    height: 1px;
    background-color: #fff;
  }
}
.p-links_list {
  width: 23em;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-links_list {
    width: 100%;
    padding: 2em 0;
    margin-top: 0;
    border-bottom: 1px solid #C6C6C6;
  }
  .p-links_list:last-child {
    border: none;
  }
}
.p-links_list:nth-of-type(n + 2) {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-links_list:nth-of-type(n + 2) {
    margin-top: 0;
  }
}
.p-links_list_item a {
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #808080;
}
@media screen and (max-width: 767px) {
  .p-links_list_item a {
    font-size: 1.4em;
  }
}
.p-links_list_item a.u-english {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-links_box {
    display: none;
    width: 70%;
    margin-left: auto;
  }
}
.p-links_flex {
  display: flex;
  gap: 4em;
}
@media screen and (max-width: 767px) {
  .p-links_flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-links_flex_box:first-child {
    border-bottom: 1px solid #C6C6C6;
  }
}

/* パンくず
------------------------------------------------------------------------------------------------*/
.c-breadcrumb {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 1.5em 0;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-top: -0.1em;
    position: relative;
  }
}
.c-breadcrumb .list {
  display: flex;
  align-items: center;
}
.c-breadcrumb .list_item_link {
  display: block;
  margin-right: 1.2em;
  padding-right: 2em;
  position: relative;
}
.c-breadcrumb .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  width: 0.8em;
  height: 0.4em;
  background: url(../img/common/arrow_bottom_gray.svg) no-repeat center center/contain;
}
.c-breadcrumb .list_item_link img {
  width: 2.9em;
}
.c-breadcrumb .list_item.-current {
  font-size: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb .list_item.-current {
    font-size: 0.9em;
  }
}

/* よくある質問
------------------------------------------------------------------------------------------------*/
.p-faq {
  padding: 6em 0 4em;
}
.p-faq_ttl {
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 1em;
  border-bottom: 1px solid #DDDDDD;
  text-align: center;
}
.p-faq_list_item {
  border-bottom: 1px solid #DDDDDD;
}
.p-faq_list_item_ttl {
  font-size: 1.4em;
  font-weight: 600;
  padding: 1.5em 0;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-faq_list_item_ttl {
    line-height: 1.57;
    padding: 1.5em 3.214em 1.5em 0;
  }
}
.p-faq_list_item_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.5em;
  height: 1px;
  background-color: #000;
}
.p-faq_list_item_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.75em;
  width: 1px;
  height: 1.5em;
  background-color: #000;
  transition: 0.3s;
}
.p-faq_list_item_ttl.is-active::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-faq_list_item_txt {
  display: none;
  font-size: 1.4em;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  padding: 0.5em 5.714em 1.5em 0;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 767px) {
  .p-faq_list_item_txt {
    padding: 0 3.214em 1.5em 0;
  }
}
.p-faq_list_item_txt * {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.035em;
}
.p-faq_list_item_txt p:nth-child(n+2) {
  margin-top: 1.5em;
}
.p-faq_list_item_txt iframe {
  max-width: 100% !important;
  height: auto;
}
.p-faq_list_item_txt a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-faq_list_item_txt a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-faq_list_item_txt a:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=index.css.map */