:root {
  --main-color: #d60000;
  --sub-color: #006837;
  --point-color: #d29b54;
  --text-color: #321e0a;
}

.zenmaru-M {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zenmaru-B {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.yuseimagic-M {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* reset */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  border: 0;
  box-sizing: border-box;
  font-style: normal;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: none;
  font: inherit;
}

html {
  font-size: 10px;
  scroll-padding-top: 100px;
  overflow-y: scroll;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  font-family: "Zen Maru Gothic", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
  line-height: 2;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
  counter-reset: number 0;
  word-break: auto-phrase;
  overflow-wrap: break-word;
  /* height: -webkit-fill-available; */
}

/* デバイス別フォントサイズ調整 */
@media screen and (max-width: 1081px) {
  body {
    font-size: clamp(14px, calc(100vw / 60), 18px);
  }
}
@media screen and (max-width: 821px) {
  body {
    font-size: clamp(14px, calc(100vw / 48), 18px);
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(14px, calc(100vw / 36), 16px);
    padding-top: calc(var(--vh) * 9);
  }
}
@media screen and (max-width: 430px) {
  body {
    font-size: clamp(14px, calc(100vw / 26), 16px);
    padding-top: calc(var(--vh) * 12);
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: normal;
}
div,
dd,
dt,
ul,
li,
section {
  line-height: 1;
}
p {
  line-height: 1.8;
}
ul,
ol {
  list-style: none;
  line-height: 1.8;
}
dt {
  display: block;
}
a,
a:active,
a:invalid,
a:hover {
  color: #493821;
  text-decoration: none;
}
img,
video {
  width: 100%;
}

/* ====== 共通css ====== */
.txt-c {
  text-align: center;
}
.txt-l {
  text-align: left;
}
.txt-r {
  text-align: right;
}
.pc_block {
  display: block;
}
.br_pc {
  display: inline;
}

.sp_block,
.br_sp,
.br_tab {
  display: none;
}
.dis_line a[href^="geo:"],
.dis_line a[href^="tel:"],
.dis_line a[href^="mailto:"] {
  text-decoration: none !important;
  border-bottom: none !important;
}

@media screen and (max-width: 1081px) {
  .br_tab {
    display: inline;
  }
  .br_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .br_sp {
    display: inline;
  }
  .sp_block {
    display: block;
  }
  .pc_block,
  .br_tab,
  .br_pc {
    display: none;
  }
}

.cotns_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .cotns_box {
    width: 90%;
    margin: 0 auto;
  }
}
.cont_hr {
  position: relative;
}
.cont_hr::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background: url(../images/common/cont_hr.png) no-repeat center top -1px;
  background-size: contain;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 789px) {
  .cont_hr::before {
    height: 6vw;
    background: url(../images/common/cont_hr.png) no-repeat center top -1px;
    background-size: cover;
  }
}

/* 見出し */
.cntns_hl1 {
  /* margin-right: 30px; */
  padding: 5px 10px 10px 15px;
  margin-bottom: 60px;
  font-size: clamp(2.4rem, 1.8em, 3.2rem);
  font-weight: bold;
  overflow: hidden;
  border-left: 8px solid var(--main-color);
}
.cntns_hl1 span {
  display: block;
  width: fit-content;
  position: relative;
}
.cntns_hl1 span::before {
  content: "";
  display: block;
  height: 80%;
  width: 90vw;
  background: url(../images/index/conts_hr01.png) repeat-x;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 110%;
}
/* 
  .cntns_hl1 span::after {
    content: "";
    display: block;
    height: 6px;
    width: 90vw;
    background: var(--text-color);
    position: absolute;
    top: 25px;
    left: 105%;
  }
  .cntns_hl1 span::after {
    background: var(--main-color);
    top: 15px;
  } 
*/

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .cntns_hl1 {
    padding: 1vw 3vw;
    margin-bottom: 5vw;
  }
  /* .cntns_hl1 span::after {
    top: 18px;
    height: 4px;
  }
  .cntns_hl1 span::after {
    background: #229f46;
    top: 9px;
  } */
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .cntns_hl1 {
    padding: 1vw 3vw;
    margin-bottom: 6vw;
    font-size: clamp(2rem, 1.6em, 2.6rem);
  }
  .cntns_hl1 span::before {
    height: 50%;
  }
  /* .cntns_hl1 span::after {
    height: 3px;
  } */
  .cntns_hl1::before {
    width: 0;
    top: 50%;
    left: calc(50% - 40vw);
  }
  .cntns_hl1.is-active::before {
    width: 80vw;
    transition: all 0.5s ease;
    transform: scale(1, 1);
  }
}

.cntns_hl2 {
  width: fit-content;
  display: block;
  margin: 47px auto;
  font-size: 1.4em;
  line-height: 1.6;
  /* font-weight: bold; */
  text-shadow: 0 0 2px #ffffff;
  position: relative;
}
/* .cntns_hl2:before {
  content: "";
  width: 50%;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  box-shadow: 0px 0px 0px 10px #f9d9d9;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
} */

