@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 0.6944444444vw;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "liga" off, "clig" off;
}
@media (max-width: 767px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 2.5445292621vw;
  }
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  color: #373737;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.note-show {
  display: none;
}
@media (max-width: 1440px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1440px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (max-width: 767px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

img.sp-hide, span.sp-hide {
  display: inline;
}
@media (max-width: 767px) {
  img.sp-hide, span.sp-hide {
    display: none;
  }
}

img:not([src$=".svg"]) {
  width: 100%;
}

span {
  font-size: inherit;
}

a {
  color: inherit;
}

html {
  line-height: unset;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-right: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media (max-width: 767px) {
  header {
    padding-right: 0;
    padding-left: 20px;
    background-color: #204483;
  }
}
header .logo {
  width: 32.8rem;
  transition: all 0.3s;
}
header .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  header .logo {
    width: 111px;
  }
}
@media (min-width: 768px) {
  header.scrolled .logo {
    width: 16rem;
  }
}
header .header-menu {
  background-color: #fff;
  padding: 2rem 6rem;
}
header .header-menu ul {
  display: flex;
  gap: 3.2rem;
}
header .header-menu ul li a {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}
header .header-menu ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  header .header-menu {
    background-color: #204483;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 10rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
  }
  header .header-menu ul {
    flex-direction: column;
    align-items: center;
  }
  header .header-menu ul a {
    color: white;
  }
  header .header-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 10;
  }
}
header .hamburger {
  height: 60px;
  width: 60px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 14px;
  position: relative;
  z-index: 11;
}
header .hamburger span {
  height: 1px;
  display: block;
  width: 28px;
  background-color: #fff;
  transition: all 0.3s;
}
header .hamburger .sp1 {
  margin-bottom: 8px;
}
header .hamburger .sp2 {
  width: 20px;
}
header .hamburger.active .sp1 {
  transform: rotate(30deg);
  margin-bottom: -1px;
}
header .hamburger.active .sp2 {
  transform: rotate(-30deg);
  width: 28px;
}

