@charset "UTF-8";
/*
Theme Name: リバイシス
Description: リバイシスのテンプレートです
Version: 1.0
Author: M.Kaneshiro
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Judson:ital,wght@0,400;0,700;1,400&family=Julius+Sans+One&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
html {
  height: 100%;
}

body {
  min-height: 100%;
}

body {
  position: relative;
  min-width: 1280px;
  overflow-x: auto;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 375px;
  }
}

main {
  width: 100%;
}

.heading_pattern {
  background-color: #b81c22;
  height: 180px;
  margin-top: 100px;
}
.heading_pattern h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
}
.heading_pattern h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}

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

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

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

@media screen and (min-width: 441px) {
  .tb-none {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  .mb-none {
    display: none;
  }
}

.main_btn {
  display: block;
  width: 200px;
  height: 50px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(226, 31, 39) 0%, rgb(103, 11, 11) 100%);
  border: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}
.main_btn a {
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_btn:hover {
  opacity: 0.7;
}

.sub_btn {
  display: block;
  width: 200px;
  height: 40px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
  background: #ffffff;
  color: #333333;
  text-decoration: none;
  border: 0.5px solid #333333;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .sub_btn {
    height: 35px;
    font-size: 14px;
  }
}
.sub_btn a {
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  color: #333333;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sub_btn a {
    height: 35px;
  }
}

.sub_btn:hover {
  background: #333333;
}

.sub_btn a:hover {
  color: #ffffff;
}

.inview {
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* navi */
/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all 0.6s;
  z-index: 100000000;
}

.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #333333;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
  overflow: auto;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .nav-overlay__content {
    position: static;
    transform: translate(0%, 0%);
  }
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

header {
  background: #ffffff;
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 10000000;
  top: 0;
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
  }
}

header h1 {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header h1 {
    width: 100px;
    top: 30px;
  }
}

@media screen and (max-width: 767px) {
  header h1 img {
    width: 100px;
  }
}

.header_area2 {
  background: url(img/header_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 150px auto 0px;
}
@media screen and (max-width: 767px) {
  .header_area2 {
    flex-direction: column-reverse;
    margin: 100px auto 50px;
  }
}
.header_area2_inner1 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .header_area2_inner1 {
    width: 100%;
    margin: 40px auto 10px;
  }
}
@media screen and (max-width: 767px) {
  .header_area2_inner1 img {
    width: 30%;
  }
}
.header_area2_inner1 a {
  text-decoration: none;
  font-size: 16px;
  color: #333333;
  display: block;
  margin-bottom: 10px;
}
.header_area2_inner1 a:hover {
  color: #b81c22;
  width: 100%;
}
.header_area2_inner2 {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .header_area2_inner2 {
    width: 90%;
    margin: 0 auto;
  }
}
.header_area2_inner2_wrap {
  display: flex;
  border-bottom: 1px solid #333333;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .header_area2_inner2_wrap {
    flex-direction: column;
  }
}
.header_area2_inner2_wrap_inner {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .header_area2_inner2_wrap_inner {
    width: 100%;
  }
}
.header_area2_inner2_wrap_inner ul li a {
  display: block;
  text-decoration: none;
  color: #333333;
  margin-bottom: 10px;
  font-family: "Julius Sans One";
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .header_area2_inner2_wrap_inner ul li a {
    font-size: 16px;
  }
}
.header_area2_inner2_wrap_inner ul li a span {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding-left: 10px;
}
.header_area2_inner2_wrap_inner ul li a:hover {
  color: #b81c22;
}
.header_area2_inner3 {
  width: 75%;
}
.header_area2_inner3_wrap {
  display: flex;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .header_area2_inner3_wrap {
    flex-direction: column;
  }
}
.header_area2_inner3_wrap_inner {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .header_area2_inner3_wrap_inner {
    width: 100%;
    margin: 0 auto;
  }
}
.header_area2_inner3_wrap_inner p {
  color: #333333;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .header_area2_inner3_wrap_inner p {
    padding-bottom: 20px;
  }
}
.header_area2_inner3_wrap_inner a {
  display: block;
  text-decoration: none;
  color: #333333;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  padding: 10px;
  border: 0.5px solid #333333;
  text-align: center;
  margin-right: 30px;
  background-color: #ffffff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .header_area2_inner3_wrap_inner a {
    margin: 10px auto;
  }
}
.header_area2_inner3_wrap_inner a:hover {
  color: #ffffff;
  background-color: #b81c22;
}
.header_area2_inner4 {
  width: 75%;
}
.header_area2_inner4_wrap {
  display: flex;
  padding-bottom: 30px;
  padding-top: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header_area2_inner4_wrap {
    display: none;
  }
}
.header_area2_inner4_wrap_inner {
  width: 25%;
  text-align: left;
}
.header_area2_inner4_wrap_inner a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333333;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}
.header_area2_inner4_wrap_inner a img {
  width: 80%;
  margin: 0 auto;
  border: 0.5px solid #333333;
  padding: 10px;
}
.header_area2_inner4_wrap_inner a:hover {
  color: #b81c22;
  opacity: 0.6;
}

/* top */
.toppage_top {
  width: 100%;
  margin: 100px auto 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .toppage_top {
    margin: 80px auto 100px;
  }
}
.toppage_top h1 {
  width: 150px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.toppage_top h1 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .toppage_top h1 {
    width: 120px;
    top: 22.3%;
  }
}
@media screen and (max-width: 440px) {
  .toppage_top h1 {
    width: 120px;
    top: 22.5%;
  }
}
@media screen and (max-width: 394px) {
  .toppage_top h1 {
    width: 120px;
    top: 21.3%;
  }
}
@media screen and (max-width: 376px) {
  .toppage_top h1 {
    width: 120px;
    top: 20%;
  }
}
.toppage_top_kv {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .toppage_top_kv {
    flex-direction: column-reverse;
  }
}
.toppage_top_kv_1 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .toppage_top_kv_1 {
    width: 100%;
  }
}
.toppage_top_kv_1 img {
  width: 100%;
}
.toppage_top_kv_2 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .toppage_top_kv_2 {
    width: 100%;
  }
}
.toppage_top_kv_2 img {
  width: 100%;
}

