@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #232323;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-weight: 400;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

p,
li,
a,
h1,
h2,
h3,
span {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  line-height: 1.8;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: middle;
  width: 100%;
}

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

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

/* PCヘッダー */
.header-pc {
  padding-left: 55px;
}
.header-pc__inner {
  padding: 20px 15px;
  max-width: 1080px;
  margin: 0 auto;
}
.header-pc__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.header-pc__nav ul li {
  width: 210px;
  text-align: center;
}
.header-pc__nav ul li.logo {
  max-width: 210px;
}
.header-pc__nav ul li a {
  font-size: 1.4vw;
}
@media (min-width: 1100px) {
  .header-pc__nav ul li a {
    font-size: 1rem;
  }
}
.header-pc__nav ul li.logo-resonac span img {
  max-width: 100px;
  padding-bottom: 4px;
}

/* SPヘッダー */
.header-sp {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-sp__inner {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  position: relative;
}
.header-sp__logo a img {
  max-width: 87px;
  display: block;
  width: 100%;
  height: 100%;
}
.header-sp__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #001F3A;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 追加 */
  overflow-y: scroll;
}
.header-sp__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header-sp__nav ul {
  padding: 50px 15px 0;
}
.header-sp__nav ul li.nav-item {
  cursor: pointer;
  display: block;
  padding: 15px 10px;
  font-size: 18px;
  border-top: 1px solid #fff;
  color: #212121;
  position: relative;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  font-size: 1rem;
}
.header-sp__nav ul li.nav-item:last-child {
  border-bottom: 1px solid #fff;
}
.header-sp__nav ul li.nav-item::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-sp__nav ul li.nav-item div {
  color: #fff;
}
.header-sp__nav ul li.nav-item div a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  color: #fff;
}
.header-sp__nav ul li.nav-item div span img {
  max-width: 100px;
  padding-bottom: 4px;
}
.header-sp__hamburger {
  width: 30px;
  height: 100%;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
.header-sp__hamburger span {
  width: 100%;
  height: 1px;
  background-color: #001F3A;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
}
.header-sp__hamburger span:nth-child(1) {
  top: 0;
}
.header-sp__hamburger span:nth-child(2) {
  margin: 8px 0;
}
.header-sp__hamburger span:nth-child(3) {
  top: 0;
}
.header-sp__hamburger.active span {
  background-color: #fff;
}
.header-sp__hamburger.active span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-sp__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header-sp__hamburger.active span:nth-child(3) {
  top: -13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-sp__submenuItems {
  display: none;
  background: #001F3A;
}
.header-sp__submenuItems ul.sub-nav {
  padding: 0;
}
.header-sp__submenuItems ul.sub-nav li {
  border-top: none !important;
  border-bottom: none !important;
}
.header-sp__submenuItems ul.sub-nav li:nth-child(1) {
  padding-top: 15px;
}
.header-sp__submenuItems ul.sub-nav li a {
  position: relative;
  display: block;
  color: #d5d4d4 !important;
  padding: 12px 12px 12px 45px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  font-size: 0.875rem;
}
.header-sp__submenuItems ul.sub-nav li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  display: inline-block;
  width: 0.7rem;
  border-top: solid 1px #fff;
}
.header-sp__submenuItems ul.sub-nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sub-item {
  padding: 15px 0 15px 10px !important;
}
.sub-item::before {
  -webkit-transform: rotate(135deg) !important;
          transform: rotate(135deg) !important;
}

.footer-pc {
  background: #001F3A;
}
.footer-pc__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 15px;
}
@media (min-width: 768px) {
  .footer-pc__inner {
    padding-left: 55px;
  }
}
.footer-pc__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 30px;
  border-bottom: 1px solid #979797;
}
.footer-pc__info div.logo-area a img {
  max-width: 240px;
  width: 100%;
}
.footer-pc__info div.logo-area p {
  color: #fff;
  padding-top: 10px;
}
.footer-pc__info div.info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.footer-pc__info div.info-area p {
  color: #fff;
  padding-left: 30px;
  font-size: max(0.6vw, 12px);
}
.footer-pc__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
}
.footer-pc__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-pc__nav ul li {
  padding-right: 30px;
}
@media (min-width: 992px) {
  .footer-pc__nav ul li {
    padding-right: 60px;
  }
}
.footer-pc__nav ul li a {
  color: #fff;
  position: relative;
}
.footer-pc__nav ul li a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -14px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer-pc__nav ul li.logo-resonac span img {
  max-width: 100px;
  padding-bottom: 4px;
  fill: #fff;
}
.footer-pc__nav > div {
  margin-left: auto;
  padding-top: 0;
}
.footer-pc__copy {
  padding-top: 60px;
}
.footer-pc__copy p {
  color: #979797;
  text-align: center;
}

