@charset "UTF-8";

/* =============================================
  Start: <Header>
============================================= */
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
  max-width: 100%;
}

.header::after {
  content: "";
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 110vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -2;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.header.active::after {
  opacity: 1;
  pointer-events: all;
}

.header-sup {
  display: flex;
  justify-content: flex-end;
  height: auto;
  background-color: #4B2928;
  color: white;
  padding: 10px 20px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header-sup dl {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-sup dt {
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.3;
  display: flex;
  justify-content: center;
  /* white-space: nowrap; */
  width: 100%;
}

.header-sup dd {
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: flex-end;
  /* margin-top: 10px; */
  font-size: 1.1rem;
  display: none;
}

.header-sup dd span {
  padding: 0px 4px;
}

.header-sup a {
  color: #fff;
}

.header-btn {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
  cursor: pointer;
}

.header-btn span {
  position: absolute;
  width: 80%;
  left: 0px;
  height: 2px;
  background-color: #4B2928;
  transition: transform 0.3s ease;
}

.header-btn span:first-child {
  transform: translateY(-10px) rotate(0deg);
}

.header-btn span:last-child {
  transform: translateY(10px) rotate(0deg);
}

.header-btn.active span {
  transform: translateY(0px) rotate(45deg);
}

.header-btn.active span:last-child {
  transform: translateY(0px) rotate(135deg);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 5px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px;
}

.header-main h1 {
  padding: 0px 20px;
  max-width: 260px;
}

.header-main .nav-main {
  width: 100%;
  position: absolute;
  display: block;
  top: 100%;
  left: 100%;
  max-width: 375px;
  padding: 40px 0px;
  height: 100vh;
  background-color: white;
  overflow-y: auto;
  z-index: -1;
}

.header-main .nav-main .menu-main .has-pulldown>*:first-child {
  position: relative;
  z-index: 0;
}

.header-main .nav-main .menu-main .has-pulldown>*:first-child::before,
.header-main .nav-main .menu-main .has-pulldown>*:first-child::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.header-main .nav-main .menu-main .has-pulldown>*:first-child::before {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid black;
  right: 10px;
  top: 50%;
  transform: translateY(-4.5px) rotate(0deg);
  transition: transform 0.3s ease;
}

.header-main .nav-main .menu-main .has-pulldown>*:first-child::after {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  background-color: #EDE9E4;
}

.header-main .nav-main .menu-main .has-pulldown.active>*:first-child::before {
  transform: translateY(-4.5px) rotate(180deg);
}

.header-main .nav-main .menu-main .has-pulldown.active>*:first-child::after {
  opacity: 1;
}

.header-main .nav-main .menu-main>li>*:first-child {
  display: block;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: bold;
}

.header-main .nav-main .menu-main>li:not(.has-pulldown)>*:first-child:hover {
  opacity: 1;
  background-color: #EDE9E4;
  transition: background-color 0.3s ease;
}

.header-main .nav-main .menu-main .menu-child {
  padding: 0px 20px;
  background-color: #EDE9E4;
  height: 0px;
  overflow: hidden;
}

.header-main .nav-main .menu-main .menu-child figure {
  margin-bottom: 20px;
}

.header-main .nav-main .menu-main .menu-child ul {
  padding-bottom: 20px;
}

.header-main .nav-main .menu-main .menu-child ul li>* {
  padding-top: 7px;
  padding-bottom: 7px;
}

.header-main .nav-main .menu-child {
  font-weight: 500;
}

.header-main .nav-main .menu-child figure {
  position: relative;
}

.header-main .nav-main .menu-child figure::after {
  height: 43px;
  width: 43px;
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
  background-image: url(../images/common/icon_btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.header-main .nav-main .menu-child figure.has-arrow::after {
  content: "";
}

.header-main .nav-main .menu-child figure figcaption {
  position: absolute;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  color: black;
  line-height: 1.6666666667;
  top: 10px;
  left: 10px;
  font-weight: 400;
}

.header-main .nav-main .menu-child li a {
  border-bottom: 1px solid #3B4043;
  display: block;
  position: relative;
}

.header-main .nav-main .menu-child li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0px;
  height: 0px;
  border-top: 4px solid transparent;
  border-left: 4px solid #3B4043;
  border-bottom: 4px solid transparent;
  transform: translateY(-4px);
}

.header-main .nav-main .menu-child li.line-focus span {
  background-color: #F8DA0F;
  color: black;
  padding-left: 15px;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.header-main .nav-main .menu-pc {
  display: none;
}

.header-main .nav-contact {
  width: 100%;
  height: 50px;
  background-color: #F8DA0F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b2928;
  max-width: calc(100% - 40px);
  margin: 20px auto 0px;
  font-size: 1.6rem;
  font-weight: bold;
}

.header-main .nav-contact img {
  width: 20px;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .header-sup dt {
    justify-content: end;
    padding-right: 20px;
  }

  .header-sup dd {
    font-size: 1.4rem;
    flex-basis: 85%;
    /* margin-top: 10px; */
  }

  .header-main h1 {
    padding: 10px 20px;
    max-width: 24vw;
  }
}

@media screen and (min-width: 1024px) {
  .header::after {
    content: none;
  }

  .header-sup {
    padding: 8px 26px;
    /* height: 42px; */
  }

  .header-sup dt {
    width: auto;
    display: block;
    font-size: 1.2rem;
    padding-right: 48px;
  }

  .header-sup dd {
    /* margin-top: 25px; */
    display: flex;
  }

  .header-sup dd span {
    padding: 0px 14px;
  }

  .header-btn {
    display: none;
  }

  .header-main {
    padding: 0px;
    box-shadow: none;
  }

  .header-main h1 {
    padding: 0px 31px 5px;
    padding: 0px clamp(15px, 1.5vw, 31px) 5px;
    /* max-width: 100%; */
    /*  max-width: 429px; */
    flex-shrink: 0;
    position: relative;
    z-index: 5;
  }

  .header-main .nav-main {
    left: auto;
    padding: 0px;
    z-index: unset;
    position: relative;
    overflow-y: unset;
    z-index: 0;
    top: auto;
    right: auto;
    max-width: 100%;
    width: auto;
    width: max-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 66px;
    transform: none !important;
  }

  .header-main .nav-main::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0px;
    width: 100vw;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px;
  }

  .header-main .nav-main .menu-main {
    height: 100%;
    display: flex;
    --pd-nav-item: 28px;
    --pd-nav-item: clamp(14px, 5vw - 45px, 28px);
    margin-right: 64px;
    margin-right: clamp(0px, 100vw - 1400px, 64px);
  }

  .header-main .nav-main .menu-main .has-pulldown>*:first-child::before {
    top: 71.4%;
    left: 50%;
    right: auto;
    transform: translateX(-5px);
  }

  /* .header-main .nav-main .menu-main .has-pulldown > *:first-child {
    pointer-events: none;
  } */
  .header-main .nav-main .menu-main .has-pulldown.active>*:first-child::before {
    transform: translateX(-5px) rotate(180deg);
  }

  .header-main .nav-main .menu-main>li {
    height: 100%;
  }

  .header-main .nav-main .menu-main>li>*:first-child {
    display: flex;
    padding: 0px var(--pd-nav-item);
    white-space: nowrap;
    align-items: center;
    height: 100%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  }

  .header-main .nav-main .menu-main .menu-child {
    display: none;
  }

  .header-main .nav-main .menu-pc {
    --pd-menu-item: 50px;
    --pd-menu-item: clamp(20px, 2vw, 50px);
    position: absolute;
    overflow: hidden;
    height: 0px;
    will-change: height;
    z-index: -1;
    display: block;
    top: 100%;
    width: 100%;
    font-weight: 500;
    background-color: #EDE9E4;
    color: #3B4043;
  }

  .header-main .nav-main .menu-pc::after,
  .header-main .nav-main .menu-pc::before {
    content: "";
    position: absolute;
    top: 0px;
    height: 100%;
    z-index: 1;
    width: var(--pd-menu-item);
    background-color: inherit;
  }

  .header-main .nav-main .menu-pc::after {
    right: 0px;
  }

  .header-main .nav-main .menu-pc::before {
    left: 0px;
  }

  .header-main .nav-main .menu-pc_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0px;
    width: 300%;
  }

  .header-main .nav-main .menu-pc [class*=grid-col] {
    display: grid;
  }

  .header-main .nav-main .menu-pc .grid-col2 {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-column-gap: clamp(20px, 2vw, 40px);
  }

  .header-main .nav-main .menu-pc .grid-col3 {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
  }

  .header-main .nav-main .menu-pc_item {
    margin: auto;
    padding: 36px var(--pd-menu-item);
    height: 100%;
    width: 100%;
  }

  .header-main .nav-main .menu-pc_item:last-child {
    padding-top: 24px;
  }

  .header-main .nav-main .menu-pc_item figure {
    height: 100%;
  }

  .header-main .nav-main .menu-pc_item figure img {
    min-height: 100%;
    object-fit: cover;
    object-position: top right;
  }

  .header-main .nav-main .menu-pc_item figure figcaption {
    font-size: 1.8rem;
    top: 13px;
    left: 14px;
    font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  }

  .header-main .nav-main .menu-pc_item li {
    line-height: 1.875;
  }

  .header-main .nav-main .menu-pc_item li a {
    padding: 12px 0px;
  }

  .header-main .nav-main .menu-pc_item li a::after {
    right: 15px;
  }

  .header-main .nav-main .menu-pc_item li.line-focus span {
    height: 44px;
    font-size: 1.8rem;
  }

  .header-main .nav-contact {
    width: 198px;
    width: clamp(100px, 50vw - 460px, 198px);
    height: 100%;
    margin-top: 0px;
    flex-shrink: 0;
    font-size: 1.8rem;
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  }
}

@media screen and (max-width: 1024px) {
  .sm-menu {
    background-color: #F5F5F5;
  }

  .sm-menu li a {
    padding: 4px 8px 4px 0;
  }

  .sm-menu li a {
    color: #747a7e;
    font-size: 15px;
    letter-spacing: .5px;
  }

  .external .online {
    border: solid 1px #5DA05D;
  }

  .external {
    display: flex;
    justify-content: center;
    margin: -20px 0 0 -20px;
  }

  .external>* {
    padding: 20px 0 0 20px;
    width: 50%;
  }

  .external>* a {
    padding: 12px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .external>* a>div {
    max-width: 19px;
    margin-left: 4px;
  }

  .online {
    color: #5DA05D;
  }

  .labo {
    border: 1px solid #4B2928;
    color: #4B2928;
  }
}

@media screen and (max-width: 767px) {
  .header-main .nav-main {
    padding-top: 16px;
    width: 90%;
  }
}


/* =============================================
  footer  
============================================= */

.footer_nav_Area {
  background: #4F2322;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer_nav_Area a {
  color: #fff;
}

footer .footer_inner {
  display: flex;
  margin: -16px -16px 0 0;
}

footer .footer_inner>* {
  padding: 16px 16px 0 0;
}

footer .company_info_Area {
  width: 26%;
}

footer .company_info {
  border-right: 1px solid #fff;
  padding-right: 16px;
  display: block;
}

footer .link_list dt,
footer .company_info .name {
  font-weight: bold;
  font-size: 17px;
}

footer .link_list dt,
footer .company_info .name a {
  color: #fff;
}

footer .footer_link {
  width: 74%;
}

footer .footer_link_inner .main_nav_inner {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  flex-wrap: wrap;
  /*margin: -8px 0 0 -40px;*/
}

/*
footer .footer_link_inner .main_nav_inner>* {
  padding: 8px 0 0 40px;
}
*/
footer .banner {
  margin-top: 0;
}

footer .main_nav {
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}

footer .sub-nav {
  padding-top: 16px;
}

footer .other_list {
  display: flex;
  justify-content: flex-end;
  margin: -8px 0 0 -24px;
}

/*
footer .other_list>* {
  padding: 8px 0 0 24px;
}
*/
footer .other_list li a {
  padding-left: 24px;
}

footer .copyright {
  padding: 0.75em 0 1.5em;
  color: #4F2322;
  font-size: 0.85em;
  text-align: center;
  letter-spacing: 1px;
}

.footer_link_inner .main_nav .main_nav_inner dl:last-child {
  padding-right: 0px;
}

.footer_link_inner .main_nav .main_nav_inner dl {
  padding-right: 20px;
}

.footer_link_inner .main_nav .main_nav_inner dl dd a:before {
  content: "- ";
}

.footer_link_inner .main_nav .main_nav_inner dl dt:first-child {
  margin-top: 0px;
}

.footer_link_inner .main_nav .main_nav_inner dl dt {
  margin-top: 20px;
}

footer .other_list li {
  width: 50%;
}

@media screen and (max-width: 1093px) {
  footer .company_info_Area {
    width: 30%;
  }

  footer .footer_link {
    width: 70%;
  }
}

@media screen and (max-width: 963px) {
  footer .company_info_Area {
    width: 36%;
  }

  footer .footer_link {
    width: 64%;
  }

  .footer_link_inner .main_nav .main_nav_inner dl:last-child {
    margin-right: 40%;
  }

  .footer .company_info {
    padding-right: 4px;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .footer_link_inner .main_nav .main_nav_inner dl {
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    margin-bottom: 70px;
  }

  footer .footer_inner {
    display: block;
    margin: 0;
  }

  footer .footer_inner>* {
    padding: 0;
  }

  .footer .company_info {
    padding-bottom: 24px;
    padding-right: 0;
  }

  .footer .company_info>* {
    width: 50%;
    padding: 0;
  }

  .footer .company_info>div {
    width: 80%;
  }

  footer .company_info_Area,
  footer .footer_link {
    width: 100%;
  }

  footer .footer_link_inner .main_nav_inner {
    display: block;
    margin: 0;
  }

  footer .footer_link_inner .main_nav_inner>* {
    padding: 0;
  }

  footer .main_nav {
    border: none;
  }

  footer .other_list {
    margin: 0;
  }

  footer .other_list>* {
    padding: 0;
  }

  footer .other_list>*:not(:last-child) {
    margin-right: 8px;
  }

  footer .other_list li a {
    padding: 0;
  }

  footer .other_list li:not(:first-child) a {
    border-left: unset;
  }

  footer .company_info {
    border-right: none;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
  }

  .footer_link_inner .main_nav .main_nav_inner dl {
    margin-top: 10px;
  }

  .company_info .banner {
    width: 200px;
  }

  .footer .main_nav_inner dl:not(:first-child) {
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-bottom: 10px;
  }

  .footer .main_nav_inner dl:nth-child(n+3):nth-child(-n+4) {
    display: flex;
  }

  .footer .main_nav_inner dl:nth-child(3) dt {
    width: 50%;
  }

  .footer .main_nav_inner dl:nth-child(4) dt {
    padding-right: 30px;
  }

  .footer .main_nav_inner dl:nth-child(4) {
    flex-wrap: wrap;
  }

  .footer_link_inner .main_nav .main_nav_inner dl:nth-child(n+3):nth-child(-n+4) dt {
    margin-top: 0px;
  }

  footer .banner {
    margin-top: 30px;
    padding-top: 0px;
  }

  footer .sub-nav {
    padding-top: 0px;
    font-size: 17px;
  }

  footer .footer_link_inner .link_list.lastmenu {
    padding: 0;
    margin: 0;
    padding: 24px 0;
  }

  .footer_nav_Area .lastmenu a {
    font-size: 14px;
  }
}

@media screen and (max-width: 729px) {
  .footer .main_nav_inner dl:nth-child(4) dt:first-child {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 426px) {
  .footer .main_nav_inner dl:nth-child(4) dt:nth-child(3n) {
    margin-bottom: 10px;
  }
}

/* modal */

.no_scroll {
  overflow: hidden;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 149;
}

.modal_cont {
  background-color: #fff;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 860px;
  z-index: 150;
}

.modal_cont .inner {
  background-color: #fff;
  padding: 20px 20px 60px;
  height: 75vh;
  max-height: 700px;
  overflow-y: scroll;
  scrollbar-color: #6969dd #e0e0e0;
  scrollbar-width: thin;
  position: relative;
}

.modal_cont.small .inner {
  height: 35vh;
}

.modal_close {
  cursor: pointer;
  color: #d3d3d3;
  font-size: 5rem;
  position: absolute;
  top: -50px;
  right: 10px;
}

.subject {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 16px;
}

.detail-list .ttl {
  margin-bottom: 8px;
  font-weight: bold;
  padding: 2px 10px;
  background-color: #EDE9E4;
}

.detail-list .desc {
  margin-bottom: 32px;
}

.modal_cont .inner .down {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 5%, #fff 23%);
  bottom: 0;
  cursor: pointer;
  padding-top: 60px;
  position: fixed;
  width: calc(100% - 40px);
  height: 40px;
  text-align: center;
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
}

/* .modal_cont .inner .down::before {
  animation: flash 1.8s 3 linear;
  content: "scroll";
  color: #980000;
  display: block;
  margin: 0 auto;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
} */

.modal_cont .inner .down::after {
  mask-image: url(../images/common/arrow_white.svg);
  -webkit-mask-image: url(../images/common/arrow_white.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: #980000;
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (max-width: 767px) {
  .modal_cont .inner {
    padding: 16px 8px 80px;
    height: 60vh;
  }

  .modal_cont.small .inner {
    height: 60vh;
  }

  .modal_cont .inner .down {
    width: calc(100% - 8px);
  }

  .modal_cont .inner .down::after {
    width: 40px;
    height: 40px;
    top: 60%;
/*     -webkit-transform: translate(-50%, -60%) rotate(90deg);
    transform: translate(-50%, -60%) rotate(90deg); */
  }
}

/* oem & bottle　recommend start*/
.recommend {
  text-align: center;
  padding: 40px 0;
}

.recommend dt {
  color: #4F2322;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 16px;
}

.recommend dd {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -24px 0 0 -24px;
}

.recommend dd figure {
  padding: 24px 0 0 24px;
  width: calc(100% / 3);
}

.recommend dd figure img {
  aspect-ratio: 750 / 450;
}

@media screen and (max-width: 767px) {
  .recommend {
    padding: 24px 0;
  }

  .recommend dt {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .recommend dd {
    max-width: 400px;
    margin: 0 auto;
  }

  .recommend dd figure {
    width: 100%;
    padding: 0;
  }

  .recommend dd figure:not(:last-child) {
    margin-bottom: 24px;
  }


}

/* recommend end */

/* ownedmedia part*/
.oem-passage {
  margin-top: 16px;
  padding-left: 57px;
  text-align: center;
  padding-left: clamp(0px, 100vw - 1200px, 57px);
}

.oem-list {
  margin-top: 64px;
  color: #444444;
}

.oem-list figure img {
  aspect-ratio: 326 / 244;
  object-fit: cover;
}

.oem-list figcaption {
  min-width: 144px;
  background-color: #FCDA05;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-weight: bold;
  line-height: 1;
  margin-top: 14px;
}

.oem-list dl {
  margin-top: 10px;
}

.oem-list dl dt {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}

.oem-list dl dd {
  margin-top: 2px;
}

.oem-btn {
  margin-top: 71px;
  margin-top: clamp(50px, 50vw - 500px, 71px);
}

/* ownedmedia end */


/* =============================================
  heading style
============================================= */

.main-content p>span {
  display: inline-block;
}


/* =============================================
  wrapper
============================================= */
.container,
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.container.__heart{
  max-width: 1200px;
}

@media screen and (max-width: 767px) {

  .wrap,
  .container {
    padding: 0 8px;
  }
}

/* =============================================
  column layout
============================================= */
.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
  -ms-flex: wrap;
  flex: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.column>* img {
  width: 100%;
  max-width: 100%;
}

.column>* .txt {
  text-align: left;
}

.column>*.sub {
  width: calc(40% - 15px);
}

.column>*.main {
  width: calc(60% - 15px);
}

.column>*.main img {
  width: auto;
}

.column.col-2>* {
  width: calc(50% - 10px);
}

.column.col-3>* {
  width: calc(33.333% - 16.666px);
}

.column.col-4>* {
  width: calc(25% - 11.25px);
}

.column.col-5>* {
  width: calc(20% - 12px);
}

@media screen and (max-width: 479.98px) {
  .column .figure {
    text-align: center;
  }

  .column.col-2,
  .column.col-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .column.col-2>*,
  .column.col-3>* {
    width: auto;
  }

  .column.col-4>* {
    width: calc(50% - 10px);
  }

  .column.col-5>* {
    width: calc(33.333% - 16.666px);
  }
}

/* =============================================
  button
============================================= */
.button {
  background-color: #fff;
  border: solid 2px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 6px 10px;
  text-align: center;
}

.button:hover {
  opacity: 1;
}

.button.large {
  display: block;
  line-height: 40px;
  margin: 40px auto 0;
  width: 320px;
  height: 60px;
}

.button.black {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.button.black:hover {
  background-color: #fff;
  color: #000;
}

.button.blue {
  background-color: #158fcb;
  border-color: #158fcb;
  color: #fff;
}

.button.yellow {
  background-color: #dce405;
  border-color: #dce405;
  color: #4d5000;
}

.button.white {
  border: solid 2px #000;
}

.button.white:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}


.btn-column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: -24px -24px 0 0;
}

.btn-column>* {
  width: 50%;
  padding: 24px 24px 0 0;
}

.btn-column .btn-center {
  display: inline-block;
  max-width: 316px;
}

@media screen and (max-width: 767px) {
  .btn-column {
    display: block;
    margin: 0;
  }

  .btn-column>* {
    width: 100%;
    padding: 0;
  }

  .btn-column>:not(:last-child) {
    margin-bottom: 16px;
  }

  .btn-column .btn-center {
    max-width: 100%;
  }

}

/* =============================================
  heading
============================================= */
.heading-01 {
  font-weight: bold;
  line-height: 1;
  font-size: 3.6rem;
  display: flex;
  align-items: center;
}

.heading-01 h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading-01 h2 span {
  line-height: 2;
  font-size: 2rem;
  color: #980000;
}

.heading-01 h2 span::before,
.heading-01 h2 span::after {
  content: "-";
  padding: 0 8px;
}

.heading-01.row h2 {
  flex-direction: row;
}

@media screen and (max-width: 768px) {

  .heading-01 {
    font-size: 3rem;
  }

  .heading-01.row {
    flex-direction: column;
  }

  .heading-01.row h2 {
    flex-direction: column;
  }

}

/* =============================================
  wp-page style
============================================= */
.wp-page {
  margin: 64px 0;
}

.wp-page img {
  width: auto;
}


/* =============================================
  banner
============================================= */

.banner {
  padding: 20px 0px 30px;
}

.banner-passage {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.3333333333;
  margin-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.banner-entry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.banner-entry a {
  width: 100%;
  height: 120px;
}

.banner-entry dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F8DA0F;
  font-weight: bold;
  align-items: center;
  height: 100%;
}

.banner-entry dl dt {
  height: 30px;
  font-size: 3rem;
  line-height: 1;
}

.banner-entry dl dt img {
  display: block;
  margin-top: 5px;
  height: 100%;
}

.banner-entry dl dd {
  font-size: 2rem;
  line-height: 1;
  margin-top: 20px;
}

.banner-entry.fix {
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  bottom: 0;
  z-index: 100;
  display: flex;
  column-gap: 20px;
  padding: 10px;
  opacity: 0;
}

.banner-entry.fix.is-fixed {
  opacity: 1;
}

.banner-entry.fix dl {
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
}

.banner-entry.fix dl dd {
  margin-top: 0;
  font-size: 1.6rem;
}

.banner-entry.fix dl dt {
  width: auto;
}

.banner-entry.fix a {
  height: auto;
  width: calc(50% - 10px);
}

.online .container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5DA05D;
  margin: 30px auto;
  height: 70px;
}

.online .container h3 {
  font-size: 2rem;
  color: #ffffff;
  padding-left: 20px;
}

.cart {
  width: 50px;
}

@media screen and (min-width: 1000px) {
  .onlinesouce {
    width: 8%;
    position: relative;
    bottom: 10px;
    margin-left: 20px;
  }

  .cart {
    width: 40px;
  }
}

@media screen and (max-width: 999px) {
  .onlinesouce {
    width: 10%;
    position: relative;
    bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .onlinesouce {
    width: 12%;
    margin-left: 10px;
  }
}

@media screen and (max-width: 539px) {
  .onlinesouce {
    width: 16%;
    position: relative;
    bottom: 0px;
    margin-left: 0px;
  }

  .online .container h3 {
    padding-left: 0px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {

  .banner {
    padding: 23px 0px 50px;
  }

  .banner h3 {
    padding-right: 28px;
    padding-right: clamp(0px, 100vw - 1200px, 28px);
  }

  .banner-passage {
    margin-top: 35px;
    font-size: 1.8rem;
    padding-left: 98px;
    padding-left: clamp(20px, 100vw - 1200px, 98px);
    text-align: center;
  }

  .banner-passage .break-line {
    justify-content: center;
  }

  .banner-entry {
    margin-top: 52px;
    justify-content: center;
    display: flex;
    grid-gap: 0px;
  }

  .banner-entry a {
    max-width: 540px;
    height: 211px;
  }

  .banner-entry a:first-child {
    margin-right: 20px;
  }

  .banner-entry dl {
    padding-bottom: 20px;
  }

  .banner-entry dl dt {
    line-height: 1.2;
    height: 49px;
    font-size: 5.3rem;
  }

  .banner-entry dl dd {
    margin-top: 40px;
    font-size: 2.8rem;
  }

  .online .container h3 {
    font-size: 2.8rem;
  }

  .banner-entry.fix {
    display: none;
  }
}


/* =============================================
  pagetop
============================================= */
/* pagetop */

#pagetop {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 64px;
  height: 64px;
  position: fixed;
  right: 40px;
  bottom: 80px;
  opacity: 0.9;
  z-index: 100;
}

#pagetop a {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  text-decoration: none;
  text-align: center;
  background: #4F2322;
  border: 3px solid #fff;
}

#pagetop a::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}

@media screen and (max-width: 1024px) {

  #pagetop {
    right: 20px;
    bottom: 32px;
  }
}

@media screen and (max-width: 768px) {

  #pagetop,
  #pagetop a {
    width: 48px;
    height: 48px;
  }

  #pagetop {
    right: 6px;
    bottom: 82px;

  }
}

/* =============================================
  label Before & After
============================================= */
.label-const {
  display: block;
  width: 90px;
  height: 90px;
  position: relative;
  top: 90px;
  margin-top: -90px;
}

.label-const::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 90px 0 0;
}

.label-const.before::before {
  border-color: #ccc transparent transparent transparent;
}

.label-const.after::before {
  border-color: #28A4E1 transparent transparent transparent;
}

.label-const>span {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  text-align: center;
  width: 90px;
}

/* =============================================
  adjustment
============================================= */
.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

/* =============================================
  text-align
============================================= */
.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

/* =============================================
  font-size
============================================= */
.fs-12 {
  font-size: 1.2rem !important;
}

.fs-14 {
  font-size: 1.2rem !important;
}

.fs-16 {
  font-size: 1.4rem !important;
}

.fs-20 {
  font-size: 1.4rem !important;
}

@media screen and (min-width: 768px) {
  .fs-12 {
    font-size: 1.2rem !important;
  }

  .fs-14 {
    font-size: 1.4rem !important;
  }

  .fs-16 {
    font-size: 1.6rem !important;
  }

  .fs-18 {
    font-size: 1.8rem !important;
  }

  .fs-20 {
    font-size: 2rem !important;
  }
}

/* =============================================
  font-weight
============================================= */
.fw-bold {
  font-weight: bold !important;
}

.fw-normal {
  font-weight: normal !important;
}

/* =============================================
  background-color
============================================= */
.bg-black {
  background-color: #000;
  color: #fff;
}

.bg-black a {
  color: #fff;
}

.bg-blue {
  background-color: #2083b4;
  color: #fff;
}

.bg-blue a {
  color: #fff;
}

.bg-gray {
  background-color: #f3f3f3;
}

/* =============================================
  mark
============================================= */

mark {
  background-color: transparent;
  color: #28a4e1;
}

/* =============================================
  device
============================================= */
.sp-none {
  display: none;
}

.pc-none {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }

  .pc-none {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .sp-none2 {
    display: block;
  }

  .pc-none2 {
    display: none;
  }
}

/* =============================================
  float
============================================= */
@media screen and (min-width: 768px) {
  .clearfix:after {
    content: "";
    display: block;
    clear: both;
  }

  .clear {
    clear: both;
  }

  .fl-l {
    float: left !important;
    margin-right: 20px;
  }

  .fl-r {
    float: right !important;
    margin-left: 20px;
  }
}

/* =============================================
  animation
============================================= */
@-webkit-keyframes slide_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide_down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}

@keyframes slide_down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}