@charset "UTF-8";
header#global_header {
  min-width: 0 !important;
  width: 100%;
}

#contents_wrap {
  min-width: 0 !important;
  width: 100%;
}

#contents {
  width: 100%;
}

#main {
  width: 100%;
}

#main #col_main {
  float: none;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 834px) {
  #main #col_main {
    padding: 0 20px;
  }
}

footer#global_footer {
  min-width: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-size: rem(16px);
}

body *:not(table *, i) {
  /* 
        font-weightは<b>タグが機能しなくなるので指定しない。
        line-heightは余計に高さが効いてしまうので指定しない。 => bxi.cssで効いてる可能性あり。
    */
  margin: 0;
}

i {
  line-height: 1;
}

img {
  vertical-align: bottom;
}

body a {
  text-decoration: none;
}
body button {
  padding: 0;
  border: none;
  background-color: transparent;
}
body b {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
body span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  counter-reset: number 0;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

li {
  list-style: none;
}

h3 {
  display: none;
}

img.imgL {
  max-width: 100%;
}

@media screen and (max-width: 640px) {
  img.imgL {
    max-width: 100%;
  }
}

#contents_wrap {
  margin-top: 150px;
}

.mail.title {
  display: none;
}

.header {
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 40px;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    display: block;
    position: absolute;
    z-index: 90;
    top: 0;
    background-color: #ffffff;
    width: 100vw;
    height: 100vh;
    left: -100%;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    padding-bottom: 100px;
    overflow-x: scroll;
  }
}
.header__nav.active {
  left: 0;
}
.header__ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  margin-right: 25px;
  padding-left: 0;
}
@media screen and (max-width: 1200px) {
  .header__ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    width: 100%;
    margin-top: 160px;
  }
}
.header__li-a, .header-contact__tel {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.header__li-a:link, .header__li-a:visited, .header-contact__tel:link, .header-contact__tel:visited {
  color: #333333;
}
@media screen and (max-width: 1200px) {
  .header__li-a, .header-contact__tel {
    font-size: 2rem;
  }
}
.header-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 40px 0 auto;
  gap: 15px;
}
@media screen and (max-width: 640px) {
  .header-contact {
    position: fixed;
    left: 0;
    bottom: 0;
    gap: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 90;
    width: 100vw;
    margin: 0;
  }
}
.header-contact__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .header-contact__tel {
    background-color: #ffffff;
    border: 1px solid #e5434a;
    padding: 10px;
    width: 50vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}
