@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #4C4336;
}

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

button {
  background: transparent;
  border-style: none;
  cursor: pointer;
}

.l-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.l-footer {
  background-color: #333;
  color: #fff;
  padding-top: 60px;
}

.l-footer__logo {
  margin-bottom: 50px;
  width: 160px;
}

.l-footer__menu {
  -ms-grid-columns: 290px auto;
  display: grid;
  gap: 0 min(4.5833333333%, 55px);
  grid-template-columns: 290px auto;
}

.l-footer__text {
  font-size: 12px;
  line-height: 1.4166666667;
  margin-bottom: 15px;
}

.l-footer__info dl {
  font-size: 12px;
  line-height: 1.6666666667;
}

.l-footer__info dl div {
  display: flex;
}

.l-footer__info dl div a {
  color: #fff;
}

.l-footer__info dl div dt {
  width: 4em;
}

.l-footer__info dl div dd {
  width: calc(100% - 4em);
}

.l-footer__list {
  -ms-grid-columns: 1fr [3];
  -ms-grid-rows: auto [5];
  grid-column-gap: 2.8333333333%;
  grid-row-gap: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, auto);
  padding-top: 50px;
}

.l-footer__list .item__parent {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4285714286;
  position: relative;
  transition: color 0.3s ease;
}

.l-footer__list .item__parent .c-icon--arrow {
  position: absolute;
  right: -25px;
  top: 3px;
}

.l-footer__list .item__children {
  color: #fff;
  font-size: 12px;
  line-height: 1.3333333333;
  transition: color 0.3s ease;
}

.l-footer__list .item__children .c-icon--external {
  height: 11px;
  margin-left: 5px;
  width: 11px;
}

.l-footer__list .item__children-list {
  gap: 10px 0;
  margin-top: 15px;
}

.l-footer__list .item__children-item {
  display: flex;
}

.l-footer__list .item__children-item:not(:last-of-type) {
  margin-bottom: 10px;
}

.l-footer__list .item__gc {
  color: #fff;
  font-size: 12px;
  line-height: 2;
  transition: color 0.3s ease;
}

.l-footer__list .item__gc-list {
  margin-left: 12px;
}

.l-footer__list.caseStudy-none .item:nth-of-type(3) {
  display: none;
}

.l-footer__sub {
  border-left: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  line-height: 1.4166666667;
  margin-left: -1px;
  margin-top: -1px;
  padding-left: 17px;
  padding-right: 17px;
  transition: color 0.3s ease;
}

.l-footer__sub-list {
  display: table;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 20px;
  margin-left: 1px;
  margin-top: 140px;
}

.l-footer__sub-item {
  display: contents;
}

.l-footer__sub-item:last-of-type .l-footer__sub, .l-footer__sub-item:not(:last-of-type) .l-footer__sub {
  border-right: 1px solid #fff;
}

.l-footer__copyright {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding-bottom: 30px;
  padding-top: 20px;
}

.l-footer__copyright-area {
  border-top: 1px solid rgba(209, 213, 217, 0.5);
}

