@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-family: "Crimson Text", "Noto Sans JP", sans-serif;
  font-size: 100%;
  background-color: #FFFFFF;
  color: #333333;
}

a {
  text-decoration: none;
  color: black;
}

li {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2%;
}
@media (max-width: 768px) {
  .container {
    max-width: 600px;
    padding-inline: 5%;
  }
}

.section-title {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2%;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .section-title {
    max-width: 600px;
    padding-inline: 5%;
  }
}
.section-title .title {
  display: flex;
  align-items: end;
  color: #092A63;
  font-weight: bold;
  gap: 30px;
}
@media (max-width: 425px) {
  .section-title .title {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .section-title .title .dash {
    margin-left: 20px;
  }
}
.section-title .title .en {
  font-size: 2.25rem;
}
.section-title .title h2 {
  font-weight: normal;
  font-size: 1rem;
}
.section-title .explanation {
  margin-top: 50px;
}

.dash {
  position: relative;
}
.dash::before, .dash::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background-color: #092A63;
}
.dash::before {
  left: -15px;
}
.dash::after {
  right: -15px;
}

.highlight {
  color: #144BA0;
}

.text {
  line-height: 160%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}

.gold-line {
  position: relative;
  z-index: 0;
}
.gold-line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
  background: linear-gradient(to right, #F2DC6D, #DB9F13);
  opacity: 0.3;
  z-index: -1;
}

.contact-btn {
  position: relative;
}
@media (max-width: 768px) {
  .contact-btn {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #333333;
  transform: translate(3%, 6%);
  z-index: -2;
}
@media (max-width: 768px) {
  .contact-btn::after {
    display: none;
  }
}
.contact-btn a {
  display: block;
  padding: 15px 40px;
  color: transparent;
  background-image: linear-gradient(to right, #F2DC6D, #DB9F13);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 2.25rem;
  position: relative;
  transition: background-image 0.2s ease;
  /* 初期：単色 */
  /* ホバー時に表示するグラデーション */
}
.contact-btn a:hover {
  background-image: linear-gradient(to right, #144BA0, #144BA0);
}
.contact-btn a::before, .contact-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.contact-btn a::before {
  background: #092A63;
  opacity: 1;
}
.contact-btn a::after {
  background: linear-gradient(to right, #F2DC6D, #DB9F13);
  opacity: 0;
}
.contact-btn a:hover::before {
  opacity: 0;
}
.contact-btn a:hover::after {
  opacity: 1;
}

.view-more {
  display: block;
  margin: 0 auto;
  width: 300px;
  background-color: #092A63;
  text-align: center;
  font-size: 1.5rem;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}
@media (max-width: 768px) {
  .view-more {
    width: 100%;
  }
}
.view-more.btn:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #FFF; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.view-more.btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.view-more span {
  position: relative;
  display: block;
  color: #fff;
  border: 1px #092A63 solid;
  width: 100%;
  padding-block: 15px;
  z-index: 3;
}
.view-more span::before, .view-more span::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 20px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s ease;
}
.view-more span::before {
  top: 37%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}
.view-more span::after {
  bottom: 37%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s ease;
}
.view-more span:hover {
  color: #092A63;
}
.view-more span:hover::before, .view-more span:hover::after {
  background-color: #092A63;
}

.page-title {
  height: 175px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 10px;
  font-size: 2rem;
  color: #fff;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 425px) {
  .page-title {
    font-size: 1.2rem;
  }
}
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #6B7280;
  z-index: -2;
}

.page-section-title {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2%;
  margin-bottom: 100px;
  color: #092A63;
}
@media (max-width: 768px) {
  .page-section-title {
    max-width: 600px;
    padding-inline: 5%;
  }
}
.page-section-title .gold-line {
  width: fit-content;
}
.page-section-title .gold-line::before {
  bottom: -10px;
  width: 40px;
  height: 4px;
  opacity: 1;
}

/* ========= 戻るボタン ========= */
.btn-wrapper {
  padding-top: 150px;
  padding-bottom: 100px;
}

.back {
  display: block;
  margin: 0 auto;
  width: 300px;
  background-color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}
@media (max-width: 768px) {
  .back {
    width: 100%;
  }
}
.back.btn:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #092A63; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.back.btn:hover:before {
  transform-origin: right top;
  transform: scale(1, 1);
}
.back span {
  position: relative;
  display: block;
  color: #092A63;
  border: 1px #092A63 solid;
  width: 100%;
  padding-block: 15px;
  z-index: 3;
}
.back span::before, .back span::after {
  content: "";
  position: absolute;
  left: 20px;
  width: 20px;
  height: 3px;
  background-color: #092A63;
  transition: 0.3s ease;
}
.back span::before {
  top: 37%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s ease;
}
.back span::after {
  bottom: 37%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}
