@charset "UTF-8";
@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

h3 {
  font-size: 4.583vw;
  font-weight: bold;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 4.583vw;
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 8vw;
  }
}
@media screen and (max-width: 480px) {
  h4 {
    font-size: 32px;
  }
}

h5 {
  font-size: 1.667vw;
  font-weight: bold;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 2.083vw;
  font-weight: bold;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  h6 {
    font-size: 20px;
  }
}

.top {
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top {
    margin-top: 50px;
  }
}
.top .empty_box {
  width: 100%;
  height: 3vw;
}
.top .top_image {
  width: 100vw;
}
@media screen and (max-width: 480px) {
  .top .top_image {
    display: none;
  }
}
.top .sp_block {
  width: 100%;
}
@media screen and (min-width: 481px) {
  .top .sp_block {
    display: none;
  }
}
.top h3 {
  position: absolute;
  bottom: -4.25vw;
  left: 4.25vw;
  color: #ffffff;
}

.about_us {
  background-color: #DBDF06;
  padding: 20.833vw 0;
}
.about_us img {
  width: 52.188vw;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .about_us img {
    display: none;
  }
}

.about_us_menu {
  color: #ffffff;
  width: 40%;
  margin: 0 4.25vw 0 auto;
}
@media screen and (max-width: 768px) {
  .about_us_menu {
    width: 91.5%;
    text-align: center;
    margin: 0 4.25vw;
  }
  .about_us_menu .about_us_menu_text {
    text-align: left;
  }
}
.about_us_menu li {
  border-top: solid 1px #ffffff;
}
.about_us_menu h4 {
  line-height: 1;
}
.about_us_menu h5 {
  padding-bottom: 48px;
}
.about_us_menu ul h6 {
  font-size: 2.083vw;
}
@media screen and (max-width: 768px) {
  .about_us_menu ul h6 {
    font-size: 20px;
  }
}

.about_us_menu_title {
  display: flex;
  align-items: center;
}

.number_circle {
  height: 7.031vw;
  width: 7.031vw;
  margin: 24px 32px 24px 0;
  border-radius: 50%;
  border: solid 1px #ffffff;
  text-align: center;
  line-height: 7.031vw;
  font-size: 3.333vw;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .number_circle {
    height: 10vw;
    width: 10vw;
    font-size: 5vw;
    line-height: 10vw;
  }
}

.number_circle2 {
  height: 7.031vw;
  width: 7.031vw;
  margin: 24px 32px 24px 0;
  border-radius: 50%;
  background-color: #ffffff;
  text-align: center;
  line-height: 7.031vw;
  font-size: 3.333vw;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .number_circle2 {
    height: 10vw;
    width: 10vw;
    font-size: 5vw;
    line-height: 10vw;
  }
}

.view_more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: solid 1px #ffffff;
  text-align: right;
}

.view_more_text {
  font-size: 16px;
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}

.view_more_arrow {
  margin-left: 16px;
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.view_more_arrow::before {
  content: "";
  position: absolute;
  top: -5px;
  transform: translateX(-70%) rotate(45deg);
  width: 16px;
  height: 2px;
  background-color: #ffffff;
}
.view_more_arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  transform: translateX(-70%) rotate(-45deg);
  width: 16px;
  height: 2px;
  background-color: #ffffff;
}

.products_slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.products_slider .slick-slide {
  margin: 0 24px;
  /*スライド左右の余白調整*/
}

.hover_item {
  overflow: hidden;
  margin: 10px 8px 10px 16px;
  position: relative;
}

.hover_item .caption {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  background-color: #DBDF06;
  padding: 5px 20px;
}

.hover_item .mask {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* 表示させない */
  background-color: rgba(0, 0, 0, 0.4);
  transform: rotateX(-180deg);
  transition: all 0.6s ease;
}

.hover_item:hover .mask {
  transform: rotateX(0deg);
  opacity: 1;
  /* ホバーで表示する */
}

.products {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .products {
    margin-top: 50px;
  }
}
.products h4 {
  color: #333333;
  line-height: 1;
}
.products h5 {
  color: #DBDF06;
  padding-bottom: 5vw;
}

.products_title_wrapper {
  width: 91.5vw;
  margin: auto;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #707070;
}

