@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-06-12
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Margin */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #fff;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.3s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  font-weight: 700;
  vertical-align: top;
}

sub {
  font-size: 66%;
  font-weight: 700;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* HR */
/* ------------------------------------------------------------ */
hr {
  width: 100%;
  height: 1px;
  margin: 0 auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px #000 solid;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 3.59vw;
}
html body {
  background: url("../img/bg.png") repeat-y center top/100% auto;
}
html body::-webkit-scrollbar {
  display: none;
}
html body header {
  position: relative;
  z-index: 2;
}
html body header .inner {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  margin-top: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0 min(5.128vw, 40px);
  z-index: 4;
}
html body header .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: min(15.385vw, 120px);
  margin: 0 auto;
}
html body header .inner > div h1 {
  color: #fff;
  font-size: min(1.428rem, 40px);
  font-weight: 700;
}
html body header .inner > div #nav_toggle {
  cursor: pointer;
  position: relative;
  width: min(10.256vw, 80px);
  height: min(10.256vw, 80px);
}
html body header .inner > div #nav_toggle span {
  width: min(5.128vw, 40px);
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  left: calc(50% - min(2.564vw, 20px));
  transition: transform 0.3s ease-in-out, top 0.2s ease;
}
html body header .inner > div #nav_toggle span:nth-child(1) {
  top: calc(50% - 1px - min(1.282vw, 10px));
}
html body header .inner > div #nav_toggle span:nth-child(2) {
  top: calc(50% - 1px);
}
html body header .inner > div #nav_toggle span:nth-child(3) {
  top: calc(50% - 1px + min(1.282vw, 10px));
}
html body header #global_nav {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html body header #global_nav > div {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px) min(5.128vw, 40px);
  opacity: 0;
  transform: translateY(-128.205vw);
  transition: transform 0.6s ease, opacity 0.1s ease;
}
html body header #global_nav > div > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
html body header #global_nav > div > ul li {
  width: 100%;
  border-bottom: 1px #fff solid;
  transform: translateY(-min(20.513vw, 160px));
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.1s ease;
}
html body header #global_nav > div > ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: min(2.564vw, 20px) 0;
  font-size: min(1.142rem, 32px);
  font-weight: 500;
}
html body header #global_nav > div > ul li:nth-of-type(1) {
  transition-delay: 0.1s !important;
}
html body header #global_nav > div > ul li:nth-of-type(2) {
  transition-delay: 0.2s !important;
}
html body header #global_nav > div > ul li:nth-of-type(3) {
  transition-delay: 0.3s !important;
}
html body header.open #nav_toggle span:nth-child(1) {
  top: calc(50% - 1px) !important;
  transform: rotate(45deg);
}
html body header.open #nav_toggle span:nth-child(2) {
  top: calc(50% - 1px);
  width: 0;
  left: 50%;
}
html body header.open #nav_toggle span:nth-child(3) {
  top: calc(50% - 1px) !important;
  transform: rotate(-45deg);
}
html body header.open #global_nav {
  visibility: visible;
  opacity: 1;
}
html body header.open #global_nav div {
  opacity: 1;
  transform: translateY(0);
}
html body header.open #global_nav div ul li {
  opacity: 1;
  transform: translateY(0);
}
html body main#index section#mainvisual .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
html body main#index section#mainvisual .inner h2 {
  width: 100%;
}
html body main#index section#mainvisual .inner .comment {
  font-size: min(1rem, 28px);
  line-height: 1.75;
  margin-top: min(3.846vw, 30px);
}
html body main#index section#posting .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px) 0;
}
html body main#index section#posting .inner h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(2rem, 56px);
  font-weight: 500;
}
html body main#index section#posting .inner h3::first-letter {
  color: #C9161E;
}
html body main#index section#posting .inner h3::before, html body main#index section#posting .inner h3::after {
  content: "";
  width: min(20.513vw, 160px);
  height: 1px;
  background: #000;
}
html body main#index section#posting .inner h3::before {
  margin-right: min(5.128vw, 40px);
}
html body main#index section#posting .inner h3::after {
  margin-left: min(5.128vw, 40px);
}
html body main#index section#posting .inner h3 span::first-letter {
  color: #C9161E;
}
html body main#index section#posting .inner article {
  width: 100%;
  max-width: 700px;
}
html body main#index section#posting .inner article a {
  box-sizing: border-box;
  display: block;
  padding: min(2.564vw, 20px);
  width: 100%;
  background: #fff;
}
html body main#index section#posting .inner article a > .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
html body main#index section#posting .inner article a > .date time {
  color: #000;
  font-size: min(1rem, 28px);
  white-space: nowrap;
  margin-right: min(5.128vw, 40px);
}
html body main#index section#posting .inner article a > .date .category {
  background: #C9161E;
  color: #fff;
  font-size: min(0.857rem, 24px);
  white-space: nowrap;
  padding: min(1.282vw, 10px) min(2.564vw, 20px);
}
html body main#index section#posting .inner article a h1 {
  color: #000;
  font-size: min(1rem, 28px);
  line-height: 1.25;
  margin-top: min(2.564vw, 20px);
}
html body main#index section#posting#contents .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#index section#posting#contents .inner .banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: min(2.564vw, 20px);
  width: 100%;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.8);
}
html body main#index section#posting#contents .inner .banner figure {
  width: 100%;
}
html body main#index section#posting#contents .inner .banner figure figcaption {
  width: 100%;
}
html body main#index section#posting#contents .inner .banner figure figcaption h3 {
  text-align: center;
  color: #fff;
  font-size: min(1.285rem, 36px);
  font-weight: 700;
  padding: min(5.128vw, 40px) 0;
  border-bottom: 2px #fff solid;
  margin-bottom: min(3.846vw, 30px);
}
html body main#index section#posting#contents .inner .banner figure figcaption .comment {
  color: #fff;
  font-size: min(1rem, 28px);
  line-height: 1.75;
}
html body main#index section#contents .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#index section#contents .inner .banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: min(2.564vw, 20px);
  width: 100%;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.8);
}
html body main#index section#contents .inner .banner figure {
  width: 100%;
}
html body main#index section#contents .inner .banner figure figcaption {
  width: 100%;
}
html body main#index section#contents .inner .banner figure figcaption h3 {
  text-align: center;
  color: #fff;
  font-size: min(1.285rem, 36px);
  font-weight: 700;
  padding: min(5.128vw, 40px) 0;
  border-bottom: 2px #fff solid;
  margin-bottom: min(3.846vw, 30px);
}
html body main#index section#contents .inner .banner figure figcaption .comment {
  color: #fff;
  font-size: min(1rem, 28px);
  line-height: 1.75;
}
html body main#index section#contents .inner .banner .btn {
  margin-top: min(3.846vw, 30px);
}
html body main#index section#contents .inner .banner .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(41.026vw, 320px);
  height: min(10.256vw, 80px);
  background: #9E968A;
  color: #fff;
  font-size: min(1rem, 28px);
  font-weight: 500;
}
html body main#index section#contents .inner .banner .btn a .arrow {
  width: min(2.051vw, 16px);
  height: min(2.051vw, 16px);
  border-top: min(0.513vw, 4px) solid #fff;
  border-right: min(0.513vw, 4px) solid #fff;
  transform: rotate(45deg);
  margin-right: min(2.564vw, 20px);
}
html body main:not(#index) section#title {
  background: rgba(0, 0, 0, 0.8);
}
html body main:not(#index) section#title .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: min(41.026vw, 320px);
  padding: 0 min(5.128vw, 40px) min(8.974vw, 70px);
}
html body main:not(#index) section#title .inner h2 {
  color: #fff;
  font-size: min(2rem, 56px);
  font-weight: 500;
}
html body main:not(#index) section h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(2rem, 56px);
  font-weight: 500;
}
html body main:not(#index) section h3::first-letter {
  color: #C9161E;
}
html body main:not(#index) section h3::before, html body main:not(#index) section h3::after {
  content: "";
  width: min(15.385vw, 120px);
  height: 1px;
  background: #000;
}
html body main:not(#index) section h3::before {
  margin-right: min(3.846vw, 30px);
}
html body main:not(#index) section h3::after {
  margin-left: min(3.846vw, 30px);
}
html body main:not(#index) section h3 span::first-letter {
  color: #C9161E;
}
html body main#news section#posting .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#news section#posting .inner article {
  width: 100%;
  max-width: 700px;
}
html body main#news section#posting .inner article a {
  box-sizing: border-box;
  display: block;
  padding: min(2.564vw, 20px);
  width: 100%;
  background: #fff;
}
html body main#news section#posting .inner article a > .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
html body main#news section#posting .inner article a > .date time {
  color: #000;
  font-size: min(1rem, 28px);
  white-space: nowrap;
  margin-right: min(5.128vw, 40px);
}
html body main#news section#posting .inner article a > .date .category {
  background: #C9161E;
  color: #fff;
  font-size: min(0.857rem, 24px);
  white-space: nowrap;
  padding: min(1.282vw, 10px) min(2.564vw, 20px);
}
html body main#news section#posting .inner article a h1 {
  color: #000;
  font-size: min(1rem, 28px);
  line-height: 1.25;
  margin-top: min(2.564vw, 20px);
}
html body main#news_detail section#posting .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#news_detail section#posting .inner article {
  display: block;
  padding: min(2.564vw, 20px);
  width: 100%;
  max-width: 700px;
  background: #fff;
}
html body main#news_detail section#posting .inner article > .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
html body main#news_detail section#posting .inner article > .date time {
  color: #000;
  font-size: min(1rem, 28px);
  white-space: nowrap;
  margin-right: min(5.128vw, 40px);
}
html body main#news_detail section#posting .inner article > .date .category {
  background: #C9161E;
  color: #fff;
  font-size: min(0.857rem, 24px);
  white-space: nowrap;
  padding: min(1.282vw, 10px) min(2.564vw, 20px);
}
html body main#news_detail section#posting .inner article h1 {
  font-size: min(1rem, 28px);
  line-height: 1.25;
  padding-bottom: min(2.564vw, 20px);
  border-bottom: 1px #9E968A solid;
  margin: min(2.564vw, 20px) 0 0;
}
html body main#news_detail section#posting .inner article figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.564vw, 20px);
}
html body main#news_detail section#posting .inner article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#news_detail section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.564vw, 20px);
}
html body main#news_detail section#posting .inner article > .comment h1,
html body main#news_detail section#posting .inner article > .comment h2,
html body main#news_detail section#posting .inner article > .comment h3,
html body main#news_detail section#posting .inner article > .comment h4,
html body main#news_detail section#posting .inner article > .comment h5,
html body main#news_detail section#posting .inner article > .comment h6,
html body main#news_detail section#posting .inner article > .comment p {
  all: revert;
}
html body main#news_detail section#posting .inner article > .comment p {
  font-size: min(1rem, 28px);
  line-height: 1.75;
}
html body main#news_detail section#posting .inner article > .comment ul,
html body main#news_detail section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#news_detail section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#news_detail section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#news_detail section#posting .inner article > .comment a {
  color: #C9161E;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#news_detail section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#news_detail section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#news_detail section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(1.282vw, 10px) min(2.564vw, 20px);
}
html body main#news_detail section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#news_detail section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#news_detail section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#menu section#products .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#menu section#products .inner .banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: min(2.564vw, 20px);
  width: 100%;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.8);
}
html body main#menu section#products .inner .banner figure {
  width: 100%;
}
html body main#menu section#products .inner .banner figure figcaption {
  width: 100%;
}
html body main#menu section#products .inner .banner figure figcaption h4 {
  text-align: center;
  color: #fff;
  font-size: min(1.571rem, 44px);
  font-weight: 500;
  margin-top: min(5.128vw, 40px);
}
html body main#menu section#products .inner .banner figure figcaption strong {
  display: block;
  text-align: center;
  color: #fff;
  font-size: min(1.285rem, 36px);
  font-weight: 700;
  margin: min(2.564vw, 20px) 0;
}
html body main#menu section#products .inner .banner figure figcaption .comment {
  color: #fff;
  font-size: min(1rem, 28px);
  line-height: 1.75;
}
html body main#access section#shop .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#access section#shop .inner figure {
  width: 100%;
  max-width: 700px;
}
html body main#access section#shop .inner figure figcaption {
  width: 100%;
  margin-top: min(5.128vw, 40px);
}
html body main#access section#shop .inner figure figcaption dl {
  display: block;
  width: 100%;
}
html body main#access section#shop .inner figure figcaption dl:nth-of-type(2) {
  margin-top: min(12.821vw, 100px);
}
html body main#access section#shop .inner figure figcaption dl dt {
  text-align: center;
  color: #fff;
  font-size: min(1rem, 28px);
  font-weight: 500;
  padding: min(2.564vw, 20px) 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
}
html body main#access section#shop .inner figure figcaption dl dd {
  text-align: center;
  font-size: min(1rem, 28px);
  line-height: 1.75;
  padding: min(2.564vw, 20px) 0;
}
html body main#access section#shop .inner figure figcaption dl dd a {
  color: #000;
}
html body main#contact section#inquiry .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5.128vw, 40px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#contact section#inquiry .inner > div {
  display: block;
  padding: min(2.564vw, 20px);
  width: 100%;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.8);
}
html body main#contact section#inquiry .inner > div form {
  width: 100%;
}
html body main#contact section#inquiry .inner > div form > .note {
  margin-bottom: min(2.564vw, 20px);
}
html body main#contact section#inquiry .inner > div form > .note p {
  text-align: left;
  color: #fff;
  font-size: min(1rem, 28px);
  line-height: 1.75;
  width: 100%;
}
html body main#contact section#inquiry .inner > div form .btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: min(7.692vw, 60px);
}
html body main#contact section#inquiry .inner > div form .btn_area .btn_submit,
html body main#contact section#inquiry .inner > div form .btn_area .btn_confirm,
html body main#contact section#inquiry .inner > div form .btn_area .btn_fixes {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(41.026vw, 320px);
  height: min(10.256vw, 80px);
  background: #9E968A;
  color: #fff;
  font-size: min(1rem, 28px);
  font-weight: 500;
  cursor: pointer;
  border: none;
}
html body main#contact section#inquiry .inner > div form .btn_area + .btn_area {
  margin-top: 0;
}
html body main#contact section#inquiry .inner > div form .must {
  background: #C9161E;
  color: #fff;
  font-size: min(0.714rem, 20px);
  padding: min(1.282vw, 10px) min(2.564vw, 20px);
}
html body main#contact section#inquiry .inner > div form span.error {
  display: block;
  text-align: left;
  margin-top: min(1.282vw, 10px);
  flex-basis: 100%;
}
html body main#contact section#inquiry .inner > div form dl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: min(5.128vw, 40px) 0 0;
}
html body main#contact section#inquiry .inner > div form dl:last-of-type {
  border: none;
}
html body main#contact section#inquiry .inner > div form dl dt {
  flex-shrink: 0;
  width: 100%;
  margin: 0 0 min(2.564vw, 20px);
}
html body main#contact section#inquiry .inner > div form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: min(1rem, 28px);
  font-weight: 700;
}
html body main#contact section#inquiry .inner > div form dl dd {
  display: block;
  width: 100%;
}
html body main#contact section#inquiry .inner > div form dl dd .wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  color: #fff;
  font-size: min(1rem, 28px);
  line-height: 1.75;
}
html body main#contact section#inquiry .inner > div form dl dd .wrap + .wrap {
  margin-top: min(2.564vw, 20px);
}
html body main#contact section#inquiry .inner > div form dl dd .wrap2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: min(0.857rem, 24px);
  line-height: 1.75;
}
html body main#contact section#inquiry .inner > div form dl dd .wrap2 + .wrap2 {
  margin-top: min(2.564vw, 20px);
}
html body main#contact section#inquiry .inner > div form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px #9E968A solid;
  color: #111;
  font-size: min(1rem, 28px);
  letter-spacing: 1px;
  width: 100%;
  height: min(10.256vw, 80px);
  padding: min(1.282vw, 10px) min(2.564vw, 20px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
html body main#contact section#inquiry .inner > div form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea):focus {
  outline: none;
}
html body main#contact section#inquiry .inner > div form textarea {
  height: min(41.026vw, 320px) !important;
}
html body main#contact section#inquiry .inner > div form input[type=file] {
  font-size: min(1rem, 28px);
}
html body main#contact section#inquiry .inner > div form input[type=text].input_number {
  text-align: right;
  width: 3.8em !important;
}
html body main#contact section#inquiry .inner > div form .horizontal-item {
  padding: min(1.282vw, 10px) 0;
  margin-left: 0;
}
html body main#contact section#inquiry .inner > div form .horizontal-item + .horizontal-item {
  padding: min(1.282vw, 10px) 0;
}
html body main#contact section#inquiry .inner > div form .select {
  width: 100%;
  position: relative;
}
html body main#contact section#inquiry .inner > div form .select::after {
  content: "";
  display: block;
  width: min(1.282vw, 10px);
  height: min(1.282vw, 10px);
  border-width: 0 2px 2px 0;
  border-color: #111;
  border-style: solid;
  position: absolute;
  right: min(2.564vw, 20px);
  top: calc(50% - min(1.282vw, 10px));
  transform-origin: center;
  transform: rotate(45deg);
}
html body main#contact section#inquiry .inner > div form .radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main#contact section#inquiry .inner > div form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner > div form .radio .mwform-radio-field label {
  display: flex;
}
html body main#contact section#inquiry .inner > div form .radio .mwform-radio-field label .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1rem, 28px);
  margin: 0 min(5.128vw, 40px) 0 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