.footer-sp {
  background-color: #001F3A;
}
.footer-sp__inner {
  padding: 60px 15px;
}
.footer-sp__info div {
  text-align: center;
}
.footer-sp__info div.logo-area img {
  max-width: 196px;
  width: 100%;
}
.footer-sp__info div.logo-area p {
  color: #fff;
  padding-top: 30px;
}
.footer-sp__info div.info-area {
  padding-top: 30px;
}
.footer-sp__info div.info-area p {
  color: #fff;
}
.footer-sp__info div.info-area p:nth-child(2) {
  padding-top: 30px;
}
.footer-sp__nav ul {
  padding: 50px 15px 0;
}
.footer-sp__nav ul li.nav-item {
  cursor: pointer;
  display: block;
  padding: 15px 10px;
  font-size: 18px;
  border-top: 1px solid #fff;
  color: #212121;
  position: relative;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  font-size: 1rem;
}
.footer-sp__nav ul li.nav-item:last-child {
  border-bottom: 1px solid #fff;
}
.footer-sp__nav ul li.nav-item::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer-sp__nav ul li.nav-item div {
  color: #fff;
}
.footer-sp__nav ul li.nav-item div a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  color: #fff;
}
.footer-sp__nav ul li.nav-item div span img {
  max-width: 100px;
  padding-bottom: 4px;
}
.footer-sp__submenuItems {
  display: none;
  background: #001F3A;
}
.footer-sp__submenuItems ul.sub-nav {
  padding: 0;
}
.footer-sp__submenuItems ul.sub-nav li {
  border-top: none !important;
  border-bottom: none !important;
}
.footer-sp__submenuItems ul.sub-nav li:nth-child(1) {
  padding-top: 15px;
}
.footer-sp__submenuItems ul.sub-nav li a {
  position: relative;
  display: block;
  color: #d5d4d4 !important;
  padding: 12px 12px 12px 45px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  font-size: 0.875rem;
}
.footer-sp__submenuItems ul.sub-nav li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  display: inline-block;
  width: 0.7rem;
  border-top: solid 1px #fff;
}
.footer-sp__submenuItems ul.sub-nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer-sp__copy p {
  color: #979797;
  font-size: 0.75rem;
  padding-top: 60px;
  text-align: center;
}

#page-top {
  position: fixed;
  z-index: 999;
}
#page-top a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 52px;
  height: 52px;
  background: #E60012;
  border: 2px solid #fff;
  border-radius: 50%;
}
@media (min-width: 768px) {
  #page-top a {
    width: 64px;
    height: 64px;
  }
}
#page-top a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  #page-top a:hover {
    opacity: 0.5;
  }
}
#page-top a span.arrow-top {
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 5px;
}
@media (min-width: 768px) {
  #page-top a span.arrow-top {
    width: 16px;
    height: 16px;
  }
}

.cta_contact {
  text-align: center;
  padding-top: 60px;
}
.cta_contact a {
  max-width: 180px;
  padding: 10px 40px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .cta_contact a {
    max-width: 160px;
    padding: 10px 20px;
  }
}
@media (min-width: 992px) {
  .cta_contact a {
    max-width: 180px;
    padding: 10px 40px;
  }
}
.cta_contact a i {
  color: #001f3a;
  padding-right: 10px;
}
.cta_contact a span {
  color: #001f3a;
}

.pdf_btn {
  text-align: center;
}
.pdf_btn a {
  max-width: 180px;
  padding: 10px 40px;
  text-align: center;
  background: #001F3A;
  border-radius: 4px;
}
.pdf_btn a i {
  color: #fff;
  padding-right: 10px;
}
.pdf_btn a span {
  color: #fff;
}

.info_area {
  text-align: center;
  padding: 60px 15px 0;
}
.info_area p {
  color: #fff;
  font-size: 1rem;
}
.info_area p:nth-child(1) {
  font-size: 1.25rem;
  padding-bottom: 30px;
}
.info_area p:nth-child(2) {
  padding-bottom: 30px;
}

.en-font {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}

.font-small {
  font-size: 0.75rem;
  line-height: 1.8;
}