.products_circle_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products_circle_wrapper img {
  position: absolute;
  width: 2.969vw;
}
@media screen and (max-width: 768px) {
  .products_circle_wrapper img {
    width: 5vw;
  }
}

.products_circle {
  position: relative;
  height: 7.031vw;
  width: 7.031vw;
  border-radius: 50%;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .products_circle {
    height: 10vw;
    width: 10vw;
  }
}

.company_guide {
  margin-top: 13.333vw;
}
@media screen and (max-width: 768px) {
  .company_guide {
    margin-top: 20vw;
  }
}
.company_guide .company_guide_title_wrapper {
  width: 91.5vw;
  margin: auto;
  margin-bottom: 7.5vw;
}
.company_guide h4 {
  color: #333333;
  line-height: 1;
}
.company_guide h5 {
  color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .company_guide h5 {
    margin-bottom: 9vw;
  }
}
.company_guide .company_guide_title {
  display: flex;
}
@media screen and (max-width: 768px) {
  .company_guide .company_guide_title {
    display: block;
  }
}
.company_guide .company_guide_title_inner {
  margin-right: 14.583vw;
}
.company_guide .company_guide_text {
  color: #333333;
}
.company_guide h6 {
  margin-bottom: 7.083vw;
}
.company_guide .view_more2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  color: #DBDF06;
}
.company_guide .view_more_arrow2 {
  margin-left: 16px;
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #DBDF06;
}
.company_guide .view_more_arrow2::before {
  content: "";
  position: absolute;
  top: -5px;
  transform: translateX(-70%) rotate(45deg);
  width: 16px;
  height: 2px;
  background-color: #DBDF06;
}
.company_guide .view_more_arrow2::after {
  content: "";
  position: absolute;
  top: 5px;
  transform: translateX(-70%) rotate(-45deg);
  width: 16px;
  height: 2px;
  background-color: #DBDF06;
}
.company_guide .company_guide_slide {
  margin-bottom: 36.458vw;
}
@media screen and (max-width: 768px) {
  .company_guide .company_guide_slide {
    margin-bottom: 45vw;
  }
}
.company_guide .company_guide_slide_image {
  display: flex;
  align-content: space-between;
}
.company_guide .company_guide_slide_image ul {
  width: 39.583vw;
}
.company_guide .company_guide_slide_image ul img {
  height: 47.917vw;
}
.company_guide .company_guide_slide_image .company_guide_slide_center ul {
  width: 20.833vw;
}
.company_guide .company_guide_slide_image .company_guide_slide_center ul img {
  height: 23.958vw;
}

