@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  word-break: break-all;
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: clamp(0.85rem, 0.807rem + 0.21vw, 1rem);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #000000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover,
a.hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

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

.__inner {
  max-width: 1224px;
  width: 85%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .__inner {
    padding: 60px 0;
    width: 90%;
  }
}

@media screen and (min-width: 1025px) {
  .__tab {
    display: none;
  }
  .__sp {
    display: none;
  }
  .__pc {
    display: inline-block;
  }
}
/* Tablet: 480px超〜1024px以下 */
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .__pc {
    display: none;
  }
  .__sp {
    display: none;
  }
  .__tab {
    display: inline-block;
  }
}
/* SP: 480px以下 */
@media screen and (max-width: 480px) {
  .__tab {
    display: none;
  }
  .__pc {
    display: none;
  }
  .__sp {
    display: inline-block;
  }
}
/* トリガーアニメーションのスタイル */
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeLeftResponsiveTrigger,
.fadeRightResponsiveTrigger {
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}

/* フェードアップ */
.fadeUp {
  -webkit-animation: fadeUpAnime 0.8s forwards;
  animation: fadeUpAnime 0.8s forwards;
}

/* フェードレフト */
.fadeLeft {
  -webkit-animation: fadeLeftAnime 0.8s forwards;
  animation: fadeLeftAnime 0.8s forwards;
  overflow: hidden;
}

/* フェードライト */
.fadeRight {
  -webkit-animation: fadeRightAnime 0.8s forwards;
  animation: fadeRightAnime 0.8s forwards;
  overflow: hidden;
}

/* 上から下にフェードイン */
.fadeDown {
  -webkit-animation: fadeDownAnime 1s forwards;
  animation: fadeDownAnime 1s forwards;
  overflow: hidden;
}

/* アニメーション定義 */
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background-color: rgba(19, 59, 107, 0);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  -o-transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header.is-hidden {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
  pointer-events: none;
}
.header.scrolled-past-top {
  background-color: rgba(19, 59, 107, 0.9);
}

.header-wrap {
  width: 96.8%;
  height: 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-wrap {
    height: 60px;
  }
}
.header-wrap__logo {
  max-width: 150px;
  width: 100%;
  aspect-ratio: 3.32/1;
}
@media screen and (max-width: 480px) {
  .header-wrap__logo {
    max-width: 120px;
  }
}
.header-wrap__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.header-wrap__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5em;
}
@media screen and (max-width: 1024px) {
  .header-wrap__nav__list {
    display: none;
  }
}
.header-wrap__nav__list__item a {
  display: block;
  padding: 0.5em;
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
  font-weight: 500;
  position: relative;
  line-height: 1;
  color: #FFFFFF;
}
.header-wrap__nav__list__item.__contact a {
  width: clamp(8.5rem, 8.214rem + 1.43vw, 9.5rem);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #133B6B;
  background-color: #FFFFFF;
  padding: 0.4em 0;
  font-size: clamp(0.7rem, 0.643rem + 0.29vw, 0.9rem);
  line-height: 1.5;
  border-radius: 9999px;
  border: 1px solid #FFFFFF;
  position: relative;
}
.header-wrap__nav__list__item.__contact a:hover,
.header-wrap__nav__list__item.__contact a.hover {
  background-color: #133B6B;
  color: #FFFFFF;
  opacity: 1;
}
.header-wrap__nav__list__item.__contact a::after {
  content: "→";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #FFFFFF;
  background-color: #133B6B;
  width: clamp(1rem, 0.805rem + 1.48vw, 1.2rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.header-wrap__nav__list__item.__contact a:hover::after,
.header-wrap__nav__list__item.__contact a.hover::after {
  background-color: #FFFFFF;
  color: #133B6B;
  -webkit-transform: translateY(-50%) translateX(0.2em);
  -ms-transform: translateY(-50%) translateX(0.2em);
  transform: translateY(-50%) translateX(0.2em);
}
.header-wrap__nav__list__item:not(.__contact) a {
  position: relative;
}
.header-wrap__nav__list__item:not(.__contact) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: #FFFFFF;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.header-wrap__nav__list__item:not(.__contact) a:hover::after,
.header-wrap__nav__list__item:not(.__contact) a.hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.header-wrap #h-menu {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  right: -110%;
  width: 50%;
  height: 100vh;
  height: 100dvh;
  background: #133B6B;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .header-wrap #h-menu {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .header-wrap #h-menu {
    width: 70%;
  }
}
.header-wrap #h-menu.panelactive {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  right: 0;
}
.header-wrap #h-menu.panelactive #h-menu-list {
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  height: 100dvh;
}
@media screen and (max-width: 768px) {
  .header-wrap #h-menu.panelactive #h-menu-list {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .header-wrap #h-menu.panelactive #h-menu-list {
    width: 70%;
  }
}
.header-wrap #h-menu .header-wrap__nav__list {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  padding: 1.5em;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-wrap #h-menu .header-wrap__nav__list__item {
  width: 100%;
  margin: 3vh auto;
  margin: 3dvh auto;
  text-align: center;
  display: block;
}
.header-wrap #h-menu .header-wrap__nav__list__item:last-of-type {
  margin-bottom: 0;
}
.header-wrap #h-menu .header-wrap__nav__list__item a {
  display: inline-block;
}
.header-wrap #h-menu .header-wrap__nav__list__item a:hover::after,
.header-wrap #h-menu .header-wrap__nav__list__item a.hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.header-wrap #h-menu .header-wrap__nav__list__item.__contact a:hover::after,
.header-wrap #h-menu .header-wrap__nav__list__item.__contact a.hover::after {
  background-color: #FFFFFF;
  color: #133B6B;
  -webkit-transform: translateY(-50%) translateX(0.2em);
  -ms-transform: translateY(-50%) translateX(0.2em);
  transform: translateY(-50%) translateX(0.2em);
}
.header-wrap #h-menu.panelactive .header-wrap__nav__list {
  display: block;
}
.header-wrap .openbtn {
  display: none;
  position: relative;
  z-index: 9999;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .header-wrap .openbtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header-wrap .openbtn span {
  display: block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  width: 28px;
  border-radius: 10px;
  background-color: #FFFFFF;
}
.header-wrap .openbtn span:nth-of-type(1) {
  top: 9px;
}
.header-wrap .openbtn span:nth-of-type(2) {
  top: 19px;
  width: 23px;
}
.header-wrap .openbtn span:nth-of-type(3) {
  top: 29px;
  width: 18px;
}
.header-wrap .openbtn.active span:nth-of-type(1) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-wrap .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header-wrap .openbtn.active span:nth-of-type(3) {
  top: 19px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 28px;
}

.c-ttl {
  font-size: clamp(0.85rem, 0.736rem + 0.57vw, 1.25rem);
  font-weight: 500;
  color: #B5B5B5;
  margin-bottom: 2em;
  line-height: 1.3;
}
.c-ttl .en {
  display: block;
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 3.125rem);
  color: #133B6B;
  -webkit-transform: skewX(-8deg);
  -ms-transform: skewX(-8deg);
  transform: skewX(-8deg);
}

.animated-text span {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.animated-text span.visible {
  opacity: 1;
}

/* 半角スペース用 */
.animated-text .space-half {
  width: 0.5em;
}

/* 全角スペース用 */
.animated-text .space-full {
  width: 1em;
}

.c-btn_w {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  margin-top: 3.5em;
}
@media screen and (max-width: 1024px) {
  .c-btn_w {
    max-width: 250px;
  }
}
.c-btn_w a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #133B6B;
  font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.1rem);
  padding: 0.9rem 0;
  background-color: #FFFFFF;
  border-radius: 9999px;
  border: 1.5px solid #FFFFFF;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.c-btn_w a:hover,