.fv {
  height: 108rem;
  background-image: url(../../img/fv.webp);
  background-size: cover;
  padding-top: 71.3rem;
  padding-left: 12rem;
  padding-right: 12rem;
  position: relative;
}
@media (max-width: 767px) {
  .fv {
    height: 66rem;
    padding-top: 40.3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-image: url(../../img/fv-sp.webp);
  }
}
.fv .ball {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 53.2rem; /* 適宜 */
  animation: ball-wobble 18s infinite ease-in-out;
  transform-origin: center center;
}
@media (max-width: 767px) {
  .fv .ball {
    width: 28rem;
    top: 44%;
  }
}
.fv .ball img {
  display: block;
  width: 100%;
  height: auto;
  animation: ball-rotate 20s linear infinite reverse;
  transform-origin: center center;
}
@keyframes ball-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fv .txt {
  margin-bottom: 11rem;
}
.fv .txt p {
  font-size: 2.8rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media (max-width: 767px) {
  .fv .txt {
    margin-bottom: 6rem;
  }
  .fv .txt p {
    font-size: 2rem;
  }
}
.fv .scrolldown {
  position: absolute;
  right: 12rem;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .fv .scrolldown {
    display: none;
  }
}
.fv .scrolldown img {
  width: 1.029rem;
}
.fv .scrolldown span {
  display: block;
  width: 0.1rem;
  height: 8rem;
  background: rgba(44, 55, 178, 0.2);
  position: relative;
  margin-top: 2rem;
}
.fv .scrolldown span::before {
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2C37B2;
  animation: scroll-line 4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    height: 0;
    top: 0;
  }
  45% {
    height: 100%;
    top: 0;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}
.fv .cta {
  position: relative;
  display: inline-block;
}
.fv .cta .fukidashi-wrapper {
  position: absolute;
  left: 6rem;
  top: -3.5rem;
}
@media (max-width: 767px) {
  .fv .cta .fukidashi-wrapper {
    left: 4.7rem;
  }
}
.fv .cta .fukidashi {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: #37373c;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
}
.fv .cta .fukidashi::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #37373c;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.fv .cta .btn {
  width: 38.8rem;
  height: 6.4rem;
  border: 1px solid #204483;
  display: flex;
  align-items: center;
  padding-left: 6rem;
  gap: 3.2rem;
  background-color: #204483;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .fv .cta .btn {
    width: 35.3rem;
    height: 4.9rem;
    padding-left: 4.45rem;
    gap: 2rem;
  }
}
.fv .cta .btn img {
  position: absolute;
  width: 3.3333rem;
  left: 2rem;
  bottom: 0.9rem;
}
@media (max-width: 767px) {
  .fv .cta .btn img {
    width: 3rem;
    left: 1.2rem;
    bottom: 1.2rem;
  }
}
.fv .cta .btn p {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.fv .cta .btn .arrow-box {
  width: 4rem;
  height: 4rem;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .fv .cta .btn .arrow-box {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.fv .cta .btn .arrow-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: none;
}
.fv .cta .btn .arrow-icon > rect:first-child {
  display: none;
}
.fv .cta .btn .arrow-icon-current {
  transform: translateX(0);
  opacity: 1;
}
.fv .cta .btn .arrow-icon-next {
  transform: translateX(-100%);
  opacity: 0;
}
.fv .cta a * {
  transition: all 0.3s;
}
.fv .cta a:hover .fukidashi {
  background-color: #204483;
}
.fv .cta a:hover .fukidashi::before {
  background-color: #204483;
}
.fv .cta a:hover .btn {
  background-color: #fff;
}
.fv .cta a:hover .btn p {
  color: #204483;
}
.fv .cta a:hover .btn .arrow-box {
  background-color: #204483;
}
.fv .cta a:hover .btn .arrow-icon {
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.fv .cta a:hover .btn .arrow-icon-current {
  transform: translateX(100%);
  opacity: 0;
}
.fv .cta a:hover .btn .arrow-icon-next {
  transform: translateX(0);
  opacity: 1;
}

.sec-head {
  padding-left: 17rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec-head {
    padding-left: 0;
    padding-top: 2.8rem;
  }
}
.sec-head::before {
  content: "";
  width: 14.6rem;
  height: 0.1rem;
  position: absolute;
  left: 0;
  top: 1.5rem;
  background-color: #204483;
}
@media (max-width: 767px) {
  .sec-head::before {
    width: 3.6rem;
    top: 0rem;
    left: calc(50% - 1.8rem);
  }
}
.sec-head .sec-ttl {
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  color: #204483;
  font-weight: 600;
  line-height: 2em;
}
@media (max-width: 767px) {
  .sec-head .sec-ttl {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.4rem;
    line-height: 1;
  }
}
.sec-head .sec-en {
  font-size: 8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 0.8;
  color: #204483;
  margin-top: 3.2rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .sec-head .sec-en {
    font-size: 3.2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.sec-head .lead {
  font-size: 2.8rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #204483;
  font-weight: 700;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .sec-head .lead {
    margin-bottom: 3.2rem;
    text-align: center;
    font-size: 2rem;
    line-height: 1.6;
  }
}

.sec {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.sec .sec-inner {
  padding-left: 17rem;
  padding-right: 17rem;
}
@media (max-width: 767px) {
  .sec .sec-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.about-sec .about-movie {
  max-width: 80rem;
  margin: auto;
}
.about-sec .about-movie .youtube-box {
  width: 100%;
  aspect-ratio: 16/9;
}
.about-sec .about-movie .youtube-box iframe {
  width: 100%;
  height: 100%;
}
.about-sec .about-txt {
  display: flex;
  justify-content: flex-end;
  margin-top: -5rem;
  position: relative;
  z-index: 2;
}
.about-sec .about-txt .box {
  background-color: #fff;
  max-width: 58.6rem;
  padding-top: 5rem;
  padding-left: 4rem;
  padding-bottom: 5rem;
}
.about-sec .about-txt .box p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
}
.about-sec .about-txt .box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .about-sec .about-txt {
    margin-top: 3.2rem;
  }
  .about-sec .about-txt .box {
    padding: 0;
  }
  .about-sec .about-txt .box p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 3.2rem;
  }
  .about-sec .about-txt .box p:last-child {
    margin-bottom: 0;
  }
  .about-sec .about-txt .box .nop {
    margin-bottom: 0;
  }
}

.business-sec {
  background-image: url(../../img/business-bg.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  .business-sec {
    background-image: url(../../img/business-bg-sp.webp);
  }
}
.business-sec .sec-head::before {
  background-color: #fff;
}
.business-sec .sec-head * {
  color: white;
}
.business-sec .btn {
  width: 28.4rem;
  height: 6.4rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 5rem;
  margin-left: 17rem;
  border: 1px solid white;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .business-sec .btn {
    width: 24.7rem;
    height: 4.9rem;
    padding-left: 4rem;
    margin-left: unset;
    margin: auto;
  }
}
.business-sec .btn .btn-txt {
  margin-right: 3.2rem;
  font-size: 1.6rem;
  color: #204483;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .business-sec .btn .btn-txt {
    margin-right: 2rem;
  }
}
.business-sec .btn .business-btn-arrow {
  width: 4rem;
  height: 4rem;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgba(32, 68, 131, 0.2);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .business-sec .btn .business-btn-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.business-sec .btn .arrow-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: none;
}
.business-sec .btn .arrow-icon > rect:first-child {
  display: none;
}
.business-sec .btn .arrow-icon-current {
  transform: translateX(0);
  opacity: 1;
}
.business-sec .btn .arrow-icon-next {
  transform: translateX(-100%);
  opacity: 0;
}
.business-sec .btn:hover {
  background-color: #204483;
}
.business-sec .btn:hover .btn-txt {
  color: white;
}
.business-sec .btn:hover .business-btn-arrow {
  background-color: rgba(255, 255, 255, 0.2);
}
.business-sec .btn:hover .arrow-icon {
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.business-sec .btn:hover .arrow-icon-current {
  transform: translateX(100%);
  opacity: 0;
}
.business-sec .btn:hover .arrow-icon-next {
  transform: translateX(0);
  opacity: 1;
}
.business-sec .btn:hover .arr {
  fill: white;
}
.business-sec .card-list {
  padding-left: 17rem;
  padding-right: 17rem;
}
@media (max-width: 767px) {
  .business-sec .card-list {
    padding-left: 0;
    padding-right: 0;
  }
}
.business-sec .card-list .card-list-inner {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .business-sec .card-list .card-list-inner {
    gap: 4rem;
    flex-direction: column;
    padding-top: 4rem;
  }
}
.business-sec .card-list .card-list-inner article:first-child {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .business-sec .card-list .card-list-inner article:first-child {
    margin-top: 0;
  }
}
.business-sec .card-list .card-list-inner article:nth-child(2) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .business-sec .card-list .card-list-inner article:nth-child(2) {
    margin-top: 0;
  }
}
.business-sec .card-list .card-list-inner article h3 {
  margin-top: 3rem;
  font-size: 2.4rem;
  color: white;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 2rem;
}
.business-sec .card-list .card-list-inner article p {
  color: white;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.news-sec .news-inner {
  padding-left: 17rem;
  padding-right: 17rem;
}
@media (max-width: 767px) {
  .news-sec .news-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.news-sec .list1 {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .news-sec .list1 {
    gap: 0.4rem;
    margin-bottom: 3.2rem;
    justify-content: center;
  }
}
.news-sec .list1 li a {
  display: flex;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #204483;
  letter-spacing: 0.02em;
  border: 2px solid #204483;
  border-radius: 9.9rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .news-sec .list1 li a {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-width: 0.1rem;
  }
}
.news-sec .news-cat-list {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .news-sec .news-cat-list {
    margin-bottom: 1.6rem;
  }
}
.news-sec .news-cat-list li {
  display: flex;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #204483;
  letter-spacing: 0.02em;
  border: 2px solid #204483;
  border-radius: 9.9rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .news-sec .news-cat-list li {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-width: 0.1rem;
  }
}
.news-sec .news-list {
  display: flex;
  gap: 2rem;
}
.news-sec .news-list .news-img img {
  aspect-ratio: 353/240;
  object-fit: cover;
  height: auto;
}
@media (max-width: 767px) {
  .news-sec .news-list {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.news-sec .news-list .news-body {
  margin-top: 2.4rem;
}
.news-sec .news-list .news-date {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #204483;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .news-sec .news-list .news-date {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
  }
}
.news-sec .news-list h3 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .news-sec .news-list h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.news-sec .news-list .news-arrow {
  display: flex;
  justify-content: flex-end;
}
.news-sec .news-list .news-arrow .news-arrow-inner {
  width: 4rem;
  height: 4rem;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgba(32, 68, 131, 0.2);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .news-sec .news-list .news-arrow .news-arrow-inner {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.news-sec .news-list .news-arrow .arrow-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: none;
}
.news-sec .news-list .news-arrow .arrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.news-sec .news-list .news-arrow .arrow-icon svg > rect:first-child {
  display: none;
}
.news-sec .news-list .news-arrow .arrow-icon-current {
  transform: translateX(0);
  opacity: 1;
}
.news-sec .news-list .news-arrow .arrow-icon-next {
  transform: translateX(-100%);
  opacity: 0;
}
.news-sec .news-list a:hover .news-arrow .news-arrow-inner {
  background-color: #204483;
}
.news-sec .news-list a:hover .news-arrow .arrow-icon {
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.news-sec .news-list a:hover .news-arrow .arrow-icon-current {
  transform: translateX(100%);
  opacity: 0;
}
.news-sec .news-list a:hover .news-arrow .arrow-icon-next {
  transform: translateX(0);
  opacity: 1;
}
.news-sec .news-list a:hover .news-arrow .arr {
  fill: white;
}

.case-sec {
  background-color: #F5F5F5;
  overflow: hidden;
}
.case-sec .sec-inner {
  position: relative;
}

.link-sec {
  padding: 8rem 17rem;
  background: rgba(32, 68, 131, 0.1);
}
.link-sec .inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .link-sec .inner {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .link-sec {
    padding: 4rem 2rem;
  }
}

footer {
  background-color: #37373C;
  display: flex;
}
footer .logo {
  display: block;
  width: 32.8rem;
}
footer .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  footer .logo {
    width: 11.2rem;
    flex-shrink: 0;
  }
}
footer ul {
  display: flex;
  padding-left: 10rem;
  padding-top: 6rem;
  padding-bottom: 5.5rem;
}
@media (max-width: 767px) {
  footer ul {
    padding-left: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 0.3rem;
  }
}
footer ul li a {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: white;
  padding-right: 4rem;
  margin-right: 4rem;
  position: relative;
}
footer ul li a::after {
  content: "";
  width: 1px;
  height: 1.2rem;
  position: absolute;
  right: 0;
  top: calc(50% - 0.6rem);
  background-color: #ACACB8;
}
@media (max-width: 767px) {
  footer ul li a {
    font-size: 1.1rem;
    padding-right: 1.1rem;
    margin-right: 1.1rem;
  }
}
@media (max-width: 767px) {
  footer ul li {
    margin-bottom: 0.7rem;
  }
}
footer ul li:last-child a::after {
  display: none;
}
@media (max-width: 767px) {
  footer ul li:nth-child(3) a::after {
    display: none;
  }
}
footer .copy {
  font-size: 1rem;
  color: white;
  letter-spacing: 0.02em;
  padding-left: 29.6rem;
}
@media (max-width: 767px) {
  footer .copy {
    padding-left: 4rem;
  }
}

.kaso-fv {
  padding-top: 29.3rem;
  padding-right: 17rem;
  background-image: url(../../img/kaso-fv.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  .kaso-fv {
    padding-top: 12rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .kaso-fv {
    background-image: url(../../img/kaso-fv-sp.webp);
  }
}
.kaso-fv h2, .kaso-fv h1 {
  text-align: right;
}
.kaso-fv h2 {
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #204483;
  font-size: 2.8rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .kaso-fv h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.kaso-fv h1 {
  font-size: 12rem;
  font-family: "EB Garamond", serif;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .kaso-fv h1 {
    font-size: 4.8rem;
    margin-bottom: 6rem;
  }
}
.kaso-fv .bread {
  padding-bottom: 7.4rem;
}
@media (max-width: 767px) {
  .kaso-fv .bread {
    padding-bottom: 7rem;
  }
}
.kaso-fv .bread ul {
  display: flex;
  justify-content: flex-end;
  gap: 7.6rem;
}
@media (max-width: 767px) {
  .kaso-fv .bread ul {
    gap: 6rem;
  }
}
.kaso-fv .bread li {
  position: relative;
}
.kaso-fv .bread li::after {
  content: "";
  width: 6rem;
  height: 0.1rem;
  background: rgba(32, 68, 131, 0.2);
  position: absolute;
  right: -6.8rem;
  top: calc(50% - 0.05rem);
}
@media (max-width: 767px) {
  .kaso-fv .bread li::after {
    width: 4rem;
    right: -5rem;
  }
}
.kaso-fv .bread li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #204483;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .kaso-fv .bread li a {
    font-size: 1.1rem;
  }
}
.kaso-fv .bread li:last-child::after {
  display: none;
}
.kaso-fv .bread li:last-child a {
  color: #373737;
  text-decoration: none;
}

.business-fv {
  --business-fv-unit-width: 100vw;
  --business-fv-gap: 3.5rem;
  --business-fv-loop-distance: calc(var(--business-fv-unit-width) + var(--business-fv-gap));
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  padding-bottom: 12rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .business-fv {
    --business-fv-unit-width: 160vw;
  }
}
@media (max-width: 767px) {
  .business-fv {
    --business-fv-gap: 1rem;
    margin-top: 0;
    padding-bottom: 0rem;
  }
}
.business-fv__slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  line-height: 0;
}
.business-fv__track {
  display: flex;
  align-items: flex-start;
  gap: var(--business-fv-gap);
  width: max-content;
  animation: business-fv-loop 36s linear infinite;
  will-change: transform;
}
@media (max-width: 767px) {
  .business-fv__track {
    animation: business-fv-loop 18s linear infinite;
  }
}
.business-fv__item {
  width: var(--business-fv-unit-width);
  min-width: var(--business-fv-unit-width);
  flex: 0 0 var(--business-fv-unit-width);
}
.business-fv__item picture {
  display: block;
  width: 100%;
}
.business-fv__item img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

@keyframes business-fv-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(0px - var(--business-fv-loop-distance)), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .business-fv__track {
    animation: none;
  }
}
.why-sec .sec-inner {
  padding-left: 17rem;
  padding-right: 17rem;
}
@media (max-width: 767px) {
  .why-sec .sec-inner {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.why-sec .sec-inner .flex {
  display: flex;
  gap: 6rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .why-sec .sec-inner .flex.reverse {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .why-sec .sec-inner .flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.why-sec .sec-inner .flex .img-wrapper {
  width: 40rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .why-sec .sec-inner .flex .img-wrapper {
    width: 20rem;
  }
}
@media (max-width: 767px) {
  .why-sec .sec-inner .flex .txt-wrapper .num {
    text-align: center;
  }
}
.why-sec .sec-inner .flex .txt-wrapper img {
  width: 5.7rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .why-sec .sec-inner .flex .txt-wrapper img {
    width: 5.5rem;
    margin-bottom: 1.6rem;
  }
}
.why-sec .sec-inner .flex .txt-wrapper h3 {
  font-size: 2.8rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
  font-weight: bold;
  color: #204483;
}
@media (max-width: 767px) {
  .why-sec .sec-inner .flex .txt-wrapper h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.4rem;
  }
}
.why-sec .sec-inner .flex .txt-wrapper p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .why-sec .sec-inner .flex .txt-wrapper p {
    font-size: 1.4rem;
  }
}
.why-sec .sec-inner .last {
  margin-bottom: 0;
}

.business-service-sec {
  background-color: #204483;
}
.business-service-sec .sec-head * {
  color: white;
}
.business-service-sec .sec-head::before {
  background-color: #fff;
}
.business-service-sec .lead {
  padding-left: 17rem;
}
@media (max-width: 767px) {
  .business-service-sec .lead {
    margin-bottom: 2rem;
  }
}
.business-service-sec .lead p {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: white;
  font-weight: bold;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .business-service-sec .lead p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .business-service-sec .lead {
    padding-left: 0rem;
  }
}
.business-service-sec .b-s-img {
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .business-service-sec .b-s-img {
    margin-top: 2rem;
    margin-right: -2rem;
    width: calc(100% + 2rem);
    margin-bottom: 5rem;
  }
}
.business-service-sec .block h4 {
  text-align: center;
  margin-bottom: 4rem;
}
.business-service-sec .block h4 span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  font-size: 2.8rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .business-service-sec .block h4 span {
    gap: 3.2rem;
  }
}
.business-service-sec .block h4 span img {
  width: 0.5rem;
  height: auto;
  flex-shrink: 0;
  position: relative;
  top: 0.2rem;
}
@media (max-width: 767px) {
  .business-service-sec .block h4 span {
    font-size: 2rem;
  }
}
.business-service-sec .block .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 10rem;
}
@media (max-width: 767px) {
  .business-service-sec .block .flex {
    gap: 2.4rem 0rem;
  }
}
@media (max-width: 767px) {
  .business-service-sec .block .flex .card {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.business-service-sec .block .flex .card img {
  width: 22rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .business-service-sec .block .flex .card img {
    width: 12rem;
    margin-bottom: 1.2rem;
  }
}
.business-service-sec .block .flex .card h6 {
  text-align: center;
  color: white;
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .business-service-sec .block .flex .card h6 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}
.business-service-sec .block .flex .card p {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .business-service-sec .block .flex .card p {
    font-size: 1.2rem;
    line-height: 1.4em;
  }
}
.business-service-sec .block2 {
  padding-top: 12rem;
}
@media (max-width: 767px) {
  .business-service-sec .block2 {
    padding-top: 6rem;
  }
}
.business-service-sec .block2 .flow img {
  width: 70.3rem;
}
@media (max-width: 767px) {
  .business-service-sec .block2 .flow img {
    width: 35.3rem;
  }
}
.business-service-sec .block2 .flow2 img {
  width: 47.8rem;
}
@media (max-width: 767px) {
  .business-service-sec .block2 .flow2 img {
    width: 35.3rem;
  }
}

.business-service-sec2 {
  background: #1A3667;
}

.company-logo {
  padding-left: 17rem;
  margin-top: -6rem;
  position: relative;
  z-index: 2;
  padding-bottom: 12rem;
}
.company-logo img {
  width: 40rem;
}
@media (max-width: 767px) {
  .company-logo {
    padding-left: 2rem;
    margin-top: 0;
    padding-bottom: 6rem;
  }
  .company-logo img {
    width: 15.7rem;
  }
}

.message {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .message {
    padding-bottom: 6rem;
  }
}
.message .youtube-wrapper {
  padding-left: 17rem;
  padding-right: 17rem;
}
@media (max-width: 767px) {
  .message .youtube-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.message .youtube-wrapper .youtube-box {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .message .youtube-wrapper .youtube-box {
    margin-bottom: 3rem;
  }
}
.message .youtube-wrapper .youtube-box iframe {
  width: 100%;
  height: 100%;
}
.message .youtube-wrapper p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .message .youtube-wrapper p {
    font-size: 1.4rem;
    line-height: 2em;
    margin-bottom: 4rem;
  }
}
.message .youtube-wrapper .signature {
  text-align: center;
}
.message .youtube-wrapper .signature img {
  width: 34.6rem;
}
@media (max-width: 767px) {
  .message .youtube-wrapper .signature img {
    width: 35.3rem;
  }
}

.career {
  background: #F5F5F5;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .career {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.career .inner-inner {
  padding-left: 17rem;
  padding-right: 17rem;
}
@media (max-width: 767px) {
  .career .inner-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.company-profile {
  padding-left: 17rem;
  padding-right: 17rem;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .company-profile {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.company-profile .table-wrapper table {
  width: 100%;
}
.company-profile .table-wrapper table th {
  width: 16rem;
}
@media (max-width: 767px) {
  .company-profile .table-wrapper table th {
    width: 7.2rem;
  }
}
.company-profile .table-wrapper table th, .company-profile .table-wrapper table td {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(32, 68, 131, 0.2);
}
@media (max-width: 767px) {
  .company-profile .table-wrapper table th, .company-profile .table-wrapper table td {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    font-size: 1.4rem;
  }
}
.company-profile .table-wrapper table th {
  border-color: #204483;
  font-weight: bold;
  color: #204483;
}
.company-profile .table-wrapper table td span {
  font-weight: bold;
}

.archive-news {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .archive-news {
    padding-bottom: 6rem;
  }
}
.archive-news .inner {
  padding-left: 17rem;
  padding-right: 17rem;
  display: flex;
  gap: 6rem;
}
@media (max-width: 767px) {
  .archive-news .inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .archive-news .inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.archive-news .inner .main-col {
  width: 100%;
}
.archive-news .inner .side-col {
  width: 31.4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .archive-news .inner .side-col {
    width: 100%;
  }
}
.archive-news .inner .side-col .block {
  padding: 2rem;
  background: rgba(32, 68, 131, 0.1);
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .archive-news .inner .side-col .block.block2 {
    margin-bottom: 0;
  }
}
.archive-news .inner .side-col .block h3 {
  font-family: "EB Garamond", serif;
  font-size: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .archive-news .inner .side-col .block h3 {
    font-size: 3.2rem;
  }
}
.archive-news .inner .side-col .block ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.archive-news .inner .side-col .block ul li a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.archive-news .inner .side-col .block ul li a img {
  width: 2.4rem;
  flex-shrink: 0;
}
.archive-news .inner .side-col .block ul li a p {
  font-size: 1.6rem;
  color: #204483;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .archive-news .inner .side-col .block ul li a p {
    font-size: 1.4rem;
  }
}
.archive-news .inner .side-col .block .ul2 {
  flex-direction: row;
  flex-wrap: wrap;
}
.archive-news .list1 {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3.4rem;
}
@media (max-width: 767px) {
  .archive-news .list1 {
    gap: 0.4rem;
    margin-bottom: 3.2rem;
    justify-content: center;
  }
}
.archive-news .list1.single-cat {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .archive-news .list1.single-cat {
    justify-content: flex-start;
  }
}
.archive-news .list1 li a {
  display: flex;
  padding: 0.6rem 1.6rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #204483;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 2px solid #204483;
  border-radius: 9.9rem;
}
@media (max-width: 767px) {
  .archive-news .list1 li a {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-width: 0.1rem;
  }
}
.archive-news .news-cat-list {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .archive-news .news-cat-list {
    margin-bottom: 1.6rem;
  }
}
.archive-news .news-cat-list li {
  display: flex;
  padding: 0.6rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  color: #204483;
  letter-spacing: 0.02em;
  border: 2px solid #204483;
  border-radius: 9.9rem;
}
@media (max-width: 767px) {
  .archive-news .news-cat-list li {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-width: 0.1rem;
  }
}
.archive-news .news-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .archive-news .news-list {
    margin-bottom: 4rem;
  }
}
.archive-news .news-list article {
  width: calc(50% - 1rem);
}
@media (max-width: 767px) {
  .archive-news .news-list article {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .archive-news .news-list {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.archive-news .news-list .news-img img {
  aspect-ratio: 353/240;
  object-fit: cover;
  height: auto;
}
.archive-news .news-list .news-body {
  margin-top: 2.4rem;
}
.archive-news .news-list .news-date {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #204483;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .archive-news .news-list .news-date {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.archive-news .news-list h3 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .archive-news .news-list h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.archive-news .news-list .news-arrow {
  display: flex;
  justify-content: flex-end;
}
.archive-news .news-list .news-arrow .news-arrow-inner {
  width: 4rem;
  height: 4rem;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgba(32, 68, 131, 0.2);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .archive-news .news-list .news-arrow .news-arrow-inner {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.archive-news .news-list .news-arrow .arrow-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: none;
}
.archive-news .news-list .news-arrow .arrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-news .news-list .news-arrow .arrow-icon svg > rect:first-child {
  display: none;
}
.archive-news .news-list .news-arrow .arrow-icon-current {
  transform: translateX(0);
  opacity: 1;
}
.archive-news .news-list .news-arrow .arrow-icon-next {
  transform: translateX(-100%);
  opacity: 0;
}
.archive-news .news-list a:hover .news-arrow .news-arrow-inner {
  background-color: #204483;
}
.archive-news .news-list a:hover .news-arrow .arrow-icon {
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.archive-news .news-list a:hover .news-arrow .arrow-icon-current {
  transform: translateX(100%);
  opacity: 0;
}
.archive-news .news-list a:hover .news-arrow .arrow-icon-next {
  transform: translateX(0);
  opacity: 1;
}
.archive-news .news-list a:hover .news-arrow .arr {
  fill: white;
}
.archive-news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .archive-news .pagination {
    gap: 3.2rem;
  }
}
.archive-news .pagination .num {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .archive-news .pagination .num {
    font-size: 1.4rem;
  }
}
.archive-news .pagination a.num {
  text-decoration: underline;
  color: #204483;
}
.archive-news .pagination .next img, .archive-news .pagination .prev img {
  width: 4rem;
}
@media (max-width: 767px) {
  .archive-news .pagination .next img, .archive-news .pagination .prev img {
    width: 2.5rem;
  }
}
.archive-news .pagination .prev img {
  transform: rotate(180deg);
}
.archive-news .pagination .next2, .archive-news .pagination .prev2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.archive-news .pagination .next2 p, .archive-news .pagination .prev2 p {
  color: #204483;
  text-decoration: underline;
  letter-spacing: 0.02em;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .archive-news .pagination2 {
    display: block;
    margin-bottom: 2rem;
  }
  .archive-news .pagination2 .prev, .archive-news .pagination2 .next {
    gap: 1.2rem;
  }
  .archive-news .pagination2 .prev img, .archive-news .pagination2 .next img {
    flex-shrink: 0;
  }
  .archive-news .pagination2 .prev p, .archive-news .pagination2 .next p {
    font-size: 1.4rem;
  }
  .archive-news .pagination2 .prev {
    margin-bottom: 2rem;
  }
  .archive-news .pagination2 .next {
    justify-content: flex-end;
  }
}

.single-wrapper time {
  display: block;
  font-size: 1.6rem;
  color: #204483;
  margin-bottom: 3.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (max-width: 767px) {
  .single-wrapper time {
    font-size: 1.1rem;
  }
}
.single-wrapper .ttl {
  font-size: 2.8rem;
  line-height: 1.6em;
  letter-spacing: 0.02em;
  color: #204483;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .single-wrapper .ttl {
    font-size: 2rem;
  }
}
.single-wrapper .thumb {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .single-wrapper .thumb {
    margin-bottom: 4rem;
  }
}
.single-wrapper .thumb img {
  height: auto;
}
.single-wrapper .content * {
  color: #373737;
}
.single-wrapper .content img {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .single-wrapper .content img {
    margin-bottom: 4rem;
  }
}
.single-wrapper .content p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 5rem;
  letter-spacing: 0.02em;
}
.single-wrapper .content p * {
  font-size: 1em;
}
@media (max-width: 767px) {
  .single-wrapper .content p {
    margin-bottom: 4rem;
    font-size: 1.4rem;
  }
}
.single-wrapper .content li {
  font-weight: bold;
}
.single-wrapper .content li * {
  font-size: 1em;
}
.single-wrapper .content ul {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-wrapper .content ul {
    margin-bottom: 4rem;
  }
}
.single-wrapper .content ul li {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .single-wrapper .content ul li {
    font-size: 1.4rem;
  }
}
.single-wrapper .content ul li::before {
  content: "・";
  left: 0;
  top: 0;
  position: absolute;
}
.single-wrapper .content ul li ul, .single-wrapper .content ul li ol {
  margin-top: 0;
}
.single-wrapper .content ol {
  list-style-type: decimal;
  padding-left: 1.8em;
  margin-bottom: 2.4rem;
}
.single-wrapper .content ol ul, .single-wrapper .content ol ol {
  margin-top: 0;
}
@media (max-width: 767px) {
  .single-wrapper .content ol {
    padding-left: 18px;
    margin-bottom: 4rem;
  }
}
.single-wrapper .content ol li::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: auto !important;
}
.single-wrapper .content ol > li {
  list-style: decimal;
  font-size: 1.6rem;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .single-wrapper .content ol > li {
    font-size: 1.4rem;
    line-height: 1.71em;
  }
}
.single-wrapper .content ol > li > ul {
  list-style-type: lower-latin;
}
.single-wrapper .content ol > li > ul > li {
  list-style: lower-latin;
  margin-left: 1.8rem;
  padding-left: 0;
}
.single-wrapper .content ol > li > ul > li::before {
  display: none;
}
.single-wrapper .content ol > li > ul > li > ul {
  list-style-type: lower-roman;
}
.single-wrapper .content ol > li > ul > li > ul > li {
  list-style: lower-roman;
  margin-left: 1.8rem;
  padding-left: 0;
}
.single-wrapper .content ol > li > ul > li > ul > li::before {
  display: none;
}
@media (max-width: 767px) {
  .single-wrapper .content .wrap {
    margin-left: -20px;
    margin-right: -20px;
    overflow: scroll;
    padding-left: 20px;
    display: flex;
  }
  .single-wrapper .content .wrap .dummy {
    width: 20px;
    flex-shrink: 0;
  }
}
.single-wrapper .content blockquote {
  background-color: #E0E0E0;
  border-radius: 1.2rem;
  padding: 2rem;
  margin-bottom: 2.4rem;
}
.single-wrapper .content blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #2F2F2F;
}
.single-wrapper .content blockquote cite {
  margin-top: 1rem;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .single-wrapper .content blockquote cite {
    margin-top: 10px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .single-wrapper .content blockquote {
    padding: 20px;
    margin-bottom: 2rem;
  }
  .single-wrapper .content blockquote p {
    font-size: 1.4rem;
  }
}
.single-wrapper .content .wrap {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-wrapper .content .wrap {
    margin-bottom: 2rem;
  }
}
.single-wrapper .content .wp-block-table {
  margin-right: -2rem;
  padding-right: 2rem;
  margin-left: -2rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .single-wrapper .content .wp-block-table {
    overflow: scroll;
  }
}
.single-wrapper .content .wp-block-table tbody, .single-wrapper .content .wp-block-table thead {
  -webkit-text-size-adjust: 100%;
}
.single-wrapper .content .wp-block-table table {
  min-width: 100%;
}
@media (max-width: 767px) {
  .single-wrapper .content .wp-block-table {
    overflow: unset;
    margin-right: 0;
    padding-right: 0px;
    padding-left: 0px;
    margin-left: 0px;
  }
}
.single-wrapper .content .wp-block-table th, .single-wrapper .content .wp-block-table td {
  border: 1px solid #E0E0E0;
  padding: 1.1rem 2.4rem;
  padding-right: 2.6rem;
  white-space: nowrap;
  line-height: 1.8em;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .single-wrapper .content .wp-block-table th, .single-wrapper .content .wp-block-table td {
    font-size: 1.2rem;
  }
}
.single-wrapper .content .wp-block-table th {
  background: rgba(32, 68, 131, 0.1);
  color: #204483;
  font-weight: bold;
}
.single-wrapper .content .wp-block-table thead {
  border-bottom: unset;
}
.single-wrapper .content .wp-block-table thead th {
  font-weight: 700;
}
.single-wrapper .content iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 700/450;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-wrapper .content iframe {
    margin-bottom: 2rem;
  }
}
.single-wrapper .content a:not(.wp-element-button) {
  font-size: 1em;
  color: #373737;
  text-decoration: underline;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .single-wrapper .content a:not(.wp-element-button):hover {
    opacity: 0.7;
  }
}
.single-wrapper .content .wp-element-button {
  margin-bottom: 4rem;
}
.single-wrapper .content img {
  width: 100%;
  height: auto;
}
.single-wrapper .content h1, .single-wrapper .content h2, .single-wrapper .content h3, .single-wrapper .content h4, .single-wrapper .content h5, .single-wrapper .content h6 {
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-wrapper .content h1, .single-wrapper .content h2, .single-wrapper .content h3, .single-wrapper .content h4, .single-wrapper .content h5, .single-wrapper .content h6 {
    margin-bottom: 1.6rem;
  }
}
.single-wrapper .content h1 *, .single-wrapper .content h2 *, .single-wrapper .content h3 *, .single-wrapper .content h4 *, .single-wrapper .content h5 *, .single-wrapper .content h6 * {
  color: #373737;
  font-size: 1em;
}
.single-wrapper .content h1 {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .single-wrapper .content h1 {
    font-size: 2.8rem;
  }
}
.single-wrapper .content h2 {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .single-wrapper .content h2 {
    font-size: 2.4rem;
  }
}
.single-wrapper .content h3 {
  font-size: 2.4rem;
  position: relative;
  color: #204483;
}
@media (max-width: 767px) {
  .single-wrapper .content h3 {
    font-size: 2rem;
  }
}
.single-wrapper .content h4 {
  font-size: 2rem;
  border-bottom: 0.1rem solid white;
  padding-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .single-wrapper .content h4 {
    font-size: 1.8rem;
  }
}
.single-wrapper .content h5 {
  font-size: 1.6rem;
}
.single-wrapper .content h6 {
  font-size: 1.4rem;
}
.single-wrapper .content b, .single-wrapper .content strong {
  font-weight: 700;
}

.contact-sec {
  padding-left: 17rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .contact-sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}
.contact-sec .inner {
  max-width: 88rem;
}
.contact-sec .inner .contact-form-lead {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-lead {
    font-size: 1.4rem;
  }
}
.contact-sec .inner .contact-form-lead .kome {
  color: #204483;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-lead .sp-mini {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.contact-sec .inner .contact-form-row {
  display: flex;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row {
    flex-direction: column;
  }
}
.contact-sec .inner .contact-form-row .contact-form-head {
  height: 6rem;
  display: flex;
  align-items: center;
  width: 18rem;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-head {
    height: auto;
    margin-bottom: 1rem;
  }
}
.contact-sec .inner .contact-form-row .contact-form-head p {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.contact-sec .inner .contact-form-row .contact-form-head p span {
  color: #204483;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-head p {
    font-size: 1.4rem;
  }
}
.contact-sec .inner .contact-form-row .contact-form-body input, .contact-sec .inner .contact-form-row .contact-form-body textarea {
  width: 60rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.8em;
  padding-left: 2.4rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-body input, .contact-sec .inner .contact-form-row .contact-form-body textarea {
    width: 100%;
    padding-left: 1.6rem;
    font-size: 1.4rem;
  }
}
.contact-sec .inner .contact-form-row .contact-form-body input {
  height: 6rem;
  border: none;
  background: rgba(32, 68, 131, 0.1);
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-body input {
    height: 4rem;
  }
}
.contact-sec .inner .contact-form-row .contact-form-body textarea {
  padding: 1.4rem 2.4rem;
  border: none;
  background: rgba(32, 68, 131, 0.1);
  height: 20rem;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-body textarea {
    padding: 1rem 1.4rem;
    height: 16rem;
  }
}
.contact-sec .inner .contact-form-row .contact-form-body2 {
  height: 6rem;
  display: flex;
  align-items: center;
}
.contact-sec .inner .contact-form-row .contact-form-body2 span {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-body2 span {
    font-size: 1.4rem;
  }
}
.contact-sec .inner .contact-form-row .contact-form-body2 a {
  color: #204483;
  text-decoration: underline;
  font-size: 1em;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-row .contact-form-body2 {
    height: auto;
  }
}
.contact-sec .inner .contact-form-submit {
  position: relative;
  width: 29.4rem;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-submit {
    width: 24.7rem;
    margin: auto;
  }
}
.contact-sec .inner .contact-form-submit::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-image: url(../../img/cta-btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 1.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  top: calc(50% - 2rem);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-submit::before {
    width: 2.5rem;
    height: 2.5rem;
    top: calc(50% - 1.25rem);
    right: 1.2rem;
  }
}
.contact-sec .inner .contact-form-submit input {
  width: 100%;
  height: 6.4rem;
  padding-left: 6rem;
  background-color: #204483;
  color: white;
  font-size: 1.6rem;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.04em;
  border: none;
}
@media (max-width: 767px) {
  .contact-sec .inner .contact-form-submit input {
    height: 4.9rem;
    padding-left: 4rem;
  }
}

.contact-form .wpcf7-acceptance {
  display: block;
}
.contact-form .wpcf7-list-item {
  margin: 0;
  display: block;
}
.contact-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  position: relative;
}
.contact-form .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0.1rem;
  height: 0.1rem;
  margin: 0;
  pointer-events: none;
}
.contact-form .wpcf7-list-item-label {
  position: relative;
  padding-left: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  display: inline-block;
}
.contact-form .wpcf7-list-item-label::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #b8c1cc;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0.3rem;
  box-sizing: border-box;
  transition: background-color 0.3s, border-color 0.3s;
}
.contact-form .wpcf7-list-item-label::after {
  content: "";
  width: 0.6rem;
  height: 1rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  position: absolute;
  left: 0.7rem;
  top: 0.6rem;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s;
  box-sizing: border-box;
}
.contact-form .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #2c4f95;
  border-color: #2c4f95;
}
.contact-form .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-form .wpcf7-list-item input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 0.2rem solid rgba(44, 79, 149, 0.3);
  outline-offset: 0.2rem;
}
.contact-form .wpcf7-list-item-label a {
  color: #2c4f95;
  text-decoration: underline;
}

.thanks-sec {
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .thanks-sec {
    padding-top: 0;
    padding-bottom: 6rem;
  }
}
.thanks-sec h2, .thanks-sec p {
  text-align: center;
}
.thanks-sec h2 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #204483;
  letter-spacing: 0.04em;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .thanks-sec h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.thanks-sec p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 12rem;
}
@media (max-width: 767px) {
  .thanks-sec p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 4rem;
  }
}
.thanks-sec .btn-wrapper {
  display: flex;
  justify-content: center;
}
.thanks-sec .btn-wrapper a {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: 22.8rem;
  height: 6.4rem;
  background-color: #204483;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-left: 1.2rem;
}
@media (max-width: 767px) {
  .thanks-sec .btn-wrapper a {
    gap: 2rem;
    width: 18.1rem;
    height: 4.9rem;
  }
}
.thanks-sec .btn-wrapper a img {
  transform: rotate(180deg);
  height: auto;
  width: 4rem;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .thanks-sec .btn-wrapper a img {
    width: 2.5rem;
  }
}

.guideline-sec {
  padding-top: 10rem;
  padding-left: 17rem;
  padding-right: 17rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .guideline-sec {
    padding-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}
.guideline-sec .guideline-detail .guideline-detail-kicker {
  margin-bottom: 6rem;
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.guideline-sec .guideline-detail .guideline-detail-title {
  margin-bottom: 6rem;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}
.guideline-sec .guideline-detail .guideline-detail-center {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 8rem;
}
.guideline-sec .guideline-detail h2 {
  margin-top: 8rem;
  margin-bottom: 3.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #204483;
}
.guideline-sec .guideline-detail h3 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.guideline-sec .guideline-detail p,
.guideline-sec .guideline-detail li {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.guideline-sec .guideline-detail p ul, .guideline-sec .guideline-detail p ol,
.guideline-sec .guideline-detail li ul,
.guideline-sec .guideline-detail li ol {
  font-weight: normal;
}
.guideline-sec .guideline-detail p ul li, .guideline-sec .guideline-detail p ol li,
.guideline-sec .guideline-detail li ul li,
.guideline-sec .guideline-detail li ol li {
  font-weight: normal;
  margin-bottom: 2rem !important;
}
.guideline-sec .guideline-detail p {
  margin-bottom: 12rem;
}
.guideline-sec .guideline-detail .p2 {
  margin-bottom: 2rem;
  font-weight: normal;
}
.guideline-sec .guideline-detail .p2-2 {
  margin-bottom: 12rem;
}
.guideline-sec .guideline-detail .guideline-note {
  margin-top: 3.2rem;
  margin-bottom: 6rem;
}
.guideline-sec .guideline-detail .p3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 1.2em;
  margin-bottom: 2rem;
}
.guideline-sec .guideline-detail .guideline-list {
  margin-bottom: 6rem;
}
.guideline-sec .guideline-detail .list2 {
  margin-bottom: 2rem;
}
.guideline-sec .guideline-detail .guideline-list > li {
  margin-bottom: 4rem;
}
.guideline-sec .guideline-detail .guideline-list > li:last-child {
  margin-bottom: 0;
}
.guideline-sec .guideline-detail .guideline-list .guideline-list {
  margin-top: 2.4rem;
  margin-bottom: 0;
}
.guideline-sec .guideline-detail .guideline-list--decimal {
  padding-left: 1.8em;
  list-style: decimal;
}
@media (max-width: 767px) {
  .guideline-sec .guideline-detail .inner > .guideline-list--decimal > li {
    margin-left: 1rem;
  }
}
.guideline-sec .guideline-detail .guideline-list--decimal > li {
  display: list-item;
  list-style: decimal;
}
.guideline-sec .guideline-detail .guideline-list--disc {
  padding-left: 1.8em;
  list-style: disc;
}
.guideline-sec .guideline-detail .guideline-list--disc > li {
  display: list-item;
  list-style: disc;
}
.guideline-sec .guideline-detail .disc2 li {
  margin-bottom: 0 !important;
}
.guideline-sec .guideline-detail .nob {
  font-weight: normal;
}
.guideline-sec .guideline-detail .disc2 .mb {
  margin-bottom: 2rem !important;
}
.guideline-sec .guideline-detail .guideline-list--paren {
  padding-left: 0;
  list-style: none;
  counter-reset: guidelineParen;
}
.guideline-sec .guideline-detail .guideline-list--paren > li {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 5.4rem;
}
.guideline-sec .guideline-detail .guideline-list--paren > li::before {
  counter-increment: guidelineParen;
  content: "(" counter(guidelineParen) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.guideline-sec .guideline-detail .guideline-list--circled {
  padding-left: 0;
  list-style: none;
}
.guideline-sec .guideline-detail .guideline-list--circled > li {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 3.2rem;
}
.guideline-sec .guideline-detail .guideline-list--circled > li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.guideline-sec .guideline-detail .guideline-list--circled > li:nth-child(1)::before {
  content: "①";
}
.guideline-sec .guideline-detail .guideline-list--circled > li:nth-child(2)::before {
  content: "②";
}
.guideline-sec .guideline-detail .guideline-list--circled > li:nth-child(3)::before {
  content: "③";
}
.guideline-sec .guideline-detail .guideline-list--mixed-21 > li:nth-child(2),
.guideline-sec .guideline-detail .guideline-list--mixed-21 > li:nth-child(3),
.guideline-sec .guideline-detail .guideline-list--mixed-21 > li:nth-child(4),
.guideline-sec .guideline-detail .guideline-list--mixed-24 > li:nth-child(3),
.guideline-sec .guideline-detail .guideline-list--mixed-24 > li:nth-child(4),
.guideline-sec .guideline-detail .guideline-list--mixed-24 > li:nth-child(5) {
  display: block;
  list-style: none;
}
.guideline-sec .guideline-detail strong {
  font-weight: 700;
}
.guideline-sec .guideline-detail a {
  color: inherit;
  text-decoration: underline;
}
.guideline-sec .guideline-detail .normal {
  font-weight: normal;
}
@media (max-width: 767px) {
  .guideline-sec .guideline-detail .p2-2 {
    margin-bottom: 6rem;
  }
  .guideline-sec .guideline-detail .guideline-detail-kicker {
    margin-bottom: 6rem;
    font-size: 1.2rem;
  }
  .guideline-sec .guideline-detail .guideline-detail-title {
    margin-bottom: 6rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .guideline-sec .guideline-detail .guideline-detail-center {
    margin-bottom: 4.8rem;
    font-size: 2rem;
  }
  .guideline-sec .guideline-detail h2 {
    margin-top: 5.6rem;
    margin-bottom: 2.4rem;
    font-size: 2rem;
  }
  .guideline-sec .guideline-detail h3 {
    margin-top: 4rem;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
  .guideline-sec .guideline-detail p,
  .guideline-sec .guideline-detail li {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .guideline-sec .guideline-detail li ul, .guideline-sec .guideline-detail li ol {
    font-weight: normal;
  }
  .guideline-sec .guideline-detail li ul li, .guideline-sec .guideline-detail li ol li {
    font-weight: normal;
    margin-bottom: 1rem !important;
  }
  .guideline-sec .guideline-detail p {
    margin-bottom: 4rem;
  }
  .guideline-sec .guideline-detail .guideline-note {
    margin-top: 2.4rem;
    margin-bottom: 4rem;
  }
  .guideline-sec .guideline-detail .guideline-list {
    margin-bottom: 4rem;
  }
  .guideline-sec .guideline-detail .guideline-list > li {
    margin-bottom: 2.4rem;
  }
  .guideline-sec .guideline-detail .guideline-list .guideline-list {
    margin-top: 1.6rem;
  }
  .guideline-sec .guideline-detail .guideline-list--decimal,
  .guideline-sec .guideline-detail .guideline-list--disc {
    padding-left: 1.4em;
  }
  .guideline-sec .guideline-detail .guideline-list--paren > li {
    padding-left: 4.4rem;
  }
  .guideline-sec .guideline-detail .guideline-list--circled > li {
    padding-left: 2.8rem;
  }
}
.guideline-sec .guideline-detail .last {
  text-align: right;
  font-weight: normal;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-not-valid-tip {
  margin-top: 1rem;
  font-size: 1.4rem;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.6rem;
  line-height: normal;
  padding: 2rem;
  margin-left: 0;
}

.case-swiper .news-img img {
  aspect-ratio: 353/240;
  object-fit: cover;
  height: auto;
}
.case-swiper .news-body {
  margin-top: 2.4rem;
}
.case-swiper .news-date {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #204483;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .case-swiper .news-date {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
  }
}
.case-swiper h3 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .case-swiper h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.case-swiper .news-arrow {
  display: flex;
  justify-content: flex-end;
}
.case-swiper .news-arrow .news-arrow-inner {
  width: 4rem;
  height: 4rem;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgba(32, 68, 131, 0.2);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .case-swiper .news-arrow .news-arrow-inner {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.case-swiper .news-arrow .arrow-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: none;
}
.case-swiper .news-arrow .arrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.case-swiper .news-arrow .arrow-icon svg > rect:first-child {
  display: none;
}
.case-swiper .news-arrow .arrow-icon-current {
  transform: translateX(0);
  opacity: 1;
}
.case-swiper .news-arrow .arrow-icon-next {
  transform: translateX(-100%);
  opacity: 0;
}
.case-swiper a:hover .news-arrow .news-arrow-inner {
  background-color: #204483;
}
.case-swiper a:hover .news-arrow .arrow-icon {
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.case-swiper a:hover .news-arrow .arrow-icon-current {
  transform: translateX(100%);
  opacity: 0;
}
.case-swiper a:hover .news-arrow .arrow-icon-next {
  transform: translateX(0);
  opacity: 1;
}
.case-swiper a:hover .news-arrow .arr {
  fill: white;
}

.swiper-button-prev, .swiper-button-next {
  width: 4rem;
  height: 4rem;
}
.swiper-button-prev img, .swiper-button-next img {
  width: 100%;
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
@media (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    top: 18rem;
  }
}

.swiper-button-prev {
  left: 12rem;
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: -3rem;
  }
}

.swiper-button-next {
  right: 12rem;
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: -3rem;
  }
}

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