@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before {
  margin: 0;
  padding: 0;
  font-style: normal;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:after {
  margin: 0;
  padding: 0;
  font-style: normal;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  color: #231815;
  background: #ffffff;
  font-family: "Helvetica Neue", Helvetica, "Roboto", Arial, Hiragino Sans, sans-serif;
  font-weight: normal;
  padding-top: 6.25rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 992px) {
  body {
    padding-top: 4.25rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  font-size: 0;
  margin-bottom: 1rem;
}
figure img {
  width: 100%;
  margin-bottom: 0 !important;
}

figcaption {
  text-align: center;
  padding-top: 0.5rem;
  font-size: 0.875rem;
}

em {
  color: #8f1c06;
}

p {
  line-height: 1.75em;
  margin-bottom: 1.25em;
}
p a {
  color: #3c4793;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5 {
  font-family: "Oswald", Arial, sans-serif;
}

h1,
.brand {
  font-weight: 500;
  text-align: center;
  font-size: 2.8rem;
}

h1.page-title {
  text-align: center;
  font-weight: 500;
  font-size: 3.25rem;
  padding: 3rem 1rem 2rem;
  color: #3c4793;
}
h1.page-title .title-small {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
}

h2 {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #3c4793;
  letter-spacing: 0.02em;
}

h2 span.heading-small {
  display: block;
  font-size: 0.57em;
  margin-top: 0.5em;
  color: #3c4793;
  font-weight: 300;
  letter-spacing: 0.06em;
}

h3 {
  font-weight: 600;
  font-size: 1.8rem;
  border-bottom: 1px solid #3c4793;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  letter-spacing: 0.06em;
}
h3.heading-noborder {
  border-bottom: none;
  padding-bottom: 0;
}

h4 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #3c4793;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
  }
  h1.page-title {
    font-size: 2.5rem;
  }
}
section {
  padding: 4rem 0;
}

.link-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link-button {
  display: inline-block;
  width: 100%;
  max-width: 225px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c4793;
  z-index: 2;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  clip-path: polygon(6.9% 0, 100% 0, 100% 100%, 0 100%, 0 25.4%);
  -webkit-animation: slide-out-to-right 0.7s ease-in-out forwards;
          animation: slide-out-to-right 0.7s ease-in-out forwards;
  opacity: 0;
  /* ★ この一行を追加 */
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.link-button svg {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.link-button .button-shape {
  fill: transparent;
  stroke: #3c4793;
  stroke-width: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link-button .button-text {
  fill: #3c4793;
  font-size: 1.25rem;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link-button:hover {
  clip-path: polygon(6.9% 0, 100% 0, 100% 100%, 0 100%, 0 25.4%);
  opacity: 1;
}
.link-button:hover::before {
  opacity: 1;
  -webkit-animation: slide-in-from-left 0.5s ease forwards;
          animation: slide-in-from-left 0.5s ease forwards;
}
.link-button:hover .button-text {
  fill: #e6e6e6;
}
.link-button.line-white .button-shape {
  stroke: #e6e6e6;
}
.link-button.line-white .button-text {
  fill: #e6e6e6;
}
.link-button.line-white::before {
  background-color: #fff;
}
.link-button.line-white:hover .button-text {
  fill: #231815;
}
.link-button.button-first .button-shape {
  fill: #3c4793;
  stroke: #3c4793;
}
.link-button.button-first .button-text {
  fill: #e6e6e6;
}
.link-button.button-first::before {
  background-color: #fff;
}
.link-button.button-first:hover .button-shape {
  fill: transparent;
}
.link-button.button-first:hover .button-text {
  fill: #3c4793;
}

@-webkit-keyframes slide-in-from-left {
  from {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-in-from-left {
  from {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide-out-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@keyframes slide-out-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
.sub_copy {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.cat {
  border: 1px solid #3c4793;
  color: #3c4793;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

time {
  color: #6f6f6f;
}

#breadcrumbs.inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #231815;
}
#breadcrumbs.inner a {
  color: #3c4793;
}
#breadcrumbs.inner a::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  display: inline-block;
  margin: 0 0.6em 0 0.8em;
  content: "\f105";
}

main li {
  margin-bottom: 0.5rem;
}
main ul {
  margin-bottom: 1rem;
}
main ol {
  margin-bottom: 1rem;
}

.eyecatch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 15.1041666667vw;
  min-height: 290px;
  position: relative;
  background-color: #000;
}
.eyecatch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 5;
}
.eyecatch::before {
  content: "";
  background-image: url("../img/bg_chrovit_variety.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.eyecatch .page-title {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  padding: 1.5rem;
  text-shadow: 0 2px 8px rgba(35, 24, 21, 0.8);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .eyecatch {
    height: 62.5vw;
    min-height: 250px;
  }
}

.eye-archive {
  background-image: url("../img/eye_design.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .eye-archive {
    height: 150px;
  }
}

.page-navigation {
  width: 100%;
  font-size: 90%;
  text-align: center;
  margin-bottom: 1rem;
}
.page-navigation a {
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  margin: 4px;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #3c4793;
  color: #3c4793;
}
.page-navigation a:hover {
  opacity: 0.75;
  color: #3c4793;
}
.page-navigation span {
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  margin: 4px;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #3c4793;
  color: #3c4793;
}
.page-navigation span.current {
  color: white;
  font-weight: bold;
  background: #3c4793;
}

.page-link {
  margin: 3rem 0;
}
@media screen and (max-width: 768px) {
  .page-link {
    margin: 1rem 0 2rem;
  }
}
.page-link > ul {
  padding-left: 0 !important;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #3c4793;
}
.page-link > ul > li {
  margin: 0 0.5rem 1rem;
}
.page-link > ul > li > a {
  border: 1px solid #3c4793;
  padding: 0.5rem 1rem;
  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;
}
.page-link > ul > li > a::before {
  content: "";
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  border-bottom: 0.2rem solid;
  border-left: 0.2rem solid;
  top: 0.15rem;
}
.page-link > ul > li > a:hover {
  color: #fff;
  background-color: #3c4793;
  opacity: 1;
}

.iframe-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .iframe-wrapper.map {
    padding-top: 75%;
  }
}

#cookie-notice .cn-button:not(.cn-button-custom) {
  border-radius: 0;
}

.inner {
  max-width: calc(1200px + 8%);
  margin: 0 auto;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5%;
  }
}

.s-inner {
  max-width: calc(1000px + 8%);
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.overview {
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .overview {
    margin-bottom: 3em;
  }
}

.white {
  color: white;
}

.gray {
  color: #6f6f6f;
}

.red {
  color: #c30d23;
}

.first {
  color: #3c4793;
}

.second {
  color: #94753D;
}

.third {
  color: #8f1c06;
}

.basic-color {
  color: #231815;
}

.x-small {
  font-size: 0.75rem !important;
}

.small {
  font-size: 0.875rem !important;
}

.s-large {
  font-size: 1.125rem !important;
}

.large {
  font-size: 1.25rem !important;
}

.x-large {
  font-size: 1.5rem !important;
}

.xx-large {
  font-size: 2rem !important;
}

.center {
  text-align: center !important;
}

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

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

.pc-center {
  text-align: center !important;
}

.font-heading {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 500;
}

.bold {
  font-weight: bold !important;
}

.medium {
  font-weight: 500 !important;
}

.bg-red {
  background-color: #fff2f2 !important;
}

.bg-yellow {
  background-color: #ffffea !important;
}

.bg-gray-light {
  background-color: #f5f5f5;
}

.bg-gray-dark {
  background-color: #e8e8e8;
}

.bg-first {
  background-color: #f0f3fe;
}

.bg-second {
  background-color: #FFF5E3;
}

.bg-third {
  background-color: #FFD0D3;
}

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

.mb-s {
  margin-bottom: 0.5rem !important;
}

.mb-m {
  margin-bottom: 1.5rem !important;
}

.mb-m2 {
  margin-bottom: 2rem !important;
}

.mb-l {
  margin-bottom: 3rem !important;
}

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

.mt-0 {
  margin-top: 0 !important;
}

.mt-s {
  margin-top: 0.5rem !important;
}

.mt-m {
  margin-top: 1.5rem !important;
}

.mt-l {
  margin-top: 3rem !important;
}

.mt-xl {
  margin-top: 4rem !important;
}

.pc {
  display: block;
}

br.pc {
  display: inline;
}

.sp {
  display: none;
}

.box {
  padding: 2em;
}

.white-box {
  background-color: white;
  padding: 2em;
  margin-bottom: 0.5rem;
}
.white-box img {
  border: 1px solid #999;
}

.white-box.grid {
  margin-bottom: 1rem;
  padding: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.border-box {
  border: 1px solid #666;
  padding: 2em;
}

.border-box-blue {
  border: 1px solid #3c4793;
  padding: 2em;
}

.border {
  border-bottom: 1px solid #B8C2FF !important;
}

.link-text {
  text-decoration: underline;
  text-underline-offset: 1px;
}

.fit-img {
  display: block;
  position: relative;
  padding-bottom: 65%;
}
.fit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  position: absolute;
  left: 0;
  top: 0;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-border {
  border: 1px solid #d2d2d2;
}

.img-border-blue {
  border: 1px solid #B8C2FF;
}

.radius01 {
  border-radius: 1rem;
}

.radius02 {
  border-radius: 2rem;
}

.clippath {
  clip-path: polygon(2.625rem 0, 100% 0, 100% 100%, 0 100%, 0 2.125rem);
}

.list-style-none {
  list-style: none;
}

.list-large {
  padding-left: 0.5em;
}
.list-large li {
  font-size: 1.25rem;
  font-weight: bold;
}
.list-large li::marker {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-large li {
    font-size: 1.125rem;
  }
}

ul.sitemap-list {
  padding: 0;
  list-style: none;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  ul.sitemap-list {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
ul.sitemap-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1em;
}
ul.sitemap-list li::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  border-bottom: 0.2rem solid;
  border-right: 0.2rem solid;
  top: 0.5em;
  left: 0;
}
ul.sitemap-list li ul {
  margin-top: 1rem;
  list-style: none;
}
ul.sitemap-list li ul li::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  border-right: none;
  border-width: 0.1rem;
  top: 0.75em;
  height: 0;
}
ul.sitemap-list br,
ul.sitemap-list rp, ul.sitemap-list rt {
  display: none;
}

.chevron-right,
.chevron-down {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: inline-block;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  width: 1rem;
  height: 1rem;
  border: 0.2rem solid transparent;
}
.chevron-right::after,
.chevron-down::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 0.5rem;
  height: 0.5rem;
}

.link-arrow::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f105";
}

.link-down::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f107";
}

.link-blank::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f35d";
}