.contact {
  width: 91.5vw;
  margin: auto;
  margin-top: 18.333vw;
  position: relative;
}
.contact .banner {
  margin-right: 4.688vw;
  color: #333333;
  rotate: -3deg;
  text-align: right;
  z-index: 1;
  position: absolute;
  right: 0;
  top: -25vw;
  line-height: 1.5;
  font-size: 1.25vw;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .contact .banner {
    font-size: 2vw;
    top: -31vw;
  }
}
@media screen and (max-width: 660px) {
  .contact .banner {
    top: -28vw;
  }
}
@media screen and (max-width: 480px) {
  .contact .banner {
    top: -33.5vw;
  }
}
.contact .banner span {
  font-size: 2.083vw;
}
@media screen and (max-width: 768px) {
  .contact .banner span {
    font-size: 3vw;
  }
}
.contact .banner::before {
  content: "";
  width: 43vw;
  height: 10.417vw;
  position: absolute;
  right: -1.5vw;
  top: -2.083vw;
  transform: skewX(-30deg);
  background-color: #ffffff;
  border: solid 1px #707070;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .contact .banner::before {
    width: 70vw;
    top: -0.5vw;
    right: -4vw;
  }
}
@media screen and (max-width: 480px) {
  .contact .banner::before {
    width: 330px;
  }
}
.contact .banner::after {
  content: "";
  width: 43vw;
  height: 10.417vw;
  position: absolute;
  right: -2.083vw;
  top: -1.042vw;
  transform: skewX(-30deg);
  background-color: #000000;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .contact .banner::after {
    width: 70vw;
    top: 0.5vw;
    right: -4.7vw;
  }
}
@media screen and (max-width: 480px) {
  .contact .banner::after {
    width: 330px;
  }
}
.contact .contact_wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #DBDF06;
  padding: 11.667vw 11.667vw 11.667vw 6.667vw;
  color: #ffffff;
  position: absolute;
  top: -20.833vw;
  right: 50%;
  transform: translateX(50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact .contact_wrapper {
    top: -25vw;
  }
}
@media screen and (max-width: 660px) {
  .contact .contact_wrapper {
    top: -20vw;
    padding: 5vw 5vw 5vw 5vw;
  }
}
@media screen and (max-width: 480px) {
  .contact .contact_wrapper {
    top: -25vw;
  }
}
.contact .contact_wrapper h4 {
  line-height: 1;
}
.contact .contact_wrapper h5 {
  margin-bottom: 5vw;
}
.contact .contact_wrapper .contact_circle_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact_wrapper .contact_circle_wrapper img {
  position: absolute;
  width: 2.969vw;
}
@media screen and (max-width: 768px) {
  .contact .contact_wrapper .contact_circle_wrapper img {
    width: 5vw;
  }
}
.contact .contact_wrapper .contact_circle {
  position: relative;
  height: 7.031vw;
  width: 7.031vw;
  border-radius: 50%;
  background-color: #DBDF06;
  border: solid 1px #ffffff;
}
@media screen and (max-width: 768px) {
  .contact .contact_wrapper .contact_circle {
    height: 10vw;
    width: 10vw;
  }
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.top h4 {
  margin-top: 6.25vw;
  line-height: 1;
}
.top h5 {
  color: #DBDF06;
  margin-bottom: 2.5vw;
}
.top h4,
.top h5 {
  margin-left: 4.25vw;
}

.about_us_content_title {
  font-size: 40px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #DBDF06;
  background: linear-gradient(to bottom, #fff 0%, #fff 51%, #fff 52%, #DBDF06 100%);
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .about_us_content_title {
    font-size: 24px;
  }
}

.about_us_content_text {
  font-size: 20px;
}
@media screen and (max-width: 1280px) {
  .about_us_content_text {
    font-size: 16px;
  }
}

.custom_made {
  width: 90vw;
  margin: auto;
}
.custom_made .about_us_content_wrapper_container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1050px) {
  .custom_made .about_us_content_wrapper_container {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .custom_made .about_us_content_wrapper_container {
    display: block;
  }
}
.custom_made h5 {
  margin-top: 6.25vw;
}
@media screen and (max-width: 1050px) {
  .custom_made h5 {
    font-size: 20px;
  }
}
.custom_made h4 {
  color: #DBDF06;
  line-height: 1;
  margin-bottom: 6.25vw;
}
.custom_made .products_example {
  margin-right: 100px;
}
@media screen and (max-width: 1050px) {
  .custom_made .products_example {
    margin-right: 30px;
  }
}
.custom_made .custom_made_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .custom_made .custom_made_content {
    display: block;
  }
}
@media screen and (max-width: 1050px) {
  .custom_made .custom_made_content p {
    margin-bottom: 30px;
  }
}
.custom_made .custom_made_content td {
  padding-left: 30px;
}
.custom_made .custom_made_content th {
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.custom_made .custom_made_content img {
  margin-left: 30px;
  margin-bottom: 150px;
  width: 38.854vw;
  height: auto;
}
@media screen and (max-width: 1050px) {
  .custom_made .custom_made_content img {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 620px) {
  .custom_made .custom_made_content img {
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .custom_made .custom_made_content img {
    margin-bottom: 50px;
  }
}

.product_development {
  width: 90vw;
  margin: auto;
}
.product_development h5 {
  color: #DBDF06;
  margin-right: 36.458vw;
}
@media screen and (max-width: 768px) {
  .product_development h5 {
    margin-right: 65vw;
    font-size: 20px;
  }
}
@media screen and (max-width: 620px) {
  .product_development h5 {
    margin-right: 60vw;
  }
}
@media screen and (max-width: 480px) {
  .product_development h5 {
    margin-right: 215px;
  }
}
.product_development h4 {
  line-height: 1;
  margin-bottom: 6.25vw;
}
.product_development h5,
.product_development h4 {
  text-align: right;
}
.product_development .product_development_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .product_development .product_development_content {
    display: block;
  }
}
.product_development img {
  margin-bottom: 130px;
  width: 38.854vw;
  margin-right: 30px;
  height: auto;
}
@media screen and (max-width: 1050px) {
  .product_development img {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.product_development .skill {
  margin-bottom: 30px;
}

.manufacturing_process {
  width: 90vw;
  margin: auto;
}
.manufacturing_process h4 {
  color: #DBDF06;
  line-height: 1;
  margin-bottom: 6.25vw;
}
.manufacturing_process .manufacturing_process_title_text {
  font-size: 28px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1270px) {
  .manufacturing_process .manufacturing_process_title_text {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .manufacturing_process .manufacturing_process_title_text {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.manufacturing_process ul {
  margin-top: 3.125vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.manufacturing_process ul li {
  position: relative;
  width: 18.75vw;
}
@media screen and (max-width: 1280px) {
  .manufacturing_process ul li {
    width: calc(50% - 3.937vw);
    margin-right: 3.937vw;
    margin-top: 7.874vw;
  }
  .manufacturing_process ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .manufacturing_process ul li {
    width: 80%;
    margin-right: 0;
    margin-top: 12vw;
  }
}
.manufacturing_process ul li img {
  width: 100%;
}
.manufacturing_process ul .process_number {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 3.333vw;
  color: #ffffff;
  width: 7.031vw;
  height: 7.031vw;
  border-radius: 50%;
  background-color: #DBDF06;
  text-align: center;
  font-family: "HG明朝B", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 1280px) {
  .manufacturing_process ul .process_number {
    width: 10vw;
    height: 10vw;
    font-size: 5vw;
  }
}
@media screen and (max-width: 700px) {
  .manufacturing_process ul .process_number {
    width: 15vw;
    height: 15vw;
    font-size: 8vw;
  }
}
.manufacturing_process ul .process_text_wrapper {
  padding: 30px;
  background-color: #DBDF06;
  height: 272px;
}
.manufacturing_process ul .process_text_wrapper h5 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .manufacturing_process ul .process_text_wrapper h5 {
    font-size: 24px;
  }
}
.manufacturing_process ul .process_text_wrapper .process_text {
  font-size: 20px;
}
.manufacturing_process ul .manufacturing_process_arrow {
  align-self: flex-end;
  padding-bottom: 80px;
  width: 3.557vw;
}
@media screen and (max-width: 1280px) {
  .manufacturing_process ul .manufacturing_process_arrow {
    display: none;
  }
}

.gomu {
  margin-bottom: 36.458vw;
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
}
@media screen and (max-width: 768px) {
  .gomu {
    margin-bottom: 50vw;
  }
}
.gomu h3 {
  margin-top: 6.25vw;
  margin-right: 4.25vw;
  margin-left: 4.25vw;
  margin-bottom: 4.167vw;
}
@media screen and (max-width: 480px) {
  .gomu h3 {
    font-size: 24px;
  }
}
.gomu .gomu_title_text {
  font-size: 28px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1270px) {
  .gomu .gomu_title_text {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .gomu .gomu_title_text {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.gomu p {
  margin-right: 4.25vw;
  margin-left: 4.25vw;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .gomu p {
    font-size: 16px;
  }
}
.gomu .about_us_content_title {
  font-size: 40px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #DBDF06;
  background: linear-gradient(to bottom, #fff 0%, #fff 51%, #fff 52%, #DBDF06 100%);
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .gomu .about_us_content_title {
    font-size: 24px;
  }
}
.gomu .gomu_slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}
.gomu .gomu_slider .slick-slide {
  margin: 0 24px;
  /*スライド左右の余白調整*/
}
.gomu .slick-track {
  margin-top: 50px;
}

.circle_bk::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #000000;
}
@media screen and (max-width: 480px) {
  .circle_bk::before {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.wrapper {
  width: 90vw;
  margin: auto;
  margin-bottom: 36.458vw;
}
@media screen and (max-width: 768px) {
  .wrapper {
    margin-bottom: 50vw;
  }
}

@media screen and (max-width: 1280px) {
  .products_page_top {
    margin-top: 50px;
  }
}
.products_page_top h4,
.products_page_top h5 {
  margin-left: 0;
}
.products_page_top h4 {
  margin-top: 6.25vw;
  line-height: 1;
}
.products_page_top h5 {
  margin-bottom: 23.75vw;
  color: #DBDF06;
}
.products_page_top .empty_box {
  width: 100%;
  height: 5.208vw;
}

.products_wrapper h6,
.products_wrapper p {
  line-height: 1;
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
.products_wrapper p {
  color: #DBDF06;
}
@media screen and (max-width: 1280px) {
  .products_wrapper p {
    font-size: 20px;
  }
}
.products_wrapper .products_title_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: solid 1px #DBDF06;
  margin-top: 9.375vw;
}
.products_wrapper .about_them {
  display: flex;
  align-items: center;
}
.products_wrapper .about_them p {
  margin-right: 16px;
}
.products_wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 13.75vw;
}
.products_wrapper ul :nth-child(3),
.products_wrapper ul :nth-child(4) {
  margin-top: 6.25vw;
}
.products_wrapper ul li {
  width: calc(50% - 50px) !important;
}
.products_wrapper ul li .product_image {
  width: 100% !important;
}
@media screen and (max-width: 1070px) {
  .products_wrapper ul li {
    width: 100% !important;
    margin-top: 6.25vw !important;
  }
}
.products_wrapper ul li .attachment-large {
  width: 100% !important;
  height: auto;
}
.products_wrapper ul .product_text_wrapper {
  width: 100%;
  height: 600px;
  text-align: center;
  padding: 20px 50px;
  background-color: #A3A5A7;
}
@media screen and (max-width: 1070px) {
  .products_wrapper ul .product_text_wrapper {
    height: auto;
  }
}
.products_wrapper ul .product_text_wrapper h5 {
  font-size: 28px;
  line-height: 1.5;
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 1070px) {
  .products_wrapper ul .product_text_wrapper h5 {
    font-size: 24px;
  }
}
.products_wrapper ul .product_text_wrapper p {
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  color: #333333;
  margin-top: 0;
  margin-bottom: 30px;
}
.products_wrapper ul .product_text_wrapper .products_detail_text {
  text-align: left !important;
  line-height: 2 !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
}
.products_wrapper ul .product_text_wrapper .cartjs_box {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.products_wrapper ul .product_text_wrapper .cartjs_cart_in input {
  background-color: #DBDF06 !important;
  font-size: 24px !important;
  font-weight: bold !important;
  margin-bottom: 0 !important;
  width: 270px !important;
}
@media screen and (max-width: 1070px) {
  .products_wrapper ul .product_text_wrapper .cartjs_cart_in input {
    font-size: 20px !important;
    width: 150px !important;
  }
}
.products_wrapper ul .product_text_wrapper .cartjs_product_num th {
  font-size: 24px !important;
  text-align: center;
}
@media screen and (max-width: 1070px) {
  .products_wrapper ul .product_text_wrapper .cartjs_product_num th {
    font-size: 20px !important;
  }
}
.products_wrapper ul .product_text_wrapper .cartjs_product_num td {
  text-align: center;
}
.products_wrapper ul .product_text_wrapper .cartjs_product_table table {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 480px) {
  .products_wrapper ul .product_text_wrapper .cartjs_product_table table {
    width: 80% !important;
  }
}
.products_wrapper ul .product_text_wrapper .cartjs_product_table input {
  background-color: #ffffff !important;
  font-size: 24px !important;
  padding: 0 6px !important;
  text-align: left !important;
}
@media screen and (max-width: 1070px) {
  .products_wrapper ul .product_text_wrapper .cartjs_product_table input {
    font-size: 20px !important;
    padding-right: 0 !important;
  }
}
.products_wrapper ul .product_text_wrapper .cartjs_product_info {
  display: none;
}
.products_wrapper ul .product_text_wrapper .purchase_button {
  margin-top: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products_wrapper ul .product_text_wrapper .purchase_button .purchase_button_text {
  color: #ffffff;
  font-weight: normal;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  position: absolute;
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.detail {
  width: 91.5vw;
  margin: auto;
  margin-bottom: 36.458vw;
}
@media screen and (max-width: 768px) {
  .detail {
    margin-bottom: 50vw;
  }
}
.detail .detail_title {
  color: #ffffff;
  margin-top: 11.25vw;
  padding: 30px;
  text-align: center;
  background: radial-gradient(#828181, #000);
}
.detail h3 {
  margin-top: 6.25vw;
  margin-bottom: 4.167vw;
  font-size: 2.5vw;
  text-align: center;
  border-bottom: solid 1px #707070;
}
.detail h3 span {
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .detail h3 {
    font-size: 20px;
  }
}
.detail .detail_content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .detail .detail_content {
    display: block;
  }
}
.detail .detail_content img {
  width: 45.677vw;
}
@media screen and (max-width: 768px) {
  .detail .detail_content img {
    width: 100%;
  }
}
.detail .detail_content .detail_text h5,
.detail .detail_content .detail_text2 h5,
.detail .detail_content .detail_text3 h5 {
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 768px) {
  .detail .detail_content .detail_text h5,
  .detail .detail_content .detail_text2 h5,
  .detail .detail_content .detail_text3 h5 {
    text-align: center;
  }
}
.detail .detail_content .detail_text,
.detail .detail_content .detail_text3 {
  margin-left: 4.167vw;
}
@media screen and (max-width: 768px) {
  .detail .detail_content .detail_text,
  .detail .detail_content .detail_text3 {
    margin: 30px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .detail .detail_content .detail_text p {
    margin-left: 5vw;
  }
}
.detail .detail_content .detail_text2,
.detail .detail_content .detail_text3 {
  margin-top: 30px;
}
.detail .detail_content .detail_text2 {
  margin-right: 2.604vw;
}
@media screen and (max-width: 768px) {
  .detail .detail_content .detail_text2 {
    margin: 0;
  }
  .detail .detail_content .detail_text2 p {
    margin: 0 0 30px 5vw;
  }
}
@media screen and (max-width: 768px) {
  .detail .detail_content .detail_text3 p {
    margin-bottom: 30px;
  }
}
.detail .detail_content span {
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .detail .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}
.detail .detail_main_image {
  margin: 4.167vw 0;
  width: 100%;
}
.detail .back_line {
  color: #DBDF06;
  display: flex;
  align-items: flex-end;
  border-bottom: solid 1px;
}
.detail .back_line img {
  transform: rotate(180deg);
  margin-bottom: 1px;
}
.detail .back_line p {
  margin-top: 7.813vw;
  margin-left: 16px;
  line-height: 1;
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 1280px) {
  .detail .back_line p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.company_guide_wrapper {
  width: 91.5vw;
  margin: auto;
  margin-bottom: 36.458vw;
}
@media screen and (max-width: 768px) {
  .company_guide_wrapper {
    margin-bottom: 50vw;
  }
}

.message {
  margin-top: 11.25vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .message {
    display: block;
  }
}
.message .message_text h5 {
  color: #DBDF06;
}
.message h4 {
  line-height: 1;
  margin-bottom: 9.375vw;
}
.message h6 {
  line-height: 1.5;
  margin-bottom: 4.167vw;
}
@media screen and (max-width: 768px) {
  .message .message_image {
    text-align: right;
  }
}
.message img {
  width: 36.094vw;
}
@media screen and (max-width: 768px) {
  .message img {
    width: 70%;
    margin-top: 30px;
  }
}
.message .message_name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.message .message_name p {
  margin-right: 32px;
}

.company_info {
  margin-top: 11.25vw;
}
.company_info h5 {
  color: #DBDF06;
}
.company_info h4 {
  line-height: 1;
  margin-bottom: 9.375vw;
}
.company_info .company_info_content {
  position: relative;
}
.company_info .company_info_content table {
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .company_info .company_info_content table {
    font-size: 16px;
  }
}
.company_info .company_info_content table td {
  padding-bottom: 60px;
}
.company_info .company_info_content table .last_td {
  padding-bottom: 0;
}
.company_info img {
  width: 44.01vw;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1300px) {
  .company_info img {
    display: none;
  }
}
.company_info .map {
  width: 80%;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 480px) {
  .company_info .map {
    margin-top: 50px;
  }
}
.company_info .map iframe {
  margin-top: 5px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .company_info .map iframe {
    height: 300px;
  }
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.contact_main {
  width: 91.5vw;
  margin: auto;
}
.contact_main .contact_explanation_text {
  margin-top: 216px;
}
.contact_main .contact_guest {
  font-weight: bold;
  margin-top: 110px;
  padding-bottom: 50px;
  border-bottom: solid 1px #707070;
}
.contact_main .must {
  color: #DBDF06 !important;
  border: solid 1px #DBDF06 !important;
  border-radius: 10% !important;
  padding: 1px 2px !important;
}
.contact_main .accept_submit {
  text-align: center !important;
  margin-top: 30px;
}
.contact_main .accept_submit .wpcf7-submit {
  background-color: #DBDF06 !important;
  width: 7.813vw !important;
  border-radius: 5% !important;
  color: #ffffff;
  font-size: 1.667vw;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact_main .accept_submit .wpcf7-submit {
    width: 100px !important;
    font-size: 24px !important;
  }
}
.contact_main .wpcf7-form-control-wrap input,
.contact_main .wpcf7-form-control-wrap textarea {
  background-color: #F8F5F5 !important;
  border: solid 1px #CDD6DD !important;
  padding-left: 10px;
}
.contact_main .wpcf7-list-item input {
  accent-color: #DBDF06;
}
.contact_main .wpcf7-response-output {
  border-color: #DBDF06 !important;
}
.contact_main table {
  border-spacing: 50px 0;
  font-size: 24px;
}
.contact_main table th {
  padding-top: 50px;
  padding-bottom: 10px;
}
.contact_main table th span {
  color: #DBDF06;
  border: solid 1px #DBDF06;
  border-radius: 10%;
  padding: 2px 5px;
}
.contact_main table .input {
  width: 360px;
  height: 80px;
  padding-top: 18px;
  padding-left: 30px;
  border: solid 1px #CDD6DD;
  background-color: #F8F5F5;
  color: #9B9898;
}
.contact_main table .rice {
  font-size: 16px;
}
.contact_main .contact_content {
  font-weight: bold;
  margin-top: 50px;
  padding-top: 120px;
  padding-bottom: 50px;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
}
.contact_main .input2 {
  width: 100vw;
  height: 600px;
  padding-top: 18px;
  padding-left: 30px;
  border: solid 1px #CDD6DD;
  background-color: #F8F5F5;
  color: #9B9898;
}
.contact_main .contact_privacy_text {
  font-weight: bold;
  text-align: center;
  padding-top: 150px;
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: solid 1px #707070;
}
.contact_main .contact_privacy_text span {
  color: #DBDF06;
  border: solid 1px #DBDF06;
  border-radius: 10%;
  padding: 2px 5px;
}
.contact_main .to_privacy_policy {
  border-bottom: solid 1px #333333;
}
.contact_main .to_privacy_policy:hover {
  color: #DBDF06;
  border-color: #DBDF06;
}

.footer_wrapper_contact {
  background-color: #828181;
  color: #ffffff;
  padding: 4.167vw 4.25vw 4.167vw 4.25vw;
  margin-top: 50px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper_contact {
    padding-top: 30px;
  }
}
.footer_wrapper_contact ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper_contact ul {
    display: none;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper_contact .footer_text {
    margin-top: 32px;
  }
}
.footer_wrapper_contact .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper_contact .footer_text,
.footer_wrapper_contact .footer_last_text,
.footer_wrapper_contact .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
.footer_wrapper_contact .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper_contact .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper_contact .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 400px) {
  .footer_wrapper_contact .footer_last_text_wrapper .copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.transaction_main {
  width: 91.5vw;
  margin: auto;
  margin-bottom: 36.458vw;
}
@media screen and (max-width: 768px) {
  .transaction_main {
    margin-bottom: 50vw;
  }
}
.transaction_main table {
  width: 100%;
  margin-top: 8.646vw;
  font-size: 24px;
  border-collapse: collapse;
}
@media screen and (max-width: 480px) {
  .transaction_main table {
    font-size: 16px;
  }
}
.transaction_main table tr {
  border-bottom: solid 1px #707070;
}
.transaction_main table td {
  padding-bottom: 2.604vw;
}
.transaction_main table th {
  width: 270px;
}
@media screen and (max-width: 480px) {
  .transaction_main table th {
    width: 50%;
  }
}
.transaction_main table td,
.transaction_main table th {
  padding-top: 2.604vw;
}

@media screen and (max-width: 1280px) {
  .pc_hide {
    display: none;
  }
  .pc_block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  line-height: 2;
  color: #333333;
}

h2 {
  font-size: 24px;
  font-family: "HGP明朝E", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}

p {
  font-size: 1.25vw;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
  padding: 1.25vw 2.083vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .logo h1 img {
    width: 50px;
  }
}
.logo .company_name_sub {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .logo .company_name_sub {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  margin-right: 16px;
}
header nav ul .header_list_text {
  font-weight: bold;
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  margin-right: 24px;
}
header nav ul a :hover {
  color: #DBDF06;
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_button .header_contact_text {
  position: absolute;
  color: #DBDF06;
  font-weight: bold;
  font-size: 16px;
}
.contact_button .header_contact_text:hover {
  color: #333333;
}

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

.menu_btn {
  border-radius: 20%;
  position: fixed;
  top: 2vw;
  right: 30px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #DBDF06;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .menu_btn {
    right: 10px;
  }
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span:before {
  bottom: 8px;
}

.menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu_btn_check:checked ~ .menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_btn_check {
  display: none;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #ffffff;
}

.hamburger_menu_content ul {
  padding: 100px 10px 0;
}

.hamburger_menu_content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #828181;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu_btn_check:checked ~ .hamburger_menu_content {
  left: 0;
  /*メニューを画面内へ*/
}

.footer_wrapper {
  background-color: #828181;
  color: #ffffff;
  padding: 30.156vw 4.25vw 4.167vw 4.25vw;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .footer_wrapper {
    padding-top: 150px;
  }
}
.footer_wrapper ul {
  display: flex;
  margin: 32px 0;
}
@media screen and (max-width: 660px) {
  .footer_wrapper ul {
    display: none;
  }
}
.footer_wrapper .footer_list_text {
  margin-right: 24px;
  font-weight: bold;
  font-size: 16px;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_last_text,
.footer_wrapper .copyright {
  font-size: 16px;
  font-family: "源ノ角ゴシック JP", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text,
  .footer_wrapper .footer_last_text,
  .footer_wrapper .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_text {
    margin-top: 16px;
  }
}
.footer_wrapper .footer_last_text_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .footer_wrapper .footer_last_text_wrapper {
    display: block;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 660px) {
  .footer_wrapper .footer_last_text_wrapper {
    margin-top: 8px;
  }
  .footer_wrapper .footer_last_text_wrapper .copyright {
    margin-top: 8px;
  }
}

.privacy_policy_main {
  margin-top: 11.25vw;
  width: 91.5vw;
  margin: auto;
  margin-bottom: 36.458vw;
}
@media screen and (max-width: 768px) {
  .privacy_policy_main {
    margin-bottom: 50vw;
  }
}
.privacy_policy_main .privacy_policy_main_title, .privacy_policy_main .privacy_policy_main_title2 {
  margin-top: 11.25vw;
  color: #DBDF06;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: solid 1px #707070;
}
.privacy_policy_main .privacy_policy_main_title2 {
  margin-top: 50px;
}
.privacy_policy_main .privacy_policy_main_first_text {
  margin: 50px 0;
}
.privacy_policy_main .privacy_policy_main_subtitle {
  font-weight: bold;
  margin: 50px 0 10px 0;
}
.privacy_policy_main ol {
  list-style-type: decimal;
  padding-left: 30px;
}
.privacy_policy_main .indent1 {
  text-indent: 24px;
}
.privacy_policy_main .indent2 {
  text-indent: 32px;
}
.privacy_policy_main .back_line {
  color: #DBDF06;
  display: flex;
  align-items: flex-end;
  border-bottom: solid 1px;
}
.privacy_policy_main .back_line img {
  transform: rotate(180deg);
  margin-bottom: 1px;
}
.privacy_policy_main .back_line p {
  margin-top: 7.813vw;
  margin-left: 16px;
  line-height: 1;
  font-family: "游明朝", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 1280px) {
  .privacy_policy_main .back_line p {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */