@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --full-bleed: calc(50% - 50cqi);
  --wrapper: 67.5rem;
  --font_family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Hiragino Kaku Gothic StdN', 'Meiryo', 'Noto Sans JP', sans-serif;
  --font_family-NotoSansJP: 'Noto Sans JP', sans-serif;
  --font_family-PTSans: 'PT Sans', sans-serif;
  --color_white: #ffffff;
  --color_white_rgb:
    255, 255,
    255;
  --color_text: #333333;
  --color_text_rgb:
    51, 51,
    51;
}

body {
  container-type: inline-size;
  font-size: 16px;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto 0px;
  padding: 0 20px;
}

#header_bg {
  position: fixed;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-top .global-nav-phone {
  width: auto;
}
@media screen and (min-width: 40rem) {
  .header-top .global-nav-phone {
    display: none;
  }
}

.header-logo {
  margin: 0;
  max-width: 60%;
  padding-bottom: 6px;
}
.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-nav-sec {
  display: none;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 40rem) {
  .header-nav-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.header-nav-sectab-block--hidden {
  display: block;
}
.header-nav-sec ul.global-nav-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (min-width: 40rem) {
  .header-nav-sec ul.global-nav-main {
    flex-direction: row;
  }
}
.header-nav-sec ul.global-nav-main li {
  list-style-type: none;
}
.header-nav-sec ul.global-nav-main li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0.5em;
  font-size: 16px;
  font-weight: 700;
}
.header-nav-sec ul.global-nav-sns {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (min-width: 40rem) {
  .header-nav-sec ul.global-nav-sns {
    flex-direction: row;
  }
}
.header-nav-sec ul.global-nav-sns li {
  list-style-type: none;
}
.header-nav-sec ul.global-nav-sns li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0.5em;
  font-size: 16px;
  font-weight: 700;
}

.top_about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 40rem) {
  .top_about {
    min-height: 400px;
  }
}
.top_about h2 {
  color: #fff;
}
.top_about p {
  padding: 0 20px;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (min-width: 40rem) {
  .top_about p {
    font-size: 24px;
  }
}

.instagram-bnr {
  margin-top: 32px;
  text-align: center;
}

.instagram-bnr_btn {
  box-sizing: border-box;
  max-width: 360px;
  width: 100%;
  height: 56px;
  padding: 12px 32px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
}
.instagram-bnr_btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.topics_list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}

.topics_item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}
.topics_item time {
  min-width: 100px;
  font-size: 14px;
  color: #888;
}

.topics_link {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  transition: opacity 0.3s;
}

.topics_link:hover {
  opacity: 0.6;
}

.topics_more {
  margin-top: 32px;
  text-align: center;
}

.topics_more_btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  max-width: 360px;
  width: 100%;
  height: 56px;
  border: 1px solid #444;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

.topics_more_btn:hover {
  background: #444;
  color: #fff;
}

.pagenation {
  margin-top: 40px;
  text-align: center;
}

.pagenation__list ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagenation__list li {
  list-style: none;
}

.pagenation__list a,
.pagenation__list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: all 0.3s;
}

.pagenation__list a:hover {
  background: #444;
  color: #fff;
  border-color: #444;
}

.pagenation__list .current {
  background: #444;
  color: #fff;
  border-color: #444;
}

.pagenation__list .prev,
.pagenation__list .next {
  font-size: 16px;
  font-weight: bold;
}

.topics_detail {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}

.topics_date {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.topics_title {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 24px;
}

.topics_content {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.topics_content p {
  margin-bottom: 20px;
}

.topics_content h2,
.topics_content h3,
.topics_content h4 {
  margin: 32px 0 16px;
  line-height: 1.6;
}

.topics_content h2 {
  font-size: 22px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.topics_content h3 {
  font-size: 18px;
}

.topics_content h4 {
  font-size: 16px;
}

.topics_content ul,
.topics_content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.topics_content li {
  margin-bottom: 8px;
}

.topics_content a {
  color: #444;
  text-decoration: underline;
}

.topics_content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.topics_content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #f5f5f5;
  border-left: 4px solid #444;
}

.contact {
  padding: 40px 0;
}
@media screen and (min-width: 48rem) {
  .contact {
    padding: 120px 0;
  }
}

.contact_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.contact_table tr {
  display: block;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}
@media screen and (min-width: 48rem) {
  .contact_table tr {
    display: table-row;
    padding: 0;
  }
}

.contact_table th,
.contact_table td {
  display: block;
  width: 100%;
  padding: 0;
  vertical-align: top;
}
@media screen and (min-width: 48rem) {
  .contact_table th,
  .contact_table td {
    display: table-cell;
    padding: 20px 0;
  }
}

.contact_table th {
  margin-bottom: 12px;
  text-align: left;
  font-weight: 500;
}
@media screen and (min-width: 48rem) {
  .contact_table th {
    width: 260px;
    margin-bottom: 0;
  }
}

.contact_table th label {
  display: inline-block;
  cursor: pointer;
  line-height: 1.8;
}

.contact_table th span {
  font-size: 13px;
  color: #c00;
}

.contact_table td input,
.contact_table td textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
  appearance: none;
}

.contact_table td textarea {
  min-height: 220px;
  resize: vertical;
}

.contact_table td .wpcf7-form-control-wrap {
  display: block;
}

.contact_table td label[for=your-email-confirm] {
  display: block;
  margin: 12px 0 8px;
  font-size: 13px;
  color: #666;
}

.contact_submit {
  margin-top: 40px;
  text-align: center;
}

.contact_submit .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 32px;
  border: 1px solid #444;
  background: #fff;
  color: #444;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

.contact_submit .wpcf7-submit:hover {
  background: #444;
  color: #fff;
}

.contact_table td input:focus,
.contact_table td textarea:focus {
  border-color: #444;
  outline: none;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  color: #c00;
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 14px;
}

.item_price p {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.item_price p span {
  display: inline-block;
  font-size: 24px;
  color: #ffc926;
}

.item_detail .sec1 .layout3 .add_cart .button_area a {
  display: inline-block;
  width: 100%;
  background: #df7676;
  border: 0;
  font-weight: bold;
  padding: 22px 0;
  margin: 20px 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.top_main {
  background-size: cover;
  background: none;
  height: auto;
  position: relative;
  padding: 0;
}
.top_main .main_logo {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  top: 0;
  left: 0;
}
.top_main .main_logo h1 {
  position: relative;
  top: 0;
  left: 0;
  max-width: 72%;
}

.metaslider.ms-theme-simply-dark.has-dots-nav {
  margin-bottom: 0 !important;
}

[id^=metaslider] .flex-control-nav {
  display: none;
}
[id^=metaslider] .flex-direction-nav {
  display: none;
}

.top_about {
  background-size: cover;
}

.sub .head_img {
  background-size: cover;
}

/*# sourceMappingURL=site.css.map */