.back span:hover {
  color: #FFF;
}
.back span:hover::before, .back span:hover::after {
  background-color: #FFF;
}

header {
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2%;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: transparent;
}
@media (max-width: 768px) {
  header {
    height: 50px;
    padding-left: 1%;
    padding-right: 0;
  }
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  z-index: -1;
}
header .neo-logo {
  height: 70%;
}
header .neo-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5px;
}
header .neo-logo a h1 {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
}
header .neo-logo a img {
  height: 100%;
  width: auto;
  display: block;
}
header .toggle-btn {
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: #6B7280;
  position: relative;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  header .toggle-btn {
    display: block;
  }
}
header .toggle-btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 60%;
  background-color: #fff;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  header .toggle-btn span {
    height: 2px;
  }
}
header .toggle-btn span:nth-child(1) {
  top: 26%;
}
header .toggle-btn span:nth-child(2) {
  top: 48%;
}
header .toggle-btn span:nth-child(3) {
  top: 70%;
}
header nav {
  height: 100%;
}
@media (max-width: 768px) {
  header nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    padding-top: 50px;
    background-color: #6B7280;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
}
header .nav-pc {
  display: flex;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 768px) {
  header .nav-pc {
    display: none;
  }
}
header .nav-pc__item {
  height: 100%;
}
header .nav-pc__trigger {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.3rem;
  position: relative;
}
header .nav-pc__trigger::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 2px;
  width: 0;
  background-image: linear-gradient(to right, #F2DC6D, #DB9F13);
  opacity: 0;
  transition: all 0.3s ease;
}
header .nav-pc__trigger:hover::after {
  opacity: 1;
  width: 100%;
}
header .nav-pc .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
header .nav-pc .dropdown__title {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  margin-block: 20px;
}
header .nav-pc .dropdown__title .en {
  font-size: 2.25rem;
  font-weight: bold;
}
header .nav-pc .dropdown__title .dash {
  width: fit-content;
  margin: 0 auto;
}
header .nav-pc .dropdown__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
}
header .nav-pc .dropdown__list li {
  text-align: center;
}
header .nav-pc .dropdown__list li .item {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  position: relative;
  z-index: 0;
  transition: text-shadow 0.3s ease;
}
header .nav-pc .dropdown__list li .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F2DC6D;
  box-shadow: 0 0 10px 5px #F2DC6D;
  border-radius: 10px;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}
header .nav-pc .dropdown__list li .item:hover::after {
  opacity: 0.5;
  transform: scaleX(1);
}
header .nav-pc .dropdown__list li .item .en {
  font-size: 1.125rem;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}
