@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rokkitt:ital,wght@0,100..900;1,100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #373737;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.flex {
  display: flex;
}

.tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

.desktop {
  display: block;
}
@media screen and (max-width: 1200px) {
  .desktop {
    display: none;
  }
}

.blue-btn {
  z-index: 1;
}
.blue-btn a {
  background: #0769B2;
  color: #fff;
  width: 300px;
  height: 70px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP_OTF Bold";
  font-size: 20px;
  transition: 0.2s;
}
.blue-btn a:hover {
  opacity: 0.6;
}

.white-btn {
  z-index: 100;
}
.white-btn a {
  background: #fff;
  color: #0769B2;
  width: 300px;
  height: 70px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP_OTF Bold";
  font-size: 20px;
  transition: 0.2s;
}
.white-btn a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .blue-btn a,
  .white-btn a {
    font-size: 16px;
    width: 260px;
    height: 50px;
    border-radius: 20px;
  }
}
.postcontent .blue-btn a {
  margin: auto;
  margin-top: 30px;
  width: 260px;
  height: 50px;
  font-size: 18px;
}

.section-button {
  display: block;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .section-button {
    padding: 40px 0;
  }
}

.common-button {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 400px;
  padding: 10px 0;
  background: #f44e3b;
  box-shadow: 0 8px 4px rgba(244, 78, 59, 0.3);
  border-radius: 30px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .common-button {
    width: 84vw;
  }
}
.common-button::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
  width: 14px;
  height: 14px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  border-radius: 3px;
}
.common-button:hover {
  box-shadow: 0 0 4px rgba(244, 78, 59, 0.3);
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.common-button__text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common-button__text {
    font-size: 16px;
  }
}

table.company {
  width: 100%;
  height: auto;
  margin: 0;
  border-collapse: separate;
  border: none;
  border-spacing: 0;
}
table.company tr {
  text-align: left;
}
table.company tr:last-child th, table.company tr:last-child td {
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: #CDCDCD;
}
table.company th,
table.company td {
  border-style: solid;
  border-width: 1px 0px 0px 0px;
  border-color: #CDCDCD;
  padding: 24px;
  font-family: "Noto Sans JP", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
}

.fixed-contact-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 160px;
  height: 160px;
  background-color: #f44e3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .fixed-contact-btn {
    display: none;
  }
}
.fixed-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.fixed-contact-btn .bg-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin-infinite 8s linear infinite;
}
@keyframes spin-infinite {
  100% {
    transform: rotate(360deg);
  }
}
.fixed-contact-btn .arrow-icon {
  position: relative;
  width: 40%;
  height: 40%;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .section-title {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}

@font-face {
  font-family: "LINE Seed JP_OTF Bold";
  src: url("../fonts/LINESeedJP_OTF_Bd.otf");
}
@font-face {
  font-family: "LINE Seed JP_OTF Reguler";
  src: url("../fonts/LINESeedJP_OTF_Rg.otf");
}
.lineseed-bold {
  font-family: "LINE Seed JP_OTF Bold";
}

.linesee-reguler {
  font-family: "LINE Seed JP_OTF Reguler";
}

.rokkitt {
  font-family: "Rokkitt", serif;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

body {
  color: #373737;
  overflow-x: hidden;
}

.breadcrumbs {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 5;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 30px;
  font-size: 14px;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumbs-item:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #6c757d;
  font-weight: bold;
}

.breadcrumbs-link {
  color: #0869b2;
  transition: color 0.3s;
}
.breadcrumbs-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumbs-current {
  color: #6c757d;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 0;
  }
  .breadcrumbs-list {
    padding: 0 20px;
    font-size: 12px;
  }
  .breadcrumbs-item:not(:last-child)::after {
    margin: 0 6px;
  }
}
.header {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .header-top {
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    height: 80px;
  }
}

.header .logo {
  line-height: 1;
  align-self: center;
}
.header .logo h1 {
  font-size: 10px;
  line-height: 1.4em;
  margin: 0;
  color: #6c757d;
  padding-bottom: 5px;
}
.header .logo img {
  width: 130px;
}

.header .nav {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .header .nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.4s;
    background-color: #0869b2;
    padding: 15px 20px;
  }
  .header .nav.active {
    transform: translateX(0);
  }
}