.slide1 {
  position: relative;
  margin: 0;
  padding: 0;
}

.slide1 .item1 {
  position: relative;
  height: 100%;
}

.slide1 .item1::before {
  display: block;
  content: "";
}

.slide1 .item1 .image {
  position: relative;
  overflow: hidden;
}

.slide1 .item1 img {
  margin: auto;
  width: 100%;
}

.slide2 {
  position: relative;
  margin: 0;
  padding: 0;
}

.slide2 .item2 {
  position: relative;
  height: 100%;
}

.slide2 .item2::before {
  display: block;
  content: "";
}

.slide2 .item2 .image {
  position: relative;
  overflow: hidden;
}

.slide2 .item2 img {
  margin: auto;
  width: 100%;
}

.slide > .slick-list,
.slide > .slick-list > .slick-track,
.slide > .slick-list > .slick-track > .slick-slide > div {
  position: relative;
  height: 100%;
}

.slide-animation {
  animation: fadezoom 20s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.5);
  }
}
.toppage_top_msg {
  width: 100%;
  margin: 120px auto;
  background-image: url(img/top_msg_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg {
    margin: 60px auto 40px;
  }
}
.toppage_top_msg_1 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_1 {
    flex-direction: column;
  }
}
.toppage_top_msg_1_h2 {
  position: relative;
  width: 45%;
  margin: 0 auto;
  background-image: url(img/top_logo_grey.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_1_h2 {
    position: static;
    width: 100%;
  }
}
.toppage_top_msg_1_h2 h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 1.7;
  margin: 0 auto;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_1_h2 h2 {
    position: static;
    transform: translateY(0%) translateX(0%);
    width: 100%;
    font-size: 32px;
  }
}
.toppage_top_msg_1_h2 h2 span {
  color: #b81c22;
}
.toppage_top_msg_1 p {
  width: 45%;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 3;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_1 p {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    margin: 60px auto 0px;
  }
}
@media screen and (max-width: 376px) {
    .toppage_top_msg_1 p {
        width: 100%;
        margin: 0 auto;
        font-size: 15px;
        margin: 60px auto 0px;
    }
}
.toppage_top_msg_2 {
  width: 85%;
  margin: 120px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_2 {
    flex-direction: column;
    margin: 60px auto 30px;
    width: 90%;
    margin-bottom: 30px;
  }
}
.toppage_top_msg_2 li {
  display: flex;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_2 li {
    margin-bottom: 20px;
  }
}
.toppage_top_msg_2 li p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .toppage_top_msg_2 li p {
    font-size: 16px;
    margin-top: 10px;
  }
}
.toppage_top_msg_2 li p span {
  color: #b81c22;
}
.toppage_top .main_btn {
  margin: 0 auto;
}

.toppage_products1 {
  width: 90%;
  margin: 0 auto 120px;
  border-bottom: 0.5px solid #333333;
  opacity: 0;
}
.toppage_products1 h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  padding-bottom: 60px;
  border-bottom: 0.5px solid #333333;
}
.toppage_products1 h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .toppage_products1 h2 {
    padding-bottom: 30px;
  }
}
.toppage_products1 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
}
.toppage_products1 ul li {
  width: 20%;
  min-width: 18%;
  padding: 60px 40px;
  border-right: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products1 ul li {
    width: 100%;
    min-width: auto;
    padding: 40px 20px;
  }
}
.toppage_products1 ul li h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 2px solid #333333;
  padding-left: 10px;
}
.toppage_products1 ul li h3 span {
  font-size: 14px;
}
.toppage_products1 ul li p {
  margin-bottom: 20px;
}
.toppage_products1 ul li:last-child {
  border-right: none;
}
.toppage_products1_item_img {
  width: 100%;
}
.toppage_products1_item_img a {
  display: block;
}
.toppage_products1_item_img a:hover img {
  opacity: 0.7;
}
.toppage_products1_item_img img {
  width: 100%;
}
.toppage_products1 button {
  margin: 0 auto;
  text-align: center;
}

.toppage_products2 {
  width: 90%;
  margin: 0 auto 120px;
  border-bottom: 0.5px solid #333333;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .toppage_products2 {
    fmargin: 0 auto 100px;
  }
}
.toppage_products2_text {
  display: flex;
  padding-bottom: 60px;
  border-bottom: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products2_text {
    flex-direction: column;
  }
}
.toppage_products2 h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  margin-right: 60px;
}
.toppage_products2 h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .toppage_products2 h2 {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.toppage_products2 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #f6f5f5;
  overflow-x: scroll;
}
.toppage_products2 ul li {
  width: 20%;
  min-width: 18%;
  padding: 60px 40px;
  border-right: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products2 ul li {
    width: 100%;
    min-width: auto;
    padding: 40px 20px;
  }
}
.toppage_products2 ul li h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 2px solid #333333;
  padding-left: 10px;
}
.toppage_products2 ul li h3 span {
  font-size: 14px;
}
.toppage_products2 ul li p {
  margin-bottom: 20px;
}
.toppage_products2 ul li:last-child {
  border-right: none;
}
.toppage_products2_item_img {
  width: 100%;
}
.toppage_products2_item_img a {
  display: block;
}
.toppage_products2_item_img a:hover img {
  opacity: 0.7;
}
.toppage_products2_item_img img {
  width: 100%;
}
.toppage_products2 button {
  margin: 0 auto;
  text-align: center;
}

