@charset "utf-8";

/*===================================
 ヘッダー
====================================*/
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid var(--gold);
}
@media screen and (min-width: 48rem) {
  header {
    width: 100%;
    height: 72px;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_logo {
  display: block;
  -webkit-mask-image: url("../img/logo.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("../img/logo.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: var(--gold);
  width: clamp(4.5rem, 2.192rem + 6.41vw, 7rem);
  height: clamp(1.5rem, 0.692rem + 2.24vw, 2.375rem);
}

.header_nav {
  display: none;
  position: absolute;
  top: 60px;
  left: 10vw;
  width: 90vw;
  padding: 1.5rem;
  height: calc(100dvh - 60px);
  background-color: #fff;
}
@media screen and (min-width: 48rem) {
  .header_nav {
    display: block;
    position: static;
    background: transparent;
    margin-left: auto;
    width: auto;
    height: auto;
    padding: 0;
  }
}

.header_nav_list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.header_nav_list > li {
  border-bottom: 1px solid #dad6bd;
}

@media screen and (min-width: 48rem) {
  .header_nav_list {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .header_nav_list > li {
    border-bottom: none;
  }
}

.header_nav_list a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  padding: 1rem 0.75rem 1rem 2rem;
}

.header_nav_list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background-color: var(--gold);
}

.header_nav_list a .font_en {
  color: var(--pink);
  font-size: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .header_nav_list a {
    position: static;
    color: var(--black);
    transition: 0.3s;
    padding: 0;
  }

  .header_nav_list a::before {
    content: none;
  }

  .header_nav_list a:link,
  .header_nav_list a:visited {
    color: var(--black);
  }
  .header_nav_list a:hover,
  .header_nav_list a:active {
    color: var(--gold);
  }

  .header_nav_list a.gold_border_btn {
    color: var(--gold);
    padding: 0.5rem 1rem;
  }

  .header_nav_list a .font_en {
    display: none;
  }
}

.hamburger_btn {
  position: relative;
  background-color: transparent;
  width: calc(35px + 1rem);
  height: calc(14px + 1rem);
  margin-left: auto;
  padding: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .hamburger_btn {
    display: none;
  }
}

.hamburger_btn > span {
  position: absolute;
  left: 0.5rem;
  display: block;
  width: 35px;
  height: 1px;
  background-color: var(--gold);
}

.hamburger_btn > span:first-child {
  top: 0.5rem;
}

.hamburger_btn > span:nth-child(2) {
  top: calc(0.5rem + 7px - 0.5px);
}

.hamburger_btn > span:nth-child(3) {
  bottom: 0.5rem;
}

.hamburger_btn[aria-expanded="true"] > span:first-child {
  top: calc(0.5rem + 6.5px);
  transform: rotate(21.8deg);
  width: 35px;
}

.hamburger_btn[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.hamburger_btn[aria-expanded="true"] > span:nth-child(3) {
  bottom: calc(0.5rem + 6.5px);
  transform: rotate(-21.8deg);
  width: 35px;
}

/*===================================
 フッター
====================================*/

/* フッター直前共通リンク */
.footer_common_link {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.footer_common_link_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_common_link_list {
  list-style-type: none;
  margin: 0;
  width: 100%;
  padding-left: 0;
}

.footer_common_link_list > li {
  height: clamp(6.25rem, 2.445rem + 16.23vw, 12.5rem);
}
@media screen and (min-width: 62rem) {
  .footer_common_link_list {
    height: 428px;
  }
  .footer_common_link_list > li {
    height: 50%;
  }
}

.footer_common_link_list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: clamp(1.25rem, 0.185rem + 4.55vw, 3rem);
  padding: 0 clamp(2rem, 0.782rem + 5.19vw, 4rem);
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.footer_common_link_list a:hover,
.footer_common_link_list a:active {
  background-color: #f8f5f1;
}

.footer_common_link_list .link_arrow_icon {
  width: clamp(3rem, 1.782rem + 5.19vw, 5rem);
}

@media screen and (min-width: 62rem) {
  .footer_common_link {
    flex-direction: row;
  }

  .footer_common_link_img {
    width: 50%;
  }

  .footer_common_link_list {
    width: 50%;
  }

  .footer_common_link_list a {
    padding: 0 clamp(3rem, -4.294rem + 11.76vw, 6rem);
    font-size: clamp(2rem, 0.931rem + 1.72vw, 3rem);
  }

  .footer_common_link_list .link_arrow_icon {
    width: clamp(4rem, 0.353rem + 5.88vw, 5.5rem);
  }
}

/* フッター */
footer {
  position: sticky;
  top: 100vh;
  left: 0;
  width: 100%;
  background-color: var(--base);
}

.footer_inner {
  padding-top: 3rem;
  padding-bottom: 0.25rem;
}

/* grid  */
.footer_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .footer_grid {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
  }
}

.footer_nav {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  text-align: center;
}

@media screen and (min-width: 48rem) {
  .footer_nav {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
}

.footer_logo {
  display: inline-block;
}

.footer_logo > img {
  width: 148px;
  /* margin: 0 auto 1.5rem; */
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .footer_logo > img {
    margin-left: 0;
  }
}

.footer_sns_link {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 48rem) {
  .footer_sns_link {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
}

.copyright {
  grid-column: 1 / 2;
  grid-row: 3 / 3;
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (min-width: 48rem) {
  .copyright {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

.footer_nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style-type: none;
  padding-left: 0;
  font-size: 0.875rem;
}
@media screen and (min-width: 48rem) {
  .footer_nav_list {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.footer_nav_list a {
  color: var(--black);
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
}
.footer_nav_list a:link,
.footer_nav_list a:visited {
  color: var(--black);
}
.footer_nav_list a:hover,
.footer_nav_list a:active {
  color: var(--gold);
}

.cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/*===================================
 コンテナ
====================================*/
.main_section_padding {
  padding: 5rem 0;
}
.main_section_padding--first_item {
  padding-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .main_section_padding {
    padding: 10rem 0;
  }
  .main_section_padding--first_item {
    padding-top: 7rem;
  }
}

.container {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 48rem) {
  .container {
    max-width: calc(1200px + 4rem);
    padding: 0 2rem;
  }
}

.page_main_padding {
  padding-bottom: 5rem;
}

/*===================================
 テキスト
====================================*/
.title {
  font-family: var(--font_gothic_family);
  font-weight: bold;
  font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  color: var(--pink);
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .title {
    margin-bottom: 5rem;
  }
}

.title > .font_en {
  display: block;
  font-size: clamp(2rem, 0.81rem + 5.95vw, 4.5rem);
  margin-bottom: 0.5rem;
  color: var(--black);
}

.page_title {
  font-family: var(--font_gothic_family);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--pink);
  text-align: center;
  padding: 2rem;
}
@media screen and (min-width: 48rem) {
  .page_title {
    font-size: 1rem;
  }
}

.page_title > .font_en {
  display: block;
  color: var(--black);
  font-size: clamp(2rem, 0.667rem + 2.78vw, 4rem);
  margin-bottom: 1rem;
}

.sub_title {
  position: relative;
  font-family: var(--font_mincho_family);
  font-weight: bold;
  font-size: clamp(1.25rem, 1.131rem + 0.6vw, 1.5rem);
  margin-bottom: 1rem;
  margin-top: 3rem;
  padding-left: 1em;
}
.sub_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25em;
  width: 5px;
  height: 5px;
  background-color: var(--pink);
  transform: translateY(-50%) rotate(45deg);
}

.yobikake {
  position: relative;
  display: inline-block;
  margin: 2rem auto 1.5rem;
}

.yobikake::before,
.yobikake::after {
  content: "";
  position: absolute;
  background: var(--pink);
  width: 2px;
  height: 100%;
  margin-top: 0px;
}

.yobikake::before {
  top: 50%;
  left: -1rem;
  transform: translateY(-50%) rotate(-30deg);
}

.yobikake::after {
  top: 50%;
  right: -1rem;
  transform: translateY(-50%) rotate(30deg);
}

/*===================================
 ボタン
====================================*/
.btn {
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn_flex {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.gold_border_btn {
  background-color: #fff;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: 0.3s;
}
.gold_border_btn:link,
.gold_border_btn:visited {
  background-color: #fff;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.gold_border_btn:hover,
.gold_border_btn:active {
  background-color: #f8f5f1;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/*===================================
 その他共通部品
====================================*/
/* パンくずリスト */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  font-family: var(--font_gothic_family);
  font-size: 0.875rem;
  padding-left: 0;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.breadcrumb > li::after {
  content: "/";
  padding-left: 0.5rem;
}

.breadcrumb > li:last-child::after {
  content: none;
}

/* table */
.table {
  width: 100%;
  border: 1px solid var(--gold);
  border-collapse: collapse;
}

.table tr {
  border-bottom: 1px solid var(--gold);
}

.table th,
.table td {
  padding: 0.75rem 1rem;
}

.table th {
  background-color: #f8f5f1;
  color: var(--black);
  text-align: left;
  /* border-right: 1px solid var(--gold); */
}

.table td {
  background-color: #fff;
}

/*===================================
 トップページ
====================================*/
/* メインビュー */
.main_view_container {
  position: relative;
}

.main_view_item > img {
  object-fit: cover;
  width: 100vw;
  height: clamp(25rem, 5.471rem + 54.25vw, 52.938rem);
}

.main_view_logo {
  opacity: 0;
  position: absolute;
  top: 50%;
  right: clamp(5rem, -9.667rem + 30.56vw, 27rem);
  transform: translateY(-50%);
  color: var(--gold);
  font-size: clamp(1.5rem, 0.892rem + 1.27vw, 2rem);
  text-align: center;
}

@media screen and (min-width: 48rem) {
  .main_view_logo {
    opacity: 1;
  }

  .main_view_logo > img {
    margin: 2rem auto 0;
    width: clamp(18.75rem, 2.041rem + 34.81vw, 32.5rem);
  }

  .main_view_logo > .catch {
    color: var(--pink);
    font-size: clamp(1.188rem, 0.646rem + 1.13vw, 2rem);
  }
}

/* コンセプト 名前の由来 */
.name_origin_container {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(4rem, 1.333rem + 5.56vw, 8rem);
}
@media screen and (min-width: 48rem) {
  .name_origin_container {
    flex-direction: row;
    margin-right: calc(50% - 50vw);
    gap: clamp(3rem, 1rem + 4.17vw, 6rem);
    padding-top: 2rem;
  }
}

.name_origin_text {
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48rem) {
  .name_origin_text {
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  }
}

.name_origin_text .catch {
  font-size: clamp(1.25rem, -0.365rem + 4.49vw, 3rem);
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 48rem) {
  .name_origin_logo {
    margin-bottom: clamp(6rem, 2rem + 8.33vw, 12rem);
  }
}

.name_origin_logo > img {
  width: clamp(19.25rem, 12.924rem + 26.99vw, 45.313rem);
  margin: 0 auto;
}
@media screen and (min-width: 48rem) {
  .name_origin_logo > img {
    position: absolute;
    top: -3rem;
    left: 30%;
  }
}

.name_origin_img {
  width: 100%;
  max-width: 760px;
}
.name_origin_img > img {
  width: 100%;
  object-fit: cover;
}

/* ブランドコンセプト */
.concept_container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 48rem) {
  .concept_container {
    flex-direction: row;
    align-items: center;
    margin-left: calc(50% - 50vw);
    gap: clamp(3rem, 1rem + 4.17vw, 6rem);
  }
}

.concept_title {
  font-size: clamp(1.5rem, -0.091rem + 6.79vw, 5rem);
  line-height: 1.5;
  background: linear-gradient(45deg, #b49c70, #87724a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* margin-top: 0; */
}

.concept_title img {
  display: inline;
  width: clamp(5rem, -0.682rem + 24.24vw, 17.5rem);
  vertical-align: text-top;
}

.concept_text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 48rem) {
  .concept_text {
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  }
}

.concept_text > p {
  margin-bottom: 2rem;
}

.concept_text > .text_gold {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 48rem) {
  .concept_text > .text_gold {
    font-size: clamp(1.125rem, 0.708rem + 0.87vw, 1.75rem);
    padding: 1rem 0;
  }
}

.concept_img {
  width: 100%;
  max-width: 675px;
}

.concept_img > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* プロフィール */
.profile_container {
  max-width: 1000px;
  margin: 3rem auto 0;
}
.profile_container_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0.5rem;
  gap: 3rem;
}

.profile_img {
  width: 180px;
}

@media screen and (min-width: 48rem) {
  .profile_container {
    margin: 7.5rem auto 0;
  }
  .profile_container_flex {
    flex-direction: row;
    padding: 2rem 4rem;
  }

  .profile_img {
    width: 30%;
  }

  .profile_text {
    width: 70%;
  }
}

/* 3つの成分 */
.cleansing_wide_container {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 clamp(1.5rem, -1.269rem + 7.69vw, 4.5rem);
}

.cleansing_ingredient_back {
  display: grid;
  place-items: center;
  background-image: url(../img/three_ingredients_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: clamp(12.5rem, -16.346rem + 80.13vw, 43.75rem);
  margin: clamp(5rem, 0.455rem + 19.39vw, 15rem) 0;
  margin: clamp(6rem, 2.707rem + 14.05vw, 15rem) 0;
}

.cleansing_ingredient_img {
  margin-top: calc(-1 * clamp(4rem, 10vw, 10rem));
  margin-bottom: calc(-1 * clamp(4rem, 10vw, 8rem));
}

.cleansing_ingredient_img > img {
  filter: drop-shadow(0 0 10px #fff);
  max-width: 100%;
  width: clamp(18.75rem, -15.173rem + 94.23vw, 55.5rem);
}

.cleansing_ingredient_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style-type: none;
  padding: 0;
}
.cleansing_ingredient_list > li {
  background-color: #fff;
  padding: clamp(1.75rem, 1.058rem + 1.92vw, 2.5rem);
}
@media screen and (min-width: 62rem) {
  .cleansing_ingredient_list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, -15.192rem + 26.92vw, 5rem);
  }
}
@media screen and (min-width: 75rem) {
  .cleansing_ingredient_list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, -4.333rem + 7.78vw, 5rem);
  }
}

.ingredient_list_title {
  position: relative;
  color: var(--gold);
  text-align: center;
  font-size: clamp(1.5rem, 0.115rem + 3.85vw, 3rem);
}
.ingredient_list_title::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background-color: var(--gold);
  width: 10px;
  height: 10px;
}

@media screen and (min-width: 75rem) {
  .ingredient_list_title {
    font-size: clamp(2rem, 0.333rem + 2.22vw, 3rem);
  }
}

.ingredient_list_text {
  margin-top: 3.8rem;
  font-family: var(--font_gothic_family);
  font-weight: normal;
}

/* クレンジング 問題 */
.cleansing_problem_back {
  background-image: url(../img/cleansing_problem_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cleansing_problem_container {
  text-align: left;
  line-height: 1.7;
  font-size: clamp(1rem, 0.769rem + 0.64vw, 1.25rem);
  font-weight: bold;
}
@media screen and (min-width: 48rem) {
  .cleansing_problem_container {
    text-align: center;
  }
}

.cleansing_problem_title {
  font-size: clamp(1.25rem, 0.793rem + 1.95vw, 2.5rem);
  line-height: 1.7;
  margin-bottom: 5rem;
  background: linear-gradient(45deg, #f85c6b, #79393c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* クレンジング　図解説明 */
.cleansing_explanation_back {
  background-image: url(../img/cleansing_explanation_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cleansing_explanation_title {
  font-size: clamp(1rem, 0.24rem + 3.24vw, 2.25rem);
  line-height: 1.5;
  margin-bottom: 3rem;
}

.cleansing_explanation_text {
  font-size: clamp(1rem, 0.769rem + 0.64vw, 1.25rem);
  line-height: 1.7;
  text-align: left;
  margin: clamp(3rem, 2.545rem + 1.94vw, 4rem) 0
    clamp(3rem, 2.091rem + 3.88vw, 5rem);
}
@media screen and (min-width: 48rem) {
  .cleansing_explanation_text {
    text-align: center;
  }
}

/* 使用方法 */
.howto_container {
  position: relative;
  text-align: center;
}

.howto_title {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--gold);
  background-color: #fff;
  padding: 1.5rem 3em 1rem;
  border-radius: 20px 20px 0 0;
  margin: 0;
  border: 1px solid var(--gold);
  border-bottom: 2px none;
}
.howto_title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.howto_title > span {
  position: relative;
}
.howto_title > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.25em;
  width: 10px;
  height: 10px;
  background-color: #dad6bd;
  transform: translateY(-50%) rotate(45deg);
}
.howto_title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.25em;
  width: 10px;
  height: 10px;
  background-color: #dad6bd;
  transform: translateY(-50%) rotate(45deg);
}

.howto_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 3.5rem;
  background-color: #fff;
  border: 1px solid var(--gold);
  border-radius: 20px;
  counter-reset: listnum;
  list-style: none;
  margin: 0 0 4rem 0;
  padding: 3rem clamp(2rem, 0.092rem + 8.14vw, 4rem);
  width: 100%;
}

.howto_list > li {
  position: relative;
  text-align: left;
}

.howto_list > li::before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  width: 1.5rem;
  height: 1.5rem;
}

.howto_list > li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #917111;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(45deg);
}

.howto_list > li img {
  max-width: 240px;
  width: 100%;
  margin: 1rem auto 2rem;
}

/* レビュー */

.review_back {
  background-image: url(../img/review_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}

.review_star_container {
  margin: 3rem auto 4rem;
}

.review_star_container img {
  width: clamp(17.5rem, 14.637rem + 12.21vw, 20.5rem);
}

.review_star_text {
  color: var(--gold);
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}

.review_list {
  list-style-type: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 1rem 1.5rem;
}

.review_list > li {
  border-top: 2px dashed #f2cde7;
  padding: 1rem 0.75rem;
}

@media screen and (min-width: 48rem) {
  .review_list {
    padding: 1.5rem 2rem;
  }

  .review_list > li {
    padding: 1.5rem;
  }
}

/* メディア情報 */
.media_back {
  background-image: url(../img/media_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*===================================
 販売店一覧
====================================*/
.shop_list {
  list-style-type: none;
  padding-left: 0;
  margin: 3rem auto 10rem;
}

.shop_list > li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
  padding: 2rem 1rem;
  border-bottom: 1px solid #dad6bd;
}

.shop_list > li:first-child {
  border-top: 1px solid #dad6bd;
}

.shop_list_title {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  font-family: var(--font_mincho_family);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  font-size: clamp(1.25rem, 1.159rem + 0.39vw, 1.5rem);
}

.shop_info_list {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  list-style-type: none;
  padding-left: 0;
}

.shop_list a {
  word-break: break-all;
}

.shop_list_img {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  text-align: center;
}

.shop_list_img > img {
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 48rem) {
  .shop_list > li {
    grid-template-columns: 240px 1fr;
    /* margin-bottom: 2rem; */
    gap: 1rem 3rem;
    padding: 3rem 4rem;
  }

  .shop_list_title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: left;
  }

  .shop_info_list {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .shop_list_img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

/*===================================
 会社概要
====================================*/
.company_table th,
.company_table td {
  display: block;
  width: 100%;
  border-right: none;
}

@media screen and (min-width: 48rem) {
  .company_table th,
  .company_table td {
    display: table-cell;
  }

  .company_table th {
    width: 240px;
  }
  .company_table td {
    width: calc(100% - 240px);
  }
}

/*===================================
 JS操作によるスタイル
====================================*/
/* ハンバーガーメニューを開く */
.header_nav.is-open {
  display: block;
}

/* ハンバーガーメニュー開いたとき、背景にレイヤーを敷く */
.cover.is-active {
  width: 100%;
}

/* ハンバーガーメニュー開いたとき、背景を固定する */
body.is-hidden {
  overflow: hidden;
}

/* スクロールによるフェードインアニメーション処理 */
.js-fadein {
  transition:
    opacity 0.7s,
    transform 1s;
  transform: translateY(70px);
  opacity: 0;
}
.js-fadein.is-active {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    transition: none;
    transform: none;
    opacity: 1; /* 最初から表示 */
  }
}

/*===================================
 Utility style
====================================*/
/*********************************
 text
**********************************/
.u-fw_bold {
  font-weight: bold !important;
}
.u-text_left {
  text-align: left !important;
}
.u-text_center {
  text-align: center !important;
}
@media screen and (min-width: 48rem) {
  .u-text_md_left {
    text-align: left !important;
  }
  .u-text_md_center {
    text-align: center !important;
  }
}

/*********************************
 margin
**********************************/
/* margin 0 */
.u-mt_0 {
  margin-top: 0 !important;
}
.u-mb_0 {
  margin-bottom: 0 !important;
}
.u-me_0 {
  margin-right: 0 !important;
}
.u-ms_0 {
  margin-left: 0 !important;
}
.u-mx_0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.u-my_0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.u-m_0 {
  margin: 0 !important;
}

/* margin 1rem */
.u-mt_1 {
  margin-top: 1rem !important;
}
.u-mb_1 {
  margin-bottom: 1rem !important;
}
.u-me_1 {
  margin-right: 1rem !important;
}
.u-ms_1 {
  margin-left: 1rem !important;
}
.u-mx_1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.u-my_1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.u-m_1 {
  margin: 1rem !important;
}

/* margin 2rem */
.u-mt_2 {
  margin-top: 2rem !important;
}
.u-mb_2 {
  margin-bottom: 2rem !important;
}
.u-my_2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-mx_auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/*********************************
 padding
**********************************/
/* .u-py_0p5 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
} */
.u-py_1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.u-px_1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.u-p_1 {
  padding: 1rem !important;
}
.u-px_2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-p_2 {
  padding: 2rem !important;
}

/*********************************
 font size
**********************************/
.u-fs_12 {
  font-size: 0.75rem !important;
}
.u-fs_14 {
  font-size: 0.875rem !important;
}
.u-fs_16 {
  font-size: 1rem !important;
}
.u-fs_20 {
  font-size: 1.25rem !important;
}
.u-fs_24 {
  font-size: 1.5rem !important;
}
.u-fs_32 {
  font-size: 2rem !important;
}
.u-fs_40 {
  font-size: 2.5rem !important;
}
.u-fs_48 {
  font-size: 3rem !important;
}

@media screen and (min-width: 48rem) {
  .u-fs_12--md {
    font-size: 0.75rem !important;
  }
  .u-fs_14--md {
    font-size: 0.875rem !important;
  }
  .u-fs_16--md {
    font-size: 1rem !important;
  }
  .u-fs_20--md {
    font-size: 1.25rem !important;
  }
  .u-fs_24--md {
    font-size: 1.5rem !important;
  }
  .u-fs_32--md {
    font-size: 2rem !important;
  }
  .u-fs_40--md {
    font-size: 2.5rem !important;
  }
  .u-fs_48--md {
    font-size: 3rem !important;
  }
}

@media screen and (min-width: 62rem) {
  .u-fs_12--lg {
    font-size: 0.75rem !important;
  }
  .u-fs_14--lg {
    font-size: 0.875rem !important;
  }
  .u-fs_16--lg {
    font-size: 1rem !important;
  }
  .u-fs_20--lg {
    font-size: 1.25rem !important;
  }
  .u-fs_24--lg {
    font-size: 1.5rem !important;
  }
  .u-fs_32--lg {
    font-size: 2rem !important;
  }
  .u-fs_40--lg {
    font-size: 2.5rem !important;
  }
  .u-fs_48--lg {
    font-size: 3rem !important;
  }
}

/*********************************
 width
**********************************/
.u-w_100 {
  width: 100% !important;
}

/*********************************
 display none/block
**********************************/
.u-d_none {
  display: none !important;
}
.u-d_block {
  display: block !important;
}

@media screen and (min-width: 48rem) {
  .u-d_md_none {
    display: none !important;
  }
  .u-d_md_block {
    display: block !important;
  }
}

@media screen and (min-width: 62rem) {
  .u-d_lg_none {
    display: none !important;
  }
  .u-d_lg_block {
    display: block !important;
  }
}

/*********************************
 others
**********************************/
.u-overflow_hidden {
  overflow: hidden !important;
}