h2.h2-ttl2 {
  text-align: center;
}
@media (min-width: 768px) {
  h2.h2-ttl2 {
    text-align: left;
  }
}
h2.h2-ttl2 p:nth-child(1) {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  h2.h2-ttl2 p:nth-child(1) {
    font-size: 1rem;
  }
}
h2.h2-ttl2 p:nth-child(2) {
  font-size: 1.25rem;
  padding-top: 4px;
  font-weight: bold;
}
@media (min-width: 768px) {
  h2.h2-ttl2 p:nth-child(2) {
    font-size: 3rem;
    font-size: 2vw;
  }
}
h2.h2-ttl {
  text-align: center;
}
h2.h2-ttl p:nth-child(1) {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  h2.h2-ttl p:nth-child(1) {
    font-size: 1rem;
  }
}
h2.h2-ttl p:nth-child(2) {
  font-size: 1.25rem;
  padding-top: 4px;
  font-weight: bold;
}
@media (min-width: 768px) {
  h2.h2-ttl p:nth-child(2) {
    font-size: 3rem;
    font-size: 2vw;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 auto;
  padding: 1em 2em;
  color: #E60012;
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #E60012;
  border-right: 1px solid #E60012;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: #E60012 1px solid;
}

@media (min-width: 768px) {
  .product-wrap {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
  }
}
.product-wrap p {
  text-align: center;
}
@media (min-width: 768px) {
  .product-wrap > div.product-items {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-wrap > div.product-items {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .product-wrap > div.product-items a {
    border-left: 1px solid #e3e9e9;
    width: 240px;
    position: relative;
    padding: 8px 0;
    text-align: center;
  }
  .product-wrap > div.product-items a:last-child {
    border-right: 1px solid #e3e9e9;
  }
  .product-wrap > div.product-items a p {
    text-align: center;
  }
  .product-wrap > div.product-items a p.current {
    color: #E60012;
  }
  .product-wrap > div.product-items a p:nth-child(1) {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .product-wrap > div.product-items a p:nth-child(1) {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .product-wrap > div.product-items a p:nth-child(2) {
    font-size: 0.625rem;
    color: #E60012;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .product-wrap > div.product-items a p:nth-child(2) {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .product-wrap > div.product-items a span {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  .product-wrap > div.product-items a span::before {
    position: absolute;
    content: "";
    bottom: 4px;
    left: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid #E60012;
    border-right: 1px solid #E60012;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

button.btn-form {
  width: 188px;
  display: block;
  margin: 0 auto;
  height: 50px;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
button.btn-active {
  border: 1px solid #E60012;
  background: #fff;
  color: #E60012;
}
button.btn-active:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  background: #E60012;
}
button.btn-back {
  border: 1px solid #979797;
  background: #fff;
  color: #232323;
}
button.btn-back:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #232323;
  background: #979797;
}

.nav-slide {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: -360px;
  background: #001F3A;
  width: 400px;
  height: 100%;
  z-index: 9999;
}
.nav-slide__icon > div {
  display: block;
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 9999;
}
@media (min-width: 1400px) {
  .nav-slide__icon > div {
    top: 54px;
  }
}
.nav-slide__icon > div .nav-slide {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: -360px;
  background: #001F3A;
  width: 400px;
  height: 100%;
  z-index: 9998;
}
.nav-slide__icon > div .nav-slide__icon > div {
  display: block;
  position: absolute;
  top: 30px;
  right: 14px;
  z-index: 9999;
}
.nav-slide__icon > div .nav-slide__icon span {
  color: #fff;
  position: relative;
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: right;
  font-size: 0.875rem;
  z-index: 9999;
}
.nav-slide__icon > div .nav-slide__icon span::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: #001F3A 1px solid;
  background: #fff;
}
.nav-slide__icon > div .nav-slide__icon span::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #001F3A;
  border-right: 1px solid #001F3A;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-slide__icon > div .nav-slide__menu {
  padding: 30px;
  padding-left: 60px;
  padding-top: 0;
}
.nav-slide__icon > div .nav-slide__menu > div {
  padding-bottom: 10px;
}
.nav-slide__icon > div .nav-slide__menu > div a {
  color: #fff;
  position: relative;
}
.nav-slide__icon > div .nav-slide__menu > div a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-right: 1px solid red;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-slide__icon > div .nav-slide__menu > div ul {
  padding-left: 30px;
}
.nav-slide__icon > div .nav-slide__menu > div ul li {
  padding-top: 10px;
}
.nav-slide__icon > div .nav-slide__menu > div ul li a {
  font-size: 0.875rem;
}
.nav-slide__icon > div _::-webkit-full-page-media,
.nav-slide__icon > div _:future,
.nav-slide__icon > div :root .nav-slide__icon > div {
  right: 34px;
}
.nav-slide__icon span {
  color: #fff;
  position: relative;
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: right;
  font-size: 0.875rem;
  z-index: 9999;
}
.nav-slide__icon span::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: #001F3A 1px solid;
  background: #fff;
}
.nav-slide__icon span::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #001F3A;
  border-right: 1px solid #001F3A;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-slide__menu {
  padding: 30px;
  padding-left: 60px;
  padding-top: 0;
}
.nav-slide__menu > div {
  padding-bottom: 10px;
}
@media (min-width: 1400px) {
  .nav-slide__menu > div {
    padding-bottom: 20px;
  }
}
.nav-slide__menu > div a {
  color: #fff;
  position: relative;
  font-size: 0.75rem;
}
@media (min-width: 1400px) {
  .nav-slide__menu > div a {
    font-size: 0.875rem;
  }
}
.nav-slide__menu > div a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-slide__menu > div a.logo-resonac {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-slide__menu > div a.logo-resonac p {
  font-size: 0.875rem;
}
.nav-slide__menu > div a.logo-resonac p:nth-child(1) {
  color: #fff;
}
.nav-slide__menu > div a.logo-resonac p:nth-child(2) img {
  max-width: 100px;
  padding-bottom: 4px;
}
.nav-slide__menu > div a.logo-resonac p:nth-child(2)::before {
  content: "［";
  color: #fff;
}
.nav-slide__menu > div a.logo-resonac p:nth-child(2)::after {
  content: "］";
  color: #fff;
}
.nav-slide__menu > div ul {
  padding-left: 30px;
}
.nav-slide__menu > div ul li {
  padding-top: 10px;
}
.nav-slide__menu > div ul li a {
  font-size: 0.75rem;
}
@media (min-width: 1400px) {
  .nav-slide__menu > div ul li a {
    font-size: 0.875rem;
  }
}

_::-webkit-full-page-media,
_:future,
:root .nav-slide__icon > div {
  right: 34px;
}

.mv div.mv-slider {
  padding-top: 50px;
  position: relative;
}
@media (min-width: 992px) {
  .mv div.mv-slider {
    padding-top: 0;
  }
}
.mv div.mv-slider p {
  letter-spacing: 0.12em;
}
.mv div.mv-slider p.mv-title {
  font-size: 1.5rem;
  position: absolute;
  bottom: 10%;
  right: 15px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .mv div.mv-slider p.mv-title {
    font-size: 3rem;
    font-size: 3vw;
    bottom: 40%;
    right: 14%;
  }
}
.mv div.mv-slider p.mv-white {
  color: #fff;
}
.mv div.mv-slider p.mv-black {
  color: #232323;
}
.mv__foot-inner {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .mv__foot-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    padding: 0 4%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mv__foot-inner > p {
  text-align: center;
}
@media (min-width: 992px) {
  .mv__foot-inner > p {
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 700;
    line-height: 1.8;
    padding-left: 10px;
    width: 30%;
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .mv__foot-inner > p {
    font-size: 1.4vw;
  }
}
.mv__foot {
  background: #f7f7f7;
  padding: 30px 0;
}
@media (min-width: 992px) {
  .mv__foot {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .mv__foot div.nav-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mv__foot div a {
  display: block;
  padding-top: 30px;
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
@media (min-width: 992px) {
  .mv__foot div a {
    margin-left: 4%;
    padding-top: 0;
  }
}
.mv__foot div a div.nav-img {
  width: 100%;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 992px) {
  .mv__foot div a div.nav-img {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .mv__foot div a div.nav-img {
    max-width: 320px;
  }
}
.mv__foot div a div.nav-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mv__foot div a div.nav-txt p {
  color: #fff;
  text-align: center;
  fill: #000;
  white-space: nowrap;
  text-shadow: 4px 4px 8px #111111;
}
.mv__foot div a div.nav-txt p:nth-child(1) {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .mv__foot div a div.nav-txt p:nth-child(1) {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .mv__foot div a div.nav-txt p:nth-child(1) {
    font-size: 0.8vw;
  }
}
.mv__foot div a div.nav-txt p:nth-child(2) {
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .mv__foot div a div.nav-txt p:nth-child(2) {
    font-size: 0.8125rem;
  }
}
.mv__foot div a div.nav-txt span {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.home-product {
  padding-top: 60px;
}
.home-product__tab {
  list-style: none;
  padding-top: 60px;
  width: 100%;
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  cursor: pointer;
}
@media (min-width: 768px) {
  .home-product__tab {
    padding-left: 15px;
  }
}
.home-product__tab li {
  width: calc(50% - 15px);
  background: #f7f7f7;
  color: #aaaaaa;
  text-align: center;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .home-product__tab li {
    width: 266px;
  }
}
.home-product__tab li.active {
  background: #fff;
  color: #001F3A;
  border-top: 1px solid #001F3A;
  border-left: 1px solid #001F3A;
  border-right: 1px solid #001F3A;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}
.home-product__list {
  border-top: 1px solid #001F3A;
  padding: 30px 15px 0;
}
@media (min-width: 768px) {
  .home-product__list {
    padding-top: 60px;
    padding-left: 55px;
  }
}
.home-product__list > div ul.tab_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-product__list > div ul.tab_sub a {
  width: 33.3333333333%;
  margin-right: 2%;
}
@media (min-width: 768px) {
  .home-product__list > div ul.tab_sub a {
    width: 161.3333333333px;
    margin-right: 24px;
  }
}
.home-product__list > div ul.tab_sub a li {
  text-align: center;
  position: relative;
  font-size: 0.75rem;
  background: #f7f7f7;
  padding: 5px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .home-product__list > div ul.tab_sub a li {
    font-size: 0.875rem;
  }
}
.home-product__list > div ul.tab_sub a li:last-child {
  margin-right: 0;
}
.home-product__list > div ul.tab_sub a li.active {
  background-color: #001F3A;
  color: #fff;
  padding: 5px;
}
.home-product__list > div ul.tab_sub a li.active::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 8px solid #001f3a;
  border-bottom: 0;
}
.home-product__list > div ul.tab_sub li.left-tab {
  text-align: center;
  position: relative;
  margin-right: 2%;
  font-size: 0.75rem;
  background: #f7f7f7;
  padding: 5px;
  cursor: pointer;
  width: 33.3333333333%;
}
@media (min-width: 768px) {
  .home-product__list > div ul.tab_sub li.left-tab {
    font-size: 0.875rem;
    width: 161.3333333333px;
    margin-right: 24px;
  }
}
.home-product__list > div ul.tab_sub li.left-tab.active {
  background-color: #001F3A;
  color: #fff;
  padding: 5px;
}
.home-product__list > div ul.tab_sub li.left-tab.active::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 8px solid #001f3a;
  border-bottom: 0;
}
.home-product__list > div div.tab-flex {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .home-product__list > div div.tab-flex {
    padding-top: 60px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    max-width: 1080px;
  }
}
.home-product__list > div div.tab-flex div.tab-item {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .home-product__list > div div.tab-flex div.tab-item {
    -ms-flex-preferred-size: calc((100% - 100px) / 3);
        flex-basis: calc((100% - 100px) / 3);
    padding-top: 0;
  }
}
.home-product__list > div div.tab-flex div.tab-item a {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .home-product__list > div div.tab-flex div.tab-item a {
    -ms-flex-preferred-size: calc((100% - 100px) / 3);
        flex-basis: calc((100% - 100px) / 3);
  }
}
.home-product__list > div div.tab-flex div.tab-item a div {
  overflow: hidden;
  margin: 0 auto;
}
.home-product__list > div div.tab-flex div.tab-item a div img {
  width: 100%;
}
@media (min-width: 768px) {
  .home-product__list > div div.tab-flex div.tab-item a div img {
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  .home-product__list > div div.tab-flex div.tab-item a div img:hover {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    -webkit-transition: 1s all;
    transition: 1s all;
  }
}
.home-product__list > div div.tab-flex div.tab-item a div.txt-area {
  padding: 10px;
}
.home-product__list > div div.tab-flex div.tab-item a div.txt-area p {
  background: #fff;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .home-product__list > div div.tab-flex div.tab-item a div.txt-area p {
    font-size: 1rem;
  }
}
.home-product__list > div div.tab-flex div.tab-item a div.p-centy {
  position: relative;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-centy::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 40px;
  background-image: url(../../assets/img/products/chuck/icon-centy.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-exs {
  position: relative;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-exs::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 40px;
  background-image: url(../../assets/img/products/chuck/icon-exs.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon1 {
  position: relative;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon1::after {
  content: "防湿";
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  width: 24%;
  padding: 0.6%;
  background: #2F8DDF;
  vertical-align: middle;
  position: absolute;
  bottom: 24px;
  left: 10px;
  border-radius: 4px;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon2 {
  position: relative;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon2::after {
  content: "防錆";
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  width: 24%;
  padding: 0.6%;
  background: #D95489;
  vertical-align: middle;
  position: absolute;
  bottom: 24px;
  left: 10px;
  border-radius: 4px;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon3 {
  position: relative;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon3::after {
  content: "防災";
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  width: 24%;
  padding: 0.6%;
  background: #E66B00;
  vertical-align: middle;
  position: absolute;
  bottom: 24px;
  left: 10px;
  border-radius: 4px;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon4 {
  position: relative;
}
.home-product__list > div div.tab-flex div.tab-item a div.p-icon4::after {
  content: "その他";
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  width: 24%;
  padding: 0.6%;
  background: #7DC108;
  vertical-align: middle;
  position: absolute;
  bottom: 24px;
  left: 10px;
  border-radius: 4px;
}

.home-product__list .inner,
.home-product__list .inner .tab-active {
  display: none;
}

.home-product__list .inner.active {
  display: block;
}

.home-product__list .inner .tab-active:nth-of-type(1) {
  display: block;
}

.earth {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .earth {
    padding-top: 140px;
  }
}
@media (min-width: 1200px) {
  .earth__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .earth__img {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .earth__img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .earth__img img {
    height: auto;
  }
}
.earth__txt {
  background: #f7f7f7;
}
@media (min-width: 1200px) {
  .earth__txt {
    width: 50%;
    position: relative;
  }
}
@media (min-width: 768px) {
  .earth__txt {
    width: 100%;
  }
}
.earth div.inner {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px 30px;
}
@media (min-width: 1200px) {
  .earth div.inner {
    width: 80%;
    margin: 0 auto;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .earth div.inner {
    padding: 15px 15px 30px 55px;
  }
}
.earth div.head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .earth div.head {
    padding-top: 0;
  }
}
.earth div.head > div img {
  max-width: 80px;
}
@media (min-width: 768px) {
  .earth div.head > div img {
    max-width: 100px;
  }
}
.earth div.head > h2 {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .earth div.head > h2 {
    display: block;
  }
}
@media (min-width: 768px) {
  .earth div.head > h2 p {
    line-height: 1.6;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .earth div.head > h2 p:nth-child(2) {
    font-size: 1.7vw;
  }
}
.earth div.foot p {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .earth div.foot p {
    padding-top: 10px;
  }
}
@media (min-width: 1400px) {
  .earth div.foot p {
    padding-top: 40px;
  }
}

.news {
  padding: 80px 15px;
}
@media (min-width: 768px) {
  .news {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.news__wrap {
  background: #F7F7F7;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
}
@media (min-width: 768px) {
  .news__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px;
  }
}
.news__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0 8px;
}
@media (min-width: 768px) {
  .news__time {
    padding-top: 0;
  }
}
.news__time time {
  font-size: 0.875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .news__time time {
    font-size: 1rem;
  }
}
.news__time span {
  color: #fff;
  background: #E60012;
  padding: 2px 12px;
  font-size: 0.75rem;
  display: block;
  margin-left: 15px;
}
.news__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .news__txt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .news__txt p {
    padding-left: 60px;
  }
}

.product {
  padding: 30px 0 60px 0;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .product {
    padding-bottom: 140px;
    padding-left: 55px;
  }
}
.product__mv-img {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .product__mv-img {
    padding: 60px 0;
  }
}
.product__mv-img img {
  width: 100%;
}
.product__sec {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .product__sec {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 60px;
  }
}
.product__sec section div.pro-txt {
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 118px;
  text-shadow: 4px 4px 8px #111111;
}
@media (min-width: 768px) {
  .product__sec section div.pro-txt {
    height: 162px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product__sec section div.pro-txt p {
  z-index: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .product__sec section div.pro-txt p:nth-child(1) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #fff;
  }
}
.product__sec section div.pro-list {
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .product__sec section div.pro-list {
    padding-top: 60px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1080px;
  }
}
.product__sec section div.pro-list div.pro-grid {
  -ms-flex-preferred-size: calc((100% - 100px) / 3);
      flex-basis: calc((100% - 100px) / 3);
  margin-bottom: 30px;
}
.product__sec section div.pro-list div a {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  width: 100%;
}
.product__sec section div.pro-list div a div {
  overflow: hidden;
}
.product__sec section div.pro-list div a div.txt-area {
  padding: 20px 10px 0;
}
.product__sec section div.pro-list div a div.p-centy {
  position: relative;
}
.product__sec section div.pro-list div a div.p-centy::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 40px;
  background-image: url(../../assets/img/products/chuck/icon-centy.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
  left: 10px;
}
.product__sec section div.pro-list div a div.p-exs {
  position: relative;
}
.product__sec section div.pro-list div a div.p-exs::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 40px;
  background-image: url(../../assets/img/products/chuck/icon-exs.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
  left: 10px;
}
.product__sec section div.pro-list div a div img {
  width: 100%;
}
@media (min-width: 768px) {
  .product__sec section div.pro-list div a div img {
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  .product__sec section div.pro-list div a div img:hover {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    -webkit-transition: 1s all;
    transition: 1s all;
  }
}

.product-tag {
  color: #979797;
  font-size: 0.75rem !important;
  padding-top: 8px;
}

.pro-img01 {
  background: url(../img/products/bg-sp01.webp) no-repeat;
  position: relative;
}
.pro-img01::before {
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-position: 100%;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .pro-img01 {
    background: url(../img/products/bg-pc01.webp) no-repeat;
  }
}

.pro-img02 {
  background: url(../img/products/bg-sp02.webp) no-repeat;
  position: relative;
}
.pro-img02::before {
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-position: 100%;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .pro-img02 {
    background: url(../img/products/bg-pc02.webp) no-repeat;
  }
}

.pro-img03 {
  background: url(../img/products/bg-sp03.webp) no-repeat;
  position: relative;
}
.pro-img03::before {
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-position: 100%;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .pro-img03 {
    background: url(../img/products/bg-pc03.webp) no-repeat;
  }
}

.company__inner {
  padding-bottom: 90px;
}
@media (min-width: 768px) {
  .company__inner {
    padding-bottom: 140px;
  }
}
.company__mv-img {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .company__mv-img {
    padding: 60px 0;
  }
}
.company__mv-img img {
  width: 100%;
}
.company__message {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .company__message {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding-left: 55px;
  }
}
.company__message > p.mes-lead {
  text-align: center;
  padding-top: 30px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .company__message > p.mes-lead {
    padding-top: 60px;
    font-size: 1.25rem;
  }
}
.company__message > div {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .company__message > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .company__message > div div.mes-txt {
    width: 50%;
    margin-right: 30px;
  }
}
.company__message > div div.mes-txt section {
  padding-bottom: 30px;
}
.company__message > div div.mes-txt section h3 {
  padding-bottom: 20px;
}
.company__message > div div.mes-txt section p {
  color: #676767;
  padding-bottom: 20px;
  font-size: 0.875rem;
}
.company__message > div div.mes-txt section p:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .company__message > div div.mes-txt section p {
    padding-bottom: 40px;
    font-size: 1rem;
    line-height: 1.8;
  }
}
.company__table {
  padding: 60px 15px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .company__table {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 140px;
    padding-left: 55px;
  }
}
.company__table > div {
  padding-top: 30px;
}
.company__table > div table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .company__table > div table {
    max-width: 1080px;
    margin: 0 auto;
  }
}
.company__table > div table tr {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #e3e9e9;
}
.company__table > div table tr th {
  width: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
  vertical-align: top;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .company__table > div table tr th {
    width: 40%;
  }
}
.company__table > div table tr td {
  width: 300px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.company__table > div table tr td dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 30px;
}
.company__table > div table tr td dl:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .company__table > div table tr td dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.company__table > div table tr td dl.p-yohaku {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .company__table > div table tr td dt {
    white-space: nowrap;
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 20px;
  }
  .company__table > div table tr td dt::after {
    border-top: 1px solid #e3e9e9;
    content: "";
    width: 100%;
    margin-left: 20px;
  }
}
.company__table > div table tr td dd {
  font-size: 0.875rem;
  padding-top: 6px;
}
@media (min-width: 768px) {
  .company__table > div table tr td dd {
    font-size: 1rem;
    padding-top: 0;
  }
}
.company__table > div table tr td dd div {
  padding-bottom: 20px;
}
.company__table > div table tr td dd div > div {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .company__table > div table tr td dd div > div.p-telfax > div {
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.company__table > div table tr td dd div > div.p-telfax > div p:nth-child(1) {
  padding-right: 10px;
}
.company__table > div table tr td div.com-map {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .company__table > div table tr td div.com-map {
    height: 220px;
    width: 100%;
  }
}
.company__table > div table tr td div.com-map iframe {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .company__table > div table tr td div.com-map iframe {
    height: 260px;
  }
}

p.p-sml {
  color: #676767;
  font-size: 0.75rem;
}

.inquiry {
  padding: 30px 0 60px 0;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .inquiry {
    padding-bottom: 140px;
    margin-top: 0;
    padding-left: 55px;
    padding-right: 15px;
  }
}
.inquiry__mv-img {
  padding: 0 0 30px;
}
@media (min-width: 768px) {
  .inquiry__mv-img {
    padding: 60px 0;
  }
}
.inquiry__mv-img img {
  width: 100%;
}
@media (min-width: 768px) {
  .inquiry__sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.inquiry__item {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .inquiry__item {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px 0 55px;
    margin-top: 80px;
  }
}
.inquiry__item section {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .inquiry__item section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 60px 0 0;
  }
  .inquiry__item section:nth-child(1) {
    border-bottom: 1px solid #e3e9e9;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .inquiry__item section > div.pro-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.inquiry__item section > div.pro-txt h3 {
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .inquiry__item section > div.pro-txt h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
  }
  .inquiry__item section > div.pro-txt h3::after {
    border-top: 1px solid #e3e9e9;
    content: "";
    width: 100%; /* 線の長さ */
    margin-left: 1em;
  }
}
@media (min-width: 768px) {
  .inquiry__item section > div.pro-txt h3 {
    padding-right: 60px;
    padding-top: 0;
    font-size: 1.25rem;
  }
}
.inquiry__item section > div.pro-txt div > div {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .inquiry__item section > div.pro-txt div > div {
    padding-bottom: 30px;
    padding-top: 0;
  }
}
.inquiry__item section > div.pro-txt div > div p:nth-child(2) {
  color: #676767;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .inquiry__item section > div.pro-map {
    height: 240px;
    width: 100%;
    padding-top: 30px;
  }
}
.inquiry__item section > div.pro-map iframe {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .inquiry__item section > div.pro-map iframe {
    height: 260px;
    width: 500px;
  }
}
@media (min-width: 992px) {
  .inquiry__item section > div.pro-map iframe {
    height: 260px;
    width: 580px;
  }
}
.inquiry__mail {
  padding-top: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .inquiry__mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.inquiry__mail p:nth-child(1) {
  padding-right: 10px;
}
.inquiry__mail p:nth-child(1) a {
  color: #E60012;
  text-decoration: underline;
}
.inquiry__mail p:last-child a {
  font-weight: bold;
}

.inquiry {
  padding: 0;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .inquiry {
    padding-bottom: 140px;
  }
}
.inquiry p.form-head {
  text-align: center;
  padding: 20px 15px 30px;
}
@media (min-width: 768px) {
  .inquiry p.form-head {
    padding-bottom: 0;
  }
}
.inquiry__form {
  margin: 0 15px;
}
@media (min-width: 768px) {
  .inquiry__form {
    background: #fff;
    max-width: 1080px;
    margin: 0 auto;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .inquiry form {
    padding: 60px;
    margin-left: 55px;
    margin-left: 15px;
  }
}
.inquiry form table {
  width: 100%;
}
.inquiry form table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 0;
  border-bottom: 1px solid #e3e9e9;
}
@media (min-width: 768px) {
  .inquiry form table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.inquiry form table tr:first-child {
  padding-top: 0;
}
.inquiry form table th {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 15px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .inquiry form table th {
    width: 30%;
    padding-bottom: 0;
  }
}
.inquiry form table th span.label-required {
  background: #E60012;
  color: #fff;
  font-size: 0.75rem;
  height: 24px;
  line-height: 24px;
  padding: 0px 6px 4px;
}
.inquiry form table td {
  width: 100%;
}
@media (min-width: 768px) {
  .inquiry form table td {
    width: 70%;
  }
}
.inquiry form table td input {
  width: 100%;
  border: none;
  background-color: #f2f3f3;
  height: 50px;
  padding: 0 15px;
  font-family: "Noto Sans JP", sans-serif;
}
.inquiry form table td textarea {
  width: 100%;
  border: none;
  background-color: #f2f3f3;
  height: 140px;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  resize: vertical;
}
@media (min-width: 768px) {
  .inquiry form table td textarea {
    height: 200px;
  }
}
.inquiry form table td p.error {
  color: #E60012;
  font-size: 12px;
  padding-top: 4px;
}
.inquiry form table td.zipcode-item > input {
  max-width: 200px;
  background-color: #f2f3f3;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

.form-confirm__inner {
  margin-bottom: 100px;
  padding: 100px 15px 0;
}
@media (min-width: 768px) {
  .form-confirm__inner {
    padding-top: 40px;
    padding-left: 55px;
  }
}
.form-confirm__inner h1 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .form-confirm__inner h1 {
    font-size: 3rem;
    font-size: 2vw;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .form-confirm__inner form {
    background: #fff;
    max-width: 1080px;
    margin: 0 auto;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 60px;
  }
}
.form-confirm__inner table {
  width: 100%;
}
.form-confirm__inner table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 0;
  border-bottom: 1px solid #e3e9e9;
}
@media (min-width: 768px) {
  .form-confirm__inner table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.form-confirm__inner table tr:first-child {
  padding-top: 0;
}
.form-confirm__inner table th {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 15px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .form-confirm__inner table th {
    width: 30%;
    padding-bottom: 0;
  }
}
.form-confirm__inner table th span.label-required {
  background: #E60012;
  color: #fff;
  font-size: 0.75rem;
  height: 24px;
  line-height: 24px;
  padding: 0px 6px 4px;
}
.form-confirm__inner table td {
  width: 100%;
}
@media (min-width: 768px) {
  .form-confirm__inner table td {
    width: 70%;
  }
}
.form-confirm__inner table td input {
  width: 100%;
  border: none;
  background-color: #f2f3f3;
  height: 50px;
  padding: 0 15px;
  font-family: "Noto Sans JP", sans-serif;
}
.form-confirm__inner table td textarea {
  width: 100%;
  border: none;
  background-color: #f2f3f3;
  height: 140px;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  resize: vertical;
}
@media (min-width: 768px) {
  .form-confirm__inner table td textarea {
    height: 200px;
  }
}
.form-confirm__inner div.confirm-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .form-confirm__inner div.confirm-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 440px;
    margin: 0 auto;
  }
}

.form-finish {
  margin-bottom: 100px;
  padding: 100px 15px 0;
}
@media (min-width: 768px) {
  .form-finish {
    padding-top: 40px;
  }
}
.form-finish > p {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .form-finish > p {
    font-size: 3rem;
    font-size: 2vw;
    padding-bottom: 60px;
  }
}

.product_under__inner {
  padding: 0 15px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .product_under__inner {
    padding-left: 55px;
    margin: 0 auto;
    max-width: 1080px;
    padding: 80px 15px 170px 55px;
  }
}
.product_under__mv {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .product_under__mv {
    padding: 60px 0 0;
  }
}
.product_under__mv div.mv-img {
  position: relative;
}
.product_under__mv div.mv-img img {
  width: 100%;
}
.product_under__mv div.mv-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .product_under__mv div.mv-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product_under__mv div.mv-txt p {
  color: #fff;
  text-shadow: 4px 4px 8px #111111;
  font-size: 1.2vw;
}
@media (max-width: 767px) {
  .product_under__mv div.mv-txt p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .product_under__mv div.mv-txt p:nth-child(1) {
    border-right: 1px solid #fff;
    padding-right: 20px;
    margin-right: 20px;
  }
}
.product_under div.pro-txt {
  margin-top: 30px;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 118px;
  text-shadow: 4px 4px 8px #111;
}
@media (min-width: 768px) {
  .product_under div.pro-txt {
    height: 162px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0px;
  }
}
.product_under div.pro-txt p {
  z-index: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .product_under div.pro-txt p:nth-child(1) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #fff;
  }
}
.product_under div.img-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .product_under div.img-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product_under div.img-flex img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .product_under div.img-flex img {
    max-width: 46%;
  }
}
.product_under__head h2 {
  padding-top: 30px;
  font-size: 1.875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .product_under__head h2 {
    font-size: 2.25rem;
    padding-top: 60px;
  }
}
.product_under__head h2 img {
  max-width: 120px;
}
@media (min-width: 768px) {
  .product_under__head h2 img {
    max-width: 180px;
  }
}
.product_under__head > p {
  font-size: 1rem;
  font-weight: bold;
  padding-top: 6px;
}
@media (min-width: 768px) {
  .product_under__head > p {
    font-size: 1.5rem;
  }
}
.product_under__head div img {
  margin-top: 30px;
}
.product_under__sec section {
  padding-top: 60px;
}
.product_under__sec section.pdf-border {
  border-top: 1px solid #ccc;
  margin-top: 60px;
}
.product_under__sec section h3 {
  padding-bottom: 20px;
  color: #9fa0a0;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .product_under__sec section h3 {
    font-size: 1.875rem;
    padding-bottom: 30px;
  }
}
.product_under__sec section ul li {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .product_under__sec section ul li {
    padding-bottom: 10px;
  }
}
.product_under__sec section ul li:last-child {
  padding-bottom: 0;
}
.product_under__sec section ul li::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  background: #232323;
  border-radius: 100%;
  margin-right: 10px;
}
.product_under__sec section table {
  border-collapse: collapse;
  margin-bottom: 14px;
}
.product_under__sec section div.pdf-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .product_under__sec section div.pdf-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .product_under__sec section div.pdf-flex p {
    margin-bottom: 20px;
  }
}
.product_under__sec section div.adobe-flex {
  margin-top: 30px;
}
.product_under__sec section div.adobe-flex a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0033cc;
}
@media (max-width: 767px) {
  .product_under__sec section div.adobe-flex a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 0.875rem;
  }
}
.product_under__sec section div.adobe-flex a img {
  max-width: 158px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .product_under__sec section div.adobe-flex a img {
    margin-bottom: 10px;
  }
}
.product_under__sec section div.item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product_under__sec section div.item-flex:last-child {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .product_under__sec section div.item-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .product_under__sec section div.item-flex div p {
    padding-right: 30px;
  }
}
.product_under__sec section div.item-flex div p:nth-child(1) {
  font-weight: bold;
}
.product_under__sec section div.item-flex div img {
  width: 100%;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .product_under__sec section div.item-flex div img {
    width: 400px;
    padding-top: 0;
  }
}
.product_under__sec section div.table-wrap img {
  max-width: 738px;
}
.product_under__sec section div.table-wrap div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 60px 0 20px;
}
@media (min-width: 768px) {
  .product_under__sec section div.table-wrap div {
    max-width: 738px;
  }
}
.product_under__sec section div.table-wrap div.padding-none {
  padding-top: 0;
}
.product_under__sec section div.table-wrap div p {
  position: relative;
}
.product_under__sec section div.table-wrap div p::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  background: #9fa0a0;
  border-radius: 100%;
  margin-right: 10px;
}
.product_under__sec section div.table-wrap div img {
  max-width: 120px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .product_under__sec section div.table-wrap div img {
    max-width: 180px;
  }
}

.tbl-01 tr {
  border-top: 1px solid #d1d1d1;
}
.tbl-01 tr:last-child {
  border-bottom: 1px solid #d1d1d1;
}
.tbl-01 tr th {
  padding: 10px;
  width: 30%;
  background: #eeeeee;
  text-align: left;
}
@media (min-width: 768px) {
  .tbl-01 tr th {
    padding: 20px;
  }
}
.tbl-01 tr td {
  padding: 10px;
}
@media (min-width: 768px) {
  .tbl-01 tr td {
    padding: 20px;
  }
}
.tbl-01 tr td span {
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .tbl-02 {
    width: 100%;
  }
  .tbl-02.scroll {
    white-space: nowrap;
    overflow: auto;
  }
}
.tbl-02 tr {
  border-top: 1px solid #d1d1d1;
}
.tbl-02 tr:last-child {
  border-bottom: 1px solid #d1d1d1;
}
.tbl-02 th {
  padding: 10px;
  width: 25%;
  background: #eeeeee;
  text-align: left;
}
@media (min-width: 768px) {
  .tbl-02 th {
    padding: 20px;
    width: 184.5px;
  }
}
.tbl-02 th.table-wide {
  min-width: 320px;
}
@media (min-width: 768px) {
  .tbl-02 th.table-wide {
    min-width: 380px;
  }
}
.tbl-02 td {
  padding: 10px;
  border-right: 1px solid #d1d1d1;
}
.tbl-02 td:last-child {
  border-right: none;
}
@media (min-width: 768px) {
  .tbl-02 td {
    padding: 20px;
  }
}
.tbl-02 td span {
  font-size: 0.75rem;
}

.padding60 {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .scroll {
    overflow: auto;
    white-space: nowrap;
  }
}

.scroll::-webkit-scrollbar {
  /*tableにスクロールバーを追加*/
  height: 5px;
}

.scroll::-webkit-scrollbar-track {
  /*tableにスクロールバーを追加*/
  background: #f1f1f1;
}

.scroll::-webkit-scrollbar-thumb {
  /*tableにスクロールバーを追加*/
  background: #bcbcbc;
}