.toppage_products3 {
  width: 90%;
  margin: 0 auto 120px;
  border-bottom: 0.5px solid #333333;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .toppage_products3 {
    fmargin: 0 auto 100px;
  }
}
.toppage_products3_text {
  display: flex;
  padding-bottom: 60px;
  border-bottom: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products3_text {
    flex-direction: column;
  }
}
.toppage_products3 h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  margin-right: 60px;
}
.toppage_products3 h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .toppage_products3 h2 {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.toppage_products3 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
}
.toppage_products3 ul li {
  width: 20%;
  min-width: 18%;
  padding: 60px 40px;
  border-right: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products3 ul li {
    width: 100%;
    min-width: auto;
    padding: 40px 20px;
  }
}
.toppage_products3 ul li h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 2px solid #333333;
  padding-left: 10px;
}
.toppage_products3 ul li h3 span {
  font-size: 14px;
}
.toppage_products3 ul li p {
  margin-bottom: 20px;
}
.toppage_products3 ul li:last-child {
  border-right: none;
}
.toppage_products3_item_img {
  width: 100%;
}
.toppage_products3_item_img a {
  display: block;
}
.toppage_products3_item_img a:hover img {
  opacity: 0.7;
}
.toppage_products3_item_img img {
  width: 100%;
}
.toppage_products3 button {
  margin: 0 auto;
  text-align: center;
}

.toppage_products4 {
  width: 90%;
  margin: 0 auto 120px;
  border-bottom: 0.5px solid #333333;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .toppage_products4 {
    margin: 0 auto 60px;
  }
}
.toppage_products4_text {
  display: flex;
  padding-bottom: 60px;
  border-bottom: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products4_text {
    flex-direction: column;
  }
}
.toppage_products4 h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  margin-right: 60px;
  margin-bottom: 60px;
}
.toppage_products4 h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .toppage_products4 h2 {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.toppage_products4 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #f6f5f5;
  overflow-x: scroll;
}
.toppage_products4 ul li {
  width: 20%;
  min-width: 18%;
  padding: 60px 40px;
  border-top: 0.5px solid #333333;
  border-right: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .toppage_products4 ul li {
    width: 100%;
    min-width: auto;
    padding: 40px 20px;
  }
}
.toppage_products4 ul li h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 2px solid #333333;
  padding-left: 10px;
}
.toppage_products4 ul li h3 span {
  font-size: 14px;
}
.toppage_products4 ul li p {
  margin-bottom: 20px;
}
.toppage_products4 ul li:last-child {
  border-right: none;
}
.toppage_products4_item_img {
  width: 100%;
}
.toppage_products4_item_img a {
  display: block;
}
.toppage_products4_item_img a:hover img {
  opacity: 0.7;
}
.toppage_products4_item_img img {
  width: 100%;
}
.toppage_products4 button {
  margin: 0 auto;
  text-align: center;
}
.toppage_products4_main_btn {
  margin: 0 auto 120px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .toppage_products4_main_btn {
    margin: 0 auto 100px;
  }
}

.toppage_media {
  opacity: 0;
}
.toppage_media h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
}
.toppage_media h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.toppage_media ul {
  display: flex;
  width: 90%;
  margin: 0 auto 60px;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .toppage_media ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 40px;
  }
}
.toppage_media ul li {
  width: 20%;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .toppage_media ul li {
    width: 35%;
    padding: 20px;
  }
}
.toppage_media ul li time {
  color: #b81c22;
}
.toppage_media ul li a {
  text-decoration: none;
  color: #333333;
}
.toppage_media ul li a:hover {
  color: #b81c22;
}
.toppage_media_item_img {
  width: 100%;
}
.toppage_media_item_img img {
  width: 100%;
}
.toppage_media_item_img:hover {
  opacity: 0.7;
}

.toppage_news {
  opacity: 0;
}
.toppage_news h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
}
.toppage_news h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.toppage_news ul {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 60px;
}
.toppage_news ul li {
  width: 100%;
  padding: 20px;
  border-top: 2px solid #f6f5f5;
}
@media screen and (max-width: 767px) {
  .toppage_news ul li {
    width: 90%;
  }
}
.toppage_news ul li time {
  color: #b81c22;
}
.toppage_news ul li a {
  text-decoration: none;
  color: #333333;
}
.toppage_news ul li a:hover {
  color: #b81c22;
}
.toppage_news ul li:last-child {
  border-bottom: 2px solid #f6f5f5;
}

/* brand */
.brandpage_top {
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}
.brandpage_top h2 {
  width: 100%;
}
.brandpage_top h2 img {
  width: 100%;
}

.brandpage_msg {
  background-image: url(img/brand_top_bg.png);
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 767px) {
  .brandpage_msg {
    margin-top: -80px;
  }
}
.brandpage_msg .brandpage_msg_1 {
  opacity: 0;
}
.brandpage_msg .brandpage_msg_1 p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 3;
  text-align: center;
  width: 90%;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .brandpage_msg .brandpage_msg_1 p {
    font-size: 16px;
    text-align: left;
    margin: 100px auto;
  }
}
.brandpage_msg .brandpage_msg_2 {
  display: flex;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .brandpage_msg .brandpage_msg_2 {
    flex-direction: column-reverse;
  }
}
.brandpage_msg .brandpage_msg_2_inner {
  width: 50%;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .brandpage_msg .brandpage_msg_2_inner {
    width: 100%;
    margin: 0 auto;
    padding-right: 0px;
  }
}
.brandpage_msg .brandpage_msg_2_inner h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  margin-bottom: 30px;
}
.brandpage_msg .brandpage_msg_2_inner h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .brandpage_msg .brandpage_msg_2_inner h2 {
    margin-top: -30px;
  }
}
.brandpage_msg .brandpage_msg_2_inner h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 1.7;
  margin: 0 auto 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .brandpage_msg .brandpage_msg_2_inner h3 {
    font-size: 24px;
  }
}
.brandpage_msg .brandpage_msg_2_inner h3 span {
  color: #b81c22;
}
.brandpage_msg .brandpage_msg_2_img {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .brandpage_msg .brandpage_msg_2_img {
    width: 100%;
  }
}
.brandpage_msg .brandpage_msg_2_img img {
  width: 100%;
}

.brandpage_inner {
  opacity: 0;
}

.brandpage_msd {
  background-color: #f6f5f5;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .brandpage_msd {
    padding-bottom: 50px;
  }
}
.brandpage_msd h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  padding-top: 120px;
  padding-bottom: 60px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.brandpage_msd h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .brandpage_msd h2 {
    padding-top: 50px;
    margin: 0px auto 30px;
  }
}
.brandpage_msd ol {
  width: 90%;
  margin: 0 auto;
}
.brandpage_msd ol li {
  display: flex;
  vertical-align: middle;
  background: #ffffff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .brandpage_msd ol li {
    flex-direction: column;
  }
}
.brandpage_msd ol li .brandpage_msd_img {
  min-width: 300px;
  background-image: url(img/top_logo_grey.svg);
  background-size: cover;
  position: relative;
}
.brandpage_msd ol li .brandpage_msd_img img {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .brandpage_msd ol li .brandpage_msd_img img {
    width: 15%;
    left: 10%;
  }
}
.brandpage_msd ol .brandpage_msd_txt {
  padding-bottom: 60px;
  padding-top: 40px;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .brandpage_msd ol .brandpage_msd_txt {
    padding-bottom: 30px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.brandpage_msd ol h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .brandpage_msd ol h3 {
    font-size: 24px;
  }
}
.brandpage_msd ol h3 span {
  color: #b81c22;
}
.brandpage_msd ol small {
  font-size: 13px;
}

.brandpage_mask {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .brandpage_mask {
    flex-direction: column;
  }
}
.brandpage_mask_img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .brandpage_mask_img {
    width: 100%;
    margin-bottom: -10px;
  }
}
.brandpage_mask_img img {
  width: 100%;
}
.brandpage_mask_txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .brandpage_mask_txt {
    width: 90%;
    margin: 0 auto;
  }
}
.brandpage_mask_txt h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 1.7;
  width: 80%;
  margin: 60px auto 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .brandpage_mask_txt h3 {
    font-size: 32px;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 80px;
  }
}
.brandpage_mask_txt p {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .brandpage_mask_txt p {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    bottom: 100px;
  }
}
.brandpage_mask_txt small {
  display: block;
  width: 80%;
  margin: 30px auto;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .brandpage_mask_txt small {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    bottom: 40px;
  }
}

/* howto */
.howto_top {
  background-image: url(img/howto_h2_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .howto_top {
    height: 300px;
  }
}
.howto_top h2 {
  font-family: "Judson", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  line-height: 1;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translateY(-50%) translateX(-50%);
  text-shadow: 1px 2px 3px #808080;
}
@media screen and (max-width: 767px) {
  .howto_top h2 {
    font-size: 40px;
    top: 60%;
    left: 40%;
  }
}
.howto_top h2 span {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .howto_top h2 span {
    font-size: 24px;
  }
}

.inner {
  width: 90%;
  margin: 0 auto;
  padding-top: 60px;
}
.inner_txt {
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .inner_txt {
    flex-direction: column;
  }
}
.inner_txt h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  width: 250px;
  margin-right: 60px;
}
.inner_txt h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .inner_txt p {
    margin-top: 20px;
  }
}

.content_area {
  display: flex;
  justify-content: space-between;
}
.content_area .tab-container {
  display: flex;
  flex-direction: column;
}
.content_area .tab-container .tab {
  cursor: pointer;
  width: 250px;
  background: #ffffff;
  margin-bottom: 20px;
  height: 40px;
  text-align: center;
  color: #b81c22;
  border: 1px solid #b81c22;
  margin-right: 60px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}
.content_area .tab-container .tab:hover {
  background: #b81c22;
  color: #ffffff;
}
.content_area .tab-container .tab-font {
  font-size: 16px;
}
.content_area .tab-container .tab.tab1.active {
  background: #b81c22;
  color: #ffffff;
}
.content_area .tab-container .tab.tab2.active {
  background: #b81c22;
  color: #ffffff;
}
.content_area .tab-container .tab.tab3.active {
  background: #b81c22;
  color: #ffffff;
}
.content_area .tab-container .tab.tab4.active {
  background: #b81c22;
  color: #ffffff;
}
.content_area .content-container-inner.show {
  border-top: 0.5px solid #333333;
  border-bottom: 0.5px solid #333333;
  display: flex;
}
.content_area .content-container-inner.show .content-container-inner-txt {
  width: 70%;
}
.content_area .content-container-inner.show .content-container-inner-txt h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-top: 30px;
}
.content_area .content-container-inner.show .content-container-inner-txt h3 span {
  color: #b81c22;
  font-weight: 500;
}
.content_area .content-container-inner.show .content-container-inner-txt h3 small {
  font-size: 13px;
  display: block;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.5;
}
.content_area .content-container-inner.show .content-container-inner-txt p {
  margin-bottom: 30px;
}
.content_area .content-container-inner.show .content-container-inner-txt p span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.content_area .content-container-inner.show .content-container-inner-txt .txtbox {
  display: flex;
  justify-content: space-between;
}
.content_area .content-container-inner.show .content-container-inner-txt .txtbox h4 {
  width: 100px;
  border: 1px solid #333333;
  padding: 10px 10px;
  margin-right: 20px;
  height: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  background: #ffffff;
}
.content_area .content-container-inner.show .content-container-inner-txt .txtbox p {
  font-size: 14px;
  line-height: 1.5;
  width: 80%;
}
.content_area .content-container-inner.show .content-container-inner-txt .sub_btn {
  margin-bottom: 30px;
  margin-top: 30px;
}
.content_area .content-container-inner.show .content-container-inner-img {
  width: 40%;
  align-items: center;
  display: flex;
}
.content_area .content-container-inner.show .content-container-inner-img img {
  width: 120%;
}
@media screen and (min-width: 1441px) {
  .content_area .content-container-inner.show .content-container-inner-img img {
    width: 100%;
  }
}
.content_area .content-container-inner.show .section1-img img {
  width: 90%;
  padding: 20px;
}
.content_area .content-container-inner.show .section3-img img {
  width: 90%;
  padding: 20px;
}
.content_area .content-container-inner.show .section4-img img {
  width: 90%;
  padding: 20px;
}
.content_area .content-container-inner.show .content-container-inner-img-face {
  width: 100px;
  align-items: center;
  display: flex;
}
.content_area .content-container-inner.show .content-container-inner-img-face img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .content_area_pc {
    display: none;
  }
}

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

.content-container_sp {
  display: flex;
  overflow-x: scroll;
  justify-content: space-between;
  align-items: baseline;
}

.content-container_sp-inner {
  display: block;
  width: 90%;
  min-width: 300px;
  margin-right: 50px;
  margin-top: 0px;
}

.content-container_sp-inner:last-child {
  margin-right: 0px;
}

.content-container_sp-inner-txt_tab {
  min-width: 300px;
  background: #b81c22;
  margin-bottom: 20px;
  height: 40px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #b81c22;
  margin-right: 60px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container_sp-inner-txt {
  min-width: 300px;
}
.content-container_sp-inner-txt h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-top: 30px;
}
.content-container_sp-inner-txt h3 span {
  color: #b81c22;
  font-weight: 500;
}
.content-container_sp-inner-txt h3 small {
  font-size: 13px;
  display: block;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.5;
}
.content-container_sp-inner-txt p {
  margin-bottom: 30px;
}
.content-container_sp-inner-txt p span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.content-container_sp-inner-txt .txtbox h4 {
  width: 50px;
  border: 1px solid #333333;
  padding: 10px 10px;
  margin-right: 20px;
  height: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  background: #ffffff;
}
.content-container_sp-inner-txt .txtbox p {
  font-size: 14px;
  line-height: 1.5;
  width: 80%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .content-container_sp-inner-txt .txtbox p {
    width: 100%;
  }
}
.content-container_sp-inner-txt .sub_btn {
  margin: 30px auto;
}

.panel_area {
  width: 90%;
  margin: 0 auto;
}

.content-container_sp-inner-img {
  width: 90%;
  min-width: 300px;
}
.content-container_sp-inner-img img {
  width: 100%;
}

.content-container_sp-inner-img-face {
  width: 100px;
  margin: 0 auto;
}
.content-container_sp-inner-img-face img {
  width: 100%;
}

#section1 {
  background-image: url(img/howto_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 120px;
  opacity: 0;
}

#section2 {
  background-color: #f6f5f5;
  padding-bottom: 120px;
  opacity: 0;
}

#section3 {
  background-color: #ffffff;
  background-image: url(img/howto_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 120px;
  opacity: 0;
}

#section4 {
  background-color: #f6f5f5;
  padding-bottom: 120px;
  opacity: 0;
}

.content0 {
  display: none;
}

.content0.show {
  display: block;
}

.content1 {
  display: none;
}

.content1.show {
  display: block;
}

.content2 {
  display: none;
}

.content2.show {
  display: block;
}

.content3 {
  display: none;
}

.content3.show {
  display: block;
}

.content4 {
  display: none;
}

.content4.show {
  display: block;
}

.section2_series {
  width: 90%;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 20px;
  margin: 60px auto 0px;
  flex-wrap: wrap;
}
.section2_series h4 {
  color: #af3b3e;
  padding: 20px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: middle;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}
.section2_series p {
  width: 70%;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .section2_series p {
    width: 90%;
  }
}
.section2_series p span {
  font-size: 14px;
}

.section4-txtbox p {
  width: 100%;
  margin-left: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .section4-txtbox p {
    margin-left: 0px;
  }
}
.section4-txtbox-img {
  width: 100px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .section4-txtbox-img {
    margin: 20px auto 0px;
  }
}
.section4-txtbox-img img {
  width: 100%;
}

.section4-h2 h2 {
  width: 275px;
  margin-right: 40px;
}

.section4-txtbox-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .section4-txtbox-inner {
    display: block;
  }
}

/* products detail */
.products_detail {
  display: flex;
  padding-top: 120px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .products_detail {
    flex-direction: column;
  }
}
.products_detail_img {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .products_detail_img {
    width: 100%;
  }
}
.products_detail_img img {
  width: 100%;
}
.products_detail_img_list {
  display: flex;
  justify-content: space-between;
}
.products_detail_img_list img {
  width: 100%;
}
.products_detail_txt {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .products_detail_txt {
    width: 100%;
  }
}
.products_detail_txt h2 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 1.5;
  padding-bottom: 30px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .products_detail_txt h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}
.products_detail_txt p {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.products_detail_txt small {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  font-size: 14px;
}
.products_detail_txt_2 {
  width: 100%;
  margin: 0 auto 60px;
}
.products_detail_txt_2 h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  margin: 0 auto;
}
.products_detail_txt_2 p {
  font-size: 14px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 0px;
}
.products_detail_txt_2_inner {
  padding: 30px 0px;
  border-top: 0.5px solid #333333;
}
.products_detail_txt_2_inner:nth-child(3) {
  border-bottom: 0.5px solid #333333;
}