.header .nav-item {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.header button {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .header button {
    display: block;
  }
}
.header button.hum {
  position: absolute;
  right: 15px;
  top: 6px;
  z-index: 20;
}
.header button.hum .wrap {
  position: relative;
}
.header button.hum .wrap img {
  width: 50px;
  height: 60px;
}
.header button.hum .wrap .line {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header button.hum .wrap .line span {
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: all 0.4s;
  display: block;
}
.header button.hum .wrap .line span:nth-child(1) {
  top: 0;
}
.header button.hum .wrap .line span:nth-child(2) {
  margin: 5px 0;
}
.header button.hum .wrap .line span:nth-child(3) {
  top: 0;
}
.header button.hum.active .wrap .line span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.header button.hum.active .wrap .line span:nth-child(2) {
  opacity: 0;
}
.header button.hum.active .wrap .line span:nth-child(3) {
  top: -6px;
  transform: rotate(-45deg);
}

.nav-item2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  border-radius: 15px;
  color: #0769B2;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
}
.nav-item2:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(36, 79, 120, 0.18);
}
@media screen and (max-width: 1024px) {
  .nav-item2 {
    color: #fff;
  }
}

.nav-lp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #f44e3b;
  border-radius: 15px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .nav-lp {
    width: 50%;
    margin: 0 auto;
    padding: 10px 0;
  }
}
.nav-lp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(36, 79, 120, 0.18);
}

.first-view {
  margin-top: 145px;
  background-image: url(../images/top/main.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 145px);
}
@media screen and (max-width: 767px) {
  .first-view {
    background-image: url(../images/top/sp/main-sp.svg);
    height: calc(100vh - 80px);
    margin-top: 80px;
  }
}

.first-view .slider-area {
  margin-bottom: 40px;
  padding-top: 20px;
}
@media screen and (max-width: 585px) {
  .first-view .slider-area {
    margin-bottom: 20px;
    padding-top: 80px;
  }
}
.first-view .slider-area .swiper-wrapper {
  transition-timing-function: linear;
}
.first-view .slider-area .swiper-wrapper .swiper-slide:nth-child(odd) {
  padding-top: 8%;
}
.first-view .slider-area .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: block;
  padding-right: 40px;
}

.first-view .head {
  max-width: 1020px;
  margin: auto;
}
.first-view .head .main-copy {
  color: #0869b2;
  line-height: 1.7;
  font-size: 3vw;
  font-weight: 700;
  text-shadow: 2px 8px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .first-view .head .main-copy {
    padding-left: 60px;
    font-size: 32px;
  }
}
@media screen and (max-width: 585px) {
  .first-view .head .main-copy {
    padding-top: 80px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  }
}
.first-view .head .main-copy span {
  color: red;
  font-size: 1.4em;
}
.first-view .head .main-copy br.sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .first-view .head .main-copy br.sp {
    display: block;
  }
}

.why-our-lub {
  margin-top: -160px;
  overflow: hidden;
  padding-top: 80px;
}
@media screen and (max-width: 575px) {
  .why-our-lub {
    margin-top: -100px;
  }
}
.why-our-lub .gray .bg {
  background-color: #ECECF0;
  padding: 80px 0 130px;
  position: relative;
  margin-right: 12%;
  border-radius: 0 0 80px 0;
}
@media screen and (max-width: 1024px) {
  .why-our-lub .gray .bg {
    padding: 40px 0 80px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg {
    margin-right: 20px;
  }
}
.why-our-lub .gray .bg h2 {
  color: #0869b2;
  writing-mode: vertical-rl;
  font-weight: bold;
  position: absolute;
  right: -80px;
  top: -75px;
  z-index: 2;
  font-size: 10rem;
  line-height: 0.9;
  font-weight: 800;
}
@media screen and (max-width: 1570px) {
  .why-our-lub .gray .bg h2 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 1024px) {
  .why-our-lub .gray .bg h2 {
    position: relative;
    writing-mode: unset;
    right: auto;
    top: auto;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .why-our-lub .gray .bg h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg h2 {
    font-size: 4rem;
  }
}
.why-our-lub .gray .bg .reason {
  background-color: #ECECF0;
  border-radius: 50px 0 0 50px;
  padding: 80px;
  width: 100vw;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.05);
  margin-left: 20%;
}
@media screen and (max-width: 1024px) {
  .why-our-lub .gray .bg .reason {
    margin-left: 60px;
  }
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg .reason {
    padding: 32px 24px;
    padding-right: 80px;
    margin-left: 20px;
  }
}
.why-our-lub .gray .bg .reason .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .why-our-lub .gray .bg .reason .box {
    width: 56%;
  }
}
@media screen and (max-width: 1024px) {
  .why-our-lub .gray .bg .reason .box {
    width: 100%;
  }
}
.why-our-lub .gray .bg .reason .box h3 {
  color: #0869b2;
  font-weight: 900;
  font-size: 32px;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg .reason .box h3 {
    font-size: 28px;
  }
}
.why-our-lub .gray .bg .reason .box p.text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg .reason .box p.text {
    font-size: 16px;
  }
}
.why-our-lub .gray .bg .reason .box .tab-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  right: 30px;
}
.why-our-lub .gray .bg .reason .box .tab-area p.tab {
  width: 50%;
  text-align: center;
  font-weight: 800;
  position: relative;
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg .reason .box .tab-area p.tab {
    width: 100%;
  }
}
.why-our-lub .gray .bg .reason .box .tab-area p.tab span {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
}
.why-our-lub .gray .bg .reason .box .tab-area p.tab.position {
  position: relative;
  top: -30px;
}
@media screen and (max-width: 1199px) {
  .why-our-lub .gray .bg .reason .box .tab-area p.tab.position {
    top: -15px;
  }
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg .reason .box .tab-area p.tab.position {
    top: unset;
  }
}
.why-our-lub .gray .bg .reason .box .tab-area p.tab.position02 {
  position: relative;
  top: -60px;
}
@media screen and (max-width: 1199px) {
  .why-our-lub .gray .bg .reason .box .tab-area p.tab.position02 {
    top: -30px;
  }
}
@media screen and (max-width: 585px) {
  .why-our-lub .gray .bg .reason .box .tab-area p.tab.position02 {
    top: unset;
  }
}