header .nav-pc .dropdown__list li .item .en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%) rotate(90deg);
  background-image: url(../img/icon_CaretUp.webp);
  background-size: contain; /* 画像を要素に収める */
  background-repeat: no-repeat; /* 繰り返さない */
  background-position: center; /* 中央に配置 */
  width: 15px;
  height: 15px;
  z-index: 1;
  transition: 0.3s ease;
}
header .nav-pc .dropdown__list li .item .dash {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  z-index: 1;
}
header .nav-pc .dropdown__list li .item .dash::before, header .nav-pc .dropdown__list li .item .dash::after {
  height: 1px;
  width: 5px;
}
header .nav-pc .dropdown__list li .item .dash::before {
  left: -10px;
}
header .nav-pc .dropdown__list li .item .dash::after {
  right: -10px;
}
header .nav-sp {
  display: none;
}
@media (max-width: 768px) {
  header .nav-sp {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
header .nav-sp__item {
  color: #fff;
}
header .nav-sp .dropdown {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 4%;
}
header .nav-sp .dropdown__title {
  text-align: center;
  margin-block: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2%;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 2px #fff solid;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .nav-sp .dropdown__title:hover {
  opacity: 0.5;
}
header .nav-sp .dropdown__title.true::after {
  content: "+";
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
header .nav-sp .dropdown__title.close.true::after {
  transform: rotate(45deg);
}
header .nav-sp .dropdown__title .en {
  font-size: 1.875rem;
  font-weight: bold;
}
header .nav-sp .dropdown__title .dash {
  width: fit-content;
  margin: 0 auto 0 50px;
}
header .nav-sp .dropdown__title .dash::before, header .nav-sp .dropdown__title .dash::after {
  background-color: #fff;
}
header .nav-sp .dropdown__list {
  width: 94%;
  margin-left: auto;
  display: none;
}
header .nav-sp .dropdown__list li .item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  width: 100%;
  font-weight: bold;
  border-bottom: 2px #fff solid;
  position: relative;
  transition: all 0.3s ease;
  color: #fff;
  padding: 0 2% 8px 2%;
}
header .nav-sp .dropdown__list li .item:hover {
  opacity: 0.5;
}
header .nav-sp .dropdown__list li .item .en {
  font-size: 1.5rem;
  position: relative;
}
header .nav-sp .dropdown__list li .item .dash {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  z-index: 1;
}
header .nav-sp .dropdown__list li .item .dash::before, header .nav-sp .dropdown__list li .item .dash::after {
  height: 1px;
  width: 5px;
  background-color: #fff;
}
header .nav-sp .dropdown__list li .item .dash::before {
  left: -10px;
}
header .nav-sp .dropdown__list li .item .dash::after {
  right: -10px;
}
header.open .toggle-btn span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-315deg);
}
header.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
header.open .toggle-btn span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(315deg);
}
header.open nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