.products_btn_area {
  margin-top: 30px;
  margin-bottom: 120px;
}

.products_btn {
  display: flex;
  margin-right: 20px;
  width: 100%;
}
.products_btn p {
  font-size: 16px;
  font-weight: 400;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .products_btn {
    flex-direction: column;
    margin-top: 30px;
    margin-right: 0px;
  }
}

.products_btn_area2 {
  margin-top: -100px;
  margin-bottom: 120px;
}

.faq-accordion {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .faq-accordion {
    margin: 0 auto 100px;
  }
}

.panel-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
  margin-right: 20px;
}

.panel-header.active .icon {
  transform: rotate(45deg);
}

.panel-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

:root {
  --overlay-color: rgb(75 86 89/0.5);
}

/* ラッパー */
.bl_imgSwitcher {
  margin-inline: auto;
}

/* メイン画像 */
.bl_imgSwitcher_main img {
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* サムネイルのエリア */
.bl_imgSwitcher_thumb {
  display: flex;
  gap: 0 1.5rem;
  margin-block-start: 2rem;
  overflow-x: scroll;
}

/* サムネイルの各ボタン */
.bl_imgSwitcher_btn {
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: none;
}
.bl_imgSwitcher_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  transition: background-color 0.4s;
}
.bl_imgSwitcher_btn:focus-visible::before {
  background-color: var(--overlay-color);
}
.bl_imgSwitcher_btn img {
  aspect-ratio: 1;
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_imgSwitcher_main {
  margin-bottom: 10px;
}

@media (any-hover: hover) {
  .bl_imgSwitcher_btn:hover::before {
    background-color: var(--overlay-color);
  }
}
/* is_activeクラスが付与されたら、サムネイルに半透明の黒背景を適用 */
.bl_imgSwitcher_btn.is_active::before {
  background-color: var(--overlay-color);
}

/* products list */
.content0_area_list {
  display: block;
}
.content0_area_list .tab-container_list {
  width: 90%;
  margin: 120px auto 0px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .content0_area_list .tab-container_list {
    margin: 60px auto 0px;
    flex-wrap: wrap;
  }
}
.content0_area_list .tab-container_list .tab_list {
  font-family: "Julius Sans One", sans-serif;
  cursor: pointer;
  width: 20%;
  background: #ffffff;
  height: 40px;
  text-align: center;
  color: #b81c22;
  border: 1px solid #b81c22;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  margin: 5px;
}
@media screen and (max-width: 767px) {
  .content0_area_list .tab-container_list .tab_list {
    width: 45%;
    margin: 10px auto;
  }
}
.content0_area_list .tab-container_list .tab_list:hover {
  background: #b81c22;
  color: #ffffff;
}
.content0_area_list .tab-container_list .tab-font {
  font-size: 16px;
}

.content0.show {
  width: 100%;
  margin: 0 auto 120px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.content0.show .content0_item {
  width: 20%;
  padding: 10px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .content0.show .content0_item {
    width: 40%;
    padding: 10px;
  }
}
.content0.show .content0_item_img {
  width: 100%;
}
.content0.show .content0_item_img a {
  display: block;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  margin: 5px;
}
.content0.show .content0_item_img a img {
  width: 100%;
}
.content0.show .content0_item_img a:hover img {
  opacity: 0.7;
}
.content0.show .content0_item h2 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content0.show .content0_item h2 {
    font-size: 16px;
  }
}
.content0.show .content0_item h2 span {
  font-size: 14px;
}
.content0.show .content0_item p {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content0.show .content0_item p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.content0.show .sub_btn {
  width: 100%;
}

.content0_item:last-child {
  margin-left: 0%;
}

/* footer */
.footer_area1 {
  background: url(img/brand_mask_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .footer_area1 {
    padding: 30px 0px;
  }
}
.footer_area1_inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_area1_inner {
    flex-direction: column;
  }
}
.footer_area1_inner_h2 {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .footer_area1_inner_h2 {
    width: 100%;
  }
}
.footer_area1_inner_h2 h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 1.7;
  margin: 0 auto;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .footer_area1_inner_h2 h2 {
    position: static;
    font-size: 32px;
    transform: translateY(0%) translateX(0%);
  }
}
.footer_area1_inner_h2 h2 span {
  color: #b81c22;
}
.footer_area1_inner_txt {
  width: 50%;
  margin: 0 auto;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer_area1_inner_txt {
    width: 100%;
    margin: 30px auto 0px;
  }
}
.footer_area1_inner_txt p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #333333;
}
.footer_area1_inner_txt ul li {
  width: 100%;
  margin: 5px;
  margin: 20px auto;
}
.footer_area1_inner_txt ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: #ffffff;
  padding: 20px auto;
  border: 1px solid #b81c22;
  border-radius: 5px;
  height: 40px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  color: #b81c22;
}
.footer_area1_inner_txt ul li a:hover {
  background-color: #b81c22;
  color: #ffffff;
}
.footer_area1_inner_txt ul li .fa-solid {
  display: block;
  margin-top: 10px;
}