.c-btn_w a.hover {
  background-color: #133B6B;
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  opacity: 1;
}
.c-btn_w a::after {
  content: "→";
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #FFFFFF;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  background-color: #133B6B;
  width: clamp(1.3rem, 1.243rem + 0.29vw, 1.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
.c-btn_w a:hover::after,
.c-btn_w a.hover::after {
  background-color: #FFFFFF;
  color: #133B6B;
  -webkit-transform: translateY(-50%) translateX(0.25em);
  -ms-transform: translateY(-50%) translateX(0.25em);
  transform: translateY(-50%) translateX(0.25em);
}

.c-btn_b {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  margin-top: 3.5em;
}
@media screen and (max-width: 1024px) {
  .c-btn_b {
    max-width: 250px;
  }
}
.c-btn_b a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.1rem);
  padding: 0.9rem 0;
  background-color: #133B6B;
  border-radius: 9999px;
  border: 1.5px solid #133B6B;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.c-btn_b a:hover,
.c-btn_b a.hover {
  background-color: #FFFFFF;
  color: #133B6B;
  opacity: 1;
}
.c-btn_b a::after {
  content: "→";
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #133B6B;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  background-color: #FFFFFF;
  width: clamp(1.3rem, 1.243rem + 0.29vw, 1.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
.c-btn_b a:hover::after,
.c-btn_b a.hover::after {
  background-color: #133B6B;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(0.25em);
  -ms-transform: translateY(-50%) translateX(0.25em);
  transform: translateY(-50%) translateX(0.25em);
}

.contact {
  position: relative;
  background-color: #133B6B;
  z-index: 1;
}
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}
.contact::before {
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact::after {
  background-color: rgba(19, 59, 107, 0.6);
}
.contact-wrap {
  text-align: center;
  color: #FFFFFF;
}
.contact-wrap .c-ttl {
  color: #FFFFFF;
}
.contact-wrap .c-ttl .en {
  color: #FFFFFF;
}

.footer {
  background-color: #133B6B;
}
.footer-wrap {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #FFFFFF;
  position: relative;
}
.footer-wrap::after {
  content: "";
  width: 1px;
  height: 17em;
  position: absolute;
  left: 40%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #FFFFFF;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer-wrap::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer-wrap__company {
  width: 40%;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer-wrap__company {
    width: 72%;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 480px) {
  .footer-wrap__company {
    max-width: 180px;
    width: 100%;
  }
}
.footer-wrap__company__logo {
  max-width: 180px;
  width: 100%;
  aspect-ratio: 3.32/1;
  margin-bottom: 1.5em;
}
.footer-wrap__company__name {
  margin-bottom: 0.5rem;
}
.footer-wrap__nav {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4em;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__nav {
    width: 55%;
    gap: 3em;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrap__nav {
    padding-top: 2em;
    width: 72%;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1em;
  }
  .footer-wrap__nav::before {
    position: absolute;
    content: "";
    width: 90vw;
    height: 1px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #FFFFFF;
    opacity: 0.8;
  }
}
@media screen and (max-width: 480px) {
  .footer-wrap__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 180px;
    width: 100%;
  }
}
.footer-wrap__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2em;
}
.footer-wrap__nav__list:nth-of-type(1) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .footer-wrap__nav__list:nth-of-type(1) {
    width: 100%;
  }
}
.footer-wrap__nav__list:nth-of-type(2) {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__nav__list:nth-of-type(2) {
    max-width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .footer-wrap__nav__list:nth-of-type(2) {
    max-width: 180px;
    width: 100%;
  }
}
.footer-wrap__nav__list__item a {
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.5em;
  padding-left: 1.5em;
  line-height: 1.2;
  position: relative;
}
.footer-wrap__nav__list__item:not(.__contact) a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background-color: #FFFFFF;
}
.footer-wrap__nav__list__item .c-btn_w {
  max-width: 180px;
  width: 100%;
  margin-left: 0;
  margin-top: 0;
}
.footer-wrap__nav__list__item .c-btn_w a {
  color: #133B6B;
  padding: 0.6em 0;
  font-weight: 500;
  font-size: clamp(0.85rem, 0.807rem + 0.21vw, 1rem);
}
.footer-wrap__nav__list__item .c-btn_w a:hover,
.footer-wrap__nav__list__item .c-btn_w a.hover {
  color: #FFFFFF;
}
.footer-wrap__nav__list__item .c-btn_w a::after {
  font-size: clamp(0.6rem, 0.514rem + 0.43vw, 0.9rem);
  width: clamp(0.9rem, 0.757rem + 0.71vw, 1.4rem);
}
.footer-right {
  color: #FFFFFF;
  font-size: clamp(0.7rem, 0.683rem + 0.09vw, 0.76rem);
  text-align: center;
  padding: 1rem 0;
  font-weight: 400;
}

body.common-sub .breadcrumb .__inner {
  padding: 0;
}
body.common-sub .breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 1.7em auto 0.8em;
}
body.common-sub .breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.common-sub .breadcrumb__item:not(:last-child)::after {
  content: "〉";
  font-size: clamp(0.6rem, 0.506rem + 0.47vw, 0.93rem);
  margin: 0 0.5rem;
}
body.common-sub .breadcrumb__item a {
  display: block;
  color: #000000;
  font-size: clamp(0.6rem, 0.506rem + 0.47vw, 0.93rem);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
body.common-sub .breadcrumb__item a:hover,
body.common-sub .breadcrumb__item a.hover {
  color: #133B6B;
}
body.common-sub .breadcrumb__item[aria-current=page] {
  color: #133B6B;
  font-size: clamp(0.6rem, 0.506rem + 0.47vw, 0.93rem);
  font-weight: 400;
}
body.common-sub .single-pg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.8em;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  body.common-sub .single-pg {
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  body.common-sub .single-pg {
    gap: 1em;
  }
}
body.common-sub .single-pg__item a {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: clamp(2.188rem, 1.92rem + 1.34vw, 3.125rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.5px solid #F5F5F5;
  color: #000000;
  background-color: #F5F5F5;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  font-weight: 500;
}
body.common-sub .single-pg__item a:hover,
body.common-sub .single-pg__item a.hover {
  background-color: #133B6B;
  color: #FFFFFF;
  opacity: 1;
}
body.common-sub .single-pg__item.__center a {
  aspect-ratio: 3.8/1;
  font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.1rem);
  height: clamp(2.8rem, 2.571rem + 1.14vw, 3.6rem);
  border-radius: 9999px;
  background-color: #133B6B;
  color: #FFFFFF;
  border-color: #133B6B;
}
body.common-sub .single-pg__item.__center a:hover,
body.common-sub .single-pg__item.__center a.hover {
  background-color: #FFFFFF;
  color: #133B6B;
}
body.common-sub .normal-pg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  body.common-sub .normal-pg {
    margin-top: 60px;
  }
}
body.common-sub .normal-pg__item a,
body.common-sub .normal-pg__item span.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
body.common-sub .normal-pg__item .prev,
body.common-sub .normal-pg__item .next {
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
}
body.common-sub .normal-pg__item a.page-numbers:not(.prev):not(.next) {
  border: 2px solid #FFFFFF;
  color: #000000;
  background-color: #FFFFFF;
}
body.common-sub .normal-pg__item a.page-numbers:not(.prev):not(.next):hover,
body.common-sub .normal-pg__item a.page-numbers:not(.prev):not(.next).hover {
  background-color: #133B6B;
  border-color: #133B6B;
  color: #FFFFFF;
}
body.common-sub .normal-pg__item.is-current span.page-numbers,
body.common-sub .normal-pg__item.is-current a.page-numbers {
  background-color: #133B6B;
  color: #FFFFFF;
  border-color: #133B6B;
  pointer-events: none;
}
body.common-sub .normal-pg__item span.page-numbers.prev,
body.common-sub .normal-pg__item span.page-numbers.next {
  border: 2px solid transparent;
  color: #000000;
}
body.common-sub .normal-pg__item span.page-numbers.prev i,
body.common-sub .normal-pg__item span.page-numbers.next i {
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
}
body.common-sub .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
body.common-sub .slick-dots li {
  margin: 0 3px;
}
body.common-sub .slick-dots li button {
  font-size: 0;
  color: transparent;
  line-height: 0;
  padding: 0;
  width: auto;
  height: auto;
  border: none;
}
body.common-sub .slick-dots li button:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #B5B5B5;
  border-radius: 0;
  opacity: 1;
}
body.common-sub .slick-dots li.slick-active button:before {
  background-color: #133B6B;
}
body.common-sub .top {
  position: relative;
  overflow: hidden;
}
body.common-sub .top-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}
body.common-sub .top-bg::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(19, 59, 107, 0.45);
}
body.common-sub .top-wrap {
  width: 100%;
  aspect-ratio: 2.73/1;
  height: max(70vh, 500px);
  height: max(70dvh, 500px);
  position: relative;
}
body.common-sub .top-wrap .u-ttl {
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 3.125rem);
  font-weight: bold;
  color: #FFFFFF;
  position: absolute;
  left: 7.5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  body.common-sub .top-wrap .u-ttl {
    top: 80%;
    left: 2.5%;
  }
}
body.common-sub .top-wrap .u-ttl .en {
  display: block;
  font-size: clamp(1.125rem, 0.821rem + 1.52vw, 2.188rem);
  -webkit-transform: skewX(-8deg);
  -ms-transform: skewX(-8deg);
  transform: skewX(-8deg);
  font-weight: 500;
}