/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .cntns_hl2 {
    font-size: clamp(1.4rem, calc(100vw / 20), 1.8rem);
  }
}
/* 共通ボタン */
.main_btn {
  width: fit-content;
  margin: auto;
  overflow: hidden;
}
.main_btn a,
button.main_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 100px 10px 60px;
  width: 100%;
  min-height: 70px;
  background: var(--text-color);
  color: #ffffff;
  text-align: center;
  position: relative;
  border-radius: 15px 50px 15px 50px;
  overflow: hidden;
  z-index: 0;
}
.main_btn a::before,
button.main_btn::before {
  content: "";
  display: block;
  border-top: 2px solid #ffffff;
  width: 36px;
  position: absolute;
  right: 30px;
  transition: all 0.3s ease 0s;
}
.main_btn a::after,
button.main_btn::after {
  content: "";
  display: block;
  background: var(--sub-color);
  width: 600px;
  height: 600px;
  position: absolute;
  top: calc(50% - 350px);
  left: -670px;
  transform: rotate(45deg);
  transition: all 0.5s ease 0s;
  z-index: -1;
}

.main_btn a:hover::after,
button.main_btn:hover::after {
  left: 0;
  transition: all 0.5s ease 0s;
}

.sbu_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 5px 40px 5px 20px;
  background: var(--main-color);
  color: #ffffff;
  vertical-align: middle;
  border-radius: 5px;
  position: relative;
}
.sbu_btn a span.btn_arrow {
  display: block;
  width: 1em;
  transform: rotate(-90deg);
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  transition: all 0.3s;
}
.sbu_btn a:hover span.btn_arrow {
  right: 15px;
  transition: all 0.3s;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .main_btn a,
  button.main_btn {
    padding: 2vw 10vw 2vw 7vw;
  }
  .main_btn a::before,
  button.main_btn::before {
    width: 4vw;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .main_btn a,
  button.main_btn {
    padding: 5vw 20vw 5vw 10vw;
    width: 100%;
    min-height: 40px;
  }
  .main_btn a::before,
  button.main_btn::before {
    width: 8vw;
    position: absolute;
    right: 20px;
    transition: all 0.3s ease 0s;
  }
}

/* ====== header ====== */
header {
  padding: 20px 10px 15px;
  width: 100%;
  height: auto;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header .main_menu {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
/* header menu */
#menu_sp {
  display: none;
}
header#menu_pc nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
header#menu_pc nav ul li {
  font-size: clamp(12px, 100%, 16px);
  font-weight: bold;
  line-height: 1;
  flex: 1 0 auto;
}
header#menu_pc nav ul li a {
  display: flex;
  flex-direction: column;
  text-align: center;
}
header#menu_pc nav ul li img {
  display: block;
  margin: auto;
  width: 10vw;
  max-width: 30px;
  text-align: center;
}
header#menu_pc nav ul li .ruby {
  font-size: 70%;
  font-size: clamp(12px, 70%, 16px);
  color: var(--main-color);
  text-align: center;
  display: block;
  position: relative;
}
header#menu_pc nav ul li br {
  display: none;
}
header#menu_pc nav ul li a:hover {
  color: var(--main-color);
  transition: all 0.3s ease 0s;
}
header#menu_pc nav ul li.menu_h1 {
  max-width: 200px;
  flex: 2 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header#menu_pc nav ul li.menu_h1 h1 {
  width: 100%;
  max-height: 80px;
  line-height: 0;
}
header#menu_pc nav ul li.menu_h1 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
header#menu_pc nav ul li.menu_h1 a:hover {
  opacity: 0.8;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  header {
    height: auto;
  }
  header .main_menu {
    flex-wrap: wrap;
  }
  header#menu_pc nav {
    margin: 5px 0 0 auto;
  }
  header#menu_pc nav ul {
    align-items: flex-start;
    gap: 1vw;
  }
  header#menu_pc nav ul li {
    flex: 1 0 100px;
    font-size: clamp(12px, calc(100vw / 36), 14px);
  }
  header#menu_pc nav ul li br {
    display: inline;
  }
  header#menu_pc nav ul li.menu_h1 {
    align-self: center;
  }
}