.footer_area2 {
  background-color: #b81c22;
  padding: 60px 0px 20px;
}
@media screen and (max-width: 767px) {
  .footer_area2 {
    padding: 60px 0px 0px;
  }
}
.footer_area2_inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_area2_inner {
    flex-direction: column;
  }
}
.footer_area2_inner_item {
  width: 30%;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .footer_area2_inner_item {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}
.footer_area2_inner_item a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: "Julius Sans One";
  font-size: 20px;
  text-align: left;
}
.footer_area2_inner_item a span {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  padding-left: 10px;
}
.footer_area2_inner_item a:hover {
  opacity: 0.7;
}
.footer_area2_inner_item:nth-child(4) {
  margin-right: 0px;
}
.footer_area2_inner_item_wrap li a {
  display: block;
  font-size: 16px;
}
.footer_area2_inner_item_wrap li a:hover {
  opacity: 0.7;
}
.footer_area2_inner_item_small {
  margin-top: 30px;
}
.footer_area2_inner_item_small li a {
  display: block;
  font-size: 14px;
  color: #ffffff;
}
.footer_area2_inner_item_small li a:hover {
  opacity: 0.7;
}
.footer_area2 small {
  display: block;
  width: 100%;
  padding: 20px 0px;
  border-top: 0.5px solid #ffffff;
  text-align: center;
  color: #ffffff;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer_area2 small {
    font-size: 14px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  a.footer_insta {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 30px;
  }
}

/* media */
.mediapage_media h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
}
.mediapage_media h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.mediapage_media ul {
  display: flex;
  width: 90%;
  margin: 60px auto 0px;
  justify-content: space-around;
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .mediapage_media ul {
    flex-wrap: wrap;
  }
}
.mediapage_media ul li {
  width: 20%;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .mediapage_media ul li {
    width: 45%;
    padding: 30px 0px;
  }
}
.mediapage_media ul li time {
  color: #b81c22;
}
.mediapage_media ul li a {
  text-decoration: none;
  color: #333333;
}
.mediapage_media ul li a:hover {
  color: #b81c22;
}
.mediapage_media_item_img {
  width: 100%;
}
.mediapage_media_item_img img {
  width: 100%;
}
.mediapage_media_item_img:hover {
  opacity: 0.7;
}

/* media-detail */
.mediapage_single {
  width: 90%;
  margin: 120px auto;
}
.mediapage_single time {
  color: #b81c22;
  font-size: 14px;
}
.mediapage_single h3 {
  font-size: 24px;
  padding-bottom: 30px;
  margin-bottom: 60px;
  font-weight: 600;
  border-bottom: 0.5px solid #333333;
}
.mediapage_single_inner {
  display: flex;
}
.mediapage_single_inner_img {
  width: 30%;
}
.mediapage_single_inner_img img {
  width: 100%;
}
.mediapage_single_inner_txt {
  width: 70%;
  text-align: left;
  padding-left: 40px;
}
.mediapage_single_inner_txt p {
  margin-bottom: 30px;
}
.mediapage_single_inner_txt p span {
  font-weight: 600;
}

/* newslist */
.newspage_news h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
}
.newspage_news h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.newspage_news ul {
  width: 90%;
  margin: 120px auto;
  max-width: 1080px;
}
.newspage_news ul li {
  width: 100%;
  padding: 20px;
  border-top: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .newspage_news ul li {
    width: 90%;
  }
}
.newspage_news ul li time {
  color: #b81c22;
}
.newspage_news ul li a {
  text-decoration: none;
  color: #333333;
}
.newspage_news ul li a:hover {
  color: #b81c22;
}
.newspage_news ul li:last-child {
  border-bottom: 0.5px solid #333333;
}
.newspage_news_wrap {
  display: flex;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .newspage_news_wrap {
    flex-direction: column;
  }
}
.newspage_news_inner {
  width: 70%;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .newspage_news_inner {
    width: 90%;
  }
}
.newspage_news_inner time {
  color: #b81c22;
  font-size: 14px;
}
.newspage_news_inner h3 {
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 0.5px solid #333333;
}
@media screen and (max-width: 767px) {
  .newspage_news_inner h3 {
    font-size: 20px;
  }
}
.newspage_news_inner_txt {
  width: 70%;
  text-align: left;
  padding-left: 40px;
}
.newspage_news_inner_txt p {
  margin-bottom: 30px;
}
.newspage_news_inner_txt p span {
  font-weight: 600;
}
.newspage_news_side {
  width: 30%;
  margin: 120px auto 0px;
  text-align: left;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .newspage_news_side {
    width: 90%;
    padding-left: 0px;
    margin: 0px auto;
  }
}
.newspage_news_side_inner {
  width: 100%;
  text-align: left;
}
.newspage_news_side_inner h3 {
  color: #b81c22;
  font-weight: 600;
  font-family: "IBM Plex Sans JP", sans-serif;
  margin-top: 16px;
}
.newspage_news_side_inner ul {
  margin-top: 20px;
  width: 100%;
}
.newspage_news_side_inner ul li {
  padding: 10px 0px;
}

/* company */
.companypage_company h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
}
.companypage_company h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.companypage_company_inner {
  width: 90%;
  margin: 120px auto;
  max-width: 1080px;
}
.companypage_company_inner dl:nth-child(1) {
  border-top: solid 0.5px #333333;
}
.companypage_company_inner dl {
  border-bottom: solid 0.5px #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
}
@media screen and (max-width: 767px) {
  .companypage_company_inner dl {
    flex-direction: column;
  }
}
.companypage_company_inner dl dt {
  width: 15%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .companypage_company_inner dl dt {
    width: 90%;
    text-align: left;
    margin-bottom: 10px;
  }
}
.companypage_company_inner dl dd {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .companypage_company_inner dl dd {
    width: 90%;
    text-align: left;
  }
}