.link-download::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f019";
}

.link-map::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f3c5";
  margin-right: 0.25rem;
}

.link-phone::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f095";
}

a[href$=".pdf"]::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f1c1";
}

a[href$=".doc"]::before, a[href$=".docx"]::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f1c2";
}

a[href$=".xls"]::before, a[href$=".xlsx"]::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f1c3";
}

.noicon::before, .noicon::after {
  display: none !important;
}

.chevron-right::after {
  border-bottom: 0.2rem solid;
  border-right: 0.2rem solid;
  right: 0.2rem;
  top: 0.2rem;
}

.chevron-down::after {
  border-left: 0.2rem solid;
  border-bottom: 0.2rem solid;
  right: 0.2rem;
  top: 0.15rem;
}

@media screen and (max-width: 768px) {
  .pc,
  br.pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
.bn_bg_link > a {
  display: block;
  aspect-ratio: 560/250;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
  clip-path: polygon(2.625rem 0, 100% 0, 100% 100%, 0 100%, 0 2.125rem);
  width: calc((100% - 5rem) / 2);
  position: relative;
  overflow: hidden;
}
.bn_bg_link > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 71, 147, 0.7);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.bn_bg_link > a:hover {
  opacity: 1;
}
.bn_bg_link > a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.bn_bg_link > a i {
  display: block;
  font-size: 2.5rem;
  color: #fff;
}
.bn_bg_link > a h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
}
.bn_bg_link > a.bn_faq {
  background-image: url(../img/bn_faq.jpg);
}
.bn_bg_link > a.bn_download {
  background-image: url(../img/bn_download.jpg);
}
@media screen and (max-width: 1200px) {
  .bn_bg_link > a {
    width: calc((100% - 1 * clamp(1rem, 2vw, 2rem)) / 2);
  }
}
@media screen and (max-width: 768px) {
  .bn_bg_link > a {
    padding: 1rem 0.65rem;
    aspect-ratio: 156/70;
  }
  .bn_bg_link > a i {
    font-size: clamp(1rem, 3vw, 2rem);
  }
  .bn_bg_link > a h2 {
    font-size: clamp(1.125rem, 3.25vw, 2.125rem);
  }
}