footer {
  margin-top: 100px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  background-color: #6B7280;
  width: 100%;
  height: 100%;
  z-index: -10;
}
footer .footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18%;
  padding: 8% 5%;
  position: relative;
}
@media (max-width: 768px) {
  footer .footer-contact {
    flex-direction: column;
    gap: 30px;
  }
}
footer .footer-contact::before {
  content: "";
  position: absolute;
  background-image: url(../img/contact.webp);
  background-size: cover; /* 画像を要素に収める */
  background-repeat: no-repeat; /* 繰り返さない */
  background-position: center; /* 中央に配置 */
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: -5;
}
footer .footer-contact .contact-text {
  text-align: center;
  background-color: #FFFFFF;
  padding: 5% 3%;
  border: 1px #F2DC6D solid;
}
@media (max-width: 768px) {
  footer .footer-contact .contact-text {
    width: 100%;
  }
}
@media (max-width: 425px) {
  footer .footer-contact .contact-text {
    font-size: clamp(0.75rem, 4.2vw, 1.2rem);
  }
}
@media (max-width: 768px) {
  footer .footer-contact .contact-btn {
    width: 100%;
  }
}
footer .footer {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 2%;
  height: 47vh;
}
@media (max-width: 768px) {
  footer .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15%;
    padding: 0 5%;
    margin-block: 70px;
  }
}
footer .footer .info {
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer .info {
    width: 100%;
  }
}
footer .footer .info .neo-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5px;
}
@media (max-width: 768px) {
  footer .footer .info .neo-logo a {
    justify-content: center;
    margin-bottom: 30px;
  }
}
footer .footer .info .neo-logo a p {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
}
footer .footer .info .neo-logo a img {
  width: 20px;
  display: block;
}
footer .footer .info .address {
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
footer .footer .info .address p {
  margin-block: 10px;
}
footer .footer nav {
  width: 36%;
  display: flex;
  justify-content: center;
  gap: 15%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  footer .footer nav {
    display: none;
  }
}
footer .footer nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .footer nav ul li {
  width: 100%;
}
footer .footer nav ul li a {
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  position: relative;
}
footer .footer nav ul li a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent white;
  border-width: 5px 0px 5px 8.66px;
}
footer .footer nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .footer nav ul li a:hover::after {
  opacity: 1;
  width: 100%;
}
footer .footer .link {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer .link {
    gap: 40px;
    width: 100%;
  }
}
footer .footer .link .shopping {
  display: flex;
  gap: 6%;
}
@media (max-width: 768px) {
  footer .footer .link .shopping {
    justify-content: center;
  }
}
footer .footer .link .sns {
  display: flex;
  gap: 10%;
}
@media (max-width: 768px) {
  footer .footer .link .sns {
    justify-content: center;
  }
}
footer .footer .link a {
  display: inline-block;
  transition: all 0.3s ease;
}
footer .footer .link a:hover {
  opacity: 0.5;
}
footer .footer .link img {
  height: 50px;
  width: auto;
}
footer .copy {
  background-color: #fff;
  padding-block: 15px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 0.625rem;
  position: relative;
}
footer .copy .back-to-top {
  content: "";
  position: absolute;
  top: -50%;
  transform: translateY(-15%);
  right: 5%;
  width: 60px;
  height: 60px;
  background-color: #092A63;
  border-radius: 50%;
  border: #F2DC6D 1px solid;
  transition: 0.3s ease;
}
footer .copy .back-to-top:hover {
  background-color: #F2DC6D;
}
footer .copy .back-to-top span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s ease;
}
footer .copy .back-to-top span::before, footer .copy .back-to-top span::after {
  content: "";
  position: absolute;
  top: 47%;
  background-color: #F2DC6D;
  height: 2px;
  width: 17px;
}
footer .copy .back-to-top span::before {
  left: 26%;
  transform: translateY(-50%) rotate(-45deg);
}
footer .copy .back-to-top span::after {
  right: 26%;
  transform: translateY(-50%) rotate(45deg);
}
footer .copy .back-to-top span:hover::before, footer .copy .back-to-top span:hover::after {
  background-color: #092A63;
}