/* hamburger menu */
nav.main_menu_sp {
  display: block;
  position: fixed;
  top: 0;
  right: -240px;
  bottom: 0;
  width: 240px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
.open nav.main_menu_sp {
  right: 0;
  opacity: 1;
  transition: all 0.5s;
}
nav.main_menu_sp .inner {
  padding: 25px;
}
nav.main_menu_sp .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.main_menu_sp .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav.main_menu_sp .inner ul li:last-child {
  border: 0;
}
nav.main_menu_sp .inner ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav.main_menu_sp .inner ul li a img {
  display: inline-block;
  width: 2em;
}
nav.main_menu_sp .inner ul li a:hover {
  background: #e4e4e4;
}
nav.main_menu_sp .inner ul li.main_menu_sp_sns a {
  width: 80px;
}
.toggle_btn {
  display: block;
  position: fixed;
  top: 6vw;
  right: 6vw;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}
.open .toggle_btn {
  right: 250px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1),
.open .toggle_btn span:nth-child(3) {
  width: 16px;
}
.open .toggle_btn span:nth-child(1) {
  top: 5px;
  -webkit-transform: translate(-1px, 4px) rotate(-45deg);
  transform: translate(-1px, 4px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  display: none;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 4px;
  -webkit-transform: translate(-1px, -4px) rotate(45deg);
  transform: translate(-1px, -4px) rotate(45deg);
}
#mask {
  display: none;
  transition: all 0.5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .main_menu {
    width: 96%;
    display: block;
  }
  #menu_pc {
    display: none;
  }
  #menu_sp {
    display: block;
    height: auto;
    padding: 3vw;
  }
  #menu_sp h1 {
    width: 50%;
    max-width: 180px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  /* スマホ横向き限定 */
  #menu_sp {
    padding: 2vw;
  }
  #menu_sp h1 {
    width: 20%;
  }
}
/* オンラインショップ固定ボタン */
.shop_jamp {
  display: block;
  width: 10%;
  max-width: 110px;
  position: fixed;
  top: calc(var(--vh) * 86);
  right: 0;
  z-index: 99;
}
#index .shop_jamp {
  top: calc(var(--vh) * 64);
}
@media (max-width: 1024px) {
  .shop_jamp {
    top: calc(var(--vh) * 32);
  }
}
@media (max-width: 768px) {
  #index .shop_jamp {
    width: 18%;
    max-width: 100px;
    top: calc(var(--vh) * 20);
  }
  .shop_jamp {
    width: 18%;
    max-width: 100px;
    top: calc(var(--vh) * 36);
  }
}

/* ====== footer ====== */
footer a {
  color: #ffffff;
}
footer {
  width: 100%;
  padding: 10px 0 0;
  background: var(--sub-color) url(../images/common/footer_bg.png) no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 99;
}
footer h1 {
  margin: auto;
}
footer .footer_menu {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 10px;
}
footer .footer_sitemap ul {
  width: fit-content;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
footer .footer_sitemap ul li {
  width: calc((100% / 4) - 10px);
}
footer .footer_sitemap ul li a {
  padding-left: 2em;
  color: #ffffff;
  background: url(../images/common/conts_iconbase.png) no-repeat left top 70%;
  background-size: auto 70%;
}
footer .footer_menu .footer_adrs {
  width: 100%;
  padding: 20px 0;
}
footer .footer_menu .footer_adrs h1 {
  max-width: 375px;
  width: 30%;
  background: #ffffff;
  padding: 5px 15px;
  margin: 10px auto 20px;
}
footer .footer_menu .footer_adrs ul {
  width: 90%;
  max-width: 860px;
  width: fit-content;
  margin: auto;
}
footer .footer_menu .footer_adrs ul li {
  color: #ffffff;
  padding-bottom: 10px;
}
footer .footer_menu .footer_adrs ul li .tel {
  justify-content: center;
}
.copyright {
  background: #d60000;
  padding: 5px 0 30px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
@media screen and (max-width: 1081px) {
  footer .footer_sitemap ul {
    width: 100%;
    margin: auto;
    padding: 15px 0;
    gap: 10px;
  }
  footer .footer_btn .main_btn a {
    font-size: calc(50vw / 24);
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 6vw 0 0;
  }
  footer .footer_menu {
    display: block;
    padding: 0;
  }
  footer .footer_sitemap ul {
    gap: 5px;
  }
  footer .footer_sitemap ul li {
    width: calc((100% / 2) - 10px);
    text-align: left;
    padding: 0 0 0 15px;
    margin: 5px 0;
  }
  footer .footer_menu .footer_adrs {
    width: 100%;
  }
  footer .footer_menu .footer_adrs h1 {
    width: 60%;
    margin: 2vw auto 3vw;
  }
  footer .footer_menu .footer_adrs address ul {
    width: 100%;
    font-size: calc(100vw / 28);
  }
  footer .footer_menu .footer_adrs address ul li {
    margin: 2vw auto;
    padding: 0;
  }
  footer .footer_menu .footer_adrs address ul li span {
    justify-content: center;
    line-height: 1.4;
  }
  .copyright {
    font-size: calc(100vw / 32);
  }
}
.tel {
  display: flex;
}
/* トップへ戻るボタン */
#page_top {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 90%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  z-index: 990;
  border-radius: 10px;
}
@media screen and (max-width: 1081px) {
  #page_top {
    font-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  #page_top {
    width: 16vw;
    height: 16vw;
    max-width: 80px;
    max-height: 80px;
    position: fixed;
    bottom: 10vw;
    right: 5vw;
  }
}

.arrow_c01 {
  fill: var(--main-color);
  width: 100%;
}
.arrow_c02 {
  fill: #ffffff;
  width: 100%;
}