/* shop*/
.shoppage_company h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
}
.shoppage_company h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.shoppage_company_map {
  width: 60%;
  margin: 60px auto 0px;
}
@media screen and (max-width: 767px) {
  .shoppage_company_map {
    width: 90%;
  }
}
.shoppage_company_map img {
  width: 100%;
}
.shoppage_company_inner {
  width: 90%;
  margin: 120px auto;
  max-width: 1080px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .shoppage_company_inner {
    margin-top: 60px;
  }
}
.shoppage_company_inner h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #b81c22;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #333333;
}
.shoppage_company_inner ul {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.5px dashed #333333;
  padding: 30px 0px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .shoppage_company_inner ul {
    flex-direction: column;
  }
}
.shoppage_company_inner ul h4 {
  font-weight: 600;
  display: flex;
  text-align: left;
}
.shoppage_company_inner ul li:nth-child(1) {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .shoppage_company_inner ul li:nth-child(1) {
    width: 100%;
  }
}
.shoppage_company_inner ul li:nth-child(2) {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .shoppage_company_inner ul li:nth-child(2) {
    width: 100%;
  }
}
.shoppage_company_inner ul li:nth-child(3) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .shoppage_company_inner ul li:nth-child(3) {
    width: 30%;
    margin-top: 10px;
    margin-left: -70%;
  }
}

/* use */
.usepage_use {
  margin-bottom: 120px;
}
.usepage_use h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 120px auto 60px;
}
.usepage_use h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
}
.usepage_use h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.usepage_use ul {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}
.usepage_use ul li {
  margin-bottom: 40px;
}
.usepage_use ul li h4 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* contact*/
.contactpage_contact {
  margin-bottom: 120px;
}
.contactpage_contact h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #af3b3e;
  text-align: left;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
}
.contactpage_contact h2 span {
  display: block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.contactpage_contact_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}
.contactpage_contact_inner p {
  text-align: center;
  margin: 20px auto;
}
.contactpage_contact_inner p span {
  font-size: 14px;
  color: #b81c22;
}
.contactpage_contact_inner ul {
  width: 100%;
  margin: 0 auto;
}
.contactpage_contact_inner ul li {
  margin-top: 30px;
  text-align: left;
}
.contactpage_contact_inner ul li input {
  width: 100%;
  height: auto;
  min-height: 30px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .contactpage_contact_inner ul li input {
    width: 90%;
  }
}
.contactpage_contact_inner ul li span {
  font-size: 14px;
  color: #b81c22;
}
.contactpage_contact_inner ul li:nth-child(4) input {
  min-height: 100px;
}
.contactpage_contact_input {
  text-align: center;
  margin: 30px auto;
}

.tab_box .btn_area {
  width: 90%;
  margin: 120px auto 0px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .tab_box .btn_area {
    flex-wrap: wrap;
    margin: 60px auto 0px;
  }
}

.tab_box .tab_btn {
  font-family: "Julius Sans One", sans-serif;
  cursor: pointer;
  width: 20%;
  background: #ffffff;
  height: 40px;
  text-align: center;
  color: #b81c22;
  border: 1px solid #b81c22;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  margin: 5px;
}
@media screen and (max-width: 767px) {
  .tab_box .tab_btn {
    width: 45%;
    margin: 10px auto;
  }
}

.tab_box .tab_btn.active {
  background: #b81c22;
  color: #ffffff;
}

.tab_box .tab_panel {
  display: none;
}

.tab_box .tab_panel.active {
  display: block;
}

.content-container ul {
  width: 100%;
  margin: 0 auto 120px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.content-container ul .content-container_inner {
  width: 20%;
  padding: 10px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .content-container ul .content-container_inner {
    width: 40%;
    padding: 0px;
  }
}
.content-container ul .content-container_inner_img {
  width: 100%;
}
.content-container ul .content-container_inner_img a {
  display: block;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  margin: 5px;
}
.content-container ul .content-container_inner_img a img {
  width: 100%;
}
.content-container ul .content-container_inner_img a:hover img {
  opacity: 0.7;
}
.content-container ul .content-container_inner h2 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content-container ul .content-container_inner h2 {
    font-size: 16px;
  }
}
.content-container ul .content-container_inner p {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content-container ul .content-container_inner p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.content-container ul .content-container_inner .sub_btn {
  width: 100%;
}/*# sourceMappingURL=style.css.map */

/* 追加 */
button.main_btn.news_btn {
    margin: 60px auto;
}
.wp-pagenavi{
	text-align:center;
}
.wp-pagenavi a, .wp-pagenavi span{
	margin:10px;
	padding:5px 10px;
	border-radius:5px;
	border: 1px solid #af3b3e;
}
.wp-pagenavi span.current{
	background-color:#af3b3e;
	color:#ffffff;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}

nput.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    font-size: 16px;
}

button.main_btn.news_btn {
    margin: 60px auto;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 90%;
    padding: 10px;
	 font-size: 16px;
    font-family: 'Inter';
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    font-size: 16px;
    font-family: 'Inter';
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.main_btn {
    color: white;
    text-align: center;
    margin: 0 auto;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.main_btn:hover {
    opacity:0.7;
}
/* recapchca*/
.grecaptcha-badge { visibility: hidden; }

/* ニュース */
.strong{
	font-weight:600;
}
/* youtube */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 50px;
}
.video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* バナー */

.toppage_top_banner_pc {
  width: 50%;
  margin: 100px auto 0px;
}
.toppage_top_banner_pc a {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .toppage_top_banner_pc {
    display: none;
  }
}
.toppage_top_banner_pc img {
  width: 100%;
}
.toppage_top_banner_pc h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
}

.toppage_top_banner_sp {
  width: 90%;
  margin: 60px auto 0px;
}
.toppage_top_banner_sp a {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .toppage_top_banner_sp {
    display: none;
  }
}
.toppage_top_banner_sp img {
  width: 100%;
}
.toppage_top_banner_sp h3 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
}

/* ニュース投稿ページ */
.newspage_inner_txt{
	h2{
		  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
		color: #333333;
		padding:10px 0px;
		text-align:left;
		margin: 0 auto;
		color: #b81c22;
		
	}
	p{
		margin-bottom:10px
	}
	strong{
		font-weight: 600;
	}
}