.mainvisual {
  padding-top: 10vh;
}
.mainvisual .slick {
  width: 100%;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  .mainvisual .slick {
    display: none;
  }
}
.mainvisual .slick img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: 30%;
}
.mainvisual .slick-sp {
  width: 100%;
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .mainvisual .slick-sp {
    display: block;
  }
}
.mainvisual .slick-sp img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: 30%;
}
.mainvisual .slick-arrow {
  position: absolute;
  top: 50%;
  height: 50px;
  width: 50px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.mainvisual .slick-arrow::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
.mainvisual .slick-arrow:hover::before {
  transform: scale(1.2);
  opacity: 0.6;
}
.mainvisual .slick-prev {
  left: 5%;
}
.mainvisual .slick-prev::before {
  background-image: url(../img/icon_CaretCircleLeft.webp);
}
.mainvisual .slick-next {
  right: 5%;
}
.mainvisual .slick-next::before {
  background-image: url(../img/icon_CaretCircleRight.webp);
}
.mainvisual .catch-copy {
  height: 30vh;
  display: flex;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  padding-inline: 2%;
  gap: clamp(5%, 5vw, 20%);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mainvisual .catch-copy {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: normal;
    gap: 10px;
    margin: 0;
  }
}
.mainvisual .catch-copy__text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mainvisual .catch-copy__text {
    margin-bottom: 0;
  }
}
.mainvisual .catch-copy__text .gold-line {
  font-size: 2rem;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .mainvisual .catch-copy__text .gold-line {
    font-size: 1.875rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
  .mainvisual .catch-copy__text .gold-line {
    font-size: 1.6rem;
  }
}
.mainvisual .catch-copy__text .gold-line::before {
  height: 19px;
}
.mainvisual .catch-copy__text p {
  width: fit-content;
}
.mainvisual .catch-copy .contact-btn {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mainvisual .catch-copy .contact-btn {
    margin-bottom: 0;
  }
  .mainvisual .catch-copy .contact-btn a {
    padding: 1.2vh 40px;
  }
}

.why-choose-us {
  background: linear-gradient(to bottom, #F3F4F6, #FFFFFF);
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .why-choose-us {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.why-choose-us .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .why-choose-us .flex {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }
}
.why-choose-us .flex .flex__item {
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item {
    width: 100%;
  }
}
.why-choose-us .flex .flex__item .num {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 50px;
  object-fit: contain;
  z-index: 3;
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item .num {
    top: 10px;
    left: 0px;
  }
}
.why-choose-us .flex .flex__item .polygon-box {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item .polygon-box {
    width: 100%;
  }
}
.why-choose-us .flex .flex__item .polygon-box .polygon {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item .polygon-box .polygon {
    max-width: 600px;
    object-fit: fill;
    height: 400px;
  }
}
.why-choose-us .flex .flex__item .polygon-box .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding-inline: 10px;
}
.why-choose-us .flex .flex__item .polygon-box .content .icon {
  width: 100px;
  object-fit: contain;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item .polygon-box .content .icon {
    width: 200px;
  }
}
@media (max-width: 425px) {
  .why-choose-us .flex .flex__item .polygon-box .content .icon {
    width: 170px;
  }
}
.why-choose-us .flex .flex__item .polygon-box .content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item .polygon-box .content h3 {
    font-size: 1.5rem;
  }
}
.why-choose-us .flex .flex__item .polygon-box .content p {
  font-size: clamp(0.85rem, 1.7vw, 1rem);
}
@media (max-width: 768px) {
  .why-choose-us .flex .flex__item .polygon-box .content p {
    font-size: 1rem;
  }
}

.service {
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .service {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.service .flex {
  display: flex;
  justify-content: space-between;
  gap: clamp(2%, 5vw, 10%);
}
@media (max-width: 768px) {
  .service .flex {
    flex-direction: column;
    gap: 100px;
  }
}
.service .flex__service {
  width: 40%;
  height: 65vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 768px) {
  .service .flex__service {
    width: 100%;
    height: auto;
  }
}
.service .flex__service img {
  height: 300px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .service .flex__service img {
    height: auto;
    width: 100%;
  }
}
.service .flex__service .text {
  margin-top: 60px;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .service .flex__service .text {
    margin-block: 30px;
  }
}
.service .flex__mirx {
  width: 60%;
  height: 65vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 768px) {
  .service .flex__mirx {
    width: 100%;
    height: auto;
  }
}
.service .flex__mirx img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service .flex__mirx img {
    height: 450px;
    object-position: 40%;
  }
}
@media (max-width: 425px) {
  .service .flex__mirx img {
    height: 300px;
  }
}
.service .flex__mirx .mirx-text {
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .service .flex__mirx .mirx-text {
    margin-block: 30px;
  }
}
.service .flex__mirx .mirx-text .title {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* ========= 製品紹介 ========= */
.our-products {
  background: linear-gradient(to bottom, #FFFFFF, #F3F4F6);
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .our-products {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
/* グリッド */
.entry-content .grid,
.our-products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .entry-content .grid,
  .our-products .grid {
    gap: 20px;
  }
}
.entry-content .grid__item,
.our-products .grid__item {
  display: block;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.entry-content .grid__item:hover,
.our-products .grid__item:hover {
  opacity: 0.7;
  transform: translateY(-5px);
}
.entry-content .grid__item img,
.our-products .grid__item img {
  height: 27vh;
  object-fit: cover;
}
.entry-content .grid__item h3,
.our-products .grid__item h3 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  color: #FFF;
  background-color: rgba(51,51,51,0.85);
  padding-inline: 10px;
  font-weight: normal;
  padding: 5px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.works {
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .works {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.works .flex {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .works .flex {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.works .flex__item {
  width: 33.3333333333%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .works .flex__item {
    width: 100%;
  }
}
.works .flex__item img {
  height: 27vh;
  object-fit: cover;
}
@media (max-width: 768px) {
  .works .flex__item img {
    height: 450px;
  }
}
@media (max-width: 425px) {
  .works .flex__item img {
    height: 300px;
  }
}
.works .flex__item h3 {
  margin-block: 15px;
  font-weight: normal;
}
.works .flex__item .title {
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .works .flex__item .text {
    margin-bottom: 70px;
  }
}

.news {
  background-color: #F3F4F6;
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .news {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.news .dl {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  padding-inline: 5%;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .news .dl {
    padding-inline: 0;
    margin-bottom: 70px;
  }
}
.news .dl__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
  gap: 3%;
  border-bottom: 1px #333333 solid;
  padding: 0 3% 10px 3%;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .news .dl__item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-inline: 0;
  }
}
.news .dl__item:hover {
  opacity: 0.5;
}
.news .dl__item span {
  padding-block: 3px;
}
.news .dl__item dd {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 3%;
}
.news .dl__item dd .category {
  text-align: center;
  background-color: #092A63;
  color: #fff;
}



/* ========= 汎用カスタムページ ========= */
/* サブヘッダー */
.sub-header {
	padding: 120px 0px 50px 0px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: nowrap;
	}
.sub-header h1 span::before {
				content: "";
				width: 32px;
				background: #353535;
				height: 2px;
				display: block;
				position: absolute;
				top: .9em;
				left: 0; }
.sub-header h1 span {
    font-size: 14px;
    display: block;
    padding-left: 42px;
}



/* コンテナ */
.entry-content {
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .entry-content {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}

/* ========= 会社案内 ========= */

.page-company {
  padding-top: 54px;
}
@media (max-width: 768px) {
  .page-company {
    padding-top: 54px;
  }
}
.page-company .page-title::before {
  background-image: url(../img/background_page-company.webp);
  background-position: 50% 70%;
}
.page-company .tagline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 70px;
  font-size: 1.5rem;
  text-shadow: 1px 3px 5px #fff;
  padding: 10% 5%;
  position: relative;
}
@media (max-width: 768px) {
  .page-company .tagline {
    font-size: 1.2rem;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .page-company .tagline {
    font-size: 1rem;
  }
}
.page-company .tagline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image: url(../img/mainvisual.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-company .tagline .line {
  color: #092A63;
  font-size: 2.25rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .page-company .tagline .line {
    font-size: 1.77rem;
  }
}
@media (max-width: 425px) {
  .page-company .tagline .line {
    font-size: 1.33rem;
  }
}
.page-company .tagline__text1, .page-company .tagline__text2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .page-company .tagline__text1, .page-company .tagline__text2 {
    gap: 30px;
  }
}
.page-company .mission {
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .page-company .mission {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-company .mission .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .page-company .mission .flex {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }
}
.page-company .mission .flex .flex__item {
  position: relative;
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item {
    width: 100%;
  }
}
.page-company .mission .flex .flex__item .num {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 50px;
  object-fit: contain;
  z-index: 3;
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item .num {
    top: 10px;
    left: 0px;
  }
}
.page-company .mission .flex .flex__item .polygon-box {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item .polygon-box {
    width: 100%;
  }
}
.page-company .mission .flex .flex__item .polygon-box .polygon {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item .polygon-box .polygon {
    max-width: 600px;
    object-fit: fill;
    height: 400px;
  }
}
.page-company .mission .flex .flex__item .polygon-box .content {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-inline: 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
.page-company .mission .flex .flex__item .polygon-box .content .icon {
  width: clamp(100px, 13vw, 150px);
  object-fit: contain;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item .polygon-box .content .icon {
    width: 200px;
  }
}
@media (max-width: 425px) {
  .page-company .mission .flex .flex__item .polygon-box .content .icon {
    width: 170px;
  }
}
.page-company .mission .flex .flex__item .polygon-box .content .title {
  font-weight: bold;
  color: #092A63;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item .polygon-box .content .title {
    font-size: 1.5rem;
  }
}
.page-company .mission .flex .flex__item .polygon-box .content .highlight {
  font-weight: bold;
}
.page-company .mission .flex .flex__item .polygon-box .content .text {
  font-size: clamp(0.85rem, 1.7vw, 1rem);
}
@media (max-width: 768px) {
  .page-company .mission .flex .flex__item .polygon-box .content .text {
    font-size: 1rem;
  }
}
.page-company .ceo-message {
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .page-company .ceo-message {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-company .ceo-message__text {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
.page-company .ceo-message__text .text {
  line-height: 200%;
}
.page-company .ceo-message__text .name {
  margin-top: 50px;
  text-align: right;
}
.page-company .about {
  padding-top: 134px;
  padding-bottom: 80px;
  background-color: #F3F4F6;
}
@media (max-width: 425px) {
  .page-company .about {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-company .about .table-wrapper {
  padding-block: 2% 5%;
  background-color: #FFF;
}
.page-company .about__table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .page-company .about__table {
    width: 90%;
  }
}
.page-company .about__table th {
  width: 30%;
  text-align: left;
  border-bottom: 1px #7E7E7E solid;
  padding: 3%;
  font-weight: normal;
}
.page-company .about__table td {
  width: 70%;
  padding: 3%;
  border-bottom: 1px #7E7E7E solid;
}
.page-company .about__table td.map {
  height: 380px;
  border-bottom: none;
}
@media (max-width: 768px) {
  .page-company .about__table td.map {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-company .about__table td.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.page-company .history {
  padding-top: 134px;
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .page-company .history {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-company .history .table-wrapper {
  padding-block: 2% 5%;
  background-color: #E5E7EB;
}
.page-company .history__table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .page-company .history__table {
    width: 90%;
  }
}
.page-company .history__table th {
  width: 30%;
  text-align: left;
  border-bottom: 1px #7E7E7E solid;
  padding: 3%;
  font-weight: normal;
  vertical-align: top;
}
.page-company .history__table th.rowspan {
  vertical-align: top;
}
.page-company .history__table td {
  width: 70%;
  padding: 3%;
  border-bottom: 1px #7E7E7E solid;
}
.page-company .history__table .no-line {
  border-bottom: 0;
}

.page-service {
  padding-top: 54px;
}
@media (max-width: 768px) {
  .page-service {
    padding-top: 54px;
  }
}
.page-service .page-title::before {
  background-image: url(../img/background_page-service.webp);
  background-position: 50% 50%;
}
.page-service .service {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
.page-service .service .flex {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.page-service .service .flex__item {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  height: 40vh;
}
@media (max-width: 768px) {
  .page-service .service .flex__item {
    flex-direction: column;
    height: auto;
    gap: 50px;
  }
  .page-service .service .flex__item.reverse {
    flex-direction: column-reverse;
  }
}
.page-service .service .flex__item .item-text {
  width: 50%;
}
@media (max-width: 768px) {
  .page-service .service .flex__item .item-text {
    width: 100%;
  }
}
.page-service .service .flex__item .item-text .page-section-title {
  padding-inline: 0;
  margin-bottom: 50px;
}
.page-service .service .flex__item .item-text .title {
  margin-bottom: 50px;
}
.page-service .service .flex__item .img-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .page-service .service .flex__item .img-wrapper {
    width: 100%;
  }
}
.page-service .service .flex__item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-works {
  padding-top: 54px;
}
@media (max-width: 768px) {
  .page-works {
    padding-top: 54px;
  }
}
.page-works .page-title::before {
  background-image: url(../img/background_page-works.webp);
  background-position: 50% 60%;
}
.page-works .explanation {
  padding-top: 134px;
  padding-bottom: 80px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 425px) {
  .page-works .explanation {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-works .explanation .text {
  line-height: 200%;
}
.page-works img {
  height: 40vh;
  object-fit: cover;
}
@media (max-width: 425px) {
  .page-works img {
    height: 35vh;
  }
}
.page-works .delivery-works {
  padding-top: 134px;
  padding-bottom: 80px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 425px) {
  .page-works .delivery-works {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-works .delivery-works .flex {
  display: flex;
  gap: 3%;
}
@media (max-width: 768px) {
  .page-works .delivery-works .flex {
    flex-direction: column;
  }
}
.page-works .delivery-works .flex__item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .page-works .delivery-works .flex__item {
    width: 100%;
    margin-bottom: 80px;
  }
}
.page-works .delivery-works .flex__item .title {
  font-weight: bold;
}
.page-works .sns-works {
  padding-top: 134px;
  padding-bottom: 80px;
  background-color: #E5E7EB;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 425px) {
  .page-works .sns-works {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-works .sns-works .flex {
  display: flex;
  gap: 3%;
}
@media (max-width: 768px) {
  .page-works .sns-works .flex {
    flex-direction: column;
  }
}
.page-works .sns-works .flex__item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .page-works .sns-works .flex__item {
    width: 100%;
    margin-bottom: 80px;
  }
}
.page-works .sns-works .flex__item .title {
  font-weight: bold;
}
.page-works .deal-works {
  padding-top: 134px;
  padding-bottom: 80px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 425px) {
  .page-works .deal-works {
    padding-top: 124px;
    padding-bottom: 70px;
  }
}
.page-works .deal-works .title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.page-works .deal-works .text {
  margin-bottom: 40px;
}
.page-works .deal-works .flex {
  display: flex;
  gap: 3%;
}
@media (max-width: 768px) {
  .page-works .deal-works .flex {
    flex-direction: column;
  }
}
.page-works .deal-works .flex__item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .page-works .deal-works .flex__item {
    width: 100%;
    margin-bottom: 80px;
  }
}

/*FAQ*/
.qa-list{
text-align:left;
}

.qa-list dl {
position: relative;
margin: 0;
padding: 28px 80px 28px 30px;
cursor: pointer;
border-bottom: 1px solid #000;
}

.qa-list dl:first-child {
border-top: 1px solid #000;
}

.qa-list dl:last-child {
margin-bottom: 30px;
}

.qa-list dl::before {
position: absolute;
top: 35px;
right: 35px;
display: block;
width: 7px;
height: 7px;
margin: auto;
content: '';
transform: rotate(135deg);
border-top: 2px solid #000;
border-right: 2px solid #000;
}
.qa-list .open::before {
transform: rotate(-45deg);
}
.qa-list dl dt {
position: relative;
margin: 0;
padding: 0 0 0 50px;
font-weight: bold;
font-size: 20px;
}
.qa-list dl dt::before {
font-size: 22px;
line-height: 1;
position: absolute;
top: 3px;
left: 0;
display: block;
content: 'Q.';
color: #3285bf;
}
.qa-list dl dd::before {
font-size: 22px;
line-height: 1;
position: absolute;
top: 3px;
left: 2px;
display: block;
content: 'A.';
font-weight: bold;
color: #3285bf;
}
.qa-list dl dd {
position: relative;
display: none;
height: auto;
margin: 20px 0 0;
padding: 0 0 0 50px;
}
.qa-list dl dd p {
margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
margin-top: 0;
}

.qa-list normalbutton a{
text-decoration: none;
}

@media screen and (max-width: 767px) {
.qa-list dl {
position: relative;
padding: 15px 40px 15px 10px;
}
.qa-list dl::before {
top: 20px;
right: 20px;
width: 7px;
height: 7px;
}
.qa-list dl dt {
padding: 0 0 0 30px;
font-size: 14px;
}
.qa-list dl dt::before {
font-size: 14px;
top: 3px;
left: 5px;
content: 'Q.';
}
.qa-list dl dd::before {
font-size: 14px;
top: 5px;
left: 5px;
content: 'A.';
}
.qa-list dl dd {
margin: 10px 0 0;
padding: 0 0 0 30px;
font-size: 14px;
}
.qa-list dl dd p {
margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
margin-top: 0;
}
}

/*フローデザイン*/
.flow_design05 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #4D9BC1;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #4D9BC1;
  padding-bottom: 10px;
}

.flow05 > li dl dd {
  margin-left: 0;
  padding-bottom: 30px;

}

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