.strength-title {
  background-color: #0869b2;
  color: #fff;
}

.strength-presence__title {
  padding: 60px 0;
  color: #0869b2;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .strength-presence__title {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .strength-presence__title {
    font-size: 24px;
  }
}
.strength-presence__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .strength-presence__container {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
  }
}
.strength-presence__container--item {
  padding: 0px;
}

.strength-presence-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.strength-presence-content__image img {
  width: 100%;
  height: 100%;
}
.strength-presence-content__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 4px 1px #EEFF00;
}
.strength-presence-content__text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.strength-operation {
  padding: 0 10%;
  background-color: rgba(255, 0, 0, 0.04);
}
@media screen and (max-width: 1024px) {
  .strength-operation {
    padding: 0;
  }
}
.strength-operation__title {
  padding: 60px 0;
  color: #0869b2;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .strength-operation__title {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .strength-operation__title {
    font-size: 24px;
  }
}
.strength-operation__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .strength-operation__container {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
  }
}
.strength-operation__container--item {
  padding: 0px;
}
@media screen and (max-width: 1024px) {
  .strength-operation__container--item:first-child {
    order: 2;
  }
}
@media screen and (max-width: 1024px) {
  .strength-operation__container--item:last-child {
    order: 1;
  }
}

.strength-operation-image {
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .strength-operation-image {
    max-width: 480px;
  }
}

.strength-operation-desc {
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .strength-operation-desc {
    max-width: 480px;
  }
}
.strength-operation-desc__list {
  padding: 20px 0;
}
.strength-operation-desc__list--title {
  font-size: 28px;
  font-weight: bold;
  line-height: 2;
  text-shadow: 0px 4px 1px #EEFF00;
}
.strength-operation-desc__list--text {
  font-size: 18px;
  font-weight: bold;
}

.contact {
  margin-top: -100px;
}
.contact.common {
  margin-top: 0;
}
.contact .contact-wrap {
  position: relative;
  border-radius: 100px 0 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .contact .contact-wrap .contact-bg img {
    height: 100vh;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact-wrap .contact-bg img {
    height: auto;
    object-fit: cover;
  }
}
.contact .contact-wrap .text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrap .text {
    justify-content: flex-start;
    margin-top: 60px;
  }
}
.contact .contact-wrap .text .contact-title {
  font-size: 10rem;
  color: #0869b2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact .contact-wrap .text .contact-title {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact-wrap .text .contact-title {
    font-size: 4rem;
  }
}
.contact .contact-wrap .text .wrap {
  width: 50%;
  margin-left: auto;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrap .text .wrap {
    width: 100%;
  }
}
.contact .contact-wrap .text .wrap .contact-subtitle {
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrap .text .wrap .contact-subtitle {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
  }
}
.contact .contact-wrap .text .wrap .contact-desc {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrap .text .wrap .contact-desc {
    text-align: center;
  }
}
.contact .contact-wrap .text .wrap .contact-desc span {
  padding: 0 4px;
  color: #f44e3b;
  font-size: 1.6em;
  letter-spacing: 0.04em;
}

.case-production {
  background-color: #ECECF0;
}

.case-operation {
  background-color: #0769B2;
}

.case-operation-title {
  color: #fff;
}

.case-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .case-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .case-area {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 90%;
  }
}