body.home main,
body.error404 main {
  padding-top: 0;
}
body.home .top,
body.error404 .top {
  position: relative;
  overflow: hidden;
}
body.home .top-bg,
body.error404 .top-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}
body.home .top-bg video,
body.error404 .top-bg video {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
body.home .top-bg::before,
body.error404 .top-bg::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(19, 59, 107, 0.3);
}
body.home .top-wrap,
body.error404 .top-wrap {
  width: 100%;
  height: max(100vh, 500px);
  height: max(100dvh, 500px);
  position: relative;
}
body.home .top-wrap__ttl,
body.error404 .top-wrap__ttl {
  position: absolute;
  left: 7.5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.188rem);
  color: #133B6B;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  body.home .top-wrap__ttl,
  body.error404 .top-wrap__ttl {
    left: 2.5%;
  }
}
body.home .top-wrap__ttl__txt1,
body.error404 .top-wrap__ttl__txt1 {
  padding: 10px;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
body.home .top-wrap__ttl__txt1::before,
body.error404 .top-wrap__ttl__txt1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  background-color: #FFFFFF;
  -webkit-animation: wipeGrow 0.5s ease-out forwards;
  animation: wipeGrow 0.5s ease-out forwards;
  z-index: 1;
}
body.home .top-wrap__ttl__txt1 span,
body.error404 .top-wrap__ttl__txt1 span {
  position: relative;
  z-index: 2;
  opacity: 0;
  padding: 0 0.5em;
  -webkit-animation: fadeInText 0.3s ease-out 0.5s forwards;
  animation: fadeInText 0.3s ease-out 0.5s forwards;
}
body.home .top-wrap__ttl__txt2,
body.error404 .top-wrap__ttl__txt2 {
  padding: 10px;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  margin-left: 2em;
}
body.home .top-wrap__ttl__txt2::before,
body.error404 .top-wrap__ttl__txt2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  background-color: #FFFFFF;
  -webkit-animation: wipeGrow 0.5s ease-out 1s forwards;
  animation: wipeGrow 0.5s ease-out 1s forwards;
  z-index: 1;
}
body.home .top-wrap__ttl__txt2 span,
body.error404 .top-wrap__ttl__txt2 span {
  position: relative;
  z-index: 2;
  opacity: 0;
  padding: 0 0.5em;
  -webkit-animation: fadeInText 0.3s ease-out 1.5s forwards;
  animation: fadeInText 0.3s ease-out 1.5s forwards;
}
@-webkit-keyframes wipeGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes wipeGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes wipeSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
  }
}
@keyframes wipeSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
  }
}
@-webkit-keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.home .top-wrap p,
body.error404 .top-wrap p {
  font-family: "Commissioner", sans-serif;
  font-size: clamp(3.6rem, 1.971rem + 8.14vw, 9.3rem);
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.25;
  position: absolute;
  bottom: 0;
  right: 0;
  word-break: keep-all;
}
@media screen and (max-width: 1024px) {
  body.home .top-wrap p,
  body.error404 .top-wrap p {
    word-break: break-all;
    line-height: 0.85;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  body.home .top-wrap .space-half,
  body.error404 .top-wrap .space-half {
    display: none;
  }
}
body.home .about,
body.error404 .about {
  background: -o-linear-gradient(15.84deg, #133B6B 14.07%, #4A6A90 62.15%, #8099B5 80.54%, #EDF6FF 98.44%);
  background: linear-gradient(74.16deg, #133B6B 14.07%, #4A6A90 62.15%, #8099B5 80.54%, #EDF6FF 98.44%);
}
body.home .about-wrap .c-ttl,
body.error404 .about-wrap .c-ttl {
  text-align: center;
}
body.home .about-wrap .c-ttl .en,
body.error404 .about-wrap .c-ttl .en {
  color: #FFFFFF;
}
body.home .about-wrap p,
body.error404 .about-wrap p {
  color: #FFFFFF;
  text-align: center;
}
body.home .about-wrap p:first-of-type,
body.error404 .about-wrap p:first-of-type {
  font-weight: bold;
  font-size: clamp(1.063rem, 0.741rem + 1.61vw, 2.188rem);
  margin-bottom: 1em;
}
body.home .service,
body.error404 .service {
  position: relative;
  overflow: hidden;
}
body.home .service .__inner,
body.error404 .service .__inner {
  padding: 60px 0;
}
body.home .service-bg,
body.error404 .service-bg {
  background-image: url("../img/service-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 3.43/1;
}
body.home .service-wrap,
body.error404 .service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  body.home .service-wrap,
  body.error404 .service-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5.2em;
  }
}
body.home .service-wrap__con,
body.error404 .service-wrap__con {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  body.home .service-wrap__con,
  body.error404 .service-wrap__con {
    width: 100%;
  }
}
body.home .service-wrap__con .c-btn_b,
body.error404 .service-wrap__con .c-btn_b {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  body.home .service-wrap__con .c-btn_b,
  body.error404 .service-wrap__con .c-btn_b {
    margin-left: auto;
  }
}
body.home .service-wrap__link,
body.error404 .service-wrap__link {
  margin-top: -12em;
  background-color: #FFFFFF;
  padding: 2.5em 1.5em;
  width: 55%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  body.home .service-wrap__link,
  body.error404 .service-wrap__link {
    margin-bottom: 7em;
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  body.home .service-wrap__link,
  body.error404 .service-wrap__link {
    padding: 2em 1em;
  }
}
body.home .service-wrap__link__ttl,
body.error404 .service-wrap__link__ttl {
  font-size: clamp(1rem, 0.074rem + 1.45vw, 1.375rem);
  padding-left: 1em;
  margin-bottom: 1.5em;
  position: relative;
}
body.home .service-wrap__link__ttl::before,
body.error404 .service-wrap__link__ttl::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background-color: #133B6B;
}
body.home .service-wrap__link__list,
body.error404 .service-wrap__link__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
@media screen and (max-width: 480px) {
  body.home .service-wrap__link__list,
  body.error404 .service-wrap__link__list {
    gap: 1.5em;
  }
}
body.home .service-wrap__link__list__item,
body.error404 .service-wrap__link__list__item {
  padding-bottom: 1em;
  border-bottom: 1.5px solid #cccccc;
}
body.home .service-wrap__link__list__item a,
body.error404 .service-wrap__link__list__item a {
  display: inline-block;
  padding-left: 3.2em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  gap: 0.2em;
  font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.1rem);
  font-weight: 500;
}
body.home .service-wrap__link__list__item a span,
body.error404 .service-wrap__link__list__item a span {
  display: block;
  color: #133B6B;
  font-size: clamp(0.7rem, 0.614rem + 0.43vw, 1rem);
}
@media screen and (max-width: 480px) {
  body.home .service-wrap__link__list__item a,
  body.error404 .service-wrap__link__list__item a {
    padding-left: 2.2em;
  }
}
body.home .service-wrap__link__list__item a::before,
body.error404 .service-wrap__link__list__item a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background-color: #EDF6FF;
  background-image: url("../img/coding.svg");
  background-size: 1.5em auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 480px) {
  body.home .service-wrap__link__list__item a::before,
  body.error404 .service-wrap__link__list__item a::before {
    width: 1.7em;
    height: 1.7em;
    background-size: 1.2em auto;
  }
}
body.home .service-wrap__link__list__item a::after,
body.error404 .service-wrap__link__list__item a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #FFFFFF;
  font-size: clamp(0.65rem, 0.55rem + 0.5vw, 1rem);
  background-color: #133B6B;
  width: clamp(0.9rem, 0.671rem + 1.14vw, 1.7rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
body.home .service-wrap__link__list__item a:hover,
body.home .service-wrap__link__list__item a.hover,
body.error404 .service-wrap__link__list__item a:hover,
body.error404 .service-wrap__link__list__item a.hover {
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
}
body.home .service-wrap__link__list__item:nth-of-type(2) a::before,
body.error404 .service-wrap__link__list__item:nth-of-type(2) a::before {
  background-image: url("../img/handshake.svg");
}
body.home .service-wrap__link__list__item:nth-of-type(3) a::before,
body.error404 .service-wrap__link__list__item:nth-of-type(3) a::before {
  background-image: url("../img/up.svg");
}
body.home .service-wrap__link__list__item:nth-of-type(4) a::before,
body.error404 .service-wrap__link__list__item:nth-of-type(4) a::before {
  background-image: url("../img/consultation.svg");
}
body.home .service::after,
body.error404 .service::after {
  position: absolute;
  content: "Wizit Inc.";
  font-family: "Commissioner", sans-serif;
  font-weight: bold;
  color: #E5E5E5;
  font-size: clamp(4.375rem, 2.5rem + 9.38vw, 10.938rem);
  line-height: 0.8;
  right: 0;
  bottom: 0;
}
body.home .works,
body.error404 .works {
  background-color: #EDF6FF;
  overflow: hidden;
}
body.home .works .__inner,
body.error404 .works .__inner {
  padding: 0;
}
body.home .works-wrap,
body.error404 .works-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
body.home .works-wrap .c-ttl,
body.error404 .works-wrap .c-ttl {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 40px 0 2em;
}
body.home .works-wrap__body,
body.error404 .works-wrap__body {
  margin-right: auto;
  width: 70%;
}
@media screen and (max-width: 768px) {
  body.home .works-wrap__body,
  body.error404 .works-wrap__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    width: 100%;
    gap: 2em;
  }
}
body.home .works-wrap__body .main-slider,
body.error404 .works-wrap__body .main-slider {
  aspect-ratio: 1.35/1;
  width: 70%;
  margin: 0 auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  body.home .works-wrap__body .main-slider,
  body.error404 .works-wrap__body .main-slider {
    width: 90%;
  }
}
body.home .works-wrap__body .main-slider .swiper-slide,
body.error404 .works-wrap__body .main-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.home .works-wrap__body .main-slider .swiper-slide a,
body.error404 .works-wrap__body .main-slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
body.home .works-wrap__body .main-slider .swiper-slide a:hover,
body.home .works-wrap__body .main-slider .swiper-slide a.hover,
body.error404 .works-wrap__body .main-slider .swiper-slide a:hover,
body.error404 .works-wrap__body .main-slider .swiper-slide a.hover {
  opacity: 1;
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
body.home .works-wrap__body .main-slider .swiper-slide__image,
body.error404 .works-wrap__body .main-slider .swiper-slide__image {
  width: 100%;
  aspect-ratio: 1.35/1;
  background-image: url("../img/works-pcbg.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
body.home .works-wrap__body .main-slider .swiper-slide__image::after,
body.error404 .works-wrap__body .main-slider .swiper-slide__image::after {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1/2;
  background-image: url("../img/works-spbg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
body.home .works-wrap__body .main-slider .swiper-slide__image .pc-thumb,
body.error404 .works-wrap__body .main-slider .swiper-slide__image .pc-thumb {
  aspect-ratio: 1.78/1;
  width: 86%;
  height: auto;
  position: absolute;
  top: 3.6%;
  left: 1.8%;
  z-index: 1;
}
body.home .works-wrap__body .main-slider .swiper-slide__image .pc-thumb.noimage,
body.error404 .works-wrap__body .main-slider .swiper-slide__image .pc-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(1rem, 0.714rem + 1.43vw, 2rem);
}
body.home .works-wrap__body .main-slider .swiper-slide__image .sp-thumb,
body.error404 .works-wrap__body .main-slider .swiper-slide__image .sp-thumb {
  aspect-ratio: 1/2;
  width: 18%;
  height: auto;
  position: absolute;
  bottom: 2%;
  right: 1%;
  z-index: 3;
}
body.home .works-wrap__body .main-slider .swiper-slide__image .sp-thumb.noimage,
body.error404 .works-wrap__body .main-slider .swiper-slide__image .sp-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.75rem, 0.536rem + 1.07vw, 1.5rem);
}
body.home .works-wrap__body .thumb-slider-area,
body.error404 .works-wrap__body .thumb-slider-area {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  body.home .works-wrap__body .thumb-slider-area,
  body.error404 .works-wrap__body .thumb-slider-area {
    height: auto;
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
  }
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.home .works-wrap__body .thumb-slider-area .thumb-slider,
  body.error404 .works-wrap__body .thumb-slider-area .thumb-slider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide {
  width: 100%;
  aspect-ratio: 1.35/1;
  background-image: url("../img/works-pcbg.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide::after,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide::after {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1/2;
  background-image: url("../img/works-spbg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .pc-thumb,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .pc-thumb {
  aspect-ratio: 1.78/1;
  width: 86%;
  height: auto;
  position: absolute;
  top: 3.6%;
  left: 1.8%;
  z-index: 1;
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .pc-thumb.noimage,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .pc-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.75rem, 0.536rem + 1.07vw, 1.5rem);
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .sp-thumb,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .sp-thumb {
  aspect-ratio: 1/2;
  width: 18%;
  height: auto;
  position: absolute;
  bottom: 2%;
  right: 1%;
  z-index: 3;
}
body.home .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .sp-thumb.noimage,
body.error404 .works-wrap__body .thumb-slider-area .thumb-slider .swiper-slide .sp-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.5rem, 0.357rem + 0.71vw, 1rem);
}
body.home .works-wrap__body .thumb-slider-area .swiper-slide-active,
body.error404 .works-wrap__body .thumb-slider-area .swiper-slide-active {
  opacity: 0.5;
}
body.home .works-wrap .btn-wrap,
body.error404 .works-wrap .btn-wrap {
  width: 70%;
  margin-right: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body.home .works-wrap .btn-wrap,
  body.error404 .works-wrap .btn-wrap {
    margin-left: auto;
    width: 100%;
  }
}
body.home .news-wrap,
body.error404 .news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap,
  body.error404 .news-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.home .news-wrap__left,
body.error404 .news-wrap__left {
  width: 35%;
}
body.home .news-wrap__left .c-btn_b,
body.error404 .news-wrap__left .c-btn_b {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap__left,
  body.error404 .news-wrap__left {
    width: 100%;
  }
  body.home .news-wrap__left .c-btn_b,
  body.error404 .news-wrap__left .c-btn_b {
    display: none;
  }
}
body.home .news-wrap__right,
body.error404 .news-wrap__right {
  width: 55%;
}
body.home .news-wrap__right .c-btn_b,
body.error404 .news-wrap__right .c-btn_b {
  display: none;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap__right,
  body.error404 .news-wrap__right {
    width: 100%;
  }
  body.home .news-wrap__right .c-btn_b,
  body.error404 .news-wrap__right .c-btn_b {
    display: block;
  }
}
body.home .news-wrap .news_content,
body.error404 .news-wrap .news_content {
  width: 100%;
  position: relative;
  clear: both;
  z-index: 1;
}
body.home .news-wrap .news_content ._menu,
body.error404 .news-wrap .news_content ._menu {
  display: block;
  width: 5em;
  text-align: center;
  padding: 0.5em;
  float: left;
  list-style: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom: 2px solid rgba(19, 59, 107, 0);
}
body.home .news-wrap .news_content ._menu._active,
body.home .news-wrap .news_content ._menu._hover,
body.error404 .news-wrap .news_content ._menu._active,
body.error404 .news-wrap .news_content ._menu._hover {
  border-bottom: 2px solid #133b6b;
}
body.home .news-wrap .news_content .mr,
body.error404 .news-wrap .news_content .mr {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
body.home .news-wrap .tabcontent,
body.error404 .news-wrap .tabcontent {
  width: 100%;
  position: absolute;
  top: 4em;
  left: 0;
}
body.home .news-wrap .news_article,
body.error404 .news-wrap .news_article {
  display: -ms-grid;
  display: grid;
}
body.home .news-wrap .news_article .news_item,
body.error404 .news-wrap .news_article .news_item {
  display: inline-block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-bottom: 1.5px solid #cccccc;
}
body.home .news-wrap .news_article .news_item.no-post,
body.error404 .news-wrap .news_article .news_item.no-post {
  border: none;
}
body.home .news-wrap .news_article .news_item a,
body.error404 .news-wrap .news_article .news_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  position: relative;
}
body.home .news-wrap .news_article .news_item a::after,
body.error404 .news-wrap .news_article .news_item a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #FFFFFF;
  background-color: #133B6B;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  width: clamp(1.3rem, 1.243rem + 0.29vw, 1.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
body.home .news-wrap .news_article .news_item a:hover,
body.home .news-wrap .news_article .news_item a.hover,
body.error404 .news-wrap .news_article .news_item a:hover,
body.error404 .news-wrap .news_article .news_item a.hover {
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
}
body.home .news-wrap .news_article .news_item__ttl,
body.error404 .news-wrap .news_article .news_item__ttl {
  font-weight: 400;
}
body.home .news-wrap .news_article .news_item ._container,
body.error404 .news-wrap .news_article .news_item ._container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  margin-bottom: 0.9em;
}
body.home .news-wrap .news_article .news_item ._container ._tag,
body.error404 .news-wrap .news_article .news_item ._container ._tag {
  padding: 0.3em 1.5em;
  background-color: #F5F5F5;
  border-radius: 9999px;
  font-size: 0.75rem;
}
body.home .news-wrap .news_article .news_item ._container ._date,
body.error404 .news-wrap .news_article .news_item ._container ._date {
  font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
}

body.page-about .top-bg {
  background-image: url("../img/about-top.jpg");
}
body.page-about .about {
  overflow: hidden;
  position: relative;
}
body.page-about .about-wrap__ttl {
  color: #133B6B;
  font-size: clamp(1.05rem, 0.75rem + 1.5vw, 2.1rem);
  margin-bottom: 1.5em;
}
body.page-about .about-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  body.page-about .about-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2em;
  }
}
body.page-about .about-wrap__con__txt {
  width: 57%;
}
@media screen and (max-width: 768px) {
  body.page-about .about-wrap__con__txt {
    width: 100%;
  }
}
body.page-about .about-wrap__con__image {
  content: "";
  width: 40%;
  max-width: 858px;
  aspect-ratio: 1.75/1;
  background-image: url("../img/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 5%;
}
@media screen and (max-width: 768px) {
  body.page-about .about-wrap__con__image {
    position: static;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
body.page-about .mission {
  background-color: #133B6B;
  -webkit-clip-path: polygon(0 10vw, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 10vw, 100% 0, 100% 100%, 0 100%);
}
body.page-about .mission .__inner {
  padding-top: 14vw;
}
body.page-about .mission-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  body.page-about .mission-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.page-about .mission-wrap__con {
  width: 50%;
}
@media screen and (max-width: 768px) {
  body.page-about .mission-wrap__con {
    margin: 0;
    width: 100%;
  }
}
body.page-about .mission-wrap__con .c-ttl {
  color: #9CADC1;
}
body.page-about .mission-wrap__con .c-ttl .en {
  color: #FFFFFF;
}
body.page-about .mission-wrap__con strong {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
  display: inline-block;
  margin-bottom: 1em;
}
body.page-about .mission-wrap__con p {
  font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.25rem);
  color: #9CADC1;
}
body.page-about .mission-wrap__image {
  width: 40%;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  body.page-about .mission-wrap__image {
    width: 80%;
    margin: 0 auto;
  }
}
body.page-about .value {
  background-color: #133B6B;
}
body.page-about .value-wrap .c-ttl {
  color: #9CADC1;
}
body.page-about .value-wrap .c-ttl .en {
  color: #FFFFFF;
}
body.page-about .value-wrap__txt {
  color: #9CADC1;
  width: 48%;
  margin-left: auto;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__txt {
    width: 100%;
  }
}
body.page-about .value-wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6em;
}
body.page-about .value-wrap__list__item .list-ttl {
  color: #FFFFFF;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #FFFFFF;
  display: inline-block;
  font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
  font-weight: 400;
  margin-bottom: 3.5em;
}
body.page-about .value-wrap__list__item .list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item .list-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2em;
  }
}
body.page-about .value-wrap__list__item .list-block__image {
  width: 50%;
  aspect-ratio: 1.55/1;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item .list-block__image {
    width: 100%;
  }
}
body.page-about .value-wrap__list__item .list-block__image__wrap {
  position: relative;
  -webkit-clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item .list-block__image__wrap {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }
}
body.page-about .value-wrap__list__item .list-block__image__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(19, 59, 107, 0.3);
  z-index: 1;
}
body.page-about .value-wrap__list__item .list-block__image .num {
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(5rem, 4.2rem + 4vw, 7.8rem);
  line-height: 0.9;
  font-family: "Advent Pro", sans-serif;
  font-weight: bold;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
body.page-about .value-wrap__list__item .list-block__image .num span {
  font-size: clamp(1rem, 0.839rem + 0.8vw, 1.563rem);
  letter-spacing: 0.25rem;
}
body.page-about .value-wrap__list__item .list-block__con {
  width: 48%;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item .list-block__con {
    width: 100%;
  }
}
body.page-about .value-wrap__list__item .list-block__con__ttl {
  color: #FFFFFF;
  font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
  font-weight: 500;
  padding-left: 1em;
  margin-bottom: 0.8em;
  position: relative;
}
body.page-about .value-wrap__list__item .list-block__con__ttl::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.4em;
  height: 0.4em;
  background-color: #FFFFFF;
}
body.page-about .value-wrap__list__item .list-block__con__txt {
  color: #9CADC1;
}
body.page-about .value-wrap__list__item .list-block__con .c-btn_w {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item .list-block__con .c-btn_w {
    margin-left: auto;
  }
}
body.page-about .value-wrap__list__item:nth-child(even) .list-block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item:nth-child(even) .list-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.page-about .value-wrap__list__item:nth-child(even) .list-block__image__wrap {
  -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 8% 100%, 0 50%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 8% 100%, 0 50%);
}
@media screen and (max-width: 768px) {
  body.page-about .value-wrap__list__item:nth-child(even) .list-block__image__wrap {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }
}
body.page-about .value-wrap__list__item:nth-child(even) .list-block__image .num {
  right: 0;
}
body.page-about .outline-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  body.page-about .outline-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.page-about .outline-wrap__con .c-ttl {
  width: 25%;
}
@media screen and (max-width: 768px) {
  body.page-about .outline-wrap__con .c-ttl {
    width: 100%;
  }
}
body.page-about .outline-wrap__con__list {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.page-about .outline-wrap__con__list {
    width: 100%;
  }
}
body.page-about .outline-wrap__con__list li {
  border-bottom: 1px solid #cccccc;
}
body.page-about .outline-wrap__con__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 0.5rem;
}
@media screen and (max-width: 480px) {
  body.page-about .outline-wrap__con__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 0.5rem;
  }
}
body.page-about .outline-wrap__con__list dt {
  width: 25%;
  color: #133B6B;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  body.page-about .outline-wrap__con__list dt {
    width: 100%;
  }
}
body.page-about .outline-wrap__con__list dd {
  width: 75%;
}
body.page-about .outline-wrap__map {
  width: 100%;
  aspect-ratio: 3.04/1;
  margin-top: 3.5em;
}
@media screen and (max-width: 480px) {
  body.page-about .outline-wrap__map {
    aspect-ratio: 2.02/1;
  }
}
body.page-about .outline-wrap__map iframe {
  width: 100%;
  height: 100%;
}