@media screen and (min-width: 768px) {
  .l-footer__info dl div a {
    pointer-events: none;
  }
  .l-footer__info dl div:last-of-type dd {
    white-space: nowrap;
  }
  .l-footer__list .item:first-of-type {
    -ms-grid-row-span: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }
  .l-footer__list .item:nth-of-type(2) {
    -ms-grid-row-span: 4;
    -ms-grid-column-span: 1;
    grid-area: 2/1/6/2;
    -ms-grid-column: 1;
    -ms-grid-row: 2;
  }
  .l-footer__list .item:nth-of-type(3) {
    -ms-grid-row-span: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }
  .l-footer__list .item:nth-of-type(4) {
    -ms-grid-row-span: 4;
    -ms-grid-column-span: 1;
    grid-area: 2/2/6/3;
    -ms-grid-column: 2;
    -ms-grid-row: 2;
  }
  .l-footer__list .item:nth-of-type(5) {
    -ms-grid-row-span: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/3/3/4;
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }
  .l-footer__list .item:nth-of-type(6) {
    -ms-grid-row-span: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/3/5/4;
    -ms-grid-column: 3;
    -ms-grid-row: 3;
  }
  .l-footer__list .item:nth-of-type(7) {
    -ms-grid-row-span: 1;
    -ms-grid-column-span: 1;
    grid-area: 5/3/6/4;
    -ms-grid-column: 3;
    -ms-grid-row: 5;
  }
  .l-footer__list.caseStudy-none .item:nth-of-type(4) {
    -ms-grid-row-span: 5;
    -ms-grid-column-span: 1;
    grid-area: 1/2/6/3;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }
}
@media screen and (max-width: 1366px) {
  .l-footer__sub-list {
    margin-top: 110px;
  }
}
@media screen and (max-width: 1124px) and (min-width: 901px) {
  .l-footer__menu {
    gap: 0 20px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__menu {
    -ms-grid-columns: 1fr [1];
    gap: 30px 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-bottom: 25px;
    width: 130px;
  }
  .l-footer__list {
    -ms-grid-columns: 1fr [2];
    border-bottom: 1px solid rgba(209, 213, 217, 0.5);
    border-top: 1px solid rgba(209, 213, 217, 0.5);
    gap: 20px 10px;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .l-footer__list .item__parent .c-icon--arrow {
    right: -23px;
  }
  .l-footer__list .item__children-list {
    display: none;
  }
  .l-footer__sub {
    font-size: 10px;
  }
  .l-footer__sub-list {
    margin-bottom: 23px;
    margin-top: 30px;
  }
  .l-footer__copyright {
    padding-top: 0;
  }
  .l-footer__copyright-area {
    border-top: none;
  }
}
@media (max-width: 450px) {
  .l-footer__list .item__parent.-news {
    width: 80%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__list .item__parent:hover, .l-header__lang:not(.is-current):hover {
    color: #f36315;
  }
  .l-footer__list .item__parent:hover .c-icon--arrow .circle circle {
    stroke: #f36315;
    stroke-width: 1;
    animation: circle 1s ease;
  }
  .l-footer__list .item__parent:hover .c-icon--arrow .arrow path {
    fill: #f36315;
  }
  .l-footer__list .item__children:hover {
    color: #f36315;
  }
  .l-footer__list .item__children:hover .c-icon--external path {
    stroke: #f36315;
  }
  .l-footer__list .item__gc:hover, .l-footer__sub:hover {
    color: #f36315;
  }
}
@keyframes circle {
  0% {
    stroke-dasharray: 0 100;
  }
  99.9%, to {
    stroke-dasharray: 100 100;
  }
}
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.l-header__inner.l-inner {
  max-width: 1346px;
}

.l-header__wrapper {
  align-items: center;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 80px;
  padding-left: 25px;
  padding-right: 12px;
  position: relative;
}

.l-header__wrapper-bg {
  border-radius: 40px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.l-header__wrapper-bg-effect {
  backdrop-filter: blur(3px);
  inset: 0;
  isolation: isolate;
  z-index: 0;
}

.l-header__wrapper-bg-tint {
  background: rgba(255, 255, 255, 0.45);
  inset: 0;
  z-index: 1;
}

.l-header__wrapper-bg-shine {
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5), inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
  inset: 0;
  z-index: 2;
}

.l-header__wrapper.-anchor-on {
  filter: none;
}

.l-header__logo {
  display: inline-block;
  width: 86px;
}

.l-header__logo-area {
  align-items: center;
  display: flex;
  transition: all 0.3s ease;
  z-index: 3;
}

.l-header__logo-area:hover, .l-header__logo-area:hover .l-header__logo {
  opacity: 0.8;
}

.l-header__logo-area:hover .text {
  background-position-x: left;
  background-size: 100% 1px;
}

.l-header__logo-text {
  color: #f36315;
  font-size: 12px;
  line-height: 1.6666666667;
  margin-left: 10px;
}

.l-header__logo-text .text {
  background-image: linear-gradient(0deg, rgba(243, 99, 21, 0.8), rgba(243, 99, 21, 0.8));
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  letter-spacing: 0.5px;
  transition: background-size 0.65s ease;
}

.l-header__nav-inner {
  align-items: center;
  display: flex;
  height: 100%;
}

.l-header__nav-list {
  display: flex;
}

.l-header__nav .item.-top .item__parent:after, .l-header__nav .item.-top .item__parent:before {
  content: none;
}

.l-header__nav .item__parent {
  color: #000;
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  text-align: left;
  transition: color 0.3s ease;
  width: 100%;
}

.l-header__nav .item__parent:not(.-arrow) .item__parent-icon {
  background-color: #fff;
  border-radius: 100%;
  bottom: 0;
  height: 15px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  right: 40px;
  top: 0;
  width: 15px;
}

.l-header__nav .item__parent:not(.-arrow) .item__parent-icon:after, .l-header__nav .item__parent:not(.-arrow) .item__parent-icon:before {
  background-color: #f36315;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 8px;
}

.l-header__nav .item__parent:not(.-arrow) .item__parent-icon:before {
  opacity: 1;
  transform: rotate(0deg);
}

.l-header__nav .item__parent:not(.-arrow) .item__parent-icon:after {
  transform: rotate(90deg);
}

.l-header__nav .item__parent:not(.-arrow)[data-switch=open] .item__parent-icon:before {
  opacity: 0;
  transform: rotate(180deg);
}

.l-header__nav .item__parent:not(.-arrow)[data-switch=open] .item__parent-icon:after {
  transform: rotate(180deg);
}

.l-header__nav .item__parent.-arrow .c-icon--arrow {
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  right: 40px;
  top: 0;
}

.l-header__nav .item__children {
  height: auto;
}

.l-header__nav .item__children[data-mega-menu=close] {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}

.l-header__nav .item__children[data-mega-menu=close], .l-header__nav .item__children[data-mega-menu=open] {
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease, max-height 0.3s ease, overflow 0.3s ease;
}

.l-header__nav .item__children[data-mega-menu=open] {
  max-height: var(--max-height);
  opacity: 1;
  visibility: visible;
}

.l-header__lang {
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.l-header__lang.is-current {
  color: #f36315;
}

.l-header__lang-area {
  margin-left: 40px;
}

.l-header__lang-area .text {
  font-feature-settings: "palt";
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.4;
}

.l-header__contact {
  align-items: center;
  background-color: #0064C2;
  border: 1px solid #0064C2;
  border-radius: 30px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 0 10px;
  justify-content: center;
  margin-left: 30px;
  padding: 10px 22px 10px 18px;
  transition: all 0.3s ease;
}

.l-header__contact svg path {
  transition: stroke 0.3s ease;
}

.l-header__aboutUs {
  align-items: center;
  display: inline-flex;
  margin-left: 10px;
}

.l-header__aboutUs-btn {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ff6600;
  border-radius: 999px;
  color: #333;
  display: flex;
  font-size: 14px;
  height: 60px;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 135px;
}

.l-header__aboutUs-btn-icon {
  display: inline-block;
  height: auto;
  margin-left: 5px;
  width: 24px;
}

@media screen and (min-width: 1260px) {
  .l-header__nav {
    display: flex;
  }
  .l-header__nav, .l-header__nav-list, .l-header__nav .item {
    align-items: center;
    height: 100%;
  }
  .l-header__nav .item {
    display: flex;
  }
  .l-header__nav .item.is-current .item__parent:before {
    transform: scale(1);
    width: 30px;
  }
  .l-header__nav .item.-top {
    margin-right: 0;
  }
  .l-header__nav .item.-top .item__parent {
    display: none;
  }
  .l-header__nav .item__parent {
    align-items: center;
    display: flex;
    height: 100%;
  }
  .l-header__nav .item__parent:before {
    background: #f36315;
    border-radius: 8px;
    bottom: 18px;
    content: "";
    display: inline-block;
    height: 3px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    width: 3px;
  }
  .l-header__nav .item__parent:not(.-arrow):after {
    background-color: #f36315;
    border-radius: 0 0 0 13px;
    box-shadow: 10px -10px 10px -10px rgba(0, 0, 0, 0.16);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    content: "";
    display: block;
    height: 39px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 91px;
    transform: translateX(-50%) rotate(135deg);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: 39px;
    z-index: 18;
  }
  .l-header__nav .item__parent:not(.-arrow).is-open:after {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav .item__parent.-arrow .c-icon--arrow, .l-header__nav .item__parent:not(.-arrow) .item__parent-icon {
    display: none;
  }
  .l-header__nav .item__children {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
    left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: calc(100% - 40px);
    z-index: 15;
  }
  .l-header__nav .item__children.fade-in {
    opacity: 1;
    visibility: visible;
  }
  .l-header__contact:hover {
    background-color: #fff;
    border-color: #0064C2;
    color: #0064C2;
  }
  .l-header__contact:hover svg path {
    fill: #0064C2;
  }
}
@media screen and (min-width: 1260px) and (hover: hover) and (pointer: fine) {
  .l-header__nav .item__parent:hover {
    color: #f36315;
  }
  .l-header__nav .item__parent:hover:before {
    transform: scale(1);
  }
  .l-header__aboutUs-btn:hover {
    color: #ffffff;
    background-color: #ff6600;
  }
}
@media screen and (min-width: 1367px) {
  .l-header {
    top: 24px;
  }
  .l-header__wrapper {
    border-radius: 40px;
    padding-left: 30px;
    padding-right: 10px;
  }
  .l-header__nav .item:not(:last-of-type) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 1366px) {
  .l-header__inner.l-inner {
    max-width: 100%;
    width: 100%;
  }
  .l-header__wrapper-bg {
    border-radius: 0px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 1260px) {
  .l-header__nav .item:not(:last-of-type) {
    margin-right: 24px;
  }
  .l-header__lang-area {
    margin-left: 24px;
  }
  .l-header__contact {
    margin-left: 18px;
    padding: 10px 23px;
  }
  .l-header__contact .text {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  .l-header__wrapper {
    height: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-header__logo {
    transition: all 0.3s ease;
    width: 70px;
  }
  .l-header__logo-text {
    font-size: 10px;
  }
  .l-header__nav {
    background-color: #f36315;
    border-radius: 30px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
    margin: 70px auto 50px;
    opacity: 0;
    visibility: hidden;
    width: calc(100% - 40px);
    z-index: -1;
  }
  .l-header__nav.-transition {
    transition: opacity 0.3s ease, visibility 0.3s ease, z-index 0.3s ease;
  }
  .l-header__nav.is-open {
    opacity: 1;
    position: relative;
    visibility: visible;
    z-index: 999;
  }
  .l-header__nav-inner {
    display: block;
    padding: 60px 0 70px;
  }
  .l-header__nav-list {
    display: block;
    margin-bottom: 30px;
    width: 100%;
  }
  .l-header__nav .item.is-current {
    position: relative;
  }
  .l-header__nav .item.is-current:before {
    background-color: #fff;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: 24px;
    width: 30px;
  }
  .l-header__nav .item__parent {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3125;
    padding: 15px 60px 15px 40px;
  }
  .l-header__nav .item__children {
    overflow: hidden;
  }
  .l-header__nav .item__children[data-mega-menu=open] {
    margin-bottom: 35px;
    margin-top: 20px;
    position: relative;
  }
  .l-header__nav .item__children[data-mega-menu=open]:after, .l-header__nav .item__children[data-mega-menu=open]:before {
    background-color: #d1d5d9;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .l-header__nav .item__children[data-mega-menu=open]:before {
    top: -20px;
  }
  .l-header__nav .item__children[data-mega-menu=open]:after {
    bottom: -20px;
  }
  .l-header__lang.is-current {
    color: #fff;
  }
  .l-header__lang-area {
    margin-bottom: 50px;
    margin-left: 40px;
  }
  .l-header__contact {
    background-color: #fff;
    border-color: #f36315;
    color: #f36315;
    display: inline-flex;
    margin: 0 40px;
  }
  .l-header__contact svg path {
    fill: #f36315;
  }
  .l-header__aboutUs {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav .item__parent.-arrow:hover .c-icon--arrow .circle circle {
    fill: #f36315;
    stroke: #fff;
    stroke-width: 1;
    animation: circle 1s ease;
  }
  .l-header__nav .item__parent.-arrow:hover .c-icon--arrow .arrow path {
    fill: #fff;
    stroke: #f36315;
  }
  .l-header__contact:hover {
    background-color: #f36315;
    border-color: #fff;
    color: #fff;
  }
  .l-header__contact:hover svg path {
    fill: #fff;
  }
}
.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: calc(100% - 40px);
}

.l-inner.-size-m {
  max-width: 1080px;
}

@media screen and (min-width: 768px) {
  .l-main {
    padding-inline: 8px;
  }
}

.l-scrollTop {
  background-color: #f36315;
  border: 1px solid #f36315;
  border-radius: 50%;
  bottom: 34px;
  height: 50px;
  opacity: 0;
  position: fixed;
  right: 58px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  width: 50px;
  z-index: 999;
}

.l-scrollTop.fade-in {
  opacity: 1;
}

.l-scrollTop svg {
  bottom: 0;
  fill: #fff;
  height: 9px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(-90deg);
  transition: fill 0.3s ease;
  width: 7px;
}

@media screen and (max-width: 767px) {
  .l-scrollTop {
    height: 40px;
    right: 10px;
    width: 40px;
  }
}
.c-btn {
  align-items: center;
  border-radius: 100vmax;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  position: relative;
}

.c-contact__form {
  background: #F1F2F3;
  border-radius: 16px;
  padding: 56px 110px 35px;
}

.c-contact-form__lead {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
}

.c-contact-form__lists {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.c-contact-form-control {
  display: flex;
}

.c-contact-form-control__label {
  max-width: 223px;
  width: 100%;
}

.c-contact-form-control__label p {
  align-items: center;
  display: flex;
  gap: 4px;
}

.c-contact-form-control__heading {
  font-weight: 500;
  letter-spacing: 1px;
}

.c-contact-form-control__required {
  color: #F36215;
  font-size: 12px;
}

.c-contact-form-control__input-wrap {
  width: 100%;
}

.c-contact-form-control__input-wrap p {
  align-items: center;
  display: flex;
  gap: 15px;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input {
  display: block;
  width: 100%;
}

.c-contact-form-control__input input,
.c-contact-form-control__input textarea {
  border: none;
  border-radius: 4px;
  letter-spacing: 0.75px;
  width: 100%;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input.is-alert input {
  border: 1px solid #EC0000;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input input {
  overflow: hidden;
  padding: 16px 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-contact-form-control__input-wrap textarea {
  height: 120px;
  line-height: 1.8;
  padding: 18px 14px;
}

.c-contact-form-control__input-wrap input::-moz-placeholder, .c-contact-form-control__input-wrap textarea::-moz-placeholder {
  color: #757578;
}

.c-contact-form-control__input-wrap input::placeholder,
.c-contact-form-control__input-wrap textarea::placeholder {
  color: #757578;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span {
  margin-left: 0;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 6px 0 14px;
}

.c-contact-form-control__input-wrap input[type=radio] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span input[type=radio] + span:before,
.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span input[type=radio] + span:after {
  border-radius: 100vmax;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span input[type=radio] + span:before {
  background: #FFF;
  border: 1px solid #91A6B4;
  height: 20px;
  left: 0;
  width: 20px;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span input[type=radio] + span:after {
  background: #0165C2;
  height: 10px;
  left: 5px;
  opacity: 0;
  width: 10px;
}

.c-contact-form-control__input-wrap .c-contact-form-control__input-radio > span input[type=radio]:checked + span:after {
  opacity: 1;
}

.c-contact-form-control__input-wrap span {
  letter-spacing: 0.7px;
}

.c-contact-form__privacy {
  color: #1A1A1C;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  top: -12px;
}

.c-contact-form__privacy a {
  text-decoration: underline;
  transition: 0.3s;
}

.c-contact-form__submit {
  background: linear-gradient(90deg, #548FC7, #0064C2);
  border-radius: 100vmax;
  margin: 0 auto;
  position: relative;
  top: -5px;
  width: 450px;
}

.c-contact-form__submit p {
  padding: 1px;
  position: relative;
}

.c-contact-form__submit p:before,
.c-contact-form__submit p:after {
  content: "";
  display: block;
  height: 24px;
  left: calc(50% + 80px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: 0.3s;
  width: 24px;
  z-index: 1;
}

.c-contact-form__submit p:before {
  background-color: #FFF;
  border-radius: 100vmax;
}

.c-contact-form__submit p:after {
  background-color: #0064C2;
  -webkit-mask: url(../images/common/ico_arrow.svg) no-repeat center/40%;
          mask: url(../images/common/ico_arrow.svg) no-repeat center/40%;
}

.c-contact-form__submit input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 100vmax;
  color: #FFF;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 18px 40px 18px 0;
  position: relative;
  transition: 0.3s;
  width: 100%;
}

.c-contact__form .c-contact-form-control__alert {
  color: #EC0000;
  font-size: 12px;
  letter-spacing: 0.35px;
  margin-top: 8px;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .c-contact__form {
    padding: 56px 40px 40px;
  }
  .c-contact-form-control__label {
    max-width: 190px;
  }
  .c-contact-form__privacy {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .c-contact__form {
    padding: 38px 18px 32px;
  }
  .c-contact-form__lead {
    font-size: 16px;
    line-height: 1.5;
  }
  .c-contact-form__lists {
    gap: 24px;
    margin-top: 42px;
  }
  .c-contact-form__lead + .c-contact-form__lists {
    gap: 26px;
  }
  .c-contact-form-control {
    flex-direction: column;
    gap: 10px;
  }
  .c-contact-form-control__input .c-contact-form-control__input-radio {
    flex-direction: column;
    gap: 10px;
    margin: 6px 0 0;
  }
  .c-contact-form__privacy {
    line-height: 1.45;
    top: -7px;
  }
  .c-contact-form__submit {
    background: #0064C2;
    top: -9px;
    width: 252px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-form__privacy a:hover {
    opacity: 0.6;
  }
  .c-contact-form__submit p:hover input[type=submit] {
    background: #FFF;
    color: #0165C2;
  }
  .c-contact-form__submit p:hover:before {
    background-color: #0165C2;
  }
  .c-contact-form__submit p:hover:after {
    background-color: #FFF;
  }
}
.g-recaptcha {
  margin-inline: auto;
}

.c-icon--arrow {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.8s ease;
}

.c-icon--arrow .circle {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(-90deg);
  width: 100%;
}

.c-icon--arrow .circle circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.c-icon--arrow .circle circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.c-icon--arrow .arrow, .c-icon--arrow .prev {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.c-icon--arrow .arrow path, .c-icon--arrow .prev path {
  transition: fill 0.3s ease;
}

.c-icon--arrow .arrow.-bottom, .c-icon--arrow .prev.-bottom {
  transform: rotate(90deg);
}

.c-icon--arrow.-size-xs {
  height: 14px;
  margin-top: 3px;
  width: 14px;
}

.c-icon--arrow.-size-xs .arrow, .c-icon--arrow.-size-xs .prev {
  width: 5px;
}

.c-icon--arrow.-size-s {
  height: 16px;
  width: 16px;
}

.c-icon--arrow.-size-s .arrow, .c-icon--arrow.-size-s .prev {
  width: 5px;
}

.c-icon--arrow.-size-m {
  height: 24px;
  width: 24px;
}

.c-icon--arrow.-size-l {
  height: 28px;
  width: 28px;
}

@media (hover: hover) and (pointer: fine) {
  a .c-icon--arrow.-bg-white:hover .circle circle, .c-icon--prev.-bg-white:hover .circle circle {
    fill: rgb(243, 99, 21);
    stroke: rgb(255, 255, 255);
    stroke-width: 1;
    animation: 1s ease 0s 1 normal none running circle;
  }
  a .c-icon--arrow.-bg-white:hover .arrow path, .c-icon--prev.-bg-white:hover .arrow path {
    fill: rgb(255, 255, 255);
  }
}
.c-link {
  display: block;
  min-height: 209px;
  height: clamp(13.063rem, 0.613rem + 17.72vw, 16.563rem);
  width: 100%;
}

.c-link__image {
  border-radius: 8px;
  box-shadow: 0 35px 25px -30px rgba(16, 43, 55, 0.3);
  margin-inline: auto;
  min-width: 237px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s;
  width: 85%;
  z-index: 1;
}

.c-link__image img {
  aspect-ratio: auto;
  height: auto;
}

.c-link__bottom {
  align-items: center;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  height: clamp(5.25rem, 0.359rem + 6.96vw, 6.625rem);
  min-height: 84px;
  min-width: 285px;
  justify-content: space-between;
  padding: 15px 25px 0;
  position: relative;
  top: clamp(-20px, 25.6px - 3.17vw, -10px);
  width: 100%;
}

.c-link__title {
  color: #292F33;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.3;
  transition: color 0.3s;
}

.c-link__title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.c-link__btn {
  background-color: #ADC0CC;
  border-radius: 100vmax;
  display: grid;
  flex-shrink: 0;
  height: 28px;
  place-items: center;
  transition: background-color 0.3s;
  width: 28px;
}

@media screen and (max-width: 1160px) {
  .c-link {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-link__image {
    max-width: 540px;
  }
  .c-link__bottom {
    gap: 0;
    height: 76px;
    margin-inline: auto;
    max-width: 520px;
    min-height: 0;
    padding: 6px 18px 0 22px;
    top: -8px;
    width: 100%;
  }
  .c-link__title {
    font-size: 16px;
  }
  .c-link__title span {
    font-size: 12px;
  }
  .c-link__btn {
    height: 24px;
    width: 24px;
  }
  .c-link__btn img {
    height: 12px;
    width: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-link:hover .c-link__image {
    box-shadow: none;
  }
  .c-link:hover .c-link__title {
    color: #F36215;
  }
  .c-link:hover .c-link__btn {
    background-color: #F36215;
  }
}
.c-singleFv {
  background: #F1F2F3;
  left: 50%;
  min-height: 500px;
  position: relative;
  transform: translateX(-50%);
  width: 100vw;
}

.c-singleFv:after {
  background: url(../images/single/fv_bg.svg) no-repeat top center/100% 100%;
  content: "";
  display: block;
  height: 1290px;
  left: -330px;
  position: absolute;
  top: -820px;
  width: 645px;
  z-index: -1;
}

.c-singleFv__inner {
  margin-inline: auto;
  max-width: 1062px;
  padding-bottom: 162px;
  padding-top: 178px;
}

.c-singleFv__name {
  color: #F36215;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.c-singleFv__summary {
  letter-spacing: 0.75px;
  margin-top: 15px;
}

.c-singleFv__title {
  align-items: center;
  display: flex;
  gap: 25px;
  margin-top: 15px;
}

.c-singleFv__title h1 {
  color: #F36215;
  font-size: 57px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.c-singleFv__title-icon {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .c-singleFv {
    min-height: auto;
  }
  .c-singleFv:after {
    height: 645px;
    left: -160px;
    top: -325px;
    width: 323px;
  }
  .c-singleFv__inner {
    max-width: none;
    padding-bottom: 15px;
    padding-top: 98px;
    width: calc(100% - 30px);
  }
  .c-singleFv__summary {
    font-size: 14px;
    line-height: 1.7;
  }
  .c-singleFv__title {
    gap: 10px;
    margin-top: 38px;
  }
  .c-singleFv__title h1 {
    font-size: 28px;
    letter-spacing: 0.5px;
  }
}
.c-title {
  color: #292F33;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.25;
}

.c-title__ja {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.c-title__en {
  font-family: "Albert Sans", sans-serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 4.5px;
}

@media screen and (max-width: 767px) {
  .c-title {
    font-size: 32px;
  }
  .c-title__en {
    font-size: 32px;
    letter-spacing: 2.5px;
  }
}
.p-contact {
  overflow: hidden;
  position: relative;
}

.p-contact:before,
.p-contact:after {
  background: url(../images/top/contact_bg.svg) no-repeat top center/100% 100%;
  content: "";
  display: block;
  height: 565px;
  position: absolute;
  transform: translateX(-50%);
  width: 1131px;
}

.p-contact:before {
  left: calc(50% - 805px);
  top: -160px;
}

.p-contact:after {
  left: calc(50% + 480px);
  top: 895px;
}

.p-contact__inner.l-inner {
  max-width: 1280px;
  padding-bottom: 160px;
  padding-top: 118px;
}

.p-contact__title-wrap {
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.p-contact__title-wrap .c-title__en {
  align-items: center;
  display: flex;
  gap: 20px;
}

.p-contact__title-wrap .c-title__ja {
  font-size: 20px;
  margin-top: 5px;
  text-align: center;
}

.p-contact__title-icon {
  background: #E95504;
  border-radius: 100vmax;
  display: grid;
  height: 64px;
  place-items: center;
  width: 64px;
}

.p-contact__form-wrap {
  margin: 65px auto 0;
  max-width: 1100px;
  padding-inline: 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-contact:before,
  .p-contact:after {
    height: 283px;
    width: 566px;
  }
  .p-contact:before {
    left: calc(50% - 300px);
    top: 50px;
  }
  .p-contact:after {
    left: calc(50% + 220px);
    top: 1015px;
  }
  .p-contact__inner.l-inner {
    max-width: 100%;
    padding-bottom: 80px;
    padding-top: 78px;
  }
  .p-contact__title-wrap .c-title__en {
    font-size: 28px;
    gap: 8px;
    letter-spacing: 1.5px;
  }
  .p-contact__title-wrap .c-title__ja {
    font-size: 16px;
    margin-top: 10px;
  }
  .p-contact__title-icon {
    height: 48px;
    width: 48px;
  }
  .p-contact__title-icon svg {
    width: 32px;
  }
  .p-contact__form-wrap {
    max-width: 535px;
    margin-top: 42px;
    padding-inline: 0;
  }
}
.p-footer {
  color: #4C4336;
  width: 100%;
}

.p-footer__inner {
  padding: 0 15px 60px;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 0 20px 60px;
  }
}

.p-footer__logo-link-wrap {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.p-footer__logo-link {
  width: -moz-fit-content;
  width: fit-content;
}

.p-footer__list-wrap,
.p-footer__image-list-wrap {
  margin-top: 30px;
}

.p-footer__list,
.p-footer__image-list {
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-footer__image-list {
  gap: 7px;
}

.p-footer__item:not(:last-child) {
  border-right: 1px solid #ccc;
  line-height: 1;
  padding-right: 8px;
}

.p-footer__item:not(:first-child) {
  padding-left: 8px;
}

.p-footer__image-item {
  background: url(../images/common/footer_image-list-bg.png) no-repeat center/100% 100%;
  height: 95px;
  padding: 9px 7px;
  width: 115px;
}
@media screen and (min-width: 768px) {
  .p-footer__image-item {
    background-size: cover;
  }
}

.p-footer__image-text {
  height: 22px;
}

.p-footer__image-text svg {
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.p-footer__image-link-wrap {
  align-items: center;
  display: flex;
  gap: 11px;
  justify-content: center;
  margin-top: 10px;
}

.p-footer__image-link {
  width: 43px;
}

.p-footer__link {
  font-size: 14px;
}

.p-footer__text {
  font-size: 12px;
  margin-top: 3px;
  text-align: center;
}

.p-footer__copyright {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
}

.p-hamburger {
  background-color: #f36315;
  border: 1px solid #f36315;
  border-radius: 100%;
  height: 50px;
  position: absolute;
  right: 0;
  transition: background-color 0.3s ease;
  visibility: visible;
  width: 50px;
  z-index: 99999;
}

.p-hamburger.is-open .line:first-of-type {
  top: 24px;
  transform: rotate(-325deg);
  width: 24px;
}

.p-hamburger.is-open .line:nth-of-type(2) {
  opacity: 0;
}

.p-hamburger.is-open .line:last-of-type {
  top: 24px;
  transform: rotate(325deg);
  width: 24px;
}

.p-hamburger .line {
  background-color: #fff;
  height: 1px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  right: 0;
  transition: opacity 0.6s ease, transform 0.6s ease, top 0.6s ease, width 0.6s ease;
  width: 21px;
}

.p-hamburger .line:first-of-type {
  top: 17px;
}

.p-hamburger .line:nth-of-type(2) {
  top: 25px;
}

.p-hamburger .line:last-of-type {
  top: 32px;
}

@media (hover: hover) and (pointer: fine) {
  .p-hamburger:hover {
    background-color: #fff;
  }
  .p-hamburger:hover .line {
    background-color: #f36315;
  }
}
@media screen and (min-width: 1260px) {
  .p-hamburger {
    display: none;
  }
  .p-hamburger__bg {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  .p-hamburger {
    margin: 10px 10px 10px auto;
  }
  .p-hamburger__bg {
    background-color: transparent;
    bottom: 0;
    height: 100%;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    right: 0;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  .p-hamburger__bg.is-open {
    background-color: hsla(0, 0%, 66%, 0.5);
  }
}
.p-hamburgerMenu {
  margin-left: auto;
  z-index: 3;
}

@media screen and (min-width: 1260px) {
  .p-hamburgerMenu {
    align-items: center;
    display: flex;
    height: 100%;
  }
}
@media screen and (max-width: 1259px) {
  .p-hamburgerMenu {
    height: auto;
    left: 0;
    margin-left: 0;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
  }
  .p-hamburgerMenu[data-hmb-menu=open] {
    height: 100%;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
  }
}
.p-megaMenu__image {
  border-radius: 10px;
  height: 0;
  overflow: hidden;
  padding-top: 41.5584415584%;
  position: relative;
  width: 100%;
}

.p-megaMenu__image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: transform 0.3s ease;
  width: 100%;
}

.p-megaMenu__image-area {
  max-width: 308px;
  position: relative;
  width: 25.6666666667%;
}

.p-megaMenu__title {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 500;
  gap: 0 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 25px;
}

.p-megaMenu__title .c-icon--arrow {
  margin-bottom: -3px;
}

.p-megaMenu__list {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 90px;
  column-gap: 90px;
  margin-left: 3.3333333333%;
  max-width: calc(100% - 348px);
  position: relative;
  width: 71%;
}

.p-megaMenu__item {
  display: inline-block;
  width: 100%;
}

.p-megaMenu__item:not(:last-of-type) {
  margin-bottom: 15px;
}

.p-megaMenu__item.is-current {
  position: relative;
}

.p-megaMenu__item .list {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  margin-top: 12px;
}

.p-megaMenu__link {
  color: #fff;
  display: flex;
  font-size: 15px;
  gap: 0 6px;
  letter-spacing: 0.02em;
  line-height: 1.8666666667;
}

.p-megaMenu__link .c-icon--arrow {
  margin-top: 6px;
}

.p-megaMenu__link .c-icon--external {
  margin-top: 4px;
  width: 13px;
}

@media screen and (min-width: 1125px) {
  .p-megaMenu {
    background-color: #f36315;
    border-radius: 40px;
    display: flex;
    gap: 0 40px;
    margin-top: 30px;
    padding: 50px 5% 40px;
    transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
    width: 100%;
  }
  .p-megaMenu__image-area:before {
    right: -40px;
  }
  .p-megaMenu__image-area:before, .p-megaMenu__list:after {
    background-color: #d1d5d9;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .p-megaMenu__list:after {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    right: 0;
  }
  .p-megaMenu__list.-recruit {
    -ms-grid-rows: 28px 28px;
    display: grid;
    gap: 15px 50px;
    grid-auto-flow: column;
    grid-template-rows: 28px 28px;
  }
  .p-megaMenu__list.-recruit .p-megaMenu__item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .p-megaMenu__item.-pageTop {
    display: none;
  }
  .p-megaMenu__item .list .child-item {
    margin-left: 28px;
  }
}
@media screen and (max-width: 1124px) {
  .p-megaMenu {
    border-bottom: 1px solid #d1d5d9;
    border-top: 1px solid #d1d5d9;
    margin: 0 40px;
    padding: 20px 0;
  }
  .p-megaMenu__image-area {
    display: none;
  }
  .p-megaMenu__list {
    -moz-column-count: 1;
    column-count: 1;
    margin-left: 0;
    max-width: none;
    width: 100%;
  }
  .p-megaMenu__item.is-current:before {
    background-color: #fff;
    content: "";
    height: 1px;
    left: -19px;
    position: absolute;
    top: 10px;
    width: 11px;
  }
  .p-megaMenu__link {
    font-size: 16px;
    line-height: 1.3;
  }
  .p-megaMenu__link .c-icon--arrow {
    display: none;
  }
  .p-megaMenu__link .c-icon--external {
    margin-top: 2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-megaMenu__link:hover .circle circle {
    fill: rgb(243, 99, 21);
    stroke: rgb(255, 255, 255);
    stroke-width: 1;
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 normal none running circle;
  }
  .p-megaMenu__link:hover .arrow path {
    fill: rgb(255, 255, 255);
  }
  .p-megaMenu__image-area:hover .p-megaMenu__image img {
    transform: scale(1.1);
  }
  .p-megaMenu__image-area:hover a.p-megaMenu__title .c-icon--arrow .circle circle {
    animation: circle 1s cubic-bezier(0.77, 0, 0.175, 1);
    fill: #f36315;
    stroke: #fff;
    stroke-width: 1;
  }
  .p-megaMenu__image-area:hover a.p-megaMenu__title .c-icon--arrow .arrow path {
    fill: #fff;
  }
}
.p-modal {
  display: none;
  height: 100%;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  position: fixed;
  text-align: center;
  top: 0;
  transition: opacity 0.5s ease;
  width: 100vw;
  z-index: 10000;
}

.p-modal.is-show {
  opacity: 1;
}

.p-modal__bg {
  background: rgba(0, 0, 0, 0.4);
  height: calc(100vh + 1px);
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 1;
}

.p-modal__inner {
  height: auto;
  left: 50%;
  max-width: 1037px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 160px);
  z-index: 2;
}

.p-modal__inner:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.p-modal__player {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-modal__player iframe,
.p-modal__player video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-modal__player iframe {
  border: none;
}

.p-modal__close {
  background-color: transparent;
  color: #FFF;
  cursor: pointer;
  font-size: 40px;
  height: 35px;
  position: absolute;
  right: -52px;
  top: -44px;
  width: 35px;
}

.p-modal__close-icon {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  width: 100%;
}

.p-modal__close-icon:before,
.p-modal__close-icon:after {
  background: #FFF;
  content: "";
  height: 30px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 2px;
}

.p-modal__close-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-modal__close-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .p-modal__inner {
    width: 100%;
  }
  .p-modal__close {
    right: 15px;
    top: -50px;
  }
}
.p-mv {
  left: -8px;
  padding-top: 128px;
  position: relative;
  width: 100vw;
}

.p-mv__slider-container {
  overflow: visible;
  padding-bottom: 135px;
}

.p-mv__slider-wrap {
  align-items: center;
  backface-visibility: hidden;
  display: flex;
  will-change: transform;
}

.p-mv__slider {
  max-width: 1062px;
  transition: 0.7s;
  width: 80%;
}

.p-mv__slider.swiper-slide-prev {
  transform: translateX(60px);
}

.p-mv__slider.swiper-slide-active {
  z-index: 10;
}

.p-mv__slider.swiper-slide-next {
  transform: translateX(-60px);
}

.p-mv__slider-image {
  border-radius: 16px;
  box-shadow: 0 0 80px rgba(28, 77, 99, 0.1);
  overflow: hidden;
  position: relative;
}

.p-mv__slider-link {
  display: block;
  height: 100%;
  width: 100%;
}

.p-mv__slider-link img {
  max-height: 600px;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.p-mv__slider-picture {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 1s ease;
}

.p-mv__slider-picture.is-active {
  opacity: 1;
  pointer-events: auto;
}

.p-mv__slider-picture:first-child {
  position: relative;
}

.p-mv__slider-picture img {
  display: block;
  width: 100%;
  height: auto;
}

.p-mv__slider-bottom {
  align-items: flex-end;
  bottom: 95px;
  display: flex;
  justify-content: space-between;
  height: 65px;
  left: 50%;
  margin-inline: auto;
  max-width: 1320px;
  padding-inline: 20px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1010;
}

.p-mv__slider-box {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #FFF;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(99, 99, 99, 0.15);
  padding: 28px 32px 32px;
  position: relative;
  width: 528px;
}

.p-mv__slider-text {
  color: #292F33;
  font-size: 20px;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.1s;
}

.p-mv__slider-text.is-fade {
  opacity: 0;
}

.p-mv__slider-text span {
  display: -webkit-box;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-mv__slider-hidden-text {
  visibility: hidden;
}

.p-mv__slider-btn-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.p-mv__slider-btn {
  border: 1px solid;
  font-size: 18px;
  letter-spacing: 1px;
  padding-block: 17.5px;
  transition: 0.3s;
  width: 224px;
}

.p-mv__slider-btn-icon {
  border-radius: 100vmax;
  display: grid;
  height: 24px;
  place-items: center;
  transition: 0.3s;
  width: 24px;
}

.p-mv__slider-btn--download {
  background: #FFF;
  border-color: #91A6B4;
  color: #292F33;
}

.p-mv__slider-btn--download .p-mv__slider-btn-icon {
  background: #343434;
}

.p-mv__slider-btn--contact {
  background: #0165C2;
  border-color: #FFF;
  color: #FFF;
}

.p-mv__slider-btn--contact .p-mv__slider-btn-icon {
  background: #FFF;
}

.p-mv__slider-btn--contact .p-mv__slider-btn-icon svg {
  margin-bottom: 0.5px;
  margin-left: 1px;
}

.p-mv__slider-control {
  align-items: center;
  background: #F1F2F3;
  border-radius: 100vmax;
  display: flex;
  gap: 15px;
  padding: 8px 8px 8px 25px;
}

.p-mv__slider-pagination {
  align-items: center;
  bottom: auto !important;
  display: flex;
  position: relative;
}

.p-mv__slider-pagination li {
  display: grid;
  height: 20px;
  opacity: 1;
  place-items: center;
  width: 20px;
}

.p-mv__slider-pagination .swiper-pagination-bullet {
  background: #667580;
  display: block !important;
  height: 4px;
  width: 4px;
}

.p-mv__slider-pagination .swiper-pagination-bullet svg {
  display: block;
  height: inherit;
  left: -230%;
  overflow: visible;
  position: relative;
  top: 230%;
  transform: rotate(-90deg);
  width: inherit;
}

.p-mv__slider-pagination .swiper-pagination-bullet svg circle {
  fill: transparent;
  stroke: rgba(102, 117, 128, 0.5);
  stroke-dasharray: 0 155;
  stroke-width: 1;
}

.p-mv__slider-arrow {
  align-items: center;
  display: flex;
  gap: 4px;
}

.p-mv__slider-prev,
.p-mv__slider-next {
  background: #FFF;
  border-radius: 100vmax;
  height: auto;
  margin-top: auto;
  padding: 6px 21px;
  position: relative;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}

.p-mv__slider-prev {
  left: auto;
}

.p-mv__slider-next {
  right: auto;
}

.p-mv__slider-prev:after,
.p-mv__slider-next:after {
  content: "";
}

@keyframes pageLoader {
  0% {
    stroke-dasharray: 0 155;
  }
  100% {
    stroke-dasharray: 155 155;
  }
}
@media screen and (max-width: 1124px) and (min-width: 768px) {
  .p-mv__slider {
    width: 90%;
  }
  .p-mv__slider-box {
    padding: 20px 24px 24px;
    width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    left: auto;
    padding-top: 80px;
  }
  .p-mv__slider-container {
    padding-bottom: 285px;
  }
  .p-mv__slider {
    max-width: 370px;
  }
  .p-mv__slider-bottom {
    bottom: auto;
    flex-direction: column;
    height: auto;
    max-width: 500px;
    top: clamp(24.375rem, 17.798rem + 28.06vw, 31.25rem);
  }
  .p-mv__slider-box {
    padding: 20px;
    width: 100%;
  }
  .p-mv__slider-text {
    display: grid;
    font-size: 18px;
    min-height: 54px;
    place-items: center;
  }
  .p-mv__slider-btn-wrap {
    flex-direction: column;
    margin: 15px auto 0;
    max-width: 300px;
  }
  .p-mv__slider-btn {
    width: 100%;
  }
  .p-mv__slider-btn-icon {
    height: 32px;
    left: 16px;
    position: absolute;
    width: 32px;
  }
  .p-mv__slider-btn--download .p-mv__slider-btn-icon svg {
    height: 16px;
    width: 16px;
  }
  .p-mv__slider-btn--contact .p-mv__slider-btn-icon svg {
    height: 20px;
    width: 22px;
  }
  .p-mv__slider-control {
    margin: 25px auto 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-mv__slider-btn--download:hover {
    border-color: #0165C2;
    color: #0165C2;
  }
  .p-mv__slider-btn--download:hover .p-mv__slider-btn-icon {
    background: #0165C2;
  }
  .p-mv__slider-btn--download:hover .p-mv__slider-btn-icon svg path {
    fill: #FFF;
  }
  .p-mv__slider-btn--contact:hover {
    background: #FFF;
    border-color: #0165C2;
    color: #0165C2;
  }
  .p-mv__slider-btn--contact:hover .p-mv__slider-btn-icon {
    background: #0165C2;
  }
  .p-mv__slider-btn--contact:hover .p-mv__slider-btn-icon svg path {
    fill: #FFF;
  }
  .p-mv__slider-prev:hover,
  .p-mv__slider-next:hover {
    background: #ADC0CC;
  }
  .p-mv__slider-prev:hover svg path,
  .p-mv__slider-next:hover svg path {
    stroke: #FFF;
  }
  .p-mv__slider-prev:hover svg rect,
  .p-mv__slider-next:hover svg rect {
    fill: #FFF;
  }
}
.p-products {
  padding-inline: 10px;
  position: relative;
}

.p-products__wrap {
  background: #F1F2F3;
  border-radius: 16px;
  padding-block: 80px;
}

.p-products__inner.l-inner {
  display: flex;
  gap: 43px;
  justify-content: space-between;
  max-width: 1280px;
}

.p-products__title-wrap {
  flex-shrink: 0;
  width: 70px;
}

.p-products__link-wrap {
  max-width: 1131px;
  width: 100%;
}

.p-products__link-list {
  align-items: center;
  display: grid;
  flex-wrap: wrap;
  gap: 1.2vw;
  grid-template-columns: repeat(3, 1fr);
}

.p-products__title {
  color: #F36215;
  font-weight: 500;
  text-orientation: sideways;
  writing-mode: vertical-rl;
}

.p-products__title-ja {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.p-products__title-ja span {
  text-orientation: sideways;
}

.p-products__title-en {
  font-family: "Albert Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.7px;
  line-height: 1;
}

.p-products__title h2.p-products__title-ja {
  font-size: 24px;
  line-height: 1;
  padding-left: 4px;
  writing-mode: sideways-rl;
}

.p-products__link-bottom {
  background: #FFF;
  margin-inline: auto;
}

.p-products__link-image {
  border: 2px solid #E95504;
}

@media screen and (max-width: 1160px) {
  .p-products__link-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-products__link-item {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-products {
    padding-inline: 0;
    top: 0;
  }
  .p-products__wrap {
    border-radius: 0;
    padding-bottom: 30px;
    padding-top: 40px;
  }
  .p-products__inner.l-inner {
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }
  .p-products__title-wrap {
    max-width: 50px;
    width: 100%;
  }
  .p-products__link-wrap {
    max-width: none;
    padding-right: 20px;
  }
  .p-products__link-list {
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  .p-products__link-list:has(> .p-products__link-item:nth-child(odd):last-child):after {
    content: "";
    display: block;
    height: 212px;
    width: 293px;
  }
  .p-products__link-list:has(> .p-products__link-item:nth-child(odd):last-child):after {
    display: none;
  }
  .p-products__link-image {
    width: 88%;
  }
}
.p-productsList {
  background: #F1F2F3;
  left: 50%;
  overflow: hidden;
  position: relative;
  transform: translateX(-50%);
  width: 100vw;
}

.p-productsList:after {
  background: url(../images/top/products_bg.svg) no-repeat top center/100% 100%;
  content: "";
  display: block;
  height: 1131px;
  left: calc(50% + 550px);
  position: absolute;
  top: -280px;
  transform: translateX(-50%);
  width: 565px;
}

.p-productsList__inner.l-inner {
  max-width: 1280px;
  padding-bottom: 160px;
  padding-top: 120px;
}

.p-productsList__box-wrap {
  margin: 115px auto 0;
  max-width: clamp(45.625rem, 22.411rem + 48.36vw, 65.938rem);
  position: relative;
  width: 100%;
  z-index: 1;
}

.p-productsList__box-list {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.p-productsList__box {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.p-productsList__box-movie-wrap {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 25px rgba(16, 43, 55, 0.2);
  cursor: pointer;
  height: clamp(12.5rem, 9.429rem + 6.4vw, 15.188rem);
  left: calc(50% - clamp(11.563rem, 2.277rem + 19.35vw, 19.688rem));
  max-width: 431px;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
  width: clamp(22.5rem, 17.429rem + 10.57vw, 26.938rem);
}

.p-productsList__box-movie-wrap .p-productsList__box-movie--empty {
  background: #F1F2F3;
  cursor: auto;
  height: 100%;
}

.p-productsList__box-contents {
  background: #FFF;
  border-radius: 16px;
  color: #333;
  max-width: 660px;
  padding: clamp(1.5rem, 0.786rem + 1.49vw, 2.125rem) clamp(1.875rem, 1.161rem + 1.49vw, 2.5rem) clamp(1.875rem, 1.161rem + 1.49vw, 2.5rem) clamp(4.375rem, 3.661rem + 1.49vw, 5rem);
  width: clamp(25.625rem, 7.768rem + 37.2vw, 41.25rem);
}

.p-productsList__box-movie {
  display: block;
  height: 0;
  left: 50%;
  padding-bottom: 56.11%;
  position: relative;
  transform: translateX(-50%);
  width: 110%;
}

.p-productsList__box-movie:before,
.p-productsList__box-movie:after {
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-productsList__box-movie:before {
  background: url(../images/common/movie-play.svg) no-repeat top center/100% 100%;
  height: 80px;
  width: 80px;
  z-index: 2;
}

.p-productsList__box-movie:after {
  background: transparent;
  height: 100%;
  transition: 0.3s;
  width: 100%;
  z-index: 1;
}

.p-productsList__box-movie img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 105%;
}

.p-productsList__box-name {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
}

.p-productsList__box-explanation {
  letter-spacing: 0.8px;
  line-height: 1.7;
  padding-top: 18px;
}

.p-productsList__box-btn {
  background: #91A6B4;
  border: 1px solid transparent;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-top: clamp(1.25rem, 0.536rem + 1.49vw, 1.875rem);
  padding: 12px 16px 12px 24px;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}

.p-productsList__box-btn-icon {
  background: #FFF;
  border-radius: 100vmax;
  display: grid;
  height: 24px;
  place-items: center;
  transition: 0.3s;
  width: 24px;
}

@media screen and (max-width: 767px) {
  .p-productsList:after {
    height: 566px;
    left: calc(50% + 200px);
    top: 50px;
    transform: translateX(-50%);
    width: 283px;
  }
  .p-productsList__inner.l-inner {
    padding-bottom: 65px;
    padding-top: 80px;
  }
  .p-productsList__box-list {
    gap: 10px;
  }
  .p-productsList__box-wrap {
    margin-top: 75px;
  }
  .p-productsList__box {
    flex-direction: column;
  }
  .p-productsList__box-movie-wrap {
    box-shadow: 0 10px 20px rgba(28, 77, 99, 0.1);
    height: auto;
    left: auto;
    max-width: 503px;
    margin-inline: auto;
    position: relative;
    transform: none;
    width: 90%;
    z-index: 1;
  }
  .p-productsList__box-contents {
    max-width: 535px;
    padding: 30px 24px 24px;
    position: relative;
    top: -15px;
    width: 100%;
  }
  .p-productsList__box-name {
    font-size: 18px;
    letter-spacing: 1px;
    padding-bottom: 15px;
  }
  .p-productsList__box-explanation {
    font-size: 14px;
  }
  .p-productsList__box-btn {
    margin-top: 1.5625rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productsList__box-movie-wrap:hover {
    box-shadow: none;
  }
  .p-productsList__box-movie:hover:after {
    background: rgba(255, 255, 255, 0.2);
  }
  .p-productsList__box-movie-wrap:has(.p-productsList__box-movie--empty):hover {
    box-shadow: 0 20px 25px rgba(16, 43, 55, 0.2);
  }
  .p-productsList__box-btn:hover .p-productsList__box-btn-icon {
    background: #91A6B4;
  }
  .p-productsList__box-btn:hover .p-productsList__box-btn-icon path {
    fill: #fff;
  }
  .p-productsList__box-btn:hover {
    background: #FFF;
    border: 1px solid #91A6B4;
    color: #91A6B4;
  }
}
.p-productsSingle {
  color: #292F33;
}

.p-productsSingle__container {
  position: relative;
  top: -110px;
}

.p-productsSingle__inner {
  margin-inline: auto;
  max-width: 1062px;
}

.p-productsSingle__thumbnail {
  border-radius: 16px;
  overflow: hidden;
}

.p-productsSingle__thumbnail img {
  aspect-ratio: 1062/598;
  height: auto;
  width: 100%;
}

.p-productsSingle__box-wrap {
  max-width: 842px;
  margin-inline: auto;
  position: relative;
  top: -60px;
  width: 90%;
}

.p-productsSingle__box {
  backdrop-filter: blur(8px);
  background: rgba(241, 242, 243, 0.8);
  border-radius: 8px;
  box-shadow: 0 12px 20px rgba(99, 99, 99, 0.15);
  padding: 22px 32px 26px;
}

.p-productsSingle__box-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
}

.p-productsSingle__box-btn-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 16px;
}

.p-productsSingle__box-btn {
  border: 1px solid;
  font-size: 18px;
  letter-spacing: 1px;
  padding-block: 22px;
  transition: 0.3s;
  width: 300px;
}

.p-productsSingle__box-btn-icon {
  border-radius: 100vmax;
  display: grid;
  height: 24px;
  place-items: center;
  transition: 0.3s;
  width: 24px;
}

.p-productsSingle__box-btn--download {
  background: #FFF;
  border-color: #91A6B4;
}

.p-productsSingle__box-btn--download .p-productsSingle__box-btn-icon {
  background: #343434;
}

.p-productsSingle__box-btn--contact {
  background: #0165C2;
  border-color: #FFF;
  color: #FFF;
}

.p-productsSingle__box-btn--contact .p-productsSingle__box-btn-icon {
  background: #FFF;
}

.p-productsSingle__box-btn--contact .p-productsSingle__box-btn-icon svg {
  margin-bottom: 0.5px;
  margin-left: 1px;
}

.p-productsSingle__introduction {
  letter-spacing: 0.8px;
  line-height: 1.7;
  margin-top: 35px;
}

.p-productsSingle__contents {
  max-width: 842px;
  margin: 18px auto 0;
  position: relative;
}

.p-productsSingle__contact {
  position: relative;
}

.p-productsSingle__contact:before,
.p-productsSingle__contact:after {
  background: url(../images/top/contact_bg.svg) no-repeat top center/100% 100%;
  content: "";
  display: block;
  height: 565px;
  position: absolute;
  transform: translateX(-50%);
  width: 1131px;
  z-index: -1;
}

.p-productsSingle__contact:before {
  left: calc(50% - 855px);
  top: 80px;
}

.p-productsSingle__contact:after {
  left: calc(50% + 560px);
  top: 740px;
}

.p-productsSingle-contact__inner {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  margin-inline: auto;
  max-width: 1280px;
  padding: 100px 0;
  width: calc(100% - 40px);
}

.p-productsSingle__contact .c-contact-form-control:first-child {
  display: none;
}

.p-productsSingle-contact__title-wrap {
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.p-productsSingle-contact__title-wrap .c-title__en {
  align-items: center;
  display: flex;
  gap: 20px;
}

.p-productsSingle-contact__title-wrap .c-title__ja {
  font-size: 20px;
  margin-top: 5px;
  text-align: center;
}

.p-productsSingle-contact__title-icon {
  background: #E95504;
  border-radius: 100vmax;
  display: grid;
  height: 64px;
  place-items: center;
  width: 64px;
}

.p-productsSingle-contact__form-wrap {
  margin: 40px auto 0;
  max-width: 1100px;
  padding-inline: 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.p-productsSingle__related {
  background: #F1F2F3;
  left: 50%;
  padding-bottom: 125px;
  padding-top: 120px;
  position: relative;
  transform: translateX(-50%);
  width: 100vw;
}

.p-productsSingle-related__head {
  border: 1px solid #91A6B4;
  height: 100%;
  margin-inline: auto;
  max-width: 930px;
  position: relative;
  text-align: center;
  width: 100%;
}

.p-productsSingle-related__head:before,
.p-productsSingle-related__head:after {
  background: #F1F2F3;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 99.5%;
  z-index: 1;
}

.p-productsSingle-related__head:before {
  top: -1px;
}

.p-productsSingle-related__title-wrap {
  background: #F1F2F3;
  display: grid;
  height: -moz-max-content;
  height: max-content;
  left: 50%;
  padding-block: 13px;
  place-items: center;
  position: relative;
  transform: translateX(-50%);
  width: 99.5%;
}

.p-productsSingle-related__title {
  font-size: clamp(1.063rem, 0.848rem + 0.45vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.45;
}

.p-productsSingle-related__title span {
  color: #F36215;
}

.p-productsSingle-related__body {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 80px;
}

.p-productsSingle-related__article {
  position: relative;
}

.p-productsSingle-related__image {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(28, 77, 99, 0.1);
  left: 50%;
  max-width: 462px;
  overflow: hidden;
  position: relative;
  transform: translateX(-50%);
  transition: 0.3s;
  width: 93%;
  z-index: 1;
}

.p-productsSingle-related__image img {
  height: auto;
}

.p-productsSingle-related__contents {
  background: #FFF;
  border-radius: 8px;
  color: #333;
  max-width: 511px;
  margin-inline: auto;
  padding: 60px 40px 30px;
  position: relative;
  top: -35px;
  width: 100%;
}

.p-productsSingle-related__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.p-productsSingle-related__explanation {
  letter-spacing: 0.8px;
  line-height: 1.7;
  padding-top: 2px;
}

.p-productsSingle-related__btn {
  background: #91A6B4;
  border: 1px solid transparent;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-top: 22px;
  padding: 12px 12px 12px 24px;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}

.p-productsSingle-related__btn-icon {
  background: #FFF;
  border-radius: 100vmax;
  display: grid;
  height: 24px;
  place-items: center;
  transition: 0.3s;
  width: 24px;
}

@media screen and (max-width: 767px) {
  .p-productsSingle__container {
    top: 0;
  }
  .p-productsSingle__inner {
    max-width: 100%;
    width: calc(100% - 32px);
  }
  .p-productsSingle__thumbnail {
    border-radius: 0px;
  }
  .p-productsSingle__box-wrap {
    max-width: 100%;
    top: -20px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-productsSingle__box {
    max-width: 460px;
    margin-inline: auto;
    padding: 22px 20px;
  }
  .p-productsSingle__box-btn-wrap {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .p-productsSingle__box-btn {
    justify-content: flex-start;
    padding: 15px;
  }
  .p-productsSingle__box-btn-icon {
    flex-shrink: 0;
    height: 32px;
    width: 32px;
  }
  .p-productsSingle__box-btn--download .p-productsSingle__box-btn-icon svg {
    height: 16px;
    width: 16px;
  }
  .p-productsSingle__box-btn--contact .p-productsSingle__box-btn-icon svg {
    height: 20px;
    width: 22px;
  }
  .p-productsSingle__box-btn-text {
    padding-right: 25px;
    text-align: center;
    width: 100%;
  }
  .p-productsSingle__thumbnail {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
  }
  .p-productsSingle__introduction {
    font-size: 14px;
    letter-spacing: 0.8px;
    margin-top: 65px;
  }
  .p-productsSingle__contents {
    margin-top: 45px;
    padding-bottom: 100px;
  }
  .p-productsSingle__contact {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }
  .p-productsSingle__contact:before,
  .p-productsSingle__contact:after {
    height: 283px;
    width: 566px;
  }
  .p-productsSingle__contact:before {
    left: calc(50% - 305px);
    top: 45px;
  }
  .p-productsSingle__contact:after {
    left: calc(50% + 225px);
    top: 970px;
  }
  .p-productsSingle-contact__inner {
    border-top: none;
    max-width: 100%;
    padding: 78px 0;
  }
  .p-productsSingle-contact__form-wrap {
    max-width: 535px;
    padding-inline: 0;
  }
  .p-productsSingle-contact__title-wrap .c-title {
    line-height: 1.7;
  }
  .p-productsSingle-contact__title-wrap .c-title__en {
    gap: 8px;
    font-size: 28px;
    letter-spacing: 2px;
  }
  .p-productsSingle-contact__title-wrap .c-title__ja {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .p-productsSingle-contact__title-icon {
    height: 48px;
    width: 48px;
  }
  .p-productsSingle-contact__title-icon svg {
    width: 30px;
  }
  .p-productsSingle__related {
    padding-bottom: 65px;
    padding-top: 80px;
  }
  .p-productsSingle-related__inner {
    width: calc(100% - 30px);
  }
  .p-productsSingle-related__body {
    flex-direction: column;
    gap: 22px;
    margin-top: 50px;
  }
  .p-productsSingle-related__title-wrap {
    padding: 0 20px;
    width: 98.5%;
  }
  .p-productsSingle-related__title {
    font-size: 16px;
  }
  .p-productsSingle-related__image {
    width: 91%;
  }
  .p-productsSingle-related__contents {
    padding: 35px 24px 25px;
    top: -15px;
  }
  .p-productsSingle-related__name {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .p-productsSingle-related__explanation {
    font-size: 14px;
    padding-top: 10px;
  }
  .p-productsSingle-related__btn {
    margin-top: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productsSingle__box-btn--download:hover {
    border-color: #0165C2;
    color: #0165C2;
  }
  .p-productsSingle__box-btn--download:hover .p-productsSingle__box-btn-icon {
    background: #0165C2;
  }
  .p-productsSingle__box-btn--download:hover .p-productsSingle__box-btn-icon svg path {
    fill: #FFF;
  }
  .p-productsSingle__box-btn--contact:hover {
    background: #FFF;
    border-color: #0165C2;
    color: #0165C2;
  }
  .p-productsSingle__box-btn--contact:hover .p-productsSingle__box-btn-icon {
    background: #0165C2;
  }
  .p-productsSingle__box-btn--contact:hover .p-productsSingle__box-btn-icon svg path {
    fill: #FFF;
  }
  .p-productsSingle-related__btn:hover {
    background: #FFF;
    border: 1px solid #91A6B4;
    color: #91A6B4;
  }
  .p-productsSingle-related__btn:hover .p-productsSingle-related__btn-icon {
    background: #91A6B4;
  }
  .p-productsSingle-related__btn:hover .p-productsSingle-related__btn-icon path {
    fill: #fff;
  }
}
.p-service__inner.l-inner {
  max-width: 1280px;
}

.p-service__title {
  color: #ADC0CC;
  writing-mode: vertical-rl;
}

.p-service__title-ja {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.p-service__title-ja span {
  text-orientation: sideways;
}

.p-service__title-en {
  font-family: "Albert Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.7px;
  line-height: 1;
}

.p-service__link-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 43px;
  justify-content: space-between;
  padding-block: 64px;
}

.p-service__link-row:first-child {
  padding-top: 65px;
}

.p-service__link-row:last-child {
  border-bottom: none;
  padding-bottom: 175px;
}

.p-service__title-wrap {
  flex-shrink: 0;
  width: 70px;
}

.p-service__link-wrap {
  max-width: 1131px;
  width: 100%;
}

.p-service__link-list {
  align-items: center;
  display: grid;
  flex-wrap: wrap;
  gap: 1.2vw;
  grid-template-columns: repeat(3, 1fr);
}

.p-service__link-bottom {
  background: #F3F3F3;
  margin-inline: auto;
}

@media screen and (max-width: 1160px) {
  .p-service__link-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-service__inner.l-inner {
    max-width: 100%;
    width: 100%;
  }
  .p-service__title-wrap {
    max-width: 50px;
    width: 100%;
  }
  .p-service__title-wrap .c-title__en span {
    padding-inline: 10px;
  }
  .p-service__link-row {
    gap: 20px;
    padding-bottom: 30px;
    padding-top: 40px;
  }
  .p-service__link-row:first-child {
    padding-bottom: 28px;
    padding-top: 40px;
  }
  .p-service__link-row:last-child {
    padding-bottom: 70px;
  }
  .p-service__link-wrap {
    max-width: none;
    padding-right: 20px;
  }
  .p-service__link-list {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  .p-service__link-list:has(> .p-service__link-item:nth-child(odd):last-child):after {
    content: "";
    display: block;
    height: 212px;
    width: 293px;
  }
  .p-service__link-list:has(> .p-service__link-item:nth-child(odd):last-child):after {
    display: none;
  }
  .p-service__link-image {
    width: 88%;
  }
  .p-service__link-image img {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-service__link:hover .p-service__link-image {
    box-shadow: none;
  }
}
.u-alternative {
  block-size: 4px !important;
  contain: strict !important;
  display: block !important;
  inline-size: 4px !important;
  inset-block-start: 0 !important;
  inset-inline-start: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
}

.u-hidden__pc {
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .u-hidden__pc {
    display: none;
  }
}

.u-hidden__sp {
  display: none;
}
@media screen and (min-width: 767px) {
  .u-hidden__sp {
    display: inline-block;
  }
}