.bn_img_link a {
  position: relative;
}
.bn_img_link a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.bn_img_link a img {
  vertical-align: bottom;
}
.bn_img_link a p {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contents-box .contents-item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contents-box .contents-item figure {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.contents-box .contents-item figure img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contents-box .contents-item:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.contents-box .contents-item .contents-item_text {
  padding: 1.5rem;
}
.contents-box .contents-item h3 {
  margin-bottom: 0.75em;
}
.contents-box .contents-item p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contents-box .contents-item .contents-item_text {
    padding: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .about_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.bg_fullimg {
  background-image: url("../img/bg_sample01.jpg");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}
.bg_fullimg .contents-wrap {
  padding: 4rem 2.5rem;
  background-color: rgba(35, 35, 35, 0.8);
  color: #fff;
}
.bg_fullimg .contents-wrap h2 {
  color: #fff;
}

.box_bn {
  padding: 3.5rem;
  background-color: #f0f3fe;
  text-align: center;
}
.box_bn .tel {
  font-size: 1.125rem;
  font-weight: 500;
}

.bn_full-wrap {
  padding: 0;
}

.bn_full_flex .bn_full_item {
  width: 50%;
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 0;
  text-align: center;
  padding: 1.5rem 2.5rem;
  position: relative;
}
.bn_full_flex .bn_full_item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.3;
}
.bn_full_flex .bn_full_item.bn_full01 {
  background-image: url("../img/img_sample02.jpg");
}
.bn_full_flex .bn_full_item.bn_full01::before {
  background-color: #3c4793;
}
.bn_full_flex .bn_full_item.bn_full02 {
  background-image: url("../img/img_sample02.jpg");
}
.bn_full_flex .bn_full_item.bn_full02::before {
  background-color: #94753D;
}
.bn_full_flex .bn_full_item .bn_full_text {
  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: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}
.bn_full_flex .bn_full_item .bn_full_text h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.bn_full_flex .bn_full_item .bn_full_text p {
  color: #fff;
  font-weight: 500;
}
.bn_full_flex .bn_full_item .bn_full_text p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .bn_full_flex .bn_full_item {
    width: 100%;
    height: 300px;
    padding: 1rem 1.5rem;
  }
}

.bn_box_link a {
  background-color: #f0f3fe;
  padding: 1.5rem;
  text-align: center;
  height: 250px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.bn_box_link a p {
  margin-bottom: 0;
}
.bn_box_link a::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "\f061";
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1.25rem;
}

.bn_text a {
  width: 300px;
  padding: 1rem;
  background-color: #f0f3fe;
  color: #3c4793;
  text-align: center;
}

.accordion-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding: 1rem;
  cursor: pointer;
  position: relative;
}
.accordion-title::before, .accordion-title::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background-color: #231815;
}
.accordion-title::before {
  top: 47%;
  right: 1rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion-title::after {
  top: 47%;
  right: 1rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.accordion-title:hover {
  background-color: #f0f3fe;
}

.accordion-title.is-active::before {
  display: none;
}
.accordion-title.is-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion-content {
  display: none; /* 最初は非表示 */
  padding: 1rem;
  margin: 0;
}

header {
  width: 100%;
  background-color: #fff;
  color: #231815;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 6.25rem;
}
@media screen and (max-width: 992px) {
  header {
    height: 4.25rem;
  }
}

.head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4% 0 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .head {
    padding: 0 5% 0 0;
  }
}

.head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: clamp(280px, 25vw, 414px);
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.head-left .brand {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #3c4793), color-stop(50%, transparent));
  background: linear-gradient(to bottom right, #3c4793 50%, transparent 50%);
  width: 100%;
  aspect-ratio: 414/330;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .head-left {
    width: clamp(136px, 40vw, 280px);
  }
}

.logo {
  display: block;
  width: clamp(160px, 55%, 220px);
  position: relative;
  top: 10%;
  left: 8%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .logo {
    width: clamp(72px, 55%, 160px);
  }
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
}
.logo h1 {
  text-indent: -999rem;
  width: 0;
  height: 0;
  padding: 0;
}

.head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.head-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: calc(100% - 414px);
  margin-left: auto;
}

.head-link {
  display: block;
  margin-right: clamp(0.8rem, 1.5vw, 2rem);
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  position: relative;
}
.head-link.head-sns {
  font-size: 1.5em;
  margin-right: clamp(0.8rem, 1.5vw, 1rem);
}
.head-link:last-of-type {
  margin-right: 0;
}
.head-link:last-child {
  margin-right: 0;
}
.head-link::after {
  content: "";
  position: absolute;
  bottom: -0.3em;
  left: -5%;
  width: 110%;
  height: 1px;
  background: #3c4793;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.head-link.head-en span {
  display: block;
  color: #3c4793;
  font-weight: 700;
  font-size: 0.8em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.head-link.head-en {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}
.head-link:hover {
  color: #3c4793;
  opacity: 1;
}
.head-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.link-button.head-contact {
  width: 100%;
  max-width: 182px;
  min-width: 130px;
  height: 100%;
  max-height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.link-button.head-contact .button-shape {
  fill: #3c4793;
}
.link-button.head-contact .button-text {
  fill: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.gtranslate_wrapper select {
  width: auto;
  min-width: 130px;
  height: 48px;
  border: 1px solid #231815;
  margin-left: 1rem;
  font-family: "Helvetica Neue", Helvetica, "Roboto", Arial, Hiragino Sans, sans-serif;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .link-button.head-contact {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .sp-button .gtranslate_wrapper select {
    font-size: 0.75rem;
    height: 36px;
  }
  .sp-button .translation-button {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .head-link {
    white-space: normal;
    font-size: 1rem;
    font-size: clamp(0.875rem, 1.4vw, 1rem);
  }
}
@media screen and (max-width: 992px) {
  .sp-button .gtranslate_wrapper select {
    height: 38px;
  }
}
@media screen and (max-width: 576px) {
  .sp-button .gtranslate_wrapper select {
    min-width: auto;
    height: 32px;
    margin-left: 0.75rem;
    padding: 0.25rem;
  }
}
.foot-contact {
  padding: 4rem 0;
}
.foot-contact .inner > div {
  padding: 3rem 1.5rem;
}
.foot-contact .inner > div h2 {
  margin-top: 0;
}

footer ul {
  list-style: none;
}
footer .foot-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .foot-link li {
  color: #333;
  border-right: 1px solid #333;
  padding: 0 1.25rem;
  margin-bottom: 0.5rem;
}
footer .foot-link li:last-of-type {
  border-right: none;
}
footer .foot-bottom {
  padding: 2rem 0;
  background-color: #3c4793;
  color: #fff;
  text-align: center;
}
footer .foot-bottom .inner > p:first-of-type {
  font-family: "Oswald", Arial, sans-serif;
}
footer .foot-bottom .foot-copy {
  font-size: 0.875rem;
}

footer.footer-pattern02 {
  background-color: transparent;
  color: #3c4793;
}
footer.footer-pattern02 .foot-inner {
  border-top: 1px solid #3c4793;
  padding-top: 4rem;
}

#pagetop {
  position: fixed;
  z-index: 30;
  width: 50px;
  height: 50px;
  bottom: 85px;
  right: 0px;
  line-height: 2em;
  background: #3c4793;
  color: white;
  font-size: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 10px);
}
#pagetop:hover {
  line-height: 3rem;
  opacity: 0.8;
  cursor: pointer;
}
#pagetop a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: inline-block;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  width: 30px;
  height: 30px;
  border: 4px solid transparent;
}
#pagetop a::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 15px;
  height: 15px;
  border-top: 4px solid;
  border-right: 4px solid;
  left: 5px;
  bottom: 1px;
}

.grid,
.flex2,
.flex3,
.flex4,
.flex5,
.flex6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid > *,
.flex2 > *,
.flex3 > *,
.flex4 > *,
.flex5 > *,
.flex6 > * {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}
.grid *:first-child,
.flex2 *:first-child,
.flex3 *:first-child,
.flex4 *:first-child,
.flex5 *:first-child,
.flex6 *:first-child {
  margin-top: 0;
}

.flex2 > *,
.flex2-2 > * {
  width: calc((100% - 1 * clamp(1rem, 2vw, 2rem)) / 2);
}

.flex2.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex3:after {
  content: "";
  display: block;
  width: calc((100% - 2 * clamp(1rem, 2vw, 2rem)) / 3);
}
.flex3 > * {
  width: calc((100% - 2 * clamp(1rem, 2vw, 2rem)) / 3);
}

.flex4:before {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc((100% - 3 * clamp(1rem, 2vw, 2rem)) / 4);
}
.flex4:after {
  content: "";
  display: block;
  width: calc((100% - 3 * clamp(1rem, 2vw, 2rem)) / 4);
}
.flex4 > * {
  width: calc((100% - 3 * clamp(1rem, 2vw, 2rem)) / 4);
}

.flex5:before {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc((100% - 4 * clamp(1rem, 2vw, 2rem)) / 5);
}
.flex5:after {
  content: "";
  display: block;
  width: calc((100% - 4 * clamp(1rem, 2vw, 2rem)) / 5);
}
.flex5 > * {
  width: calc((100% - 4 * clamp(1rem, 2vw, 2rem)) / 5);
}

.flex6:before {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc((100% - 5 * clamp(1rem, 2vw, 2rem)) / 6);
}
.flex6:after {
  content: "";
  display: block;
  width: calc((100% - 5 * clamp(1rem, 2vw, 2rem)) / 6);
}
.flex6 > * {
  width: calc((100% - 5 * clamp(1rem, 2vw, 2rem)) / 6);
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.flex-center > * {
  margin-bottom: 0;
}
.flex-center::before, .flex-center::after {
  display: none;
}

.grid3-2 {
  width: calc((100% - 2 * clamp(1rem, 2vw, 2rem)) / 3 * 2 + clamp(1rem, 2vw, 2rem));
}
.grid3-2 h2 {
  text-align: left;
}
.grid3-2 h3 {
  text-align: left;
}

.grid4-3 {
  width: calc((100% - 3 * clamp(1rem, 2vw, 2rem)) / 4 * 3 + clamp(1rem, 2vw, 2rem) * 2);
}

.grid4-2 {
  width: calc((100% - 1 * clamp(1rem, 2vw, 2rem)) / 2);
}

.grid3-1 {
  width: calc((100% - 2 * clamp(1rem, 2vw, 2rem)) / 3);
}

.grid4-1 {
  width: calc((100% - 3 * clamp(1rem, 2vw, 2rem)) / 4);
}

.col3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.col3 > div > *:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .grid3-1,
  .grid3-2,
  .grid4-1,
  .grid4-2,
  .grid4-3 {
    width: 100%;
  }
  .flex2 > * {
    width: 100%;
  }
  .flex3 > * {
    width: 100%;
  }
  .flex3:after {
    width: 100%;
  }
  .flex2-2 > * {
    width: calc((100% - 1.5rem) / 2);
  }
  .flex4 > *, .flex4:before, .flex4:after {
    width: calc((100% - 1.5rem) / 2);
  }
  .flex5 > *, .flex5:before, .flex5:after {
    width: calc((100% - 1.5rem) / 2);
  }
  .flex6 > *, .flex6:before, .flex6:after {
    width: calc((100% - 3rem) / 3);
  }
  .grid > *,
  .flex2 > *,
  .flex2-2 > *,
  .flex3 > *,
  .flex4 > *,
  .flex5 > *,
  .flex6 > * {
    margin-bottom: 1.5rem;
  }
  .flex2.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex-center {
    gap: 1.5rem;
  }
  .flex-center > * {
    margin-bottom: 0;
  }
  .flex-center::before, .flex-center::after {
    display: none;
  }
  .col3 {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
input,
select,
textarea {
  padding: 0.25rem 0.5rem;
  vertical-align: middle;
  border: 1px solid #999;
  font-size: 1rem;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
input[type=submit],
input[type=reset],
input[type=button],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Helvetica Neue", Helvetica, "Roboto", Arial, Hiragino Sans, sans-serif;
  border: 1px solid #999;
  width: 100%;
}

textarea {
  height: 7rem;
}

input[type=reset],
input[type=button] {
  background-color: rgba(190, 190, 190, 0.3);
  border: 2px solid rgba(142, 142, 142, 0.2);
}
input[type=reset]:hover,
input[type=button]:hover {
  background-color: white !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input[type=checkbox], input[type=radio], label {
  cursor: pointer;
}
input[type=checkbox]:hover, input[type=radio]:hover, label:hover {
  opacity: 0.7;
}

:focus {
  outline: none;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wpcf7-radio span {
  margin-left: 0.5rem;
}

input[name=form-type] {
  display: none;
}

label {
  font-size: 1rem;
}

form th > p, form td > p {
  margin-bottom: 0;
}
form th em {
  margin-left: 0.5rem;
}

.contact-form th, .contact-form td {
  border: none;
  padding: 1.5rem 1rem;
}
.contact-form th {
  font-weight: 500;
  background-color: transparent;
}
.contact-form tr {
  border-bottom: 1px solid #d2d2d2;
}
.contact-form tr:last-child {
  border-bottom: none;
}
.contact-form .subject .wpcf7-list-item {
  display: block;
  margin: 0 0 0.15rem;
}
.contact-form .subject .wpcf7-list-item.first {
  color: #231815 !important;
}
@media screen and (max-width: 768px) {
  .contact-form th {
    display: block;
    width: 100%;
    padding: 1rem 0 0;
  }
  .contact-form td {
    display: block;
    width: 100%;
    padding: 0.5rem 0 1.5rem;
  }
}

.submit {
  margin-top: 2rem;
  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-flow: column;
          flex-flow: column;
}
.submit input {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.2rem;
  min-width: 200px;
  border: 1px solid #3c4793 !important;
  color: #fff !important;
  background-color: #3c4793;
  cursor: pointer;
}
.submit input:hover {
  opacity: 0.8;
  clip-path: none;
}
.submit input:disabled {
  opacity: 0.3;
  border: 1px solid #3c4793 !important;
  color: #fff !important;
  background-color: #3c4793;
}
.submit p {
  margin-bottom: 0;
}

table {
  width: 100%;
  border-spacing: 6px;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table th {
  padding: 1.5em 2rem;
  border: 1px solid #B8C2FF;
  text-align: left;
  background-color: #f0f3fe;
  width: 1px;
  white-space: nowrap;
  font-weight: normal;
}
table td {
  padding: 1.5em 2rem;
  border: 1px solid #B8C2FF;
  text-align: left;
  background: white;
  word-break: break-all;
}

.scroll-table-wrap {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-table-wrap::-webkit-scrollbar {
  display: none;
}

.scroll-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  table-layout: fixed;
}

@media screen and (max-width: 768px) {
  .flex-table th {
    display: block;
    width: 100%;
    padding: 1rem;
    border-bottom: none;
  }
  .flex-table td {
    display: block;
    width: 100%;
    padding: 1rem;
    border-bottom: none;
  }
  .flex-table tr:last-of-type td {
    border-bottom: 1px solid #B8C2FF;
  }
}
.table-bar th {
  padding: 0.75rem 0;
  text-align: center;
}
.table-bar tr > th:first-of-type {
  width: 23%;
  text-align: left;
  padding: 0.75rem 1.5rem;
}
.table-bar .full-bar {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(18%, #fff), color-stop(18%, #FFF5E3), color-stop(82%, #FFF5E3), color-stop(82%, #fff), to(#fff));
  background: linear-gradient(#fff 18%, #FFF5E3 18%, #FFF5E3 82%, #fff 82%, #fff 100%);
}
.table-bar .full-bar.half-right, .table-bar .full-bar.half-left {
  position: relative;
}
.table-bar .full-bar.half-right::after, .table-bar .full-bar.half-left::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #fff;
}
.table-bar .full-bar.half-right::after {
  top: 0;
  left: 0;
}
.table-bar .full-bar.half-left::after {
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .table-bar {
    font-size: 0.875rem;
  }
}

body.home {
  padding: 0;
  letter-spacing: 0.14em;
}
body.home section:first-of-type {
  padding-top: 5rem;
}
body.home .eye-movie {
  padding: 0 4%;
  padding-top: 6.25rem;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(87%, transparent), color-stop(87%, #e8e8e8), to(#e8e8e8));
  background: linear-gradient(to bottom, transparent 87%, #e8e8e8 87%, #e8e8e8 100%);
}
body.home .eye-movie video {
  width: 100%;
  height: auto;
  display: block;
}
body.home .eye-movie .eye-copy {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 2.5%;
  bottom: 8.5%;
  line-height: 1.2;
}
body.home .eye-movie .eye-copy span {
  display: inline-block;
  background-color: #3c4793;
  letter-spacing: 0.02em;
  line-height: 0.85;
  padding-top: 0;
  padding-bottom: 0.2em;
  padding-left: 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  body.home .eye-movie {
    padding: 0;
    padding-top: 4.25rem;
    background: transparent;
  }
  body.home .eye-movie video {
    aspect-ratio: 375/250;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.home .eye-movie .eye-copy {
    font-size: 3.875rem;
    position: relative;
    top: -0.75em;
    left: 0;
    color: #3c4793;
    padding: 0 5%;
  }
  body.home .eye-movie .eye-copy span {
    background-color: transparent;
    padding: 0;
    line-height: 1.2;
  }
}
body.home .info-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  grid-template-areas: "title list" "button list";
}
body.home .info-inner h2 {
  grid-area: title;
  align-self: start;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.04em;
}
body.home .info-inner .link-button {
  grid-area: button;
  align-self: end;
  width: clamp(150px, 100%, 225px);
}
body.home .info-inner .news-list {
  grid-area: list;
  width: 100%;
  justify-self: end;
  max-width: 800px;
}
body.home .info-inner .news-list .news-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #666;
  padding: 0 1rem;
}
body.home .info-inner .news-list .news-item:last-of-type {
  border-bottom: 1px solid #666;
}
body.home .info-inner .news-list .news-item .news-supple {
  margin-bottom: 0;
  padding: 1.5rem 0;
}
body.home .info-inner .news-list .news-item .news-supple .cat {
  margin-left: 0.5rem;
}
body.home .info-inner .news-list .news-item .news-supple time {
  color: #231815;
}
body.home .info-inner .news-list .news-item .news-title {
  display: block;
  padding: 1.5rem 0;
  margin-left: 1rem;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.home .info-inner .news-list .news-item .news-title:hover {
  color: #3c4793;
  opacity: 1;
}
@media screen and (max-width: 992px) {
  body.home .info-inner .news-list .news-item {
    -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: start;
    padding: 0;
  }
  body.home .info-inner .news-list .news-item .news-title {
    padding-top: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  body.home .info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  body.home .info-inner h2 {
    -ms-flex-item-align: center;
        align-self: center;
  }
  body.home .info-inner .link-button {
    -ms-flex-item-align: center;
        align-self: center;
  }
  body.home .info-inner .news-list {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
body.home .news-box .news-box-text .news-supple {
  display: block;
  margin-bottom: 0.75rem;
}
body.home .news-box .news-box-text .news-title {
  margin-bottom: 0.5rem;
}
body.home #top-about {
  background-color: #000000;
  position: relative;
}
body.home #top-about .about-text-wrap {
  width: 60%;
  color: #e6e6e6;
  position: relative;
  z-index: 10;
  padding: 0 2rem 0 0;
}
body.home #top-about .about-text-wrap h2 {
  color: inherit;
  text-align: left;
  letter-spacing: 0.1em;
}
body.home #top-about .about-text-wrap p {
  font-size: 1.125rem;
}
body.home #top-about .about-text-wrap .link-button {
  margin-top: 3rem;
}
body.home #top-about .about-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.1458333333%;
  height: 100%;
  background-image: url("../img/toppage/about_img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  body.home #top-about {
    padding-bottom: 0;
  }
  body.home #top-about .about-text-wrap {
    width: 100%;
    padding: 0;
  }
  body.home #top-about .about-text-wrap .link-button {
    margin: 2.625rem auto 3rem;
  }
  body.home #top-about .about-img-wrap {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    background-size: contain;
    aspect-ratio: 375/365;
  }
}
@media screen and (max-width: 768px) {
  body.home #top-about .about-text-wrap h2 {
    font-size: 1.7rem;
  }
}

#chrovit-product {
  padding: 10px 0 0;
}

.chrovit-container {
  display: grid;
  gap: 10px;
}

.chrovit-wrap {
  display: grid;
  gap: 10px;
  color: #fff;
}
.chrovit-wrap h2 {
  color: #fff;
  text-align: left;
  letter-spacing: 0.1em;
}
.chrovit-wrap p {
  margin-bottom: 0;
  text-shadow: 0 0 8px rgba(60, 71, 147, 0.8);
}
.chrovit-wrap.row1-cols {
  position: relative;
}
.chrovit-wrap.variety-chrovit {
  overflow: hidden;
  background-color: #3c4793;
}
.chrovit-wrap.variety-chrovit::before {
  content: "";
  background-image: url(../img/toppage/bg_chrovit_variety.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /* ここからがマスクの設定 */
  -webkit-mask-image: -webkit-gradient(linear, right top, left bottom, color-stop(1%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to left bottom, black 1%, transparent 100%);
  mask-image: -webkit-gradient(linear, right top, left bottom, color-stop(1%, black), to(transparent));
  mask-image: linear-gradient(to left bottom, black 1%, transparent 100%);
}
.chrovit-wrap.variety-chrovit .variety-text {
  width: 70%;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 4.5% 4.5% 4.5% 0;
}
.chrovit-wrap.variety-chrovit .variety-text h2 {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.chrovit-wrap.variety-chrovit .variety-text p {
  margin-bottom: 2rem;
}
.chrovit-wrap.variety-chrovit .variety-img {
  position: absolute;
  z-index: 5;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/toppage/variety-chrovit_img.png);
  width: 35.6770833333%;
  height: 120%;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  .chrovit-wrap.variety-chrovit .variety-text {
    width: 80%;
    padding: 4.5% 0;
  }
  .chrovit-wrap.variety-chrovit .variety-img {
    right: 0;
    top: auto;
    bottom: -10%;
    width: 45%;
    height: 100%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media screen and (max-width: 768px) {
  .chrovit-wrap.variety-chrovit .variety-img {
    bottom: -15%;
    width: 55%;
  }
}
@media screen and (max-width: 576px) {
  .chrovit-wrap.variety-chrovit {
    padding: 2.625rem 0 1.125rem;
  }
  .chrovit-wrap.variety-chrovit .variety-text {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .chrovit-wrap.variety-chrovit .variety-text .link-button {
    margin: 0 auto;
  }
  .chrovit-wrap.variety-chrovit .variety-img {
    position: relative;
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 0;
    right: auto;
    left: 5%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    aspect-ratio: 375/258;
  }
}
.chrovit-wrap.row2-col2 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "large right-top" "large right-bottom";
}
.chrovit-wrap.row2-col2 .item-left {
  grid-area: large; /* "large" という名前のエリアに配置 */
}
.chrovit-wrap.row2-col2 > a {
  aspect-ratio: 633/355;
}
.chrovit-wrap.row2-col2 .item-right-top {
  grid-area: right-top; /* "right-top" のエリアに配置 */
}
.chrovit-wrap.row2-col2 .item-right-bottom {
  grid-area: right-bottom; /* "right-bottom" のエリアに配置 */
}
.chrovit-wrap.row2-col2 h2 {
  font-size: clamp(1.375rem, 1.77vw, 2.5rem);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .chrovit-wrap.row2-col2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "large large" "right-top right-bottom";
  }
  .chrovit-wrap.row2-col2 > a {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 768px) {
  .chrovit-wrap.row2-col2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "large" "right-top" "right-bottom";
  }
  .chrovit-wrap.row2-col2 > a {
    aspect-ratio: 375/220;
  }
}
.chrovit-wrap.row2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.chrovit-wrap.row2-cols > a {
  aspect-ratio: 955/536;
}
.chrovit-wrap.row2-cols h2 {
  font-size: clamp(2rem, 2.8vw, 3.5rem);
  margin-bottom: 2rem;
}
.chrovit-wrap.row2-cols p {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .chrovit-wrap.row2-cols {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .chrovit-wrap.row2-cols > a {
    aspect-ratio: 375/220;
  }
}
.chrovit-wrap.row3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.chrovit-wrap.row3-cols > a {
  aspect-ratio: 633/355;
}
.chrovit-wrap.row3-cols h2 {
  font-size: clamp(1.375rem, 1.77vw, 2.5rem);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .chrovit-wrap.row3-cols {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "col-first col-first" "col-second-left col-second-right";
  }
  .chrovit-wrap.row3-cols > a {
    aspect-ratio: auto;
  }
  .chrovit-wrap.row3-cols > a:first-of-type {
    grid-area: col-first;
  }
  .chrovit-wrap.row3-cols > a:nth-of-type(2) {
    grid-area: col-second-left;
  }
  .chrovit-wrap.row3-cols > a:nth-of-type(3) {
    grid-area: col-second-right;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .chrovit-wrap.row3-cols {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "col-first" "col-second-left" "col-second-right";
  }
  .chrovit-wrap.row3-cols > a {
    aspect-ratio: 375/220;
  }
}
@media screen and (max-width: 1200px) {
  .chrovit-wrap.row2-col2 > a, .chrovit-wrap.row3-cols > a, .chrovit-wrap.row2-cols > a {
    min-height: 230px;
  }
}
@media screen and (max-width: 576px) {
  .chrovit-wrap.row2-col2 > a p, .chrovit-wrap.row3-cols > a p, .chrovit-wrap.row2-cols > a p {
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .chrovit-wrap.row2-col2 > a, .chrovit-wrap.row3-cols > a, .chrovit-wrap.row2-cols > a {
    min-height: auto;
  }
}
@media screen and (max-width: 1200px) {
  .chrovit-wrap.row2-col2 h2, .chrovit-wrap.row3-cols h2, .chrovit-wrap.row2-cols h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  .chrovit-wrap.row2-col2 h2, .chrovit-wrap.row3-cols h2, .chrovit-wrap.row2-cols h2 {
    font-size: 1.5rem;
    margin-bottom: 1.125rem;
  }
}
@media screen and (max-width: 1200px) {
  .chrovit-wrap.row2-col2 p, .chrovit-wrap.row3-cols p, .chrovit-wrap.row2-cols p {
    font-size: clamp(1rem, 1.65vw, 1.25rem);
  }
}
@media screen and (max-width: 992px) {
  .chrovit-wrap.row2-col2 p, .chrovit-wrap.row3-cols p, .chrovit-wrap.row2-cols p {
    font-size: 1rem;
  }
}

.chrovit-item {
  background-color: #3c4793;
  position: relative;
  clip-path: polygon(2.625rem 0, 100% 0, 100% 100%, 0 100%, 0 2.125rem);
  overflow: hidden;
}
.chrovit-item::before {
  content: "";
  background-image: url(../img/toppage/bg_chrovit_mask.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.chrovit-item::after {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.chrovit-item .chrovit-text {
  width: 55%;
  height: 100%;
  padding: 4.5%;
  position: relative;
  z-index: 10;
  background-color: rgba(60, 71, 147, 0);
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.chrovit-item .chrovit-text h2 {
  text-transform: uppercase;
}
.chrovit-item .chrovit-img {
  position: absolute;
  z-index: 5;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.chrovit-item .chrovit-img.micro_img {
  background-image: url(../img/toppage/micro-chrovit_img.png);
  width: 68.87835703%;
  height: 75.4929577465%;
  right: 0;
  bottom: 7.8873239437%;
}
.chrovit-item .chrovit-img.edge_img {
  background-image: url(../img/toppage/edge-chrovit_img.png);
  width: 22.2748815166%;
  height: 88.1690140845%;
  right: 20.5371248025%;
  bottom: 0;
}
.chrovit-item .chrovit-img.crab_img {
  background-image: url(../img/toppage/crab-chrovit_img.png);
  width: 60%;
  height: 69.9626865672%;
  right: 7.3298429319%;
  bottom: 2.9850746269%;
}
.chrovit-item .chrovit-img.rod_img {
  background-image: url(../img/toppage/rod-chrovit_img.png);
  width: 53.4031413613%;
  height: 91.4179104478%;
  right: 11.9371727749%;
  bottom: 4.4776119403%;
}
.chrovit-item .chrovit-img.sec120_img {
  background-image: url(../img/toppage/120-chrovit_img.png);
  width: 52.9225908373%;
  height: 92.9577464789%;
  right: 0;
  bottom: 0;
}
.chrovit-item .chrovit-img.reflections_img {
  background-image: url(../img/toppage/reflections-chrovit_img.png);
  width: 74.5655608215%;
  height: 85.9154929577%;
  right: 0;
  bottom: 0;
}
.chrovit-item .chrovit-img.upper_bottom_img {
  background-image: url(../img/toppage/upper_bottom-chrovit_img.png);
  width: 63.1911532385%;
  height: 72.676056338%;
  right: 0;
  bottom: 0;
}
.chrovit-item .chrovit-img.cone_img {
  background-image: url(../img/toppage/cone-chrovit_img.png);
  width: 69.7382198953%;
  height: 76.4925373134%;
  right: 5.6544502618%;
  bottom: 10.0746268657%;
}
.chrovit-item .chrovit-img.complex_img {
  background-image: url(../img/toppage/complex-chrovit_img.png);
  width: 77.277486911%;
  height: 89.552238806%;
  right: 0;
  bottom: 0;
}
.chrovit-item:hover {
  opacity: 1;
}
.chrovit-item:hover::before {
  opacity: 0; /* ★変更 */
}
.chrovit-item:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0); /* ★変更: 元の位置に戻す */
}
.chrovit-item:hover .chrovit-text {
  background-color: rgba(60, 71, 147, 0.5);
}
.chrovit-item:hover .chrovit-img {
  bottom: auto;
  right: 0;
  top: 0;
  width: 84%;
  height: 100%;
}
.chrovit-item:hover .chrovit-img.micro_img {
  background-image: url(../img/toppage/hover_micro_chrovit.jpg);
  width: 70%;
}
.chrovit-item:hover .chrovit-img.edge_img {
  background-image: url(../img/toppage/hover_edge_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.crab_img {
  background-image: url(../img/toppage/hover_crab_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.rod_img {
  background-image: url(../img/toppage/hover_rod_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.sec120_img {
  background-image: url(../img/toppage/hover_120section_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.reflections_img {
  background-image: url(../img/toppage/hover_reflections_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.upper_bottom_img {
  background-image: url(../img/toppage/hover_upper-bottom_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.cone_img {
  background-image: url(../img/toppage/hover_cone_chrovit.jpg);
}
.chrovit-item:hover .chrovit-img.complex_img {
  background-image: url(../img/toppage/hover_complex_chrovit.jpg);
}
@media screen and (max-width: 992px) {
  .chrovit-item .chrovit-text {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .chrovit-item .chrovit-text {
    width: 70%;
  }
}

body.page main h2 {
  font-size: 2.625rem;
}
@media screen and (max-width: 768px) {
  body.page main h2 {
    font-size: 2.25rem;
  }
}
body.page main h3 {
  color: #3c4793;
  text-align: center;
  font-size: 1.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto 1em;
}
@media screen and (max-width: 768px) {
  body.page main h3 {
    margin-top: 1.5em;
  }
}
body.page main h4 {
  margin-top: 1em;
  margin-bottom: 1em;
}
body.page main ul {
  padding-left: 1.5em;
}
body.page main ol {
  padding-left: 1.5em;
}
body.page main > section:first-of-type {
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  body.page main > section:first-of-type {
    padding-top: 2rem;
  }
}
body.page main > section:nth-of-type(2n) {
  background-color: #f5f5f5;
}
body.page main .timeline {
  max-width: 600px;
  margin: 0 auto;
}
body.page main .timeline-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  width: 100%;
}
body.page main .timeline-list-item:last-child .content {
  border-left: 1px solid white;
}
@media screen and (max-width: 768px) {
  body.page main .timeline-list-item:last-child .content {
    width: calc(100% - 100px);
  }
}
body.page main .timeline-list-item .date {
  width: 80px;
}
body.page main .timeline-list-item .content {
  position: relative;
  padding: 0 0 3rem 2rem;
  border-left: 1px solid #3c4793;
  width: calc(100% - 120px);
}
body.page main .timeline-list-item .content::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -9px;
  width: 16px;
  height: 16px;
  background-color: #3c4793;
  border-radius: 10px;
}
body.page main .lead p {
  font-size: 1.125rem;
}
body.page main .lead p:last-of-type {
  margin-bottom: 0;
}
body.page.faq main > section {
  background-color: #fff;
}
body.page .related-link {
  background-color: #e8e8e8;
  padding: 3rem 0;
}
body.page .related-link h3 {
  margin-top: 0;
  color: #6f6f6f;
}
body.page .related-link ul {
  list-style: none;
  padding: 0;
}
body.page .related-link ul > li a {
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: white;
  display: block;
  position: relative;
  height: 150px;
}
body.page .related-link ul > li a::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
body.page .related-link ul > li a:hover {
  opacity: 1;
}
body.page .related-link ul > li a:hover::before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: rgba(0, 0, 0, 0.1);
}
body.page .related-link ul > li a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  line-height: 1.5;
  font-size: 1.5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}
body.page.privacy-policy main h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 0.5em;
}

.chrovit .eyecatch::after {
  background-size: auto 110%;
  background-position: right center;
}

.products .eyecatch::after {
  background-size: 70vw auto;
  background-position: right center;
}
.products .eyecatch::before {
  content: none;
}

.micro .eyecatch::after, .complex .eyecatch::after, .doublereflection .eyecatch::after {
  background-size: contain;
  background-position: right center;
}

.crablegs .eyecatch::after, .cone .eyecatch::after, .three120sections .eyecatch::after, .rod .eyecatch::after, .topbottom .eyecatch::after {
  background-size: contain;
  background-position: right 10vw center;
}

.edge .eyecatch::after {
  background-size: contain;
  background-position: right 20vw center;
}

@media screen and (max-width: 768px) {
  .chrovit .eyecatch::after {
    background-size: 80% auto;
    background-position: right -3vw center;
  }
  .product .eyecatch::after {
    background-size: cover;
    background-position: left center;
  }
  .rod .eyecatch::after {
    background-position: right 5vw center;
    width: 70%;
    height: 70%;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: auto;
  }
  .crablegs .eyecatch::after, .three120sectors .eyecatch::after {
    background-position: right -10vw center;
    width: 70%;
    height: 70%;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: auto;
  }
  .micro .eyecatch::after, .topbottom .eyecatch::after, .cone .eyecatch::after, .complex .eyecatch::after {
    background-position: right -10vw center;
    width: 70%;
    height: 70%;
    right: 0;
    top: auto;
    bottom: 0;
    margin-left: auto;
  }
  .doublereflection .eyecatch::after {
    background-position: right -5vw center;
    width: 70%;
    height: 70%;
    right: 0;
    top: auto;
    bottom: 0;
    margin-left: auto;
  }
}
.chrovit .about-des .list-large {
  padding-left: 0;
}
.chrovit .about-des .list-large h4 {
  font-size: inherit;
}
.chrovit .about-des .list-large p {
  font-size: 1rem;
  font-weight: 400;
}
.chrovit .chrovit-variation h4 {
  text-transform: uppercase;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.chrovit .chrovit-variation img {
  clip-path: polygon(2.625rem 0, 100% 0, 100% 100%, 0 100%, 0 2.125rem);
}
@media screen and (max-width: 768px) {
  .chrovit .chrovit-variation h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.chrovit .chrovit-list {
  margin-bottom: 4rem;
}
.chrovit .chrovit-list .col3 {
  gap: 1.5rem;
}
.chrovit .chrovit-list h4 {
  margin: 2em 0 1.5em;
}
.chrovit .chrovit-list .chrovit-list-item {
  background-color: #f0f3fe;
  padding: 1.5rem 1.25rem;
  overflow: hidden;
  position: relative;
  clip-path: polygon(2.625rem 0, 100% 0, 100% 100%, 0 100%, 0 2.125rem);
}
.chrovit .chrovit-list .chrovit-list-item:hover {
  background-color: #3c4793;
  opacity: 1;
}
.chrovit .chrovit-list .chrovit-list-item:hover h5, .chrovit .chrovit-list .chrovit-list-item:hover p {
  color: #fff;
  text-shadow: none;
}
.chrovit .chrovit-list .chrovit-list-item > div {
  position: relative;
  z-index: 3;
}
.chrovit .chrovit-list .chrovit-list-item > div h5 {
  color: #3c4793;
  font-size: 1.25rem;
  text-shadow: 0 3px 8px rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.chrovit .chrovit-list .chrovit-list-item > div p {
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
.chrovit .chrovit-list .chrovit-list-item::after {
  content: "";
  display: block;
  width: 65%;
  height: 65%;
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-filter: opacity(0.4);
          filter: opacity(0.4);
}
.chrovit .chrovit-list .chrovit-list-item.micro::after {
  background-image: url("../img/toppage/micro-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.edge::after {
  background-image: url("../img/toppage/edge-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.crab::after {
  background-image: url("../img/toppage/crab-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.rod::after {
  background-image: url("../img/toppage/rod-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.three120::after {
  background-image: url("../img/toppage/120-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.reflections::after {
  background-image: url("../img/toppage/reflections-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.topbottom::after {
  background-image: url("../img/toppage/upper_bottom-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.cone::after {
  background-image: url("../img/toppage/cone-chrovit_img.png");
}
.chrovit .chrovit-list .chrovit-list-item.complex::after {
  background-image: url("../img/toppage/complex-chrovit_img.png");
}
@media screen and (max-width: 768px) {
  .chrovit .chrovit-list .col3 {
    gap: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .chrovit .chrovit-list .col3 {
    grid-template-columns: 1fr;
  }
}

/* Chrovit 関連リンク */
.product-nav-container {
  padding-top: 4rem;
}

.sibling-list {
  display: grid;
  /* 1fr(比率1)を3回繰り返す ＝ 3列 */
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; /* アイテム間の隙間 */
  padding-left: 0 !important;
  margin-bottom: 0;
  list-style: none;
}
.sibling-list li {
  margin: 0;
  padding: 0;
}
.sibling-list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
  background-color: #f0f3fe;
  color: #3c4793;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
}
.sibling-list li a:hover {
  opacity: 1;
  color: #fff;
  background-color: #3c4793;
}
@media screen and (max-width: 768px) {
  .sibling-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .sibling-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.three120sectors .product-nav-container, .doublereflection .product-nav-container, .cone .product-nav-container {
  padding-top: 0;
}

.faq #faq-section {
  padding-bottom: 0;
}
.faq h2 {
  margin-top: 1em;
}
.faq .faq-wrap {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #fff;
}
.faq .faq-wrap:last-of-type {
  margin-bottom: 0;
}
.faq .faq-wrap .faq-q {
  padding: 0 2rem 1.25rem 3rem;
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3c4793;
}
.faq .faq-wrap .faq-q::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "Q";
  content: "Q";
  margin-right: 0.25rem;
  font-size: 1.4em;
  color: #3c4793;
  font-family: "Oswald", Arial, sans-serif;
  position: absolute;
  left: 1rem;
  line-height: 1;
}
.faq .faq-wrap .faq-a {
  padding: 1.5rem 2rem 1.5rem 3rem;
  position: relative;
  background-color: rgba(240, 243, 254, 0.7);
  color: #3c4793;
  font-weight: 500;
}
.faq .faq-wrap .faq-a::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
  content: "A";
  content: "A";
  margin-right: 0.25rem;
  font-size: 1.5em;
  color: #94753D;
  font-family: "Oswald", Arial, sans-serif;
  position: absolute;
  top: 1.5rem;
  left: 1.1rem;
  line-height: 1;
}
.faq .faq-wrap .faq-box {
  background-color: rgba(240, 243, 254, 0.7);
  padding: 2rem;
}
.faq .faq-wrap .faq-box .faq-item {
  margin-bottom: 1.25rem;
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #d2d2d2;
}
.faq .faq-wrap .faq-box .faq-item:last-of-type {
  margin-bottom: 0;
}
.faq .faq-wrap .faq-box .faq-item .faq-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .faq .faq-wrap {
    font-size: 1rem;
  }
  .faq .faq-wrap .faq-q {
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
  }
  .faq .faq-wrap .faq-box {
    padding: 1rem;
  }
}

.contact-note.box {
  margin-top: 2.5rem;
}
.contact-note.box h3 {
  font-size: 1.25rem;
  margin: 1.25em 0 0.5em;
  text-align: left;
}

body.archive .archive-inner {
  max-width: 1080px;
}
body.archive .cat-nav {
  padding: 0 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
body.archive .cat-nav > a {
  margin-right: 0.875rem;
  padding: 0.5rem 1rem;
  display: block;
  opacity: 0.3;
  cursor: pointer;
}
body.archive .cat-nav > a:not(.active):hover {
  color: #3c4793;
  opacity: 1;
}
body.archive .cat-nav > a.active {
  border-bottom: 1px solid #3c4793;
  opacity: 1;
  cursor: initial;
}
@media screen and (max-width: 768px) {
  body.archive .cat-nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 2.5rem;
  }
  body.archive .cat-nav > a {
    width: 49%;
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

.news-box h2 {
  font-size: 1.8rem;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  color: #3c4793;
}
.news-box time {
  margin-right: 0.5rem;
}
.news-box img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news-box .fit-img {
  margin-bottom: 1rem;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.news-box .fit-img:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.news-box > a {
  margin-bottom: 2rem;
}

.news-supple {
  margin-bottom: 1rem;
}

body.single main ul {
  margin-left: 1.5em;
}
body.single main ol {
  margin-left: 1.5em;
}
body.single section {
  padding-top: 0;
}
body.single time {
  display: inline-block;
  color: #6f6f6f;
}
body.single img {
  width: 100%;
}
body.single .single-inner {
  max-width: 1080px;
}
body.single .news-supple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
body.single .page-title {
  font-size: 2.5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  body.single .page-title {
    font-size: 2rem;
  }
}
body.single .navigation {
  border-top: 1px solid #666;
  width: 100%;
  margin: 0 0 0.8rem;
  padding: 1.2rem 0 0;
  font-size: 85%;
  clear: both;
  text-align: left;
}
body.single .navigation > h2 {
  display: none;
}
body.single .navigation a span {
  display: inline;
  margin-right: 1em;
  padding-right: 1em;
}
body.single .navigation a span.navitext {
  border-right: 1px solid #666;
}
body.single .navigation .nav-previous {
  margin-bottom: 0.5rem;
}
body.single .navigation .nav-previous a {
  background-color: #f5f5f5;
  padding: 0.5rem 1rem;
  display: block;
}
body.single .navigation .nav-previous a:hover {
  background-color: #e8e8e8;
}
body.single .navigation .nav-next a {
  background-color: #f5f5f5;
  padding: 0.5rem 1rem;
  display: block;
}
body.single .navigation .nav-next a:hover {
  background-color: #e8e8e8;
}

#sp-nav {
  display: none;
}

.sp-button {
  display: none;
}

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.remodal-wrapper {
  padding: 1rem;
}

.remodal .remodal-close {
  color: #3c4793;
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
}
.remodal .remodal-close::before {
  font-size: 2rem;
}
.remodal ul {
  list-style: none;
  text-align: left;
}
.remodal ul li.child {
  padding-left: 1rem;
}

@media screen and (max-width: 992px) {
  .head-right {
    display: none;
  }
  .sp-menu {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 1.5rem;
  }
  .sp-menu > li {
    width: 100%;
    margin-bottom: 0;
  }
  .sp-menu .sp-link {
    display: block;
    width: 100%;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3c4793;
    padding: 0.3rem;
    letter-spacing: 0.05em;
  }
  .sp-menu .parent-menu a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
  }
  .sp-menu .parent-menu > ul a {
    padding: 0;
  }
  .sns-link .head-sns {
    font-size: 1.5rem;
    margin-right: 0.25rem;
  }
  .sns-link .head-sns:last-of-type {
    margin-right: 0;
  }
  .sp-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 2.7rem;
    letter-spacing: 0.1em;
  }
  .sp-button .sp-contact {
    padding: 0.5rem 1rem;
    background-color: #3c4793;
    color: #fff;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
    border: 1px solid #3c4793;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
  }
  .sp-button .sp-translation-button {
    padding: 0.5rem 1rem;
    border: 1px solid #231815;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
  }
  #sp-nav {
    display: block;
    position: fixed;
    z-index: 100;
    right: 4%;
    top: 1rem;
    width: 1.7rem;
    height: 1.7rem;
  }
  #sp-nav > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    position: relative;
  }
  #sp-nav > a span,
  #sp-nav > a span::before,
  #sp-nav > a span::after {
    display: block;
    position: absolute;
    background: #231815;
    width: 1.7rem;
    height: 2px;
  }
  #sp-nav > a span {
    top: 1rem;
  }
  #sp-nav > a span::before {
    content: "";
    top: -0.7083333333rem;
  }
  #sp-nav > a span::after {
    content: "";
    top: 0.7083333333rem;
  }
  .link-button.contact-button {
    max-width: 180px;
    height: 45px;
    margin-top: 2rem;
  }
  .menu-translation-wrap {
    margin-top: 1.5rem;
    text-align: center;
  }
  .menu-translation-wrap .gtranslate_wrapper select {
    margin-left: 0;
    width: 168px;
  }
}
@media screen and (max-width: 768px) {
  #sp-nav {
    right: 5%;
  }
}
@media screen and (max-width: 576px) {
  .sp-button {
    margin-right: 2.45rem;
  }
  .sp-button .sp-contact {
    padding: 0.25rem 0.5rem;
  }
}
.change-size,
.change-color {
  width: 2.4em;
  margin-left: 0.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  color: #4f4f4f;
  border-radius: 0.2rem;
  font-size: 0.9em;
  color: #4f4f4f !important;
  background: #fff !important;
}
.change-size.black,
.change-color.black {
  color: white !important;
  background: #000 !important;
}
.change-size.blue,
.change-color.blue {
  color: #fff000 !important;
  background: #2531c9 !important;
}

html.fs-l {
  font-size: 150%;
}
html.fs-xl {
  font-size: 200%;
}

body.theme-black {
  color: white !important;
  background-color: #000 !important;
}
body.theme-black * {
  color: white !important;
  background-color: #000 !important;
}
body.theme-black .logo img {
  -webkit-filter: invert(100%) brightness(200%) !important;
  filter: invert(100%) brightness(200%) !important;
  background-color: transparent !important;
}
body.theme-blue .logo img {
  -webkit-filter: invert(98%) sepia(77%) saturate(7494%) hue-rotate(45deg) brightness(200%) contrast(109%) !important;
  filter: invert(98%) sepia(77%) saturate(7494%) hue-rotate(45deg) brightness(200%) contrast(109%) !important;
  background-color: transparent !important;
}
body.theme-blue {
  color: #fff000 !important;
  background-color: #2531c9 !important;
}
body.theme-blue * {
  color: #fff000 !important;
  background-color: #2531c9 !important;
}/*# sourceMappingURL=basic.css.map */