body.page-service .c-ttl_r {
  font-size: clamp(0.85rem, 0.736rem + 0.57vw, 1.25rem);
  font-weight: 500;
  color: #133B6B;
  margin-bottom: 2em;
  line-height: 1.3;
}
body.page-service .c-ttl_r .main {
  display: block;
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 3.125rem);
  color: #000000;
}
body.page-service .top-bg {
  background-image: url("../img/service-top.jpg");
}
body.page-service .head-wrap {
  text-align: center;
}
@media screen and (max-width: 480px) {
  body.page-service .head-wrap {
    text-align: left;
  }
}
body.page-service .head-wrap__ttl {
  color: #133B6B;
  font-size: clamp(1.05rem, 0.75rem + 1.5vw, 2.1rem);
  margin-bottom: 1.5em;
}
body.page-service .service {
  background-color: #EDF6FF;
}
body.page-service .service-wrap__txt {
  margin-bottom: 4em;
  font-weight: 400;
}
body.page-service .service-wrap__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
@media screen and (max-width: 1024px) {
  body.page-service .service-wrap__list {
    -ms-grid-columns: 1fr 3em 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 3em;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .service-wrap__list {
    gap: 2em;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .service-wrap__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.page-service .service-wrap__list__item a {
  display: block;
  background-color: #FFFFFF;
  padding: 1.5em 1.5em 2.5em;
  position: relative;
  height: 100%;
  max-width: 280px;
  width: 100%;
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
}
@media screen and (max-width: 768px) {
  body.page-service .service-wrap__list__item a {
    aspect-ratio: 1.15/1;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .service-wrap__list__item a {
    font-size: clamp(0.85rem, 0.807rem + 0.21vw, 1rem);
    font-weight: 400;
    aspect-ratio: 1.35/1;
  }
}
body.page-service .service-wrap__list__item a .num {
  font-size: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
  font-family: "Advent Pro", sans-serif;
  font-weight: bold;
  color: #133B6B;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.page-service .service-wrap__list__item a::after {
  content: "→";
  position: absolute;
  right: 1.5em;
  bottom: 1em;
  color: #FFFFFF;
  font-size: clamp(0.7rem, 0.586rem + 0.57vw, 1.1rem);
  background-color: #133B6B;
  width: clamp(1.3rem, 1.186rem + 0.57vw, 1.7rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
body.page-service .service-wrap__list__item a:hover::after,
body.page-service .service-wrap__list__item a.hover::after {
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
}
body.page-service .service-wrap__list__item a:hover,
body.page-service .service-wrap__list__item a.hover {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
body.page-service .service-wrap__list__item__ttl {
  font-size: clamp(1.125rem, 0.961rem + 0.82vw, 1.7rem);
  font-weight: 500;
  color: #133B6B;
  margin-bottom: 0.2em;
}
body.page-service .service-wrap__list__item__ttl span {
  display: block;
  color: #B5B5B5;
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
}
@media screen and (max-width: 480px) {
  body.page-service .service-wrap__list__item__ttl {
    font-size: clamp(1.3rem, 1.186rem + 0.57vw, 1.7rem);
  }
}
body.page-service .web,
body.page-service .pro,
body.page-service .free,
body.page-service .career {
  background: -webkit-gradient(linear, left top, left bottom, from(#EDF6FF), color-stop(50%, #EDF6FF), color-stop(50%, #F5F5F5), to(#F5F5F5));
  background: -o-linear-gradient(top, #EDF6FF 0%, #EDF6FF 50%, #F5F5F5 50%, #F5F5F5 100%);
  background: linear-gradient(to bottom, #EDF6FF 0%, #EDF6FF 50%, #F5F5F5 50%, #F5F5F5 100%);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
body.page-service .web::before,
body.page-service .pro::before,
body.page-service .free::before,
body.page-service .career::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #F5F5F5;
  -webkit-clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
  z-index: -1;
}
body.page-service .web::after,
body.page-service .pro::after,
body.page-service .free::after,
body.page-service .career::after {
  position: absolute;
  content: "Web Production";
  font-family: "Commissioner", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  font-size: clamp(4rem, 2.911rem + 5.45vw, 7.813rem);
  line-height: 0.7;
  right: 0;
  bottom: 0;
  /* 縦書きにする */
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: -1;
  width: 1lh;
}
body.page-service .web .__inner,
body.page-service .pro .__inner,
body.page-service .free .__inner,
body.page-service .career .__inner {
  position: relative;
  padding-top: 10vw;
}
body.page-service .web-wrap__head,
body.page-service .pro-wrap__head,
body.page-service .free-wrap__head,
body.page-service .career-wrap__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5em;
}
@media screen and (max-width: 1024px) {
  body.page-service .web-wrap__head,
  body.page-service .pro-wrap__head,
  body.page-service .free-wrap__head,
  body.page-service .career-wrap__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.page-service .web-wrap__head .c-ttl_r,
body.page-service .pro-wrap__head .c-ttl_r,
body.page-service .free-wrap__head .c-ttl_r,
body.page-service .career-wrap__head .c-ttl_r {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  body.page-service .web-wrap__head .c-ttl_r,
  body.page-service .pro-wrap__head .c-ttl_r,
  body.page-service .free-wrap__head .c-ttl_r,
  body.page-service .career-wrap__head .c-ttl_r {
    width: 100%;
  }
}
body.page-service .web-wrap__head__txt,
body.page-service .pro-wrap__head__txt,
body.page-service .free-wrap__head__txt,
body.page-service .career-wrap__head__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  body.page-service .web-wrap__head__txt,
  body.page-service .pro-wrap__head__txt,
  body.page-service .free-wrap__head__txt,
  body.page-service .career-wrap__head__txt {
    width: 100%;
  }
}
body.page-service .web-wrap__body,
body.page-service .pro-wrap__body,
body.page-service .free-wrap__body,
body.page-service .career-wrap__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3em;
}
body.page-service .web .list-ttl,
body.page-service .pro .list-ttl,
body.page-service .free .list-ttl,
body.page-service .career .list-ttl {
  color: #6C6C6C;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #6C6C6C;
  display: inline-block;
  font-size: clamp(1rem, 0.886rem + 0.57vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 1em;
}
@media (min-width: 1025px) {
  body.page-service .web .list .list,
  body.page-service .pro .list .list,
  body.page-service .free .list .list,
  body.page-service .career .list .list {
    overflow: visible;
  }
  body.page-service .web .list .list-slide,
  body.page-service .pro .list .list-slide,
  body.page-service .free .list .list-slide,
  body.page-service .career .list .list-slide {
    gap: 1.2em;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(280px, max-content));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  body.page-service .web .list .list-item,
  body.page-service .pro .list .list-item,
  body.page-service .free .list .list-item,
  body.page-service .career .list .list-item {
    max-width: 292px;
    width: 100%;
    background-color: #FFFFFF;
    -webkit-transform: skewX(-8deg);
    -ms-transform: skewX(-8deg);
    transform: skewX(-8deg);
    padding: 1em;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  body.page-service .web .list .list-item .list-item__ttl.__area,
  body.page-service .pro .list .list-item .list-item__ttl.__area,
  body.page-service .free .list .list-item .list-item__ttl.__area,
  body.page-service .career .list .list-item .list-item__ttl.__area {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    color: #133B6B;
    padding-left: 1em;
    margin-bottom: 0.5em;
    position: relative;
  }
  body.page-service .web .list .list-item .list-item__ttl.__area::before,
  body.page-service .pro .list .list-item .list-item__ttl.__area::before,
  body.page-service .free .list .list-item .list-item__ttl.__area::before,
  body.page-service .career .list .list-item .list-item__ttl.__area::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0.4em;
    height: 0.4em;
    background-color: #133B6B;
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow,
  body.page-service .pro .list .list-item .list-item__ttl.__flow,
  body.page-service .free .list .list-item .list-item__ttl.__flow,
  body.page-service .career .list .list-item .list-item__ttl.__flow {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    color: #133B6B;
    margin-bottom: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow .num,
  body.page-service .pro .list .list-item .list-item__ttl.__flow .num,
  body.page-service .free .list .list-item .list-item__ttl.__flow .num,
  body.page-service .career .list .list-item .list-item__ttl.__flow .num {
    position: relative;
    padding-right: 0.4em;
    font-family: "Advent Pro", sans-serif;
    font-size: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow .num::after,
  body.page-service .pro .list .list-item .list-item__ttl.__flow .num::after,
  body.page-service .free .list .list-item .list-item__ttl.__flow .num::after,
  body.page-service .career .list .list-item .list-item__ttl.__flow .num::after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 1.1em;
    background-color: #E5E5E5;
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow .main,
  body.page-service .pro .list .list-item .list-item__ttl.__flow .main,
  body.page-service .free .list .list-item .list-item__ttl.__flow .main,
  body.page-service .career .list .list-item .list-item__ttl.__flow .main {
    padding-left: 0.4em;
  }
  body.page-service .web .list .list-item .list-item__txt,
  body.page-service .pro .list .list-item .list-item__txt,
  body.page-service .free .list .list-item .list-item__txt,
  body.page-service .career .list .list-item .list-item__txt {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .web .list .list-item,
  body.page-service .pro .list .list-item,
  body.page-service .free .list .list-item,
  body.page-service .career .list .list-item {
    max-width: 292px;
    width: 100%;
    height: auto;
    aspect-ratio: 2.39/1;
    background-color: #FFFFFF;
    -webkit-transform: skewX(-8deg);
    -ms-transform: skewX(-8deg);
    transform: skewX(-8deg);
    padding: 1em;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-left: 1em;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  body.page-service .web .list .list-item,
  body.page-service .pro .list .list-item,
  body.page-service .free .list .list-item,
  body.page-service .career .list .list-item {
    max-width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .web .list .list-item .list-item__ttl.__area,
  body.page-service .pro .list .list-item .list-item__ttl.__area,
  body.page-service .free .list .list-item .list-item__ttl.__area,
  body.page-service .career .list .list-item .list-item__ttl.__area {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    color: #133B6B;
    padding-left: 1em;
    margin-bottom: 0.5em;
    position: relative;
  }
  body.page-service .web .list .list-item .list-item__ttl.__area::before,
  body.page-service .pro .list .list-item .list-item__ttl.__area::before,
  body.page-service .free .list .list-item .list-item__ttl.__area::before,
  body.page-service .career .list .list-item .list-item__ttl.__area::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0.4em;
    height: 0.4em;
    background-color: #133B6B;
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow,
  body.page-service .pro .list .list-item .list-item__ttl.__flow,
  body.page-service .free .list .list-item .list-item__ttl.__flow,
  body.page-service .career .list .list-item .list-item__ttl.__flow {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    color: #133B6B;
    margin-bottom: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow .num,
  body.page-service .pro .list .list-item .list-item__ttl.__flow .num,
  body.page-service .free .list .list-item .list-item__ttl.__flow .num,
  body.page-service .career .list .list-item .list-item__ttl.__flow .num {
    position: relative;
    padding-right: 0.5em;
    font-family: "Advent Pro", sans-serif;
    font-size: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow .num::after,
  body.page-service .pro .list .list-item .list-item__ttl.__flow .num::after,
  body.page-service .free .list .list-item .list-item__ttl.__flow .num::after,
  body.page-service .career .list .list-item .list-item__ttl.__flow .num::after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 1.1em;
    background-color: #E5E5E5;
  }
  body.page-service .web .list .list-item .list-item__ttl.__flow .main,
  body.page-service .pro .list .list-item .list-item__ttl.__flow .main,
  body.page-service .free .list .list-item .list-item__ttl.__flow .main,
  body.page-service .career .list .list-item .list-item__ttl.__flow .main {
    padding-left: 0.5em;
  }
  body.page-service .web .list .list-item .list-item__txt,
  body.page-service .pro .list .list-item .list-item__txt,
  body.page-service .free .list .list-item .list-item__txt,
  body.page-service .career .list .list-item .list-item__txt {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
  }
}
body.page-service .web .slick-list,
body.page-service .pro .slick-list,
body.page-service .free .slick-list,
body.page-service .career .slick-list {
  overflow: visible;
}
body.page-service .pro {
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), color-stop(50%, #F5F5F5), color-stop(50%, #133B6B), to(#133B6B));
  background: -o-linear-gradient(top, #F5F5F5 0%, #F5F5F5 50%, #133B6B 50%, #133B6B 100%);
  background: linear-gradient(to bottom, #F5F5F5 0%, #F5F5F5 50%, #133B6B 50%, #133B6B 100%);
}
body.page-service .pro::before {
  background-color: #133B6B;
}
body.page-service .pro::after {
  content: "WithPro";
  bottom: 30%;
}
body.page-service .pro-wrap__head .c-ttl_r {
  color: #FFFFFF;
}
body.page-service .pro-wrap__head .c-ttl_r .main {
  color: #FFFFFF;
}
body.page-service .pro-wrap__head__txt {
  color: #FFFFFF;
}
body.page-service .pro .list-ttl {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
body.page-service .pro .list .feature {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.page-service .pro .list .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1em;
  height: auto;
  max-width: 390px;
  width: 100%;
  aspect-ratio: 1.57/1;
  background-color: #FFFFFF;
  -webkit-transform: skewX(-8deg);
  -ms-transform: skewX(-8deg);
  transform: skewX(-8deg);
  padding: 1em;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 480px) {
  body.page-service .pro .list .feature-item {
    width: 90%;
    margin: 0 auto;
  }
}
body.page-service .pro .list .feature-item__image {
  background-color: #EDF6FF;
  width: 32%;
  aspect-ratio: 1/1;
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.page-service .pro .list .feature-item__image img {
  width: 48%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .pro .list .feature-item__ttl {
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  color: #133B6B;
}
body.page-service .pro .list .feature-item__txt {
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
}
@media (min-width: 1025px) {
  body.page-service .pro .list .list-slide {
    grid-template-columns: repeat(auto-fit, minmax(390px, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(390px, max-content));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  body.page-service .pro .list .list-item {
    max-width: 390px;
    aspect-ratio: 3.36/1;
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .pro .list .list-item {
    max-width: 390px;
    aspect-ratio: 3.36/1;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  body.page-service .pro .list .list-item {
    max-width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .pro .list .list-item .list-item__ttl.__flow .num {
    font-size: clamp(1.1rem, 0.879rem + 1.11vw, 1.875rem);
  }
  body.page-service .pro .list .list-item .list-item__ttl.__flow .main {
    font-size: clamp(0.75rem, 0.643rem + 0.54vw, 1.125rem);
  }
  body.page-service .pro .list .slick-dots .slick-active button:before {
    background-color: #FFFFFF;
  }
}
body.page-service .free {
  background: -webkit-gradient(linear, left top, left bottom, from(#133B6B), color-stop(50%, #133B6B), color-stop(50%, #FFFFFF), to(#FFFFFF));
  background: -o-linear-gradient(top, #133B6B 0%, #133B6B 50%, #FFFFFF 50%, #FFFFFF 100%);
  background: linear-gradient(to bottom, #133B6B 0%, #133B6B 50%, #FFFFFF 50%, #FFFFFF 100%);
}
body.page-service .free::before {
  background-color: #FFFFFF;
}
body.page-service .free::after {
  content: "WithFree";
  color: #133B6B;
  bottom: 30%;
}
body.page-service .free-wrap__head .c-ttl_r {
  color: #133B6B;
}
body.page-service .free-wrap__head .c-ttl_r .main {
  color: #000000;
}
body.page-service .free-wrap__head__txt {
  color: #000000;
}
body.page-service .free .list-ttl {
  color: #6C6C6C;
  border-bottom: 1px solid #6C6C6C;
}
body.page-service .free .list .feature {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.page-service .free .list .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1em;
  height: auto;
  max-width: 390px;
  width: 100%;
  aspect-ratio: 1.57/1;
  background-color: #FFFFFF;
  -webkit-transform: skewX(-8deg);
  -ms-transform: skewX(-8deg);
  transform: skewX(-8deg);
  padding: 1em;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 480px) {
  body.page-service .free .list .feature-item {
    width: 90%;
    margin: 0 auto;
  }
}
body.page-service .free .list .feature-item__image {
  background-color: #EDF6FF;
  width: 32%;
  aspect-ratio: 1/1;
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.page-service .free .list .feature-item__image img {
  width: 48%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .free .list .feature-item__ttl {
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  color: #133B6B;
}
body.page-service .free .list .feature-item__txt {
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
}
@media screen and (max-width: 1024px) {
  body.page-service .free .list .list-item {
    max-width: 292px;
    aspect-ratio: 2.39/1;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  body.page-service .free .list .list-item {
    width: 242px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .free .list .list-item .list-item__ttl.__flow {
    -webkit-transform: skewX(8deg);
    -ms-transform: skewX(8deg);
    transform: skewX(8deg);
    color: #133B6B;
    margin-bottom: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
body.page-service .career {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(50%, #FFFFFF), color-stop(50%, #F5F5F5), to(#F5F5F5));
  background: -o-linear-gradient(top, #FFFFFF 0%, #FFFFFF 50%, #F5F5F5 50%, #F5F5F5 100%);
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 50%, #F5F5F5 50%, #F5F5F5 100%);
}
body.page-service .career::before {
  background-color: #F5F5F5;
}
body.page-service .career::after {
  content: "WithCareer";
  bottom: 30%;
}
body.page-service .career-wrap__head .c-ttl_r {
  color: #133B6B;
}
body.page-service .career-wrap__head .c-ttl_r .main {
  color: #000000;
}
body.page-service .career-wrap__head__txt {
  color: #000000;
}
body.page-service .career .list-ttl {
  color: #6C6C6C;
  border-bottom: 1px solid #6C6C6C;
}
body.page-service .career .list .feature {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.page-service .career .list .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1em;
  height: auto;
  max-width: 390px;
  width: 100%;
  aspect-ratio: 1.57/1;
  background-color: #FFFFFF;
  -webkit-transform: skewX(-8deg);
  -ms-transform: skewX(-8deg);
  transform: skewX(-8deg);
  padding: 1em;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 480px) {
  body.page-service .career .list .feature-item {
    width: 90%;
    margin: 0 auto;
  }
}
body.page-service .career .list .feature-item__image {
  background-color: #EDF6FF;
  width: 32%;
  aspect-ratio: 1/1;
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.page-service .career .list .feature-item__image img {
  width: 48%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .career .list .feature-item__ttl {
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  color: #133B6B;
}
body.page-service .career .list .feature-item__txt {
  -webkit-transform: skewX(8deg);
  -ms-transform: skewX(8deg);
  transform: skewX(8deg);
  font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
}
@media (min-width: 1025px) {
  body.page-service .career .list .list-slide {
    grid-template-columns: repeat(auto-fit, minmax(390px, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(390px, max-content));
  }
  body.page-service .career .list .list-item {
    max-width: 390px;
    aspect-ratio: 3/1;
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .career .list .list-item {
    max-width: 390px;
    aspect-ratio: 3/1;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  body.page-service .career .list .list-item {
    max-width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-service .career .list .list-item .list-item__ttl.__flow .num {
    font-size: clamp(1.1rem, 0.879rem + 1.11vw, 1.875rem);
  }
  body.page-service .career .list .list-item .list-item__ttl.__flow .main {
    font-size: clamp(0.75rem, 0.643rem + 0.54vw, 1.125rem);
  }
  body.page-service .career .list .slick-dots .slick-active button:before {
    background-color: #133B6B;
  }
}
body.page-service .code-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #133B6B;
  padding: 3em;
  border-radius: 2em;
}
@media screen and (max-width: 1024px) {
  body.page-service .code-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3em;
    padding: 2em;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .code-wrap {
    padding: 1.5em;
  }
}
body.page-service .code-wrap__image {
  width: 38%;
  border-radius: 2em;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  body.page-service .code-wrap__image {
    width: 100%;
  }
}
body.page-service .code-wrap__con {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  body.page-service .code-wrap__con {
    width: 100%;
  }
}
body.page-service .code-wrap__con .c-ttl_r {
  color: #FFFFFF;
}
body.page-service .code-wrap__con .c-ttl_r .main {
  color: #FFFFFF;
}
body.page-service .code-wrap__con__txt {
  color: #FFFFFF;
}
body.page-service .code-wrap__con .c-btn_w {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  body.page-service .code-wrap__con .c-btn_w {
    margin-right: auto;
    margin-top: 2em;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .code-wrap__con .c-btn_w {
    margin-top: 1.5em;
  }
}

body.page-contact .top-bg {
  background-image: url("../img/contact-top.jpg");
  background-position: 58% center;
}
body.page-contact .Form {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  body.page-contact .Form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-contact .Form {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-contact .Form {
    width: 100%;
  }
}
body.page-contact .Form ._stepBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 4em;
}
body.page-contact .Form ._stepBar li {
  font-weight: bold;
  color: #6C6C6C;
  position: relative;
  width: 33.333%;
}
body.page-contact .Form ._stepBar li:after {
  content: "";
  position: absolute;
  top: 33%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -50%;
  width: 100%;
  height: 3px;
  background: #cccccc;
  z-index: 0;
}
body.page-contact .Form ._stepBar li:first-child:after {
  display: none;
}
body.page-contact .Form ._stepBar li span {
  background: #B5B5B5;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.563rem);
  font-weight: bold;
  margin-bottom: 0.5em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
body.page-contact .Form ._stepBar ._visited {
  color: #133B6B;
}
body.page-contact .Form ._stepBar ._visited:after {
  background: #133B6B;
}
body.page-contact .Form ._stepBar ._visited span {
  background: #133B6B;
}
body.page-contact .Form-txt {
  font-size: clamp(0.85rem, 0.759rem + 0.89vw, 1.15rem);
  text-align: center;
  padding-bottom: 1.8rem;
  position: relative;
  max-width: 930px;
  width: 85%;
  margin: 0 auto 1.8rem;
  line-height: 1.5;
}
body.page-contact .Form .Form-Item {
  max-width: 930px;
  width: 85%;
  margin: 0 auto;
}
body.page-contact .Form .Form-Item-Label {
  font-size: clamp(0.85rem, 0.759rem + 0.89vw, 1.15rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-contact .Form .Form-Item-Label-Required {
  font-weight: 400;
  display: inline-block;
  background-color: #B60120;
  border-radius: 3px;
  color: #FFFFFF;
  font-size: clamp(0.5rem, 0.443rem + 0.29vw, 0.7rem);
  padding: 0.1em 0.5em;
  margin-left: 2.5%;
  line-height: 1.3;
}
body.page-contact .Form .Form-Item-Label-Optional {
  font-weight: 400;
  display: inline-block;
  background-color: #6C6C6C;
  border-radius: 3px;
  color: #FFFFFF;
  font-size: clamp(0.5rem, 0.443rem + 0.29vw, 0.7rem);
  padding: 0.1em 0.5em;
  margin-left: 2.5%;
  line-height: 1.3;
}
body.page-contact .Form .Form-Item-Label.isMsg {
  margin-bottom: 0.75rem;
}
body.page-contact .Form .Form-Item hr {
  margin: clamp(0.8rem, 1.071rem + 0.89vw, 1.4rem) 0;
}
body.page-contact .Form .Form-Item input {
  border: none;
  border-radius: 5px;
  padding: 1.1%;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: clamp(2.9rem, 2.527rem + 2.05vw, 3.5rem);
  background-color: #F5F5F5;
}
body.page-contact .Form .Form-Item input:focus {
  border-color: #000000;
  outline: none;
}
body.page-contact .Form .Form-Item input[type=text],
body.page-contact .Form .Form-Item input[type=email],
body.page-contact .Form .Form-Item input[type=tel] {
  width: 100%;
}
body.page-contact .Form .Form-Item textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 1.1%;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: clamp(9rem, 6.143rem + 14.29vw, 19rem);
  background-color: #F5F5F5;
}
body.page-contact .Form .Form-Item textarea:focus {
  border-color: #000000;
  outline: none;
}
body.page-contact .Form .Form-Item-Note {
  margin-top: clamp(0.8rem, 0.6rem + 1vw, 1.5rem);
}
body.page-contact .Form .Form-Agreement {
  text-align: center;
}
body.page-contact .Form .Form-Agreement a {
  text-decoration: underline;
  margin-left: 0.2rem;
}
body.page-contact .Form .Form-Agreement-Note {
  margin: clamp(1.8rem, 1.232rem + 3.21vw, 4.1rem) 0 1.8rem;
}
body.page-contact .Form .Form-Agreement input[type=checkbox][name="privacy-agree[]"] {
  width: clamp(0.625rem, 0.546rem + 0.39vw, 0.9rem);
  height: 3rem;
  accent-color: #6C6C6C;
}
body.page-contact .Form .Form-Agreement .wpcf7-list-item-label {
  display: none;
}
body.page-contact .Form .wpcf7-not-valid-tip {
  display: inline-block;
}
body.page-contact .Form .Form-Submit {
  text-align: center;
  max-width: 290px;
  width: 100%;
  margin-top: 3em;
}
@media screen and (max-width: 1024px) {
  body.page-contact .Form .Form-Submit {
    max-width: 250px;
  }
}
body.page-contact .Form .Form-Submit .submit-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
body.page-contact .Form .Form-Submit .submit-wrap .wpcf7-submit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.1rem);
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
  background-color: #133B6B;
  padding: 1rem 0;
  border-radius: 9999px;
  border: 2px solid #133B6B;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  margin-bottom: 0.5em;
}
body.page-contact .Form .Form-Submit .submit-wrap .wpcf7-submit:hover,
body.page-contact .Form .Form-Submit .submit-wrap .wpcf7-submit.hover {
  background-color: #FFFFFF;
  color: #133B6B;
}
@media screen and (max-width: 1024px) {
  body.page-contact .Form .Form-Submit .submit-wrap .wpcf7-submit {
    padding: 0.9rem 0;
  }
}
body.page-contact .Form .Form-Submit .submit-wrap::after {
  content: "→";
  position: absolute;
  right: 1em;
  top: 30%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #133B6B;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  background-color: #FFFFFF;
  width: clamp(1.3rem, 1.243rem + 0.29vw, 1.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
}
body.page-contact .Form .Form-Submit .submit-wrap:hover::after,
body.page-contact .Form .Form-Submit .submit-wrap.hover::after {
  background-color: #133B6B;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(0.5em);
  -ms-transform: translateY(-50%) translateX(0.5em);
  transform: translateY(-50%) translateX(0.5em);
}
body.page-contact .Form .wpcf7-not-valid-tip,
body.page-contact .Form .wpcf7-response-output {
  border: none;
}
body.page-contact .Form .wpcf7-response-output {
  text-align: center;
}

body.page-confirm .top-bg {
  background-image: url("../img/contact-top.jpg");
  background-position: 58% center;
}
body.page-confirm .Form {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  body.page-confirm .Form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-confirm .Form {
    width: 90%;
  }
}
body.page-confirm .Form ._stepBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 3em;
}
body.page-confirm .Form ._stepBar li {
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: bold;
  color: #6C6C6C;
  position: relative;
  width: 33.333%;
}
body.page-confirm .Form ._stepBar li:after {
  content: "";
  position: absolute;
  top: 33%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -50%;
  width: 100%;
  height: 3px;
  background: #cccccc;
  z-index: 0;
}
body.page-confirm .Form ._stepBar li:first-child:after {
  display: none;
}
body.page-confirm .Form ._stepBar li span {
  background: #B5B5B5;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.563rem);
  font-weight: bold;
  margin-bottom: 0.5em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
body.page-confirm .Form ._stepBar ._visited {
  color: #133B6B;
}
body.page-confirm .Form ._stepBar ._visited:after {
  background: #133B6B;
}
body.page-confirm .Form ._stepBar ._visited span {
  background: #133B6B;
}
body.page-confirm .Form-txt {
  font-size: clamp(0.85rem, 0.759rem + 0.89vw, 1.15rem);
  text-align: center;
  padding-bottom: 1.8rem;
  position: relative;
  max-width: 930px;
  width: 85%;
  margin: 0 auto 1.8rem;
  line-height: 1.5;
}
body.page-confirm .Form .Form-Item {
  max-width: 930px;
  width: 85%;
  margin: 0 auto;
}
body.page-confirm .Form .Form-Item-Label {
  font-weight: 500;
  font-size: clamp(0.85rem, 0.759rem + 0.89vw, 1.15rem);
  margin-bottom: 0.5rem;
}
body.page-confirm .Form .Form-Item.isMsg {
  margin-bottom: 0.75rem;
}
body.page-confirm .Form .Form-Item hr {
  margin: clamp(0.8rem, 1.071rem + 0.89vw, 1.4rem) 0;
}
body.page-confirm .Form .Form-Submit {
  text-align: center;
  max-width: 290px;
  width: 100%;
  margin-top: 4em;
}
@media screen and (max-width: 1024px) {
  body.page-confirm .Form .Form-Submit {
    max-width: 250px;
  }
}
body.page-confirm .Form .Form-Submit .submit-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
body.page-confirm .Form .Form-Submit .submit-wrap .btn-primary {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.1rem);
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
  background-color: #133B6B;
  padding: 1rem 0;
  border-radius: 9999px;
  border: 2px solid #133B6B;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  margin-bottom: 0.5em;
}
body.page-confirm .Form .Form-Submit .submit-wrap .btn-primary:hover,
body.page-confirm .Form .Form-Submit .submit-wrap .btn-primary.hover {
  background-color: #FFFFFF;
  color: #133B6B;
}
@media screen and (max-width: 1024px) {
  body.page-confirm .Form .Form-Submit .submit-wrap .btn-primary {
    padding: 0.9rem 0;
  }
}
body.page-confirm .Form .Form-Submit .submit-wrap::after {
  content: "→";
  position: absolute;
  right: 1em;
  top: 30%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #133B6B;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  background-color: #FFFFFF;
  width: clamp(1.3rem, 1.243rem + 0.29vw, 1.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
}
body.page-confirm .Form .Form-Submit .submit-wrap:hover::after,
body.page-confirm .Form .Form-Submit .submit-wrap.hover::after {
  background-color: #133B6B;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(0.5em);
  -ms-transform: translateY(-50%) translateX(0.5em);
  transform: translateY(-50%) translateX(0.5em);
}
body.page-confirm .Form .Form-Submit .btn-prev {
  all: unset;
  display: inline-block;
  padding: 0.5em 1em;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  background-color: #EDF6FF;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 1em;
}
body.page-confirm .Form .Form-Submit .btn-prev:hover,
body.page-confirm .Form .Form-Submit .btn-prev.hover {
  background-color: #87c3ff;
}
body.page-confirm .Form .wpcf7-not-valid-tip,
body.page-confirm .Form .wpcf7-response-output {
  border: none;
}
body.page-confirm .Form .wpcf7-response-output {
  text-align: center;
}

body.page-thanks .top-bg {
  background-image: url("../img/contact-top.jpg");
  background-position: 58% center;
}
body.page-thanks .Form {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  body.page-thanks .Form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-thanks .Form {
    width: 90%;
  }
}
body.page-thanks .Form ._stepBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 3em;
}
body.page-thanks .Form ._stepBar li {
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: bold;
  color: #6C6C6C;
  position: relative;
  width: 33.333%;
}
body.page-thanks .Form ._stepBar li:after {
  content: "";
  position: absolute;
  top: 33%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -50%;
  width: 100%;
  height: 3px;
  background: #cccccc;
  z-index: 0;
}
body.page-thanks .Form ._stepBar li:first-child:after {
  display: none;
}
body.page-thanks .Form ._stepBar li span {
  background: #B5B5B5;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.563rem);
  font-weight: bold;
  margin-bottom: 0.5em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
body.page-thanks .Form ._stepBar ._visited {
  color: #133B6B;
}
body.page-thanks .Form ._stepBar ._visited:after {
  background: #133B6B;
}
body.page-thanks .Form ._stepBar ._visited span {
  background: #133B6B;
}
body.page-thanks .Form-txt {
  font-size: clamp(0.85rem, 0.759rem + 0.89vw, 1.15rem);
  text-align: center;
  padding-bottom: 1.8rem;
  position: relative;
  max-width: 930px;
  width: 85%;
  margin: 0 auto;
  line-height: 1.5;
}

body.page-privacy .top-bg {
  background-image: url("../img/privacy-top.jpg");
  background-position: 15% center;
}
body.page-privacy .privacy-wrap__block {
  margin-bottom: 1.5rem;
}
body.page-privacy .privacy-wrap__block h2 {
  display: inline-block;
  font-size: clamp(1rem, 0.839rem + 0.8vw, 1.563rem);
  font-weight: 500;
  color: #6C6C6C;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #6C6C6C;
}
body.page-privacy .privacy-wrap__block h3 {
  font-weight: 500;
  line-height: 1.3;
}
body.page-privacy .privacy-wrap__block p {
  font-weight: 400;
}
body.page-privacy .privacy-wrap__block ul {
  padding-left: 1.5em;
}
body.page-privacy .privacy-wrap__block ul li {
  list-style: disc;
  font-weight: 400;
}
body.page-privacy .privacy-wrap__block ul li::marker {
  font-size: 0.5em;
}

body.post-type-archive-works main {
  background-color: #EDF6FF;
}
body.post-type-archive-works .top-bg {
  background-image: url("../img/works-top.jpg");
  background-position: 59% center;
}
body.post-type-archive-works .works-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-works .works-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2em;
  }
}
body.post-type-archive-works .works-wrap .main {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-works .works-wrap .main {
    width: 100%;
  }
}
body.post-type-archive-works .works-wrap .main-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5em 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5em;
}
@media screen and (max-width: 480px) {
  body.post-type-archive-works .works-wrap .main-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.post-type-archive-works .works-wrap .main-list__item a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  padding: 1em;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
body.post-type-archive-works .works-wrap .main-list__item a:hover,
body.post-type-archive-works .works-wrap .main-list__item a.hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
body.post-type-archive-works .works-wrap .main-list__item__image {
  width: 100%;
  aspect-ratio: 1.35/1;
  background-image: url("../img/works-pcbg.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
body.post-type-archive-works .works-wrap .main-list__item__image::after {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1/2;
  background-image: url("../img/works-spbg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
body.post-type-archive-works .works-wrap .main-list__item__image .pc-thumb {
  aspect-ratio: 1.78/1;
  width: 86%;
  height: auto;
  position: absolute;
  top: 3.6%;
  left: 1.8%;
  z-index: 1;
}
body.post-type-archive-works .works-wrap .main-list__item__image .pc-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.75rem, 0.536rem + 1.07vw, 1.5rem);
}
body.post-type-archive-works .works-wrap .main-list__item__image .sp-thumb {
  aspect-ratio: 1/2;
  width: 18%;
  height: auto;
  position: absolute;
  bottom: 2%;
  right: 1%;
  z-index: 3;
}
body.post-type-archive-works .works-wrap .main-list__item__image .sp-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.5rem, 0.357rem + 0.71vw, 1rem);
}
body.post-type-archive-works .works-wrap .main-list__item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.3em;
  padding: 1em 0;
}
body.post-type-archive-works .works-wrap .main-list__item__tags .tag {
  font-size: 0.75rem;
  display: inline-block;
  background-color: #F5F5F5;
  padding: 0.2em 1em;
  border-radius: 9999px;
}
body.post-type-archive-works .works-wrap .sidebar {
  width: 31%;
  background-color: #FFFFFF;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2em;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-works .works-wrap .sidebar {
    width: 100%;
  }
}
body.post-type-archive-works .works-wrap .sidebar .taxonomy-group__heading {
  padding-left: 1em;
  font-weight: 500;
  position: relative;
  margin-bottom: 1em;
}
body.post-type-archive-works .works-wrap .sidebar .taxonomy-group__heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background-color: #133B6B;
}
body.post-type-archive-works .works-wrap .sidebar .taxonomy-group__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em;
}
body.post-type-archive-works .works-wrap .sidebar .taxonomy-group__list__item a {
  display: inline-block;
  background-color: #F5F5F5;
  padding: 0.2em 1em;
  border-radius: 9999px;
  font-size: clamp(0.7rem, 0.643rem + 0.29vw, 0.9rem);
}
body.post-type-archive-works .works-wrap .sidebar .taxonomy-group__list__item a:hover,
body.post-type-archive-works .works-wrap .sidebar .taxonomy-group__list__item a.hover {
  background-color: rgb(219.5, 219.5, 219.5);
}

body.post-type-archive-news .top-bg {
  background-image: url("../img/news-top.jpg");
  background-position: 35% center;
}
body.post-type-archive-news .news .news_content {
  width: 100%;
  position: relative;
  clear: both;
  z-index: 1;
}
body.post-type-archive-news .news .news_content ._menu {
  display: block;
  width: 5em;
  text-align: center;
  padding: 0.5em;
  float: left;
  list-style: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom: 2px solid rgba(19, 59, 107, 0);
}
body.post-type-archive-news .news .news_content ._menu._active,
body.post-type-archive-news .news .news_content ._menu._hover {
  border-bottom: 2px solid #133b6b;
}
body.post-type-archive-news .news .news_content .mr {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
body.post-type-archive-news .news .tabcontent {
  width: 100%;
  position: absolute;
  top: 4em;
  left: 0;
}
body.post-type-archive-news .news .news_article {
  display: -ms-grid;
  display: grid;
}
body.post-type-archive-news .news .news_article .news_item {
  display: inline-block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-bottom: 1.5px solid #cccccc;
}
body.post-type-archive-news .news .news_article .news_item.no-post {
  border: none;
}
body.post-type-archive-news .news .news_article .news_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  position: relative;
}
body.post-type-archive-news .news .news_article .news_item a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #FFFFFF;
  background-color: #133B6B;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  width: clamp(1.3rem, 1.243rem + 0.29vw, 1.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
body.post-type-archive-news .news .news_article .news_item a:hover,
body.post-type-archive-news .news .news_article .news_item a.hover {
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
}
body.post-type-archive-news .news .news_article .news_item__ttl {
  font-weight: 400;
}
body.post-type-archive-news .news .news_article .news_item ._container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  margin-bottom: 0.9em;
}
body.post-type-archive-news .news .news_article .news_item ._container ._tag {
  padding: 0.3em 1.5em;
  background-color: #F5F5F5;
  border-radius: 9999px;
  font-size: 0.75rem;
}
body.post-type-archive-news .news .news_article .news_item ._container ._date {
  font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
}
body.post-type-archive-news .normal-pg__item a.page-numbers:not(.prev):not(.next) {
  border: 2px solid #F5F5F5;
  background-color: #F5F5F5;
}

body.single-works .top-bg {
  background-image: url("../img/works-top.jpg");
  background-position: 59% center;
}
body.single-works .works-wrap {
  position: relative;
}
body.single-works .works-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #003366;
  -webkit-clip-path: polygon(0 25vw, 100% 10vw, 100% 100%, 0 100%);
  clip-path: polygon(0 25vw, 100% 10vw, 100% 100%, 0 100%);
  z-index: -1;
}
body.single-works .works-wrap__image {
  width: 50%;
  margin: 2em auto 0;
  aspect-ratio: 1.21/1;
  background-image: url("../img/works-pcbg.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body.single-works .works-wrap__image {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  body.single-works .works-wrap__image {
    width: 75%;
  }
}
body.single-works .works-wrap__image::after {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1/2;
  background-image: url("../img/works-spbg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 0;
  right: -10%;
  z-index: 4;
}
body.single-works .works-wrap__image .pc-thumb {
  aspect-ratio: 1.78/1;
  width: 97%;
  height: auto;
  position: absolute;
  top: 3%;
  left: 1.5%;
  z-index: 3;
}
body.single-works .works-wrap__image .pc-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(1rem, 0.714rem + 1.43vw, 2rem);
}
body.single-works .works-wrap__image .sp-thumb {
  aspect-ratio: 1/2;
  width: 18%;
  height: auto;
  position: absolute;
  bottom: 2%;
  right: -9%;
  z-index: 5;
}
body.single-works .works-wrap__image .sp-thumb.noimage {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.75rem, 0.536rem + 1.07vw, 1.5rem);
}
body.single-works .works-wrap__con .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em;
  padding: 1em 0;
}
body.single-works .works-wrap__con .tags .tag {
  display: inline-block;
  background-color: #F5F5F5;
  padding: 0.2em 1em;
  border-radius: 9999px;
}
body.single-works .works-wrap__con .link {
  color: #FFFFFF;
  text-decoration: underline;
  display: inline-block;
  margin: 1em 0;
}
body.single-works .works-wrap__con .ttl {
  color: #FFFFFF;
  font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
  margin: 0.5em 0 2em;
}
@media (min-width: 769px) {
  body.single-works .works-wrap .works-slide__pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  body.single-works .works-wrap .works-slide__pc__item {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  body.single-works .works-wrap .works-slide__pc__item {
    width: 100%;
    margin: 0 0.1em;
  }
  body.single-works .works-wrap .works-slide__pc .slick-dots .slick-active button:before {
    background-color: #FFFFFF;
  }
  body.single-works .works-wrap .works-slide__pc .slick-dots {
    margin-top: 2em;
  }
}
@media (min-width: 769px) {
  body.single-works .works .works-wrap__normalbg {
    max-width: 1224px;
    width: 85%;
    margin: 0 auto;
    padding: 80px 0;
  }
  body.single-works .works .works-slide__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  body.single-works .works .works-slide__sp__item {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  body.single-works .works .works-wrap__normalbg {
    padding: 60px 0;
    max-width: 768px;
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  body.single-works .works .works-wrap__normalbg {
    padding: 60px 0;
    max-width: 480px;
  }
}
@media screen and (max-width: 768px) {
  body.single-works .works .works-wrap__normalbg .slick-list {
    overflow: visible;
    /* はみ出しを隠さず表示 */
  }
  body.single-works .works .works-wrap__normalbg .slick-dots {
    width: 100vw;
    padding-right: 5%;
    margin-top: 2em;
  }
  body.single-works .works .works-slide__sp {
    width: 80%;
  }
  body.single-works .works .works-slide__sp__item {
    margin-left: 0.8%;
  }
}
body.single-works .works .noimage-icon {
  background-color: #F5F5F5;
  aspect-ratio: 9/16;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000000;
  font-size: clamp(0.75rem, 0.536rem + 1.07vw, 1.5rem);
}

body.single-news .top-bg {
  background-image: url("../img/news-top.jpg");
  background-position: 35% center;
}
body.single-news .news .__inner {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  body.single-news .news .__inner {
    padding-top: 25px;
  }
}
body.single-news .news-wrap {
  width: 62%;
}
@media screen and (max-width: 1024px) {
  body.single-news .news-wrap {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  body.single-news .news-wrap {
    width: 90%;
  }
}
body.single-news .news-wrap hr {
  border: 1.5px solid #cccccc;
}
body.single-news .news-wrap__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5em;
}
body.single-news .news-wrap__meta .tag {
  display: inline-block;
  background-color: #F5F5F5;
  border-radius: 9999px;
  padding: 0.3em 1.5em;
}
body.single-news .news-wrap__ttl {
  margin: 0.5em 0;
  font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
  line-height: 1.3;
  font-weight: 500;
}
body.single-news .news-wrap__image {
  margin-bottom: 2em;
}
body.single-news .news-wrap__text__txt {
  line-height: 1.5;
}
body.single-news .news-wrap__text h2 {
  background-color: #133B6B;
  font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.2em 0.5em;
  position: relative;
  margin: 1.5rem 0;
  overflow: hidden;
}
body.single-news .news-wrap__text h2::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(-65deg) translateY(-50%);
  -ms-transform: rotate(-65deg) translateY(-50%);
  transform: rotate(-65deg) translateY(-50%);
  width: 20vw;
  height: 20vw;
  top: 0;
  right: -15vw;
}
body.single-news .news-wrap__text h3 {
  font-size: clamp(1rem, 0.85rem + 1.07vw, 1.5rem);
  font-weight: 500;
  padding: 0.2em 0.5em;
  position: relative;
  margin: 1.5rem 0;
}
body.single-news .news-wrap__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  height: 1.5em;
  background-color: #133B6B;
}
body.single-news .news-wrap__text h4 {
  font-size: clamp(0.95rem, 0.8rem + 1.07vw, 1.25rem);
  font-weight: 500;
  padding: 0.2em 0.5em;
  position: relative;
  margin: 1.5rem 0;
}
body.single-news .news-wrap__text h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: -webkit-gradient(linear, left top, right top, from(#133B6B), color-stop(30%, #133B6B), color-stop(30%, #cccccc), to(#cccccc));
  background: -o-linear-gradient(left, #133B6B 0%, #133B6B 30%, #cccccc 30%, #cccccc 100%);
  background: linear-gradient(to right, #133B6B 0%, #133B6B 30%, #cccccc 30%, #cccccc 100%);
}
body.single-news .news-wrap__text h5 {
  font-size: clamp(0.925rem, 0.78rem + 1.07vw, 1.125rem);
  font-weight: 500;
  padding: 0.2em 0.5em;
  position: relative;
  margin: 1.5rem 0;
}
body.single-news .news-wrap__text h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-image: -o-repeating-linear-gradient(left, #133B6B 0px, #133B6B 3px, transparent 3px, transparent 6px);
  background-image: repeating-linear-gradient(to right, #133B6B 0px, #133B6B 3px, transparent 3px, transparent 6px);
}
body.single-news .news-wrap__text h6 {
  font-size: clamp(0.9rem, 0.73rem + 1.07vw, 1rem);
  font-weight: 500;
  padding: 0.2em 0.5em;
  position: relative;
  margin: 1.5rem 0;
}
body.single-news .news-wrap__text h6::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.25em;
  height: 0.25em;
  background-color: #133B6B;
}
body.single-news .news .noimage-icon {
  background-color: #F5F5F5;
  aspect-ratio: 1.5/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000000;
  font-size: clamp(0.75rem, 0.536rem + 1.07vw, 1.5rem);
}