html body main#contact section#inquiry .inner > div form .radio .mwform-radio-field label .mwform-radio-field-text::before {
  content: "";
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  margin: 0 min(2.564vw, 20px) 0 0;
  border: 1px solid #9E968A;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner > div form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #9E968A;
}
html body main#contact section#inquiry .inner > div form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 3px;
  content: "";
  width: 12px;
  height: 12px;
  background: #C9161E;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner > div form .check {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main#contact section#inquiry .inner > div form .check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field {
  display: block;
}
html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field label {
  display: flex;
}
html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(0.857rem, 24px);
  margin: 0 min(5.128vw, 40px) 0 0;
  cursor: pointer;
  position: relative;
}
html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before, html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  display: block;
}
html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  inset: 0 auto 0 0;
  background: #fff;
  border: 1px solid #E6E0D4;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: min(2.564vw, 20px);
}
html body main#contact section#inquiry .inner > div form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  border-right: 2px solid #C9161E;
  border-bottom: 2px solid #C9161E;
  width: 6px;
  height: 12px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  inset: auto auto auto 6px;
  transform: rotate(45deg);
  transition: all 0.5s;
}
html body main#contact section#inquiry .inner > div form .check input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main#contact section#inquiry .inner > div .mw_wp_form {
  width: 100%;
}
html body main#contact section#inquiry .inner > div .mw_wp_form_confirm {
  width: 100%;
}
html body main#contact section#inquiry .inner > div .mw_wp_form_confirm .select::after {
  content: none;
}
html body main#contact section#inquiry .inner > div .mw_wp_form_complete p {
  text-align: left;
  color: #fff;
  font-size: min(1rem, 28px);
  line-height: 1.75;
  width: 100%;
}
html body main#notfound section#contents .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(10.256vw, 80px);
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px);
}
html body main#notfound section#contents .inner p {
  font-size: min(1rem, 28px);
  line-height: 1.75;
}
html body .breadcrumbs {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: min(2.564vw, 20px) min(5.128vw, 40px);
  background: #fff;
}
html body .breadcrumbs li {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .breadcrumbs li::after {
  content: "›";
  width: 1em;
  color: #000;
  text-align: center;
  font-size: min(0.714rem, 20px);
  top: 0;
}
html body .breadcrumbs li:last-child::after {
  content: normal;
}
html body .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body .breadcrumbs li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .breadcrumbs li span {
  color: #000;
  font-size: min(0.714rem, 20px);
  line-height: 1.25;
}
html body .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(41.026vw, 320px);
  height: min(10.256vw, 80px);
  background: #9E968A;
  color: #fff;
  font-size: min(1rem, 28px);
  font-weight: 500;
}
html body .btn a .arrow {
  width: min(2.051vw, 16px);
  height: min(2.051vw, 16px);
  border-top: min(0.513vw, 4px) solid #fff;
  border-right: min(0.513vw, 4px) solid #fff;
  transform: rotate(45deg);
  margin-right: min(2.564vw, 20px);
}
html body footer {
  background: rgba(0, 0, 0, 0.8);
}
html body footer .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: min(15.385vw, 120px) min(5.128vw, 40px) min(5.128vw, 40px);
}
html body footer .inner h1 {
  color: #fff;
  font-size: min(1.428rem, 40px);
  font-weight: 700;
}
html body footer .inner small {
  color: #fff;
  font-size: min(0.714rem, 14px);
  margin-top: min(12.821vw, 100px);
}/*# sourceMappingURL=style.css.map */