.case-flexbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  padding: 20px;
  color: inherit;
}
.case-flexbox:hover {
  background-color: #f8f9fa;
}
.case-flexbox.case-flexbox-operation:hover {
  background-color: #0C7FC6;
}

.case-ttl {
  background-color: #0769B2;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}
.case-ttl.case-ttl-operation {
  background-color: #fff;
  color: #0769B2;
}

.case-txt {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .case-txt {
    font-size: 14px;
  }
}
.case-txt.case-txt-operation {
  color: #fff;
}

.case-img {
  width: 100%;
  overflow: hidden;
}
.case-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.case-more {
  color: #0869b2;
  text-decoration: underline;
  transition: opacity 0.2s;
  text-align: right;
}
.case-more.case-more-operation {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .caseinfo a {
    font-size: 12px;
  }
}

.casetitle {
  margin-bottom: 10px;
}

.case-subinfo {
  margin-bottom: 20px;
  font-size: 12px;
  color: #888;
  text-align: right;
}
.case-subinfo li {
  margin-right: 15px;
}

.case-content p {
  margin-bottom: 1.6rem;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .case-content p {
    font-size: 14px;
  }
}
.case-content a {
  color: #0869b2;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.case-content a:hover {
  opacity: 0.8;
}
.case-content h3,
.case-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.6rem;
}
.case-content h3 {
  background-color: #0769B2;
  padding: 10px;
  color: #fff;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .case-content h3 {
    font-size: 20px;
  }
}
.case-content h4 {
  border-bottom: 2px solid #0769B2;
  color: #0769B2;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .case-content h4 {
    font-size: 18px;
  }
}
.case-content ul, .case-content ol {
  margin-bottom: 1.6rem;
}
.case-content ul li, .case-content ol li {
  margin-left: 20px;
  font-size: 16px;
}
.case-content ul li {
  list-style: disc;
}
.case-content ol li {
  list-style: decimal;
}

.caseimg {
  display: block;
  margin-bottom: 60px;
  text-align: center;
}
.caseimg img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.case-date {
  margin-bottom: 10px;
  color: #888;
  font-size: 14px;
  text-align: right;
}

.morebtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  min-height: 80px;
  padding: 0.05em 0;
  border-radius: 100px;
  box-shadow: 7px 7px 14px #c5c5c5, -7px -7px 14px #ffffff;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .morebtn {
    width: 280px;
    min-height: 60px;
    font-size: 18px;
  }
}
.morebtn::before {
  content: "";
  width: 0;
  transition: width 0.2s;
  height: 100%;
  background: #0769B2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 100px;
}
.morebtn:hover::before {
  width: 100%;
}
.morebtn:hover span {
  color: #fff;
}
.morebtn span {
  position: relative;
  z-index: 2;
  color: #0769B2;
  font-weight: 700;
  font-size: 18px;
}
.morebtn::after {
  position: absolute;
  top: 0;
  right: 20px;
  display: block;
  content: "";
  width: 10px;
  height: 100%;
  z-index: 2;
  transition: all 0.2s;
  background: url(https://shika-lab.jp/wp-content/themes/corporate-design8/images/top/morebtn1.png) no-repeat center center/100% auto;
}
.morebtn:hover::after {
  background: url(https://shika-lab.jp/wp-content/themes/corporate-design8/images/top/morebtn2.png) no-repeat center center/100% auto;
}
.morebtn.casemore {
  margin-left: auto;
  margin-top: 60px;
  margin-right: 20%;
  background: #0769B2;
  color: #fff;
  transition: all 0.4s;
  font-family: "LINE Seed JP_OTF Bold";
}
@media screen and (max-width: 1200px) {
  .morebtn.casemore {
    margin-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .morebtn.casemore {
    margin: auto;
    margin-top: 80px;
    max-width: 280px;
    width: 100%;
    min-height: 60px;
    font-size: 18px;
  }
}
.morebtn.casemore::before {
  background: #fff;
}
.morebtn.casemore:hover {
  color: #0769B2;
  background: #fff;
}
.morebtn.casemore::after {
  background: url(https://shika-lab.jp/wp-content/themes/corporate-design8/images/top/morebtn2.png) no-repeat center center/100% auto;
}
.morebtn.casemore:hover::after {
  background: url(https://shika-lab.jp/wp-content/themes/corporate-design8/images/top/morebtn1.png) no-repeat center center/100% auto;
}
.morebtn.casemore.pt02 {
  margin-right: 0;
  margin-left: 0;
}
.morebtn.case2more {
  margin-left: auto;
  margin-top: 60px;
  margin-right: 20%;
  background: #fff;
  color: #0769B2;
  transition: all 0.4s;
  font-family: "LINE Seed JP_OTF Bold";
  box-shadow: 3px 3px 10px #035898, -3px -3px 10px #5ea6d2;
}
@media screen and (max-width: 1200px) {
  .morebtn.case2more {
    margin-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .morebtn.case2more {
    margin: auto;
    margin-top: 80px;
    max-width: 280px;
    width: 100%;
    min-height: 60px;
    font-size: 18px;
  }
}
.morebtn.case2more.pt02 {
  margin-right: 0;
  margin-left: 0;
}
.morebtn.case2more:hover {
  color: #fff;
  background: #0769B2;
}
.morebtn.more-article {
  font-size: 14px;
  border-radius: 15px;
  padding: 10px 0;
  width: 200px;
  min-height: 45px;
  box-shadow: 2px 2px 3px rgba(181, 181, 181, 0.3), -2px -2px 3px rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .morebtn.more-article {
    display: none;
  }
}
.morebtn.more-article::before {
  border-radius: 15px;
}
.morebtn.more-article::after {
  right: 20px;
  width: 6px;
}
.morebtn.more-article-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .morebtn.more-article-sp {
    display: flex;
    margin: auto;
  }
}

@keyframes anime {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}
.morebtn-contact-wrap {
  position: relative;
  width: 320px;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .morebtn-contact-wrap {
    width: 256px;
    margin: 20px auto;
  }
}
.morebtn-contact-wrap::before, .morebtn-contact-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 3px;
  left: 0;
  border-radius: 32px;
  background: #ffaaae;
  border: 1px solid #ff999e;
  transform: translate3d(0, 0, 0);
}
.morebtn-contact-wrap::before {
  animation: anime 2s ease-out infinite;
}
.morebtn-contact-wrap::after {
  animation: anime 2s ease-out 1s infinite;
}

.morebtn-contact {
  display: block;
  position: relative;
  top: 3px;
  margin-top: 20px;
  padding: 20px 0;
  border-radius: 32px;
  color: #fff;
  text-align: center;
  background: #80120d;
}
.morebtn-contact::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #c81c14;
  border-radius: 32px;
  transition: all 0.2s;
  transform: translate3d(0, 0, 0);
}
.morebtn-contact span {
  display: block;
  position: relative;
  top: -3px;
  z-index: 2;
  transition: all 0.2s;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.morebtn-contact span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 0;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: translateX(5px) rotate(45deg);
  transition: all 0.3s 0.1s;
}
.morebtn-contact:hover {
  top: 3px;
  opacity: 0.9 !important;
  transition: none !important;
}
.morebtn-contact:hover::after {
  top: 0;
  background: #e00e18;
}
.morebtn-contact:hover span {
  top: 0;
}
.morebtn-contact:hover span::after {
  right: 27px;
}

.footer {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 0;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .footer {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 15px 0;
  }
}

.footer__logo {
  position: relative;
  display: flex;
  padding-bottom: 40px;
  width: 172px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    padding-bottom: 20px;
  }
}

.footer__symbol {
  position: relative;
  width: 57px;
}

.footer__circle {
  position: absolute;
  background-color: #dc6a74;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}
.footer__circle--1 {
  width: 21.8536585366%;
  height: 21.8536585366%;
  top: 26.7317073171%;
  left: 13.9512195122%;
}
.footer__circle--2 {
  width: 23.0243902439%;
  height: 23.0243902439%;
  top: 1.5488867377%;
  left: 62.8292682927%;
}

.footer__type {
  width: 115px;
}

.footer__text {
  margin-left: 6px;
}
.footer__text--1 {
  width: 84.3902439024%;
  padding-top: 15%;
}
.footer__text--2 {
  width: 100%;
  padding-top: 6%;
}
.footer__text--br {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__text--br {
    display: block;
  }
}

.footer__item {
  font-size: 14px;
}
.footer__item--address .footer__text {
  margin-left: 0;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer__item--tel .footer__text {
    margin: 5px 0 0 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
}

.footer__wrap {
  padding: 20px 0;
}
.footer__wrap--summary {
  padding-right: 60px;
  border-right: 1px solid rgba(130, 107, 107, 0.12);
}
@media screen and (max-width: 1200px) {
  .footer__wrap--summary {
    width: 100%;
    padding: 40px 0 0 0;
    border-right: none;
    border-top: 1px solid rgba(130, 107, 107, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
  }
}
.footer__wrap--summary .footer__item {
  display: flex;
  align-items: center;
}
.footer__wrap--summary .footer__item:not(:last-child) {
  padding: 0 0 10px 0;
}
@media screen and (max-width: 1200px) {
  .footer__wrap--summary .footer__item:not(:last-child) {
    padding: 0 20px 0 0;
  }
}
.footer__wrap--summary .footer__item--address {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer__wrap--summary .footer__item--address {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer__wrap--summary .footer__item--address:nth-child(n+1) {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__wrap--summary .footer__item--tel {
    padding-right: 20px;
    display: flex;
    align-items: center;
  }
  .footer__wrap--summary .footer__item--tel::after {
    content: "";
    width: 1px;
    height: 130%;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrap--summary .footer__item--tel {
    display: flex;
    flex-direction: column;
  }
  .footer__wrap--summary .footer__item--tel:nth-child(n+1) {
    padding: 0;
  }
  .footer__wrap--summary .footer__item--tel::after {
    display: none;
  }
}
.footer__wrap--menu {
  flex: 1;
  padding-left: 60px;
}
@media screen and (max-width: 1200px) {
  .footer__wrap--menu {
    padding: 0 0 40px 0;
    order: 1;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrap--menu {
    width: 100%;
    flex-direction: column;
    padding: 0 15px 40px;
  }
}
.footer__wrap--menu .footer__item {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer__wrap--menu .footer__item {
    width: 50%;
  }
}
.footer__wrap--copyright {
  width: 100%;
  margin-top: 30px;
  padding: 30px 0 35px;
  border-top: 1px solid rgba(130, 107, 107, 0.12);
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .footer__wrap--copyright {
    order: 3;
  }
}
.footer__wrap--copyright .footer__text {
  color: #666;
  font-size: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer__wrap--copyright .footer__text {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }
}
.footer__wrap--copyright .footer__item:not(:last-child) {
  padding-right: 20px;
}

.footer__linkList {
  display: flex;
  width: 100%;
  justify-content: left;
}
@media screen and (max-width: 767px) {
  .footer__linkList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__linkList--item {
  display: flex;
  justify-content: left;
  align-items: center;
}
.footer__linkList--item a {
  width: 100%;
  padding: 20px;
  color: #3a3937;
  font-size: 14px;
  font-weight: bold;
}
.footer__linkList--item a:hover {
  color: #0869b2;
}
@media screen and (max-width: 767px) {
  .footer__linkList--item a {
    display: block;
    padding: 10px 0;
    text-align: center;
  }
}

@media screen and (max-width: 1200px) {
  .footer__list--1 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .footer__list--1 {
    grid-column: 1/2;
    grid-row: 2/3;
    flex-direction: column !important;
  }
}
@media screen and (max-width: 1200px) {
  .footer__list--2 {
    padding-left: 3vw;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .footer__list--2 {
    padding-left: 0;
    grid-column: 2/3;
    grid-row: 2/3;
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .footer__wrap--summary .footer__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer__wrap--copyright .footer__list {
  display: flex;
}

.footer__label {
  min-width: 4.5em;
  font-weight: bold;
  font-weight: 700;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer__label {
    width: 50%;
  }
}

.footer__br {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__br {
    display: block;
  }
}

.fcgray {
  color: #373737 !important;
}

.about {
  margin-top: -4%;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 0;
  }
}
.about .bg {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  border-radius: 0px 80px 0px 0px;
}
@media screen and (max-width: 767px) {
  .about .bg {
    padding: 60px 0;
    border-radius: 0;
  }
}
.about .bg .container {
  max-width: 900px;
  margin: auto;
}
.about .bg .container .about-head {
  max-width: 400px;
  color: #0769B2;
  position: relative;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .about .bg .container .about-head {
    margin: 0 auto 40px;
    padding: 0 20px;
  }
}
.about .bg .container .about-head__title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .about .bg .container .about-head__title {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    text-align: center;
  }
}
.about .bg .container table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about .bg .container table {
    padding: 0 20px;
  }
}
.about .bg .container table.pt02 {
  margin-top: 50px;
}
.about .bg .container table tr {
  border-bottom: 2px solid #c3d2db;
  display: flex;
  padding: 20px 0;
  position: relative;
}
.about .bg .container table tr:first-child {
  border-top: 2px solid #c3d2db;
}
@media screen and (max-width: 767px) {
  .about .bg .container table tr:first-child {
    border-top: 1px solid #c3d2db;
  }
}
@media screen and (max-width: 767px) {
  .about .bg .container table tr {
    border-bottom: 1px solid #c3d2db;
    flex-direction: column;
    padding-left: 20px;
  }
}
.about .bg .container table tr th,
.about .bg .container table tr td {
  width: 50%;
  text-align: left;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .about .bg .container table tr th,
  .about .bg .container table tr td {
    width: fit-content;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .about .bg .container table tr th {
    margin-bottom: 20px;
    position: relative;
  }
}
.about .bg .container table tr th::after {
  content: none;
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  background-color: #c3d2db;
  height: 2px;
}
@media screen and (max-width: 1200px) {
  .about .bg .container table tr th::after {
    content: "";
  }
}
.about .bg .container table tr::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #c3d2db;
  width: 3px;
  height: 80%;
}
@media screen and (max-width: 767px) {
  .about .bg .container table tr::after {
    content: none;
  }
}
.about .bg .container .banner-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .about .bg .container .banner-wrap {
    padding: 0 20px;
  }
}
.about .bg .container .banner-wrap a {
  display: block;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.about .bg .container .banner-wrap a:hover {
  opacity: 0.5;
  transition: all 0.5s;
}

.faq {
  margin-top: -5%;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 0;
  }
}
.faq .bg {
  background-color: #ECECF0;
  padding: 200px 0;
  position: relative;
  border-radius: 0px 80px 0px 0px;
}
@media screen and (max-width: 767px) {
  .faq .bg {
    padding: 60px 0;
    border-radius: 0;
  }
}
.faq .bg .faq-head {
  max-width: 320px;
  margin: 0 auto 100px;
  color: #0769B2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq .bg .faq-head {
    max-width: 260px;
    margin: 0 auto 40px;
    padding: 0 20px;
  }
}
.faq .bg .faq-head__title {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .faq .bg .faq-head__title {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    text-align: center;
  }
}
.faq .bg .contents .container {
  max-width: 900px;
  margin: auto;
  border-bottom: 2px solid #0769B2;
}
.faq .bg .contents .container:first-child {
  border-top: 2px solid #0769B2;
}

.blog {
  margin-top: -5%;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog {
    margin-top: 0;
  }
}
.blog .bg {
  background-color: #0769B2;
  margin-right: 200px;
  padding-top: 200px;
  padding-bottom: 100px;
  border-radius: 0px 0px 80px 0px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .blog .bg {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog .bg {
    margin-right: 0;
    padding-top: 30px;
    padding-bottom: 60px;
    border-radius: 0;
  }
}
.blog .bg .blog-head {
  max-width: 530px;
  margin-left: auto;
  position: relative;
  right: 12rem;
}
@media screen and (max-width: 767px) {
  .blog .bg .blog-head {
    margin: auto;
    margin-bottom: 30px;
    right: unset;
  }
}
@media screen and (max-width: 767px) {
  .blog .bg .blog-head {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog .bg .blog-head img {
    display: none;
  }
}
.blog .bg .blog-head .position {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .blog .bg .blog-head .position {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 20px;
  }
}
.blog .bg .blog-head .position .blog-title {
  color: #fff;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .blog .bg .blog-head .position .blog-title {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .blog .bg .blog-head .position a.seemore {
    display: none;
  }
}
.blog .bg a.seemore {
  display: block;
  background-color: #fff;
  color: #0C7FC6;
  font-size: 12px;
  border-radius: 15px;
  padding: 10px 0;
  width: 200px;
  text-align: center;
}
.blog .bg a.sp {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .blog .bg a.sp {
    display: none;
  }
}

.news {
  z-index: 2;
  position: relative;
}
.news .bg {
  background-color: #0C7FC6;
  margin-left: 200px;
  padding-top: 60px;
  padding-bottom: 100px;
  border-radius: 0px 0px 0 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .news .bg {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news .bg {
    margin-left: 0;
    padding-top: 30px;
    padding-bottom: 60px;
    border-radius: 0;
  }
}
.news .bg .news-head {
  max-width: 530px;
  margin-left: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news .bg .news-head {
    margin: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news .bg .news-head {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .news .bg .news-head img {
    display: none;
  }
}
.news .bg .news-head .position {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .news .bg .news-head .position {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 20px;
  }
}
.news .bg .news-head .position .news-title {
  color: #fff;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .news .bg .news-head .position .news-title {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .news .bg .news-head .position a.seemore {
    display: none;
  }
}
.news .bg .swiper-button-next,
.news .bg .swiper-button-prev {
  top: 65px;
}
@media screen and (max-width: 767px) {
  .news .bg .swiper-button-next,
  .news .bg .swiper-button-prev {
    top: 33%;
  }
}
.news .bg a.seemore {
  display: block;
  background-color: #fff;
  color: #0C7FC6;
  font-size: 12px;
  border-radius: 15px;
  padding: 10px 0;
  width: 200px;
  text-align: center;
}
.news .bg a.sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .news .bg a.sp {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}

.price {
  background-image: url(../images/top/price-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0 100px;
}
@media (max-width: 1399px) {
  .price {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .price {
    padding: 0 0 60px;
  }
}
.price__container {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  gap: 8%;
  margin: auto;
}
@media (max-width: 1399px) {
  .price__container {
    gap: 4%;
  }
}
@media screen and (max-width: 1024px) {
  .price__container {
    flex-direction: column;
    width: 60%;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .price__container {
    max-width: 400px;
    width: 90%;
  }
}
.price__container--item {
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
}
@media screen and (max-width: 1024px) {
  .price__container--item {
    padding: 20px 20px;
  }
}

.price-content {
  padding: 40px 0;
}
.price-content__title {
  color: #0869b2;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price-content__title {
    font-size: 28px;
  }
}
.price-content__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}
.price-content__info--item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.price-content__info--item p:first-child {
  font-size: 20px;
  font-weight: bold;
}
.price-content__info--item p:last-child {
  font-size: 20px;
  font-weight: bold;
}
.price-content__info--item p:last-child span {
  color: #f44e3b;
  font-size: 2em;
  font-weight: bold;
}
.price-content__info--plus {
  font-size: 24px;
  font-weight: bold;
}
.price-content__button .common-button {
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .price-content__button .common-button {
    max-width: 260px;
  }
}

.top-article__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.top-article__caption--text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top-article__caption--text {
    font-size: 14px;
  }
}
.top-article__caption--title {
  margin-top: 10px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .top-article__caption--title {
    font-size: 18px;
  }
}

.news-swiper {
  overflow: hidden;
  margin-left: 10rem;
  margin-top: -30px;
}
@media screen and (max-width: 1200px) {
  .news-swiper {
    margin-left: 0;
    margin-top: 0;
  }
}
.news-swiper .swiper-slide {
  max-width: 500px;
}
.news-swiper .swiper-button-next:after,
.news-swiper .swiper-rtl .swiper-button-prev:after,
.news-swiper .swiper-button-prev:after,
.news-swiper .swiper-rtl .swiper-button-next:after {
  content: none;
}
.news-swiper .swiper-button-next,
.news-swiper .swiper-rtl .swiper-button-prev,
.news-swiper .swiper-button-prev,
.news-swiper .swiper-rtl .swiper-button-next {
  width: 60px;
}

.blog-swiper {
  margin-right: 10rem;
  margin-top: -30px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .blog-swiper {
    margin-right: 0;
    margin-top: 0;
  }
}
.blog-swiper .swiper-slide {
  max-width: 500px;
}
.blog-swiper .swiper-button-next:after,
.blog-swiper .swiper-rtl .swiper-button-prev:after,
.blog-swiper .swiper-button-prev:after,
.blog-swiper .swiper-rtl .swiper-button-next:after {
  content: none;
}
.blog-swiper .swiper-button-next,
.blog-swiper .swiper-rtl .swiper-button-prev,
.blog-swiper .swiper-button-prev,
.blog-swiper .swiper-rtl .swiper-button-next {
  width: 60px;
}
.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
  top: 75px;
}
@media screen and (max-width: 767px) {
  .blog-swiper .swiper-button-next,
  .blog-swiper .swiper-button-prev {
    top: 33%;
  }
}

.accordion.open .accordion__content {
  overflow: visible;
  opacity: 1;
  visibility: visible;
}
.accordion.open .accordion__button--arrow img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.accordion__button {
  display: grid;
  grid-template-columns: 50px 1fr 25px;
  gap: 40px;
  background: none;
  border: none;
  width: 100%;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .accordion__button {
    grid-template-columns: 25px 1fr 15px;
    padding: 10px 20px;
    gap: 20px;
  }
}
.accordion__button:hover {
  background-color: #cce4f2;
  transition: all 0.5s;
}
.accordion__button--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.accordion__button--title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .accordion__button--title {
    font-size: 16px;
  }
}
.accordion__button--arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.accordion__button--arrow img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion__content {
  overflow: hidden;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.accordion__content-item {
  display: grid;
  grid-template-columns: 50px 1fr 25px;
  gap: 40px;
  background-color: #ECECF0;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .accordion__content-item {
    grid-template-columns: 25px 1fr 15px;
    padding: 10px 20px;
    gap: 20px;
  }
}
.accordion__content-item--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.accordion__content-item--text {
  display: flex;
  align-items: center;
  height: auto;
  text-align: left;
  line-height: 1.8;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .accordion__content-item--text {
    line-height: 1.4;
    letter-spacing: 0.04rem;
    font-feature-settings: "palt";
    font-size: 14px;
  }
}

/*# sourceMappingURL=styles.css.map */