@charset "UTF-8";
/* ブレイクポイント
================================================================================================= */
/* color
========================================================================== */
/* font
========================================================================== */
/* 会社概要ページ共通
------------------------------------------------------------*/
.mdbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .mdbr {
    display: inline;
  }
}

.caseHeader {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 3rem;
}
@media screen and (max-width: 1280px) {
  .caseHeader {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .caseHeader {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .caseHeader {
    margin-top: 0;
    margin-bottom: 26px;
  }
}
.caseHeader h1 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .caseHeader h1 {
    margin-bottom: 15px;
    font-size: 2.4rem;
    text-wrap: unset;
  }
}
@media screen and (max-width: 768px) {
  .caseHeader p {
    font-size: 1.4rem;
  }
}

.caseForm {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  border: 2px solid;
  padding: 40px 32px;
  border-radius: 20px;
  background-color: #FFFFF2;
  width: 1000px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  .caseForm {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .caseForm {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .caseForm {
    width: 90%;
    padding: 20px 16px;
    margin-bottom: 50px;
    border-radius: 8px;
    border-width: 1px;
  }
}
.caseForm__title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .caseForm__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
.caseForm__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .caseForm__content {
    width: 100%;
  }
}
.caseForm__content select {
  border: 1px solid #404040;
  border-radius: 10px 0 0 10px;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 768px) {
  .caseForm__content select {
    border-radius: 4px 0 0 4px;
    font-size: 1.5rem;
  }
}
.caseForm--single .caseForm__content select {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .caseForm--single .caseForm__content select {
    border-radius: 4px;
  }
}
.caseForm__content select:focus-visible {
  outline: none;
}
.caseForm__content button {
  border: 1px solid #404040;
  border-left: none;
  background-color: #7BC4C4;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 10px 10px 0;
  font-weight: bold;
  font-size: 2rem;
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .caseForm__content button {
    width: 80px;
    font-size: 1.5rem;
    padding: 12px 0;
    border-radius: 0 4px 4px 0;
  }
}
.caseForm__reset {
  text-align: right;
  width: 90%;
  margin: 10px auto 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .caseForm__reset {
    width: 100%;
  }
}

.caseLinks {
  background-color: #F0F0F0;
  margin-bottom: 100px;
}
.caseLinks__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .caseLinks__inner {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .caseLinks__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .caseLinks__inner {
    width: 92%;
    padding: 26px 0;
    gap: 16px;
  }
}
.caseLinks__link {
  text-decoration: none;
  border: 1px solid #419391;
}
.caseLinks__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .caseLinks__image {
    height: 100px;
  }
}
.caseLinks__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.caseLinks__text {
  text-align: center;
  font-size: 1.8rem;
  padding: 5px 0;
  background-color: #419391;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
}
.caseLinks__text::before, .caseLinks__text::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .caseLinks__text::before, .caseLinks__text::after {
    display: none;
  }
}
.caseLinks__text::before {
  right: 20px;
}
.caseLinks__text::after {
  right: 30px;
}
.caseLinks__text strong {
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .caseLinks__text strong {
    display: block;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .caseLinks__text {
    font-size: 1.3rem;
  }
}

.caseCategoryLinks {
  background-color: #F0F0F0;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .caseCategoryLinks {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.caseCategoryLinks__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 1280px) {
  .caseCategoryLinks__inner {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .caseCategoryLinks__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .caseCategoryLinks__inner {
    padding: 26px 5% 52px;
  }
}
.caseCategoryLinks__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .caseCategoryLinks__title {
    font-size: 5.6vw;
    margin-bottom: 3rem;
  }
}

.caseArchive {
  background-color: #F0F0F0;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .caseArchive {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.caseArchive__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 1280px) {
  .caseArchive__inner {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .caseArchive__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .caseArchive__inner {
    padding: 26px 5%;
  }
}
.caseArchive__num {
  margin-bottom: 10px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .caseArchive__num {
    padding-left: 0px;
  }
}
.caseArchive__num--bottom {
  text-align: right;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .caseArchive__num--bottom {
    padding-right: 0px;
  }
}
.caseArchive__item {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 80px;
  padding: 40px 80px;
  display: grid;
  grid-template: "t t t " auto "p . q " auto "v . q " auto "l . q " auto "i . q " auto/1fr 30px 1fr;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .caseArchive__item {
    padding: 20px 16px;
    margin-bottom: 40px;
    border-radius: 8px;
    grid-template: "t " auto "p " auto "v " auto "l " auto "q " auto "i " auto/1fr;
  }
}
.caseArchive__item:last-child {
  margin-bottom: 10px;
}
.caseArchive__item-title {
  grid-area: t;
  border-bottom: 3px solid #419391;
  padding: 10px 20px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-title {
    margin-bottom: 20px;
    border-bottom: 2px solid #419391;
    padding-left: 30px;
    font-size: 1.8rem;
  }
}
.caseArchive__item-title::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../img/case-icon.svg");
  margin-right: 10px;
  vertical-align: middle;
  background-size: 100% auto;
  background-repeat: no-repeat;
  left: -35px;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-title::before {
    width: 30px;
    height: 30px;
    left: -5px;
    bottom: 8px;
  }
}
.caseArchive__item-products {
  grid-area: p;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-products {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.caseArchive__item-volume {
  grid-area: v;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-volume {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.caseArchive__item-link {
  grid-area: l;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-link {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.caseArchive__item-pdf {
  grid-area: i;
  margin-bottom: 10px;
  padding-left: 20px;
  margin-left: 20px;
  width: 64%;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-pdf {
    width: 80%;
  }
}
.caseArchive__item-pdf img {
  width: 100%;
  border: 2px solid #333;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.caseArchive__item-pdf span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-top: 4px;
}
.caseArchive__item-pdf.has-image {
  cursor: pointer;
}
.caseArchive__item-pdf.no-image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.caseArchive__item-qa {
  grid-area: q;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.caseArchive__item-qa-item {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .caseArchive__item-qa-item {
    margin-bottom: 20px;
  }
}
.caseArchive__item-qa-item dt {
  font-weight: bold;
}
.caseArchive__item-qa-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.caseArchive .title {
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .caseArchive .title {
    display: inline-block;
    text-indent: -1.2em;
    padding-left: 1.2em;
    margin-bottom: 4px;
    font-size: 1.4rem;
  }
}
.caseArchive .content {
  display: block;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .caseArchive .content {
    display: inline-block;
    font-size: 1.4rem;
    padding-left: 18px;
  }
}
.caseArchive .content a {
  color: #419391;
}
.caseArchive__pageNation {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .caseArchive__pageNation {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.caseArchive__pageNation ul {
  display: inline-block;
}
.caseArchive__pageNation li {
  display: inline-block;
  margin: 0 5px;
}
.caseArchive__pageNation li a {
  display: block;
  padding: 8px 20px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
}
.caseArchive__pageNation li.current a {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.caseArchive__link {
  width: 600px;
  max-width: 100%;
  margin: 40px auto;
}
.caseArchive__link a {
  text-align: center;
  display: block;
  font-size: 2rem;
  padding: 16px 0;
  color: #fff;
  border-radius: 99px;
  background-color: #419391;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .caseArchive__link a {
    font-size: 1.7rem;
    padding: 12px 0;
  }
}
.caseArchive__link a::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  top: calc(50% + 1px);
  right: 60px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .caseArchive__link a::after {
    right: 30px;
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 768px) {
  .modaal-pdf-wrapper .modaal-container {
    height: auto;
    overflow: unset;
  }
  .modaal-pdf-wrapper .modaal-container .modaal-content {
    height: auto;
    overflow: unset;
  }
  .modaal-pdf-wrapper .modaal-container .modaal-close {
    position: absolute;
    left: 0px;
    top: -64px;
  }
}