.header-contact__mail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  background-color: #e5434a;
  padding: 13px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.header-contact__mail:link, .header-contact__mail:visited {
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .header-contact__mail {
    border: 1px solid #e5434a;
    width: 50vw;
    gap: 5px;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

.logo {
  width: 15%;
  min-width: 120px;
}

.hm-button {
  position: fixed;
  top: 40px;
  right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 50px;
  z-index: 100;
  background-color: #e5434a;
  border-radius: 5px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .hm-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 640px) {
  .hm-button {
    right: 10px;
  }
}
.hm-button__span, .hm-button__span::before, .hm-button__span::after {
  content: "";
  display: block;
  height: 3px;
  width: 28px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.hm-button__span::before {
  bottom: 10px;
}
.hm-button__span::after {
  top: 10px;
}
.hm-button__span.active {
  background-color: rgba(255, 255, 255, 0);
}
.hm-button__span.active::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hm-button__span.active::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer {
  margin-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 70px;
  background-color: #636564;
}
@media screen and (max-width: 834px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10%;
  margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .footer__wrapper {
    gap: 5%;
  }
}
@media screen and (max-width: 834px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}

.address {
  margin-top: 30px;
  text-align: left;
}
.address > p {
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.address > p:first-child {
  font-size: 1.9rem;
}
.address > p:nth-child(2) {
  margin-top: 20px;
}

.map {
  width: 600px;
  margin-bottom: 0;
  aspect-ratio: 400/240;
}
@media screen and (max-width: 834px) {
  .map {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .map {
    aspect-ratio: 1/1;
  }
}

.small {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.mv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.mv > article {
  position: relative;
}
.mv > article > h1 {
  position: absolute;
  top: 40px;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left !important;
  margin-left: 55px;
  display: inline;
}
@media screen and (max-width: 1400px) {
  .mv > article > h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .mv > article > h1 {
    top: 20px;
    font-size: 4rem;
    margin-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .mv > article > h1 {
    font-size: 3rem;
    margin-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .mv > article > h1 {
    top: 5px;
    font-size: 2rem;
    margin-left: 0;
  }
}
.mv > article > h1 > span {
  background-color: #ffffff;
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 1px;
}
.mv > article > h1 > span:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .mv > article > h1 > span:not(:first-child) {
    margin-top: 5px;
  }
}
.mv > article > h1 > span::after {
  position: absolute;
  content: "";
  width: 96px;
  height: 96px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  top: 0;
  background-color: #ffffff;
}
@media screen and (max-width: 1400px) {
  .mv > article > h1 > span::after {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .mv > article > h1 > span::after {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 834px) {
  .mv > article > h1 > span::after {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 640px) {
  .mv > article > h1 > span::after {
    width: 32px;
    height: 32px;
  }
}
.mv > article > img {
  width: 100% !important;
  height: 100% !important;
}

#main #col_main {
  max-width: 1480px;
  margin: 0 auto;
}

.strength {
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 834px) {
  .strength {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.strength__h2 > article > h2 {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 1200px) {
  .strength__h2 > article > h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .strength__h2 > article > h2 {
    font-size: 3rem;
  }
}
.strength__h2 > article > div {
  font-size: 3.6rem;
  letter-spacing: 0.14em;
  color: #e5434a;
}
@media screen and (max-width: 1200px) {
  .strength__h2 > article > div {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 834px) {
  .strength__h2 > article > div {
    font-size: 2rem;
  }
}
.strength-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 75px 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .strength-point {
    display: block !important;
    gap: 75px 100px;
  }
}
.strength-point > .box {
  width: calc((100% - 200px) / 2);
  text-align: center;
}
@media screen and (max-width: 834px) {
  .strength-point > .box {
    width: 100%;
    margin-top: 50px;
  }
}
.strength-point > .box > article {
  position: relative;
  padding-top: 70px;
}
.strength-point > .box > article::before {
  position: absolute;
  content: "";
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #114b5f;
  top: 0px;
  left: 30px;
  z-index: 40;
}
@media screen and (max-width: 640px) {
  .strength-point > .box > article::before {
    left: 0;
  }
}
.strength-point > .box > article > img {
  width: 100%;
}
.strength-point > .box > article > div {
  margin-top: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #333333;
}
.strength-point > .box > article > div > p {
  position: absolute;
  top: 10px;
  left: 40px;
  color: #ffffff;
  z-index: 50;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .strength-point > .box > article > div > p {
    left: 10px;
  }
}
.strength-point > .box > article > div > p > span {
  font-size: 2.2rem;
}

.btn {
  text-align: center;
}

.strength__btn {
  font-size: 2.8rem;
  letter-spacing: 0.14em;
  background-color: #e5434a;
  text-align: center;
  padding: 20px 80px;
}
@media screen and (max-width: 834px) {
  .strength__btn {
    padding: 15px 40px;
    font-size: 2rem;
  }
}
.strength__btn:link, .strength__btn:visited {
  color: #ffffff;
}

.product {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.product__flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 834px) {
  .product__flex {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.product__flex > .box {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .product__flex > .box {
    width: 100%;
  }
}
.product__flex > .box {
  position: relative;
  z-index: 0;
}
.product__flex > .box:last-child {
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 834px) {
  .product__flex > .box:last-child {
    border-left: 0;
    border-top: 1px solid #ffffff;
  }
}
.product__flex > .box > article > h3 {
  display: none;
}
.product__flex > .box > article {
  z-index: 0;
}
.product__flex > .box > article::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.product__flex > .box > article > a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  will-change: opacity;
}
.product__flex > .box > article > div {
  display: block;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  padding-left: 20px;
  padding-right: 20px;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .product__flex > .box > article > div {
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .product__flex > .box > article > div {
    font-size: 2.6rem;
  }
}
.product__flex > .box > article > div > img {
  max-width: 72px;
  margin-left: 20px;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .product__flex > .box > article > div > img {
    max-width: 55px;
  }
}
@media screen and (max-width: 834px) {
  .product__flex > .box > article > div > img {
    max-width: 45px;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.breadcrumb__li, .breadcrumb__divide {
  font-size: 1.6rem;
}
.breadcrumb__divide {
  margin: 0 10px;
}
.breadcrumb__link:link, .breadcrumb__link:visited {
  color: #333333;
}

.eyecatch {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-size: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.3019607843);
  background-blend-mode: lighten;
}
.eyecatch > article > h1 {
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333333;
  text-shadow: 3px 3px 3px #ffffff;
}
@media screen and (max-width: 640px) {
  .eyecatch > article > h1 {
    font-size: 4rem;
  }
}
.eyecatch > article > div {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #e5434a;
  text-shadow: 3px 3px 2px #ffffff;
}
@media screen and (max-width: 640px) {
  .eyecatch > article > div {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1000px) {
  .dii__h1 > article > h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .dii__h1 > article > h1 {
    font-size: 2.6rem;
  }
}

.heading__h2 > article > h2 {
  font-size: 4.6rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .heading__h2 > article > h2 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .heading__h2 > article > h2 {
    font-size: 2.2rem;
  }
}
.heading__h2 > article > h2::after {
  position: absolute;
  z-index: 0;
  content: "";
  width: 101.5%;
  height: 4px;
  background-color: #e5434a;
  border-radius: 2px 50% 50% 2px;
  bottom: 5px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .heading__h2 > article > h2::after {
    bottom: 3px;
  }
}
@media screen and (max-width: 640px) {
  .heading__h2 > article > h2::after {
    bottom: 1px;
  }
}

.policy__h2 {
  margin-top: 60px;
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.policy__h2::after {
  position: absolute;
  z-index: 0;
  content: "";
  width: 101.5%;
  height: 4px;
  background-color: #114b5f;
  border-radius: 2px 50% 50% 2px;
  bottom: 5px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .policy__h2::after {
    bottom: 3px;
  }
}
@media screen and (max-width: 640px) {
  .policy__h2::after {
    bottom: 1px;
  }
}

.flex__row {
  max-width: 1000px;
  margin-right: auto !important;
  margin-left: auto !important;
}
.flex__row .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-bottom: 90px;
}
@media screen and (max-width: 834px) {
  .flex__row .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.flex__row .box:last-child {
  margin-bottom: 0;
}
.flex__row .box > img {
  display: inline-block;
  width: 12% !important;
  margin-right: 30px;
}
@media screen and (max-width: 834px) {
  .flex__row .box > img {
    width: 30% !important;
    margin: 0 auto;
  }
}
.flex__row .box > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
@media screen and (max-width: 834px) {
  .flex__row .box > div {
    width: 100%;
    margin: 0 auto;
  }
}
.flex__row .box > div > h3 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .flex__row .box > div > h3 {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .flex__row .box > div > h3 {
    font-size: 1.8rem;
  }
}
.flex__row .box > div > h3 > span {
  color: #ffffff;
  background-color: #114b5f;
  padding: 3px 7px;
  margin-right: 5px;
}
.flex__row .box > div > p {
  font-size: 1.6rem;
  margin-top: 20px;
}

.flex__link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.flex__link > .box {
  width: calc((100% - 120px) / 4);
  text-align: center;
  margin: 0 15px 20px;
}
@media screen and (max-width: 834px) {
  .flex__link > .box {
    width: calc((100% - 60px) / 3);
    margin: 0 10px 15px;
  }
}
@media screen and (max-width: 640px) {
  .flex__link > .box {
    width: calc((100% - 20px) / 2);
    margin: 0 5px 10px;
  }
}
.flex__link > .box:last-child {
  margin-right: auto;
}
.flex__link > .box > div {
  width: 100%;
  margin-right: 0;
  position: relative;
}
.flex__link > .box > div > a {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 30px;
  padding: 15px 20px 15px 20px;
  font-size: 1.8rem;
  background-color: #114b5f;
}
@media screen and (max-width: 640px) {
  .flex__link > .box > div > a {
    font-size: 1.6rem;
  }
}
.flex__link > .box > div > a:link, .flex__link > .box > div > a:visited {
  color: #ffffff;
}

.box > div > a > .fa-chevron-right {
  position: absolute;
  right: 15px;
  top: 35%;
}

.nut__img {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .nut__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}
.nut__img > .box {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 834px) {
  .nut__img > .box {
    width: 100%;
  }
}
.nut__img > img {
  width: 100%;
}

section div.company__list > dl > dt {
  font-size: 1.6rem;
  border: none;
  background-color: #ffffff;
  border-bottom: 1px solid #114b5f;
  padding: 0;
}
section div.company__list > dl:last-child > dt {
  border-bottom: 1px solid #114b5f;
}
section div.company__list > dl > dd {
  padding-left: 20px;
  font-size: 1.6rem;
  border: none;
  background-color: #ffffff;
  border-bottom: 1px solid #cfcfcf;
}
section div.company__list > dl:last-child > dd {
  border-bottom: 1px solid #cfcfcf;
}

.company__map {
  width: 100%;
  height: 400px;
}
.company__map > iframe {
  width: 100%;
  height: 100%;
}

.fa-file-lines,
.fa-pen-to-square {
  font-size: 3.2rem;
  margin-right: 10px;
}

.mailform > dl > dt {
  font-size: 1.8rem;
}

.mailform > dl > dd {
  font-size: 1.6rem;
}

.dii__button {
  text-align: right;
}

.dii__btn {
  display: inline-block;
  padding: 15px 30px;
  border: 3px solid #e5434a;
  font-size: 1.8rem;
  margin-right: 35px;
}
@media screen and (max-width: 640px) {
  .dii__btn {
    margin-right: 0;
  }
}
.dii__btn:link, .dii__btn:visited {
  color: #e5434a;
}
.dii__btn:hover {
  background-color: #e5434a;
  color: #ffffff;
}

.download__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 30px;
}
@media screen and (max-width: 640px) {
  .download__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.download__btn > a {
  font-size: 2.2rem;
  border: 2px solid #114b5f;
  padding: 10px 5px;
  min-width: 40%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .download__btn > a {
    min-width: 70%;
  }
}
.download__btn > a:last-child {
  padding: 10px 22px;
}
.download__btn > a:link, .download__btn > a:visited {
  color: #114b5f;
}
.download__btn > a:hover {
  color: #ffffff;
  font-weight: 600;
  background-color: #114b5f;
}

.error__btn {
  text-align: right;
}
.error__btn > a {
  display: inline-block;
  border: 2px solid #114b5f;
  background-color: #114b5f;
  padding: 15px 40px 15px 30px;
  font-size: 1.8rem;
  position: relative;
}
.error__btn > a:link, .error__btn > a:visited {
  color: #ffffff;
}
.error__btn > a:hover {
  background-color: #ffffff;
  color: #114b5f;
}
.error__btn > a > i {
  position: absolute;
  right: 5px;
  top: 40%;
}

.howto > div {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.movie {
  text-align: center;
  height: auto;
  aspect-ratio: 16/9;
}

.explain__flex {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 834px) {
  .explain__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.explain__flex:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .explain__flex:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.explain__flex > img {
  width: 45%;
}
@media screen and (max-width: 834px) {
  .explain__flex > img {
    width: 100%;
  }
}
.explain__flex > div {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  padding-left: 20px;
}
@media screen and (max-width: 834px) {
  .explain__flex > div {
    padding-left: 0;
    padding-top: 20px;
  }
}
.explain__flex:nth-child(2n+1) > div {
  padding-left: 0;
  padding-right: 20px;
}
@media screen and (max-width: 834px) {
  .explain__flex:nth-child(2n+1) > div {
    padding-right: 0;
    padding-top: 20px;
  }
}

.dii__size > img {
  max-width: 1000px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.dii__size-text {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.acce__spacer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
}
@media screen and (max-width: 1200px) {
  .acce__spacer {
    padding-left: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .acce__spacer {
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .acce__spacer {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.acce__spacer > img {
  width: 40% !important;
  height: auto !important;
}
@media screen and (max-width: 834px) {
  .acce__spacer > img {
    width: 100%;
  }
}
.acce__spacer > div {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  padding-left: 20px;
}
@media screen and (max-width: 834px) {
  .acce__spacer > div {
    padding-left: 0;
    padding-top: 20px;
  }
}

.nut__text > div {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.contact__tel > div > a > span {
  font-size: 3.4rem;
  font-weight: 400;
}
.contact__tel > div > a:link, .contact__tel > div > a:visited {
  color: #333333;
}
.contact__tel > div > a:hover {
  opacity: 0.7;
}
.contact__tel > div > p {
  font-size: 2rem;
  color: #636564;
}

.mailform__text {
  font-size: 1.6rem;
}

.download__text {
  font-size: 1.6rem;
  color: #333333;
}

.policy__p {
  font-size: 1.6rem;
  margin-top: 15px;
}

.error__p {
  font-size: 1.6rem;
}

.tbl_scroll {
  overflow-x: auto;
}
.tbl_scroll > article > table {
  table-layout: auto;
}
.tbl_scroll > article > table > tbody > tr > td {
  border: 1px solid #aaaaaa;
}
.tbl_scroll > article > table > tbody > tr > td > div {
  font-size: 1.6rem;
  font-weight: 600;
}
.tbl_scroll > article > table > tbody > tr > td > div span {
  color: #ff0000;
  font-weight: 700;
}/*# sourceMappingURL=common_style.css.map */

#builingual {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 1;
  padding: 5px 10px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between !important;
}
.language {
  color: #333 !important;
  float: none !important;
  padding: 0 !important;
}
.switch {
  float: none !important;
  width: 33px;
  margin-left: 5px !important;
  display: block !important;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch label {
	height: 100%;
	display: block;
	box-sizing: border-box;
	padding: 5px 0 8px 0;
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-shadow: 0 0 2px rgba(136, 136, 136, 0.4);
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	cursor: pointer;
	transition: 0.3s;
}
div#builingual div.language select {
  margin: 0 !important;
  margin-left: 5px !important;
}
/* ON */
.switch label span:after {
  content: "OFF";
  font-size: 10px;
  font-weight: 500;
  color: #aaa;
}
.switch #cmn-toggle-1:checked + label {
  background-color: #ffca29;
  box-shadow: none;
}
.switch #cmn-toggle-1:checked + label span:after {
  content: "ON";
  color: #fff;
}
@media screen and (max-width: 834px) {
  #builingual select {
    padding: 4px 2px !important;
  }
}
@media screen and (max-width: 640px) {
  #builingual {
    top: auto;
    bottom: 0;
    right: 0;
    padding: 5px !important;
    background: rgba(255, 255, 255, 0.9) !important;
  }
}