@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

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

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

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* --------------------------------------*
    * layout
*-------------------------------------- */
:root {
  --color-base_txt: #222;
  --color-blue: #222b61;
  --color-base_blue: #384599;
  --color-purple: #7a72b3;
}

.Header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: max(3.68rem, 7.6666666667vw);
  background-color: white;
  transition: height 0.5s 0s ease;
}
@media screen and (max-width:767px) {
  .Header {
    max-width: 100vw;
    height: 18vw;
  }
}
.Header.is-scrolled {
  height: max(2.56rem, 5.3333333333vw);
}
@media screen and (max-width:767px) {
  .Header.is-scrolled {
    height: 18vw;
  }
}
.Header.is-scrolled .Header__logo {
  width: max(6.336rem, 13.2vw);
  margin-block-start: 0;
}
@media screen and (max-width:767px) {
  .Header.is-scrolled .Header__logo {
    width: 45vw;
  }
}
.Header.is-scrolled .Header__nav {
  padding-block: max(0.256rem, 0.5333333333vw);
}
.Header.is-scrolled .Header__contact-link {
  margin-block-end: 0;
}

.Header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.Header__logo {
  width: max(9.344rem, 19.4666666667vw);
  margin-block-start: max(0.576rem, 1.2vw);
  margin-inline-start: max(1.344rem, 2.8vw);
  transition: all 0.5s 0s ease;
}
@media screen and (max-width:767px) {
  .Header__logo {
    width: 45vw;
    margin-block-start: 0;
    margin-inline-start: 3.5vw;
  }
}

.Header__nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width:767px) {
  .Header__nav-container {
    order: 1;
    margin-inline-start: auto;
  }
}

.Header__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: max(14.56rem, 30.3333333333vw);
  height: 100%;
  padding-block: max(0.448rem, 0.9333333333vw);
  padding-inline: max(0.64rem, 1.3333333333vw);
  transition: padding-block 0.5s 0s ease;
}
@media screen and (max-width:767px) {
  .Header__nav {
    padding-block-start: 12.5vw;
  }
}

.Header__nav-link {
  position: relative;
  display: grid;
  place-items: center;
  font-size: max(0.48rem, 1vw);
  font-weight: bold;
  color: #000;
  text-align: center;
  letter-spacing: 0.03em;
  border-right: max(0.032rem, 0.0666666667vw) solid #ccc;
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ccc;
  transition: all 0.3s 0s ease;
}
@media screen and (max-width:767px) {
  .Header__nav-link {
    display: block;
    text-align: left;
  }
  .Header__nav-link::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 5vw;
    height: 2vw;
    content: "";
    background-image: url("../img/button-arrow.svg");
    background-size: cover;
    transform: translateY(-50%);
  }
}
.Header__nav-link:hover {
  color: var(--color-base_blue);
  background-color: #f1f3ff;
}
.Header__nav-link.border-right-none {
  border-right: none;
}
.Header__nav-link.border-bottom-none {
  border-bottom: none;
}
@media screen and (max-width:767px) {
  .Header__nav-link.border-bottom-none {
    border-bottom: 0.25vw solid #ccc;
  }
}
@media screen and (max-width:767px) {
  .Header__nav-link {
    width: 80%;
    padding-block: 5vw;
    margin-inline: auto;
    font-size: 4vw;
    color: var(--color-base_txt);
    border-right: none;
    border-bottom: 0.25vw solid #ccc;
  }
}

.Header__contact {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: max(8.192rem, 17.0666666667vw);
  height: 100%;
  background-color: var(--color-base_blue);
  transition: background-color 0.3s 0s ease;
}
.Header__contact:hover {
  background-color: var(--color-purple);
}
@media screen and (max-width:767px) {
  .Header__contact {
    width: 18vw;
    margin-inline-end: 0.25vw;
  }
}

.Header__contact-link {
  display: flex;
  flex-direction: column;
  gap: max(0.256rem, 0.5333333333vw);
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-block-end: max(0.32rem, 0.6666666667vw);
  transition: 0.3s;
}
@media screen and (max-width:767px) {
  .Header__contact-link {
    margin-block-end: 0;
  }
}

.Header__contact-icon {
  width: max(0.832rem, 1.7333333333vw);
}
@media screen and (max-width:767px) {
  .Header__contact-icon {
    width: 6.5vw;
  }
}

.Header__contact-text {
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: bold;
  color: white;
}
@media screen and (max-width:767px) {
  .Header__contact-text {
    display: none;
  }
}

.Footer {
  position: relative;
  padding-block: max(2.24rem, 4.6666666667vw) max(1.472rem, 3.0666666667vw);
  background-color: #282828;
}
@media screen and (max-width:767px) {
  .Footer {
    padding-block-start: 15vw;
    overflow: hidden;
  }
}

.Footer__deco {
  position: absolute;
  top: calc(-1.4vw);
  right: 4%;
  width: max(7.84rem, 16.3333333333vw);
}
@media screen and (max-width:767px) {
  .Footer__deco {
    top: 10%;
    right: 3%;
    width: 43vw;
  }
}

.Footer__inner {
  width: 100%;
  max-width: max(57.6rem, 120vw);
  padding-inline: max(4.8rem, 10vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .Footer__inner {
    max-width: 100%;
    padding-inline: 6vw;
  }
}

.Footer__content {
  display: flex;
  gap: max(8.96rem, 18.6666666667vw);
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width:767px) {
  .Footer__content {
    flex-direction: column;
  }
}

.Footer__information {
  width: max(10.112rem, 21.0666666667vw);
}
@media screen and (max-width:767px) {
  .Footer__information {
    width: 79vw;
    margin-inline-end: auto;
  }
}

.Footer__logo {
  width: 100%;
}

.Footer__address {
  margin-block-start: max(0.96rem, 2vw);
  font-size: max(14px, 0.9333333333vw);
  font-weight: 500;
  line-height: 1.8;
  color: white;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Footer__address {
    margin-block-start: 7.75vw;
    font-size: 3.5vw;
  }
}

.Footer__nav {
  display: flex;
  gap: max(2.368rem, 4.9333333333vw);
  align-items: center;
  justify-content: center;
  margin-block-start: max(1.792rem, 3.7333333333vw);
  margin-inline-end: auto;
}
@media screen and (max-width:767px) {
  .Footer__nav {
    display: none;
  }
}

.Footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: max(0.704rem, 1.4666666667vw);
  align-items: flex-start;
  justify-content: center;
}

.Footer__nav-link {
  font-size: max(14px, 0.9333333333vw);
  color: white;
  letter-spacing: 0.03em;
}
.Footer__nav-link.--flex {
  display: flex;
  gap: max(0.16rem, 0.3333333333vw);
  align-items: center;
  justify-content: center;
  line-height: 2.5;
}
.Footer__nav-link::before {
  content: "ー ";
}
.Footer__nav-link img {
  width: max(0.32rem, 0.6666666667vw);
  margin-block-end: max(0.032rem, 0.0666666667vw);
}

.Footer__copy {
  width: 100%;
  margin-block-start: max(2.048rem, 4.2666666667vw);
  font-size: max(0.384rem, 0.8vw);
  color: white;
  text-align: center;
}
@media screen and (max-width:767px) {
  .Footer__copy {
    margin-block-start: 21vw;
    font-size: 3vw;
  }
}

/* --------------------------------------*
    * component
*-------------------------------------- */
.Button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: max(8.064rem, 16.8vw);
  height: max(1.92rem, 4vw);
  margin-inline: auto;
  background-color: white;
  border: max(0.032rem, 0.0666666667vw) solid var(--color-base_txt);
  transition: all 0.3s 0s ease;
}
.Button:hover {
  background-color: var(--color-base_blue);
}
.Button:hover .Button__link {
  color: white;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .Button {
    max-width: max(9.6rem, 20vw);
    height: 60px;
  }
}
@media screen and (max-width:767px) {
  .Button {
    max-width: 63vw;
    height: 15vw;
    border: 0.25vw solid var(--color-base_txt);
  }
}
.Button.align-center {
  margin-inline: auto;
}

.News .Button:hover {
  background-color: white;
}
.News .Button:hover .Button__link {
  color: var(--color-base_blue);
}
.News .Button:hover .svg_color {
  color: var(--color-base_blue);
}

.svg_color {
  fill: currentcolor;
  transition: fill 0.3s ease;
}

.svg_color-mail {
  fill: currentcolor;
  transition: fill 0.3s ease;
}

.Contact .Button:hover {
  background-color: white;
}
.Contact .Button:hover .Button__link {
  color: var(--color-base_blue);
}
.Contact .Button:hover .svg_color-mail {
  fill: var(--color-base_blue);
}

.Button__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-inline: max(0.576rem, 1.2vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
  color: var(--color-base_txt);
  letter-spacing: 0.03em;
  transition: color 0.3s 0s ease;
}
@media screen and (max-width:767px) {
  .Button__link {
    gap: 3.5vw;
    padding-inline: 4vw;
    font-size: 4vw;
  }
}
.Button__link svg {
  width: max(1.024rem, 2.1333333333vw);
}
@media screen and (max-width:767px) {
  .Button__link svg {
    width: 8vw;
  }
}

.Button__arrow {
  width: max(0.48rem, 1vw);
}

.micromodal {
  display: none;
}

.micromodal.is-open {
  display: block;
}

.micromodal__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: max(2.88rem, 6vw) max(1.6rem, 3.3333333333vw);
  background: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width:767px) {
  .micromodal__overlay {
    padding-block-start: 18.75vw;
    padding-inline: 6vw;
  }
}

.micromodal__container {
  position: relative;
  box-sizing: border-box;
  max-width: max(25.6rem, 53.3333333333vw);
  max-height: 100%;
  padding: max(1.28rem, 2.6666666667vw);
  overflow-y: auto;
  background-color: #fff;
}
@media screen and (max-width:767px) {
  .micromodal__container {
    width: 100%;
    max-width: 100%;
    padding-block-start: 7vw;
    padding-inline: 6vw;
  }
}

.Close {
  position: absolute;
  top: max(0.96rem, 2vw);
  right: max(11.2rem, 23.3333333333vw);
  width: max(1.344rem, 2.8vw);
  height: max(1.344rem, 2.8vw);
  content: "";
  background-image: url("../img/icon_close-white.svg");
  background-size: cover;
}
@media screen and (max-width:767px) {
  .Close {
    top: 5vw;
    right: 6vw;
    width: 10.5vw;
    height: 10.5vw;
  }
}

.micromodal[aria-hidden=false] .micromodal__overlay {
  animation: microModalFadeIn 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal[aria-hidden=false] .micromodal__container {
  animation: microModalSlideIn 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal .micromodal__container,
.micromodal .micromodal__overlay {
  will-change: transform;
}

@keyframes microModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes microModalSlideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
.splide.main-carousel {
  height: max(14.56rem, 30.3333333333vw);
}
@media screen and (max-width:767px) {
  .splide.main-carousel {
    height: 48vw;
  }
}
.splide.main-carousel .splide__track {
  height: 100%;
}

.micromodal {
  /* 選択されていないサムネイルは薄くする */
}
.micromodal .splide__slide {
  border: none !important;
  opacity: 0.6;
}
.micromodal {
  /* 選択されているサムネイルだけ透過しない */
}
.micromodal .splide__slide.is-active {
  border: none !important;
  opacity: 1;
}

/* 画像サイズ調整 */
.splide__slide img {
  width: 100%;
  height: auto;
}

/* スライダーの幅 */
.thumbnail-carousel {
  margin-block-start: max(0.448rem, 0.9333333333vw);
}
@media screen and (max-width:767px) {
  .thumbnail-carousel {
    margin-block-start: 3.5vw;
  }
}
@media screen and (max-width:767px) {
  .thumbnail-carousel .splide__list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5vw;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
  }
}
.thumbnail-carousel .splide__slide {
  width: max(3.2rem, 6.6666666667vw) !important;
  height: max(3.2rem, 6.6666666667vw);
  margin-inline-end: max(0.448rem, 0.9333333333vw) !important;
}
@media screen and (max-width:767px) {
  .thumbnail-carousel .splide__slide {
    width: 23vw !important;
    height: 23vw !important;
    margin-inline-end: 0 !important;
  }
}
.thumbnail-carousel .splide__slide img {
  height: 100%;
  object-fit: cover;
}

/* works-detail.css */
.WorksDetail {
  margin-block-start: max(1.856rem, 3.8666666667vw);
}
@media screen and (max-width:767px) {
  .WorksDetail {
    margin-block-start: 10vw;
  }
}

.WorksDetail__title {
  margin-block-end: max(0.768rem, 1.6vw);
  font-size: max(0.896rem, 1.8666666667vw);
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .WorksDetail__title {
    margin-block-end: 4vw;
    font-size: 7vw;
  }
}

.WorksDetail__row {
  display: flex;
  padding-block: max(0.448rem, 0.9333333333vw);
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ddd;
}
@media screen and (max-width:767px) {
  .WorksDetail__row {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 3.5vw 2.5vw;
  }
}

.WorksDetail__head {
  flex-shrink: 0;
  width: max(5.28rem, 11vw);
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .WorksDetail__head {
    font-size: 4vw;
  }
}

.WorksDetail__data {
  flex: 1;
  font-size: max(0.512rem, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .WorksDetail__data {
    margin-inline-start: 0;
    font-size: 4vw;
  }
}

.Modal__close {
  display: flex;
  gap: max(0.256rem, 0.5333333333vw);
  align-items: center;
  justify-content: center;
  margin-block-start: max(1.984rem, 4.1333333333vw);
  font-size: max(0.512rem, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .Modal__close {
    gap: 2vw;
    margin-block-start: 11.5vw;
    font-size: 4vw;
  }
}
.Modal__close img {
  width: max(0.384rem, 0.8vw);
  margin-block-start: max(0.064rem, 0.1333333333vw);
}
@media screen and (max-width:767px) {
  .Modal__close img {
    width: 3vw;
  }
}

/* =========================
   お問い合わせフォーム
========================= */
.ContactForm {
  width: 100%;
  margin: 0 auto;
  margin-block-start: max(0.32rem, 0.6666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm {
    padding-inline: 0;
  }
}

.PageForm--contact .ContactForm {
  margin-block-start: max(1.088rem, 2.2666666667vw);
}

.ContactForm__row {
  display: flex;
  gap: 0 max(0.768rem, 1.6vw);
  align-items: center;
  padding-block: max(0.768rem, 1.6vw);
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ccc;
  flex-wrap: wrap;
}
.ContactForm__row .required-error {
  width: 100%;
  font-size: max(14px, 0.9333333333vw);
  color: #f44242;
  font-weight: normal;
}
.ContactForm__row.paddig-bottom {
  padding-block-end: max(0.96rem, 2vw);
}
.ContactForm__row.paddig-bottom .ContactForm__label {
  margin-block-start: max(0.448rem, 0.9333333333vw);
}
.ContactForm__row.flex-start {
  align-items: flex-start;
}
@media screen and (max-width:767px) {
  .ContactForm__row {
    gap: 1.25vw;
    border-bottom: none;
  }
}
.ContactForm__row--address {
  align-items: flex-start;
}
.ContactForm__row--address label span {
  display: block;
  margin-block-start: max(0.384rem, 0.8vw);
  margin-inline-start: 0;
  font-size: max(13px, 0.8666666667vw);
  line-height: 1.8;
  color: #d55b5b;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .ContactForm__row--address label span {
    font-size: 3.25vw;
  }
}

.PageForm--input .ContactForm__row.flex-start {
  padding-block: max(1.024rem, 2.1333333333vw);
}
.PageForm--input .ContactForm__row.flex-start label {
  margin-block-start: max(0.32rem, 0.6666666667vw);
}

.ContactForm__note {
  margin-block-start: max(1.152rem, 2.4vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .ContactForm__note {
    margin-block-start: 9vw;
    font-size: 4vw;
  }
}

.ContactForm__label {
  width: max(5.12rem, 10.6666666667vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ContactForm__label {
    width: 150px;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__label {
    font-size: 4vw;
  }
}

.ContactForm__label span {
  color: #f44242;
}

.ContactForm__field {
  flex: 1;
}

.ContactForm__radio {
  display: flex;
  gap: max(1.216rem, 2.5333333333vw);
  align-items: center;
  justify-content: center;
  padding-inline-start: max(0.16rem, 0.3333333333vw);
}
@media screen and (max-width:767px) {
  .ContactForm__radio {
    justify-content: flex-start;
    width: 100%;
    margin-block-start: 2.5vw;
  }
}
.ContactForm__radio label {
  display: flex;
  gap: max(0.224rem, 0.4666666667vw);
  align-items: center;
  justify-content: center;
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__radio label {
    font-size: 4vw;
  }
}
.ContactForm__radio input {
  width: max(0.608rem, 1.2666666667vw);
  height: max(0.608rem, 1.2666666667vw);
  margin-block-end: max(0.128rem, 0.2666666667vw);
  margin-inline: 0;
}

.ContactForm__address {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: max(0.512rem, 1.0666666667vw);
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .ContactForm__address {
    gap: 5vw;
    width: 100%;
  }
}
.ContactForm__address select {
  -webkit-appearance: none;
          appearance: none;
  background: none;
}
.ContactForm__address .ContactForm__address-wrap select {
  background-image: url("../img/select_icon.png");
  background-repeat: no-repeat;
  background-position: right max(0.256rem, 0.5333333333vw) center;
  background-size: max(0.352rem, 0.7333333333vw);
}
@media screen and (max-width:767px) {
  .ContactForm__address .ContactForm__address-wrap select {
    background-position: right 2vw center;
    background-size: 2.75vw;
  }
}

.ContactForm input[type=text],
.ContactForm input[type=email],
.ContactForm textarea,
.ContactForm select {
  box-sizing: border-box;
  width: max(10.432rem, 21.7333333333vw);
  height: max(1.6rem, 3.3333333333vw);
  padding-block: max(0.32rem, 0.6666666667vw);
  padding-inline: max(0.448rem, 0.9333333333vw);
  font-size: max(15px, 1.0666666667vw);
  border: max(0.032rem, 0.0666666667vw) solid #ddd;
}
.ContactForm input[type=text]:focus,
.ContactForm input[type=email]:focus,
.ContactForm textarea:focus,
.ContactForm select:focus {
  background-color: #f1f3ff;
  border-color: #484b9c;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ContactForm input[type=text],
  .ContactForm input[type=email],
  .ContactForm textarea,
  .ContactForm select {
    width: 250px;
    height: 40px;
  }
}
@media screen and (max-width:767px) {
  .ContactForm input[type=text],
  .ContactForm input[type=email],
  .ContactForm textarea,
  .ContactForm select {
    width: 100%;
    height: 12.5vw;
    padding-inline: 3.5vw;
    font-size: 4vw;
  }
}

.ContactForm input::placeholder,
.ContactForm textarea::placeholder {
  color: #bbb;
}

.ContactForm textarea {
  flex: 1;
  height: max(7.872rem, 16.4vw);
  resize: vertical;
}

/* 住所系 */
.ContactForm__zip-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ContactForm__zip-wrap input[type=text] {
  width: max(4.16rem, 8.6666666667vw);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ContactForm__zip-wrap input[type=text] {
    width: 120px;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__zip-wrap input[type=text] {
    width: 100%;
  }
}

.ContactForm__zip-text {
  margin-inline-end: max(0.32rem, 0.6666666667vw);
  font-size: max(0.512rem, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__zip-text {
    font-size: 4vw;
  }
}

.ContactForm__zip {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.ContactForm__zip input {
  max-width: 160px;
}

.ContactForm__address select {
  flex: none;
  width: max(7.808rem, 16.2666666667vw);
  margin-right: auto;
  margin-left: max(3.136rem, 6.5333333333vw);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ContactForm__address select {
    width: 170px;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__address select {
    width: 100%;
    margin-left: 0;
  }
}

.ContactForm__address-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max(15.616rem, 32.5333333333vw);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ContactForm__address-wrap {
    width: 90%;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__address-wrap {
    flex-direction: column;
    gap: 2.5vw;
    align-items: flex-start;
    width: 100%;
  }
}
.ContactForm__address-wrap input[type=text] {
  flex: none;
  width: max(10.432rem, 21.7333333333vw);
}
@media screen and (max-width:767px) {
  .ContactForm__address-wrap input[type=text] {
    width: 100%;
  }
}

.ContactForm__address-text {
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__address-text {
    font-size: 4vw;
  }
}

/* 生年月日 */
.ContactForm__birthday {
  display: flex;
  gap: max(0.512rem, 1.0666666667vw);
  align-items: center;
}
.ContactForm__birthday select {
  -webkit-appearance: none;
          appearance: none;
  background-image: url("../img/select_icon.png");
  background-repeat: no-repeat;
  background-position: right max(0.256rem, 0.5333333333vw) bottom 38%;
  background-size: max(0.352rem, 0.7333333333vw);
}
@media screen and (max-width:767px) {
  .ContactForm__birthday select {
    background-size: 2.75vw;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__birthday {
    flex-wrap: wrap;
    width: 100%;
  }
}

.ContactForm__birthday-wrap {
  display: flex;
  gap: max(0.576rem, 1.2vw);
  align-items: center;
  justify-content: center;
}
.ContactForm__birthday-wrap p {
  margin-block-start: max(0.64rem, 1.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__birthday-wrap p {
    font-size: 4vw;
  }
}

.ContactForm__birthday select {
  width: max(3.2rem, 6.6666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__birthday select {
    width: 25vw;
  }
}
.ContactForm__birthday select.birth_month, .ContactForm__birthday select.birth_day {
  width: max(2.24rem, 4.6666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__birthday select.birth_month, .ContactForm__birthday select.birth_day {
    width: 17.5vw;
  }
}

.ContactForm__birthday select.birth_month {
  width: max(2.24rem, 4.6666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__birthday select.birth_month {
    width: 17.5vw;
  }
}

/* 個人情報同意 */
.ContactForm__privacy {
  padding-block-start: max(1.152rem, 2.4vw);
  margin-top: max(0.96rem, 2vw);
  line-height: 1.8;
}

.ContactForm__privacy-text {
  max-height: max(9.6rem, 20vw);
  padding-block-start: max(1.152rem, 2.4vw);
  padding-inline: max(0.896rem, 1.8666666667vw) max(1.6rem, 3.3333333333vw);
  overflow-y: auto;
  line-height: 1.8;
  letter-spacing: 0.03em;
  background: #f9f9f9;
  border: max(0.032rem, 0.0666666667vw) solid #ccc;
}
@media screen and (max-width:767px) {
  .ContactForm__privacy-text {
    max-height: 75vw;
  }
}
.ContactForm__privacy-text h4 {
  font-size: max(0.875rem, 1.0666666667vw);
  font-weight: 700;
  margin-block-end: max(0.64rem, 1.3333333333vw);
}
@media screen and (max-width:767px) {
  .ContactForm__privacy-text h4 {
    font-size: 4vw;
    margin-block-end: 7.5vw;
  }
}
.ContactForm__privacy-text h5 {
  font-size: max(0.875rem, 1.0666666667vw);
  font-weight: normal;
  margin-block-start: max(0.96rem, 2vw);
}
@media screen and (max-width:767px) {
  .ContactForm__privacy-text h5 {
    font-size: 4vw;
    margin-block-start: 7.5vw;
  }
}
.ContactForm__privacy-text p {
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__privacy-text p {
    font-size: 4vw;
  }
}
.ContactForm__privacy-text p span {
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .ContactForm__privacy-text p span {
    font-size: 4vw;
  }
}

.ContactForm__privacy-check {
  margin-top: 16px;
}

.ContactForm__privacy-check label {
  cursor: pointer;
}

.ContactForm__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline-end: max(1.344rem, 2.8vw);
  margin-block-start: max(1.088rem, 2.2666666667vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
  flex-wrap: wrap;
}
.ContactForm__agree .required-error {
  width: max(5.44rem, 11.3333333333vw);
  font-size: max(14px, 0.9333333333vw);
  color: #f44242;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width:767px) {
  .ContactForm__agree .required-error {
    margin-block-start: 1.25vw;
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__agree {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-block-start: 5vw;
    font-size: 4vw;
  }
}
.ContactForm__agree input {
  width: max(0.832rem, 1.7333333333vw);
  height: max(0.832rem, 1.7333333333vw);
  margin-inline-end: max(0.32rem, 0.6666666667vw);
}
@media screen and (max-width:767px) {
  .ContactForm__agree input {
    width: 5vw;
    height: 5vw;
    margin-block-end: 1.25vw;
  }
}

/* 送信ボタン */
.ContactForm__submit {
  margin-inline: auto;
  margin-top: max(2.56rem, 5.3333333333vw);
}

.PageForm--confirm .ContactForm__submit {
  margin-block-start: max(2.24rem, 4.6666666667vw);
}

.ContactForm__submit button {
  position: relative;
  display: grid;
  place-items: center;
  width: max(10.176rem, 21.2vw);
  height: max(2.496rem, 5.2vw);
  padding-inline: max(0.768rem, 1.6vw);
  margin-inline: auto;
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: var(--color-base_blue);
  border: none;
  transition: opacity 0.3s;
}
.ContactForm__submit button:hover {
  background-color: var(--color-purple);
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .ContactForm__submit button {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__submit button {
    width: 100%;
    height: 15vw;
    font-size: 4vw;
  }
}
.ContactForm__submit button::after {
  position: absolute;
  right: 10%;
  width: max(0.48rem, 1vw);
  height: max(0.192rem, 0.4vw);
  content: "";
  background-image: url("../img/button-arrow_white.png");
  background-size: cover;
}
@media screen and (max-width:767px) {
  .ContactForm__submit button::after {
    width: 3.75vw;
    height: 1.5vw;
  }
}

.ContactForm__submit button:hover {
  opacity: 0.8;
}

/* =========================
   SP
========================= */
@media (max-width: 767px) {
  .ContactForm__row {
    flex-direction: column;
  }
  .ContactForm__label {
    width: 100%;
  }
}
.ContactConfirm {
  width: 100%;
  margin: 0 auto;
  margin-block-start: max(0.32rem, 0.6666666667vw);
  font-size: max(0.512rem, 1.0666666667vw);
  line-height: 1.8;
}

.PageForm--confirm .ContactConfirm {
  margin-block-start: max(0.704rem, 1.4666666667vw);
}

.ContactConfirm__note {
  margin-bottom: 24px;
  font-size: max(0.512rem, 1.0666666667vw);
}

.PageForm--confirm .PageForm__table-container:first-of-type {
  margin-block-start: max(1.6rem, 3.3333333333vw);
}

.PageForm--input .PageForm__table-container:first-of-type {
  padding-block-end: max(5.12rem, 10.6666666667vw);
}

.PageForm--confirm .PageForm__table-container {
  padding-block-end: max(3.712rem, 7.7333333333vw);
}

.ContactConfirm__row {
  display: grid;
  grid-template-columns: max(5.952rem, 12.4vw) 1fr;
  padding-block: max(1.088rem, 2.2666666667vw);
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ccc;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ContactConfirm__row {
    grid-template-columns: 170px 1fr;
  }
}
@media screen and (max-width:767px) {
  .ContactConfirm__row {
    grid-template-columns: 1fr;
    padding-block: 4.5vw;
  }
}
.ContactConfirm__row--address span {
  display: block;
  margin-block-start: max(0.384rem, 0.8vw);
  margin-inline-start: 0;
  font-size: max(13px, 0.8666666667vw);
  line-height: 1.8;
  color: #d55b5b;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .ContactConfirm__row--address span {
    font-size: 3.25vw;
  }
}

.PageForm--confirm .ContactConfirm__row {
  padding-block: max(1.152rem, 2.4vw) max(0.832rem, 1.7333333333vw);
}

.ContactConfirm__row dt {
  padding-inline: 0;
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .ContactConfirm__row dt {
    padding: 0;
    font-size: 4vw;
  }
}

.ContactConfirm__row dd {
  margin: 0;
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .ContactConfirm__row dd {
    padding: 0;
    font-size: 4vw;
    overflow-wrap: anywhere;
  }
}

.ContactConfirm__textarea {
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.03em;
}

.required {
  font-size: max(15px, 1.0666666667vw);
  color: #f44242;
}
@media screen and (max-width:767px) {
  .required {
    margin-left: 0;
    font-size: 4vw;
  }
}
.required.margin-left {
  margin-inline-start: max(0.16rem, 0.3333333333vw);
}

.PageContact__head .required {
  margin-left: 0;
}

.ContactForm__back {
  margin-block-start: max(1.728rem, 3.6vw);
  transition: 0.3s;
}
.ContactForm__back:hover {
  color: var(--color-base_blue);
}
.ContactForm__back:hover .ContactForm__back-link svg path {
  fill: var(--color-base_blue);
}

.ContactForm__back-link {
  display: flex;
  gap: max(0.48rem, 1vw);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: max(5.12rem, 10.6666666667vw);
  margin-inline: auto;
  font-size: max(15px, 1.0666666667vw);
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
.ContactForm__back-link svg {
  width: max(15px, 1vw);
}
@media screen and (max-width:767px) {
  .ContactForm__back-link svg {
    width: 3.75vw;
    margin-block-end: 0.75vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .ContactForm__back-link {
    max-width: 200px;
  }
}
@media screen and (max-width:767px) {
  .ContactForm__back-link {
    max-width: 100%;
    font-size: 4vw;
  }
}

.ContactForm__back-icon {
  width: max(0.48rem, 1vw);
  margin-block-end: max(0.064rem, 0.1333333333vw);
}
@media screen and (max-width:767px) {
  .ContactForm__back-icon {
    width: 3.75vw;
    margin-block-end: 0.75vw;
  }
}

.ContactForm__back-text {
  font-size: max(0.512rem, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.PageForm__container {
  padding-block-end: max(3.52rem, 7.3333333333vw);
}
.PageForm__container .Page__content {
  width: 100%;
  max-width: max(38.4rem, 80vw);
  padding-block: max(1.984rem, 4.1333333333vw) max(3.84rem, 8vw);
  padding-inline: max(3.52rem, 7.3333333333vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .PageForm__container .Page__content {
    max-width: 100%;
    padding-inline: 6vw;
  }
}

.PageForm--complete .PageForm__container .Page__content {
  padding-block-start: max(2.56rem, 5.3333333333vw);
}

.Complete__text {
  font-size: max(15px, 1.0666666667vw);
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Complete__text {
    font-size: 4vw;
  }
}
.Complete__text span {
  display: block;
  margin-block-end: max(0.96rem, 2vw);
  font-size: max(15px, 1.3333333333vw);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Complete__text span {
    font-size: 4.5vw;
  }
}

/* ハンバーガーメニュー */
@media screen and (max-width:767px) {
  .menu-right {
    position: fixed;
    top: 18vw;
    right: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100vh;
    background: white;
    opacity: 0;
    transform: translateX(100%);
    /* Y軸ではなくX軸を使う */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    /* スライド速度を0.6秒に設定 */
  }
}

#hamburger {
  display: none;
}
@media screen and (max-width:767px) {
  #hamburger {
    position: relative;
    z-index: 999;
    display: block;
    order: 2;
    width: 18vw;
    height: 100%;
    cursor: pointer;
    background-color: var(--color-purple);
  }
}

#hamburger span,
#hamburger::before,
#hamburger::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 6.25vw;
  height: 0.5vw;
  background-color: #333;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  /* 線のアニメーション */
}

#hamburger span {
  position: absolute;
  top: 9.25vw;
  display: block;
  background-color: white;
}

#hamburger::before {
  position: absolute;
  top: 7.5vw;
  display: block;
  content: "";
  background-color: white;
}

#hamburger::after {
  position: absolute;
  bottom: 6.5vw;
  display: block;
  content: "";
  background-color: white;
}

/* メニューが開いたときのクロススタイル */
.hamburger-active #hamburger span {
  opacity: 0;
}

.hamburger-active #hamburger::before {
  top: 52%;
  left: 32%;
  transform: rotate(45deg);
  /* 上の線を45度回転させてクロス */
}

.hamburger-active #hamburger::after {
  bottom: 45%;
  left: 32%;
  transform: rotate(-45deg);
  /* 下の線を-45度回転させてクロス */
}

.menu-right.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  /* 開閉両方に適用 */
}

.menu-right ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
}

.menu-right li {
  padding: 0;
  margin: 0;
}

.menu-right li span {
  font-size: 15px;
  color: #333;
}

.menu-right li a,
.menu-right li span {
  display: block;
  padding: 20px 0;
}

/* --------------------------------------*
    * project
*-------------------------------------- */
.Home .Section__title {
  font-family: Roboto, sans-serif;
}

.MainVisual {
  padding-block-start: max(6.88rem, 14.3333333333vw);
}
@media screen and (max-width:767px) {
  .MainVisual {
    padding-block-start: 33vw;
  }
}

.MainVisual__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width:767px) {
  .MainVisual__content {
    flex-direction: column;
    gap: 6vw;
  }
}

.MainVisual__subtitle {
  font-size: max(15px, 1.3333333333vw);
  font-weight: bold;
  color: var(--color-base_txt);
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .MainVisual__subtitle {
    font-size: 4vw;
  }
}

.MainVisual__title {
  width: 100%;
  max-width: fit-content;
  margin-block-start: max(0.64rem, 1.3333333333vw);
  font-family: Roboto, sans-serif;
  font-size: max(2.048rem, 4.2666666667vw);
  font-weight: bold;
  line-height: 1.3;
  color: #333;
  text-align: left;
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .MainVisual__title {
    margin-block-start: 4vw;
    font-size: 7.5vw;
    white-space: nowrap;
  }
}

.MainVisual__content-deco {
  width: max(7.84rem, 16.3333333333vw);
  margin-inline-end: calc(-4vw);
}
@media screen and (max-width:767px) {
  .MainVisual__content-deco {
    width: 28vw;
    margin-inline: auto -1.25vw;
  }
}

.MainVisual__bg-container {
  position: relative;
  z-index: -1;
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-block-start: calc(-35.2vw);
}
@media screen and (max-width:767px) {
  .MainVisual__bg-container {
    margin-block-start: -66.5vw;
  }
}

.Lead {
  padding-block-start: max(4.224rem, 8.8vw);
}

.Lead__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .Lead__content {
    flex-direction: column-reverse;
  }
}
.Lead__content .Button {
  margin-inline: 0 auto;
}
@media screen and (max-width:767px) {
  .Lead__content .Button {
    margin-inline: auto;
  }
}

.Lead__content-left {
  width: 50%;
}
@media screen and (max-width:767px) {
  .Lead__content-left {
    width: 100%;
    margin-block-start: -42vw;
  }
}

.Lead__title {
  font-size: max(1.344rem, 2.8vw);
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Lead__title {
    font-size: 7vw;
  }
}

.Lead__subtitle {
  display: block;
  margin-block-start: max(0.8rem, 1.6666666667vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-base_blue);
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .Lead__subtitle {
    margin-block-start: 1.5vw;
    margin-inline-start: 0.75vw;
    font-size: 4vw;
  }
}

.Lead__text {
  margin-block: max(1.536rem, 3.2vw) max(1.6rem, 3.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .Lead__text {
    margin-block: 11vw 13vw;
    font-size: 4vw;
    white-space: wrap;
  }
}

.Lead__content-right {
  z-index: -1;
  width: max(28.48rem, 59.3333333333vw);
  margin-block-start: calc(-14.2666666667vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width:767px) {
  .Lead__content-right {
    width: 82.5vw;
    margin-block-start: -33.5vw;
    margin-inline-start: 11.5vw;
    margin-right: 0;
  }
}

.Works {
  position: relative;
  margin-block-start: max(2.368rem, 4.9333333333vw);
}
@media screen and (max-width:767px) {
  .Works {
    overflow: hidden;
  }
}
@media screen and (max-width:767px) {
  .Works {
    padding-block-start: 20.5vw;
  }
}
.Works .Works__deco {
  position: absolute;
  top: -4%;
  left: -28%;
  z-index: -1;
  width: max(53.824rem, 112.1333333333vw);
}
@media screen and (max-width:767px) {
  .Works .Works__deco {
    top: 0%;
    left: -86%;
    width: 251.25vw;
    max-width: 251.25vw;
  }
}
.Works .Works__head {
  display: flex;
  gap: max(0.8rem, 1.6666666667vw);
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width:767px) {
  .Works .Works__head {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    margin-inline-start: 0.75vw;
  }
}
.Works .Works__title {
  font-size: max(1.664rem, 3.4666666667vw);
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-base_blue);
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .Works .Works__title {
    font-size: 10.5vw;
  }
}
.Works .Works__subtitle {
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Works .Works__subtitle {
    font-size: 4vw;
  }
}
.Works .Works__content {
  margin-block-start: max(1.344rem, 2.8vw);
}
@media screen and (max-width:767px) {
  .Works .Works__content {
    margin-block-start: 15vw;
  }
}
.Works .Works__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(2.88rem, 6vw) max(1.856rem, 3.8666666667vw);
  margin-block-end: max(2.944rem, 6.1333333333vw);
}
@media screen and (max-width:767px) {
  .Works .Works__list {
    grid-template-columns: 1fr;
    gap: 5.25vw;
    margin-block-end: 23vw;
  }
}
.Works .Works__item {
  height: max(9.024rem, 18.8vw);
  transition: opacity 0.3s 0s ease;
}
.Works .Works__item:hover {
  opacity: 0.6 !important;
}
@media screen and (max-width:767px) {
  .Works .Works__item {
    height: 69vw;
  }
}
.Works .Works__item-link {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Works .Works__item-link {
    font-size: 4vw;
  }
}
.Works .Works__item-img {
  display: grid;
  grid-area: 1/1/2/2;
}
.Works .Works__item-title {
  display: grid;
  grid-area: 1/1/2/2;
  place-items: center;
  width: 100%;
  height: max(1.92rem, 4vw);
  margin-block-start: auto;
  font-size: max(15px, 1.0666666667vw);
  color: white;
  text-align: center;
  background-color: rgba(56, 69, 153, 0.8);
}
@media screen and (max-width:767px) {
  .Works .Works__item-title {
    height: 15vw;
    font-size: 4vw;
  }
}

.TextSlider {
  width: 100%;
  margin-block: max(0.96rem, 2vw) calc(-3.3333333333vw);
}
@media screen and (max-width:767px) {
  .TextSlider {
    margin-block: 7.5vw -15vw;
  }
}

.TextSlider__slide {
  margin-inline-end: max(0.64rem, 1.3333333333vw) !important;
  font-size: max(3.584rem, 7.4666666667vw);
  font-weight: 700;
  color: #f7f7f7;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .TextSlider__slide {
    font-size: 30vw !important;
  }
}

.News {
  position: relative;
  padding-block: max(3.456rem, 7.2vw) max(3.136rem, 6.5333333333vw);
  margin-block-start: 0;
  background-color: var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .News {
    padding-block: 23vw 25.5vw;
  }
}
.News .News__deco {
  position: absolute;
  bottom: max(0.576rem, 1.2vw);
  left: 50%;
  width: max(44.8rem, 93.3333333333vw);
  content: "";
  transform: translate(-50%, calc(-9.3333333333vw));
}
@media screen and (max-width:767px) {
  .News .News__deco {
    bottom: 18.75vw;
    width: 100%;
  }
}
.News .News__head {
  display: flex;
  gap: max(0.832rem, 1.7333333333vw);
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width:767px) {
  .News .News__head {
    flex-direction: column;
    gap: 1vw;
    align-items: flex-start;
  }
}
.News .News__title {
  font-size: max(1.664rem, 3.4666666667vw);
  font-weight: bold;
  line-height: 1.3;
  color: white;
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .News .News__title {
    font-size: 10.5vw;
  }
}
.News .News__subtitle {
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: bold;
  color: white;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .News .News__subtitle {
    font-size: 4vw;
  }
}
.News .News__content {
  position: relative;
  z-index: 10;
  margin-block-start: max(0.192rem, 0.4vw);
  color: white;
}
@media screen and (max-width:767px) {
  .News .News__content {
    margin-block-start: 5vw;
  }
}
.News .News-list {
  width: 100%;
  padding: 0;
  margin-block-end: max(2.72rem, 5.6666666667vw);
  margin-inline: 0 auto;
  list-style: none;
}
@media screen and (max-width:767px) {
  .News .News-list {
    margin-block-end: 22vw;
  }
}
.News .News-item {
  display: flex;
  justify-content: space-between;
  padding-block: max(0.96rem, 2vw);
  border-bottom: max(0.032rem, 0.0666666667vw) solid #7c86c3;
  transition: all 0.3s 0s ease;
}
.News .News-item:hover .News-title {
  text-decoration: underline;
}
@media screen and (max-width:767px) {
  .News .News-item {
    padding-block: 8vw 6.5vw;
    border-bottom: 0.25vw solid #7c86c3;
  }
}
.News .News__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media screen and (max-width:767px) {
  .News .News__item-link {
    display: flex;
    flex-direction: column;
    gap: 2.75vw;
    align-items: flex-start;
    justify-content: center;
  }
}
.News .News-date {
  min-width: 100px;
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .News .News-date {
    font-size: 4vw;
  }
}
.News .News-title {
  flex-grow: 1;
  padding-inline-start: max(2.368rem, 4.9333333333vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .News .News-title {
    padding-inline-start: 0;
    font-size: 4vw;
  }
}
.News .Button {
  background-color: inherit;
  border: max(0.032rem, 0.0666666667vw) solid white;
}
.News .Button__link {
  color: white;
}
.News .svg_color {
  color: white;
}

.Contact {
  padding-block: max(2.56rem, 5.3333333333vw) max(2.432rem, 5.0666666667vw);
  color: white;
  background-color: var(--color-blue);
}
@media screen and (max-width:767px) {
  .Contact {
    padding-block: 22vw 22.5vw;
  }
}
.Contact .Contact__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: max(5.824rem, 12.1333333333vw);
}
@media screen and (max-width:767px) {
  .Contact .Contact__content {
    flex-direction: column;
    height: auto;
  }
}
.Contact .Contact__content > :nth-child(1) {
  width: max(12.608rem, 26.2666666667vw);
}
@media screen and (max-width:767px) {
  .Contact .Contact__content > :nth-child(1) {
    width: 100%;
  }
}
.Contact .Contact__content > :nth-child(2) {
  width: max(13.12rem, 27.3333333333vw);
}
@media screen and (max-width:767px) {
  .Contact .Contact__content > :nth-child(2) {
    width: 100%;
  }
}
.Contact .Contact__content > :nth-child(3) {
  width: max(12.608rem, 26.2666666667vw);
}
@media screen and (max-width:767px) {
  .Contact .Contact__content > :nth-child(3) {
    width: 100%;
  }
}
.Contact .Contact__head {
  height: 100%;
  padding-inline-end: max(1.536rem, 3.2vw);
}
@media screen and (max-width:767px) {
  .Contact .Contact__head {
    padding-inline-end: 0;
  }
}
.Contact .Contact__title {
  font-size: max(1.344rem, 2.8vw);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .Contact .Contact__title {
    font-size: 10.5vw;
  }
}
.Contact .Contact__text {
  margin-block-start: max(0.448rem, 0.9333333333vw);
  font-size: max(0.512rem, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .Contact .Contact__text {
    margin-block-start: 3.5vw;
    font-size: 4vw;
    white-space: wrap;
  }
}
.Contact .Contact__tel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-block-start: max(0.96rem, 2vw);
  padding-inline: max(1.856rem, 3.8666666667vw);
  border-right: max(0.032rem, 0.0666666667vw) solid #495182;
  border-left: max(0.032rem, 0.0666666667vw) solid #495182;
}
@media screen and (max-width:767px) {
  .Contact .Contact__tel {
    padding-block: 8.75vw 6.5vw;
    padding-inline: 0;
    margin-block-start: 8.5vw;
    border-top: 0.25vw solid #495182;
    border-right: none;
    border-bottom: 0.25vw solid #495182;
    border-left: none;
  }
}
.Contact .Contact__tel-text {
  font-family: Roboto, sans-serif;
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .Contact .Contact__tel-text {
    font-size: 4vw;
  }
}
.Contact .Contact__tel-number {
  font-family: Roboto, sans-serif;
  font-size: max(1.344rem, 2.8vw);
  font-weight: bold;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .Contact .Contact__tel-number {
    margin-block-start: -1vw;
    font-size: 10.5vw;
  }
}
.Contact .Contact__tel-time {
  font-size: max(0.448rem, 0.9333333333vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Contact .Contact__tel-time {
    display: block;
    margin-block-start: -1.5vw;
    font-size: 3.5vw;
  }
}
.Contact .Contact__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline-start: max(2.432rem, 5.0666666667vw);
}
@media screen and (max-width:767px) {
  .Contact .Contact__link {
    padding-inline-start: 0;
    margin-block-start: 10vw;
  }
}
.Contact .Button {
  width: max(10.24rem, 21.3333333333vw);
  max-width: none;
  height: max(3.584rem, 7.4666666667vw);
  background-color: var(--color-purple);
}
@media screen and (max-width:767px) {
  .Contact .Button {
    width: 100%;
    height: 23vw;
  }
}
.Contact .Button__link {
  font-size: max(0.576rem, 1.2vw);
  color: white;
}
@media screen and (max-width:767px) {
  .Contact .Button__link {
    padding-inline: 6.5vw 6vw;
    font-size: 4.5vw !important;
  }
}
.Contact .Button__link img {
  width: max(1.024rem, 2.1333333333vw);
}
@media screen and (max-width:767px) {
  .Contact .Button__link img {
    width: 8vw;
  }
}
@media screen and (max-width:767px) {
  .Contact .Button__link svg:last-of-type {
    margin-inline-start: 5vw;
  }
}

@media screen and (max-width:767px) {
  .page {
    padding-block-start: 38vw;
  }
}

h3.page__heading {
  padding-block: max(0.576rem, 1.2vw) max(0.448rem, 0.9333333333vw);
  padding-inline-start: max(0.576rem, 1.2vw);
  margin-block-start: max(0.512rem, 1.0666666667vw);
  font-size: max(15px, 1.6vw);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
  background-color: #f5f5f5;
}
@media screen and (max-width:767px) {
  h3.page__heading {
    padding-block: 4.5vw 3.5vw;
    padding-inline-start: 5vw;
    margin-block-start: 0;
    font-size: 5vw;
  }
}

.Page__head {
  padding-block: max(6.656rem, 13.8666666667vw) max(1.856rem, 3.8666666667vw);
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ccc;
}
@media screen and (max-width:767px) {
  .Page__head {
    padding-block: 38vw 11.25vw;
  }
}

.Page__head-subtitle {
  font-family: Roboto, sans-serif;
  font-size: max(15px, 1.0666666667vw);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-base_blue);
  letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
  .Page__head-subtitle {
    font-size: 4vw;
  }
}

.Page__head-title {
  margin-block-start: max(0.256rem, 0.5333333333vw);
  font-size: max(1.344rem, 2.8vw);
  font-weight: bold;
  letter-spacing: 0.03em;
}
.Page__head-title span {
  position: relative;
  margin-inline-start: max(2.24rem, 4.6666666667vw);
  font-size: max(0.768rem, 1.6vw);
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Page__head-title span {
    font-size: 4.5vw;
  }
}
.Page__head-title span::before {
  position: absolute;
  top: 50%;
  left: -28%;
  width: max(1.152rem, 2.4vw);
  height: max(0.032rem, 0.0666666667vw);
  content: "";
  background-color: var(--color-base_txt);
  transform: translate(-50%, -50%);
}
@media screen and (max-width:767px) {
  .Page__head-title span::before {
    width: 8.5vw;
    height: 0.25vw;
  }
}
@media screen and (max-width:767px) {
  .Page__head-title {
    font-size: 8vw;
  }
}

.PageHistory .Page__head-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width:767px) {
  .PageHistory .Page__head-title {
    gap: 7.5vw;
  }
}

@media screen and (max-width:767px) {
  .PageForm--contact .Page__head-title {
    font-size: 7.5vw;
  }
}

.Page__content.--404 {
  padding-inline: max(4.8rem, 10vw);
  padding-block-start: max(2.624rem, 5.4666666667vw);
  padding-block-end: max(2.624rem, 5.4666666667vw);
}
@media screen and (max-width:767px) {
  .Page__content.--404 {
    padding-inline: 6vw;
  }
}
.Page__content.--404 h2 {
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-wrap: auto;
}
@media screen and (max-width:767px) {
  .Page__content.--404 h2 {
    font-size: 4.5vw;
  }
}
.Page__content.--404 p {
  margin-block-start: max(1.28rem, 2.6666666667vw);
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.Page__content.--404 .to-back {
  margin-block-start: max(1.6rem, 3.3333333333vw);
  text-align: center;
}
@media screen and (max-width:767px) {
  .Page__content.--404 .to-back {
    margin-block-start: 12.5vw;
  }
}

.Page__content-head {
  padding-block-start: max(2.624rem, 5.4666666667vw);
  padding-inline: max(8.32rem, 17.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .Page__content-head {
    width: 100%;
    padding-block-end: 14vw;
    padding-inline: 6vw;
    font-size: 4vw;
  }
}
.Page__content-head a {
  color: var(--color-base_blue);
  text-decoration: underline;
}

.PageForm--recruit .PageForm__table-container.PageRecruitment__table-container {
  padding-block-end: max(1.6rem, 3.3333333333vw);
}
@media screen and (max-width:767px) {
  .PageForm--recruit .PageForm__table-container.PageRecruitment__table-container {
    padding-block-end: 7.5vw;
  }
}
.PageForm--recruit .PageForm__table-container.PageRecruitment__table-container:last-child {
  padding-block-end: max(4.48rem, 9.3333333333vw);
}

.PageForm-movie {
  width: 100%;
  max-width: max(25.6rem, 53.3333333333vw);
  margin-block: max(1.92rem, 4vw) max(2.816rem, 5.8666666667vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .PageForm-movie {
    max-width: 100%;
    padding-inline: 6vw;
    margin-block-start: 0;
  }
}
.PageForm-movie video {
  width: 100%;
}

.PageForm__table {
  display: block;
  width: 100%;
  margin-block-start: max(0.48rem, 1vw);
  border-collapse: collapse;
}
.PageForm__table tbody {
  width: 100%;
}

.PageForm__table-container {
  padding-block-end: max(3.2rem, 6.6666666667vw);
}
.PageForm__table-container:first-of-type {
  margin-block-start: max(1.28rem, 2.6666666667vw);
}
.PageForm__table-container .section__inner {
  padding-inline: max(8.32rem, 17.3333333333vw);
}
@media screen and (max-width:767px) {
  .PageForm__table-container .section__inner {
    padding-inline: 6vw;
  }
}

.PageForm__table th,
.PageForm__table td {
  padding-block: max(0.832rem, 1.7333333333vw) max(0.672rem, 1.4vw);
  padding-inline: 0;
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  vertical-align: top;
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ccc;
}

.PageForm__table th {
  width: max(5.12rem, 10.6666666667vw);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.PageForm__table td {
  width: 100%;
  padding-inline-start: max(2.24rem, 4.6666666667vw);
  background: #fff;
}

.PageCompany__table-container .PageForm__table td {
  padding-inline-start: max(1.728rem, 3.6vw);
}

/* link */
.PageForm__table a {
  color: var(--color-base_txt);
  text-decoration: underline;
  transition: 0.3s;
}
.PageForm__table a:hover {
  color: var(--color-base_blue);
  text-decoration: none;
}

/* =========================
  Responsive (SP)
========================= */
@media screen and (max-width: 767px) {
  .PageForm__table,
  .PageForm__table tbody,
  .PageForm__table tr,
  .PageForm__table th,
  .PageForm__table td {
    display: block;
    width: 100%;
  }
  .PageForm__table tr {
    padding: 3vw 0;
  }
  .PageForm__table th {
    padding: 0 0 max(0.192rem, 0.4vw);
    font-size: max(0.512rem, 1.0666666667vw);
    font-weight: bold;
    color: var(--color-base_txt);
    background: none;
    border: none;
  }
}
@media screen and (max-width: 767px) and (max-width:767px) {
  .PageForm__table th {
    padding: 0 0 2vw;
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .PageForm__table td {
    padding: 0 0 max(0.384rem, 0.8vw);
    font-size: max(0.512rem, 1.0666666667vw);
  }
}
@media screen and (max-width: 767px) and (max-width:767px) {
  .PageForm__table td {
    padding-inline: 3vw;
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) and (max-width:767px) {
  .PageForm__table td a {
    display: block;
  }
}
@media screen and (max-width: 767px) and (max-width:767px) {
  .PageForm__table td a.display-inline {
    display: inline;
  }
}
.pagination {
  margin-top: max(1.92rem, 4vw);
  text-align: center;
}

.pagination .page-numbers {
  display: inline-flex;
  gap: max(0.512rem, 1.0666666667vw);
  align-items: center;
  padding: 0;
  list-style: none;
}

/* 数字ボタン */
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(1.536rem, 3.2vw);
  height: max(1.536rem, 3.2vw);
  font-size: max(0.512rem, 1.0666666667vw);
  font-weight: 600;
  color: #222;
  text-decoration: none;
  background: #fff;
  border: max(0.064rem, 0.1333333333vw) solid #cfcfcf;
  transition: 0.3s;
}
@media screen and (max-width:767px) {
  .pagination .page-numbers a,
  .pagination .page-numbers span {
    width: 10vw;
    height: 10vw;
    font-size: 4vw;
  }
}
.pagination .page-numbers a:hover,
.pagination .page-numbers span:hover {
  background-color: #f0f0f0;
}

.pagination .page-numbers a.next {
  border: none;
}
.pagination .page-numbers a.next img {
  width: max(0.256rem, 0.5333333333vw);
}
@media screen and (max-width:767px) {
  .pagination .page-numbers a.next img {
    width: 2vw;
  }
}

.pagination .page-numbers a.prev {
  border: none;
}
.pagination .page-numbers a.prev img {
  width: max(0.256rem, 0.5333333333vw);
  transform: rotate(180deg);
}
@media screen and (max-width:767px) {
  .pagination .page-numbers a.prev img {
    width: 2vw;
  }
}

/* ホバー */
.pagination .page-numbers a:hover {
  color: white;
  background-color: var(--color-base_blue);
  border-color: var(--color-base_blue);
}

/* 現在ページ */
.pagination .page-numbers .current {
  color: #fff;
  background: var(--color-base_blue);
  border-color: var(--color-base_blue);
}

/* 矢印 */
.pagination .page-numbers .prev a,
.pagination .page-numbers .next a {
  width: auto;
  height: auto;
  padding: 0 max(0.32rem, 0.6666666667vw);
  font-size: max(0.896rem, 1.8666666667vw);
  background: none;
  background-color: none;
  border: none;
}

/* ===== 投稿本文ベース ===== */
.Single_post {
  font-size: max(0.512rem, 1.0666666667vw);
  line-height: 1.9;
  color: #222;
}

/* 見出し */
.Single_post h1,
.Single_post h2,
.Single_post h3,
.Single_post h4,
.Single_post h5,
.Single_post h6 {
  margin-top: 2.4em;
  margin-bottom: 0.8em;
  font-weight: bold;
  line-height: 1.6;
}

.Single_post h1 {
  padding-block: max(0.832rem, 1.7333333333vw);
  padding-inline: max(0.768rem, 1.6vw) max(0.384rem, 0.8vw);
  margin-block-end: max(1.216rem, 2.5333333333vw);
  font-size: max(15px, 1.6vw);
  font-weight: bold;
  line-height: 1.6;
  background-color: #f5f5f5;
  border-top: max(0.096rem, 0.2vw) solid var(--color-blue);
}
@media screen and (max-width:767px) {
  .Single_post h1 {
    padding-inline: 6vw 3vw;
    margin-block-end: 9.5vw;
    font-size: 5vw;
  }
}

.Single_post h2 {
  padding-left: max(0.384rem, 0.8vw);
  margin-block-end: max(1.472rem, 3.0666666667vw);
  font-size: max(15px, 1.3333333333vw);
  font-weight: bold;
  line-height: max(1.536rem, 3.2vw);
  border-left: max(0.128rem, 0.2666666667vw) solid var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .Single_post h2 {
    padding-left: 3vw;
    margin-block-end: 11.5vw;
    font-size: 4.5vw;
    line-height: 7.5vw;
  }
}

.Single_post h3 {
  padding-block-end: max(0.384rem, 0.8vw);
  margin-block-end: max(1.92rem, 4vw);
  font-size: max(15px, 1.2vw);
  font-weight: bold;
  line-height: 1.6;
  border-bottom: max(0.064rem, 0.1333333333vw) solid #c2c5db;
}
@media screen and (max-width:767px) {
  .Single_post h3 {
    margin-block-end: 7.5vw;
    font-size: 4vw;
  }
}

.Single_post h4 {
  padding-block-end: max(0.448rem, 0.9333333333vw);
  margin-block-end: max(1.152rem, 2.4vw);
  font-size: max(15px, 1.2vw);
  font-weight: bold;
  line-height: 1.6;
  border-bottom: max(0.032rem, 0.0666666667vw) dotted var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .Single_post h4 {
    margin-block-end: 9vw;
    font-size: 4vw;
  }
}

.Single_post h5 {
  margin-block-end: max(0.896rem, 1.8666666667vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width:767px) {
  .Single_post h5 {
    font-size: 3.5vw;
  }
}

.wp-block-media-text {
  display: flex;
  gap: max(1.536rem, 3.2vw);
  align-items: center;
  justify-content: center;
  margin-block-end: max(2.368rem, 4.9333333333vw);
}
@media screen and (max-width:767px) {
  .wp-block-media-text {
    flex-direction: column;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  width: 100%;
  max-width: max(11.52rem, 24vw);
}
@media screen and (max-width:767px) {
  .wp-block-media-text .wp-block-media-text__media {
    max-width: 100%;
  }
}
.wp-block-media-text .wp-block-media-text__content {
  flex: 1;
}

.wp-block-image {
  width: 100%;
  max-width: max(15.744rem, 32.8vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .wp-block-image {
    max-width: 100%;
  }
}
.wp-block-image .wp-element-caption {
  margin-block-start: max(0.384rem, 0.8vw);
  font-size: max(14px, 0.9333333333vw);
  line-height: 1.8;
}
@media screen and (max-width:767px) {
  .wp-block-image .wp-element-caption {
    font-size: 3.5vw;
  }
}

.wp-block-table td {
  padding-block: max(0.864rem, 1.8vw) max(0.768rem, 1.6vw);
}
@media screen and (max-width:767px) {
  .wp-block-table td {
    font-size: 4vw;
  }
}
.wp-block-table td:first-of-type {
  font-weight: bold;
  background-color: #f5f5f5;
}

/* 段落 */
.Single_post p {
  margin-bottom: 1.6em;
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
}
@media screen and (max-width:767px) {
  .Single_post p {
    font-size: 4vw;
  }
}

/* リスト */
.Single_post ul,
.Single_post ol {
  margin: 1.6em 0 1.6em 1.4em;
}

.Single_post li {
  margin-bottom: 0.6em;
  font-size: max(15px, 1.0666666667vw);
  list-style: disc;
}
@media screen and (max-width:767px) {
  .Single_post li {
    font-size: 4vw;
  }
}

/* 強調 */
.Single_post strong {
  font-weight: bold;
}

.Single_post em {
  font-style: italic;
}

/* 引用 */
.Single_post blockquote {
  padding: 1em 1.2em;
  margin: 2em 0;
  background: #f5f5f5;
  border-left: max(0.128rem, 0.2666666667vw) solid #ccc;
}

/* 画像 */
.Single_post img {
  max-width: 100%;
  height: auto;
}

/* テーブル */
.Single_post table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
}

.Single_post th,
.Single_post td {
  padding: max(0.32rem, 0.6666666667vw);
  font-size: max(15px, 1.0666666667vw);
  border: max(0.032rem, 0.0666666667vw) solid #ddd;
}
@media screen and (max-width:767px) {
  .Single_post th,
  .Single_post td {
    font-size: 4vw;
  }
}

.Single_post a {
  text-decoration: underline;
  transition: 0.3s;
}
.Single_post a:hover {
  color: var(--color-base_blue);
  text-decoration: none;
}

.Single_post-date {
  display: block;
  margin-block-end: max(0.16rem, 0.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
  color: var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .Single_post-date {
    font-size: 4vw;
  }
}

.Single_post-nav {
  display: flex;
  gap: max(3.136rem, 6.5333333333vw);
  align-items: center;
  justify-content: center;
  margin-block-start: max(2.368rem, 4.9333333333vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav {
    gap: 7.5vw;
  }
}
.Single_post-nav a {
  text-decoration: none;
}
.Single_post-nav a svg path {
  transition: 0.3s;
}
.Single_post-nav a:hover svg path {
  fill: var(--color-base_blue);
}

.icon-reverse {
  transform: rotate(180deg);
}

.Single_post-nav__prev a {
  display: flex;
  gap: max(0.48rem, 1vw);
  align-items: center;
  justify-content: center;
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav__prev a {
    font-size: 4vw;
  }
}
.Single_post-nav__prev a svg {
  width: max(15px, 0.5333333333vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav__prev a svg {
    width: 2vw;
  }
}

.Single_post-nav__archive a {
  display: flex;
  gap: max(0.256rem, 0.5333333333vw);
  align-items: center;
  justify-content: center;
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav__archive a {
    font-size: 4vw;
  }
}
.Single_post-nav__archive a svg {
  width: max(15px, 1vw);
  margin-block-end: max(0.096rem, 0.2vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav__archive a svg {
    width: 3.75vw;
    margin-block-end: 0.75vw;
  }
}

.Single_post-nav__next a {
  display: flex;
  gap: max(0.48rem, 1vw);
  align-items: center;
  justify-content: center;
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav__next a {
    font-size: 4vw;
  }
}
.Single_post-nav__next a svg {
  width: max(15px, 0.5333333333vw);
}
@media screen and (max-width:767px) {
  .Single_post-nav__next a svg {
    width: 2vw;
  }
}

.Single_post {
  padding-block: max(2.624rem, 5.4666666667vw) max(2.88rem, 6vw);
  padding-inline: max(3.52rem, 7.3333333333vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .Single_post {
    padding-block-start: 0;
  }
}
.Single_post h1,
.Single_post h2,
.Single_post h3,
.Single_post h4 {
  text-wrap: auto;
}
@media screen and (max-width:767px) {
  .Single_post {
    padding-inline: 0;
  }
}

.PageBusiness__head {
  padding-block-start: max(2.624rem, 5.4666666667vw);
  text-align: center;
}
@media screen and (max-width:767px) {
  .PageBusiness__head {
    padding-block-start: 16vw;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__head .section__inner {
    max-width: 100%;
    padding-block-start: 0;
    padding-inline: 6vw;
  }
}

.PageBusiness__head-catch {
  font-size: max(1.12rem, 2.3333333333vw);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageBusiness__head-catch {
    font-size: 7vw;
    text-align: left;
  }
}

.PageBusiness__head-lead {
  margin-block-start: max(0.704rem, 1.4666666667vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .PageBusiness__head-lead {
    white-space: nowrap;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__head-lead {
    margin-block-start: 7vw;
    font-size: 4vw;
    text-align: left;
  }
}

.PageBusiness__head-img {
  display: block;
  width: 100vw;
  max-width: 100vw;
  padding-inline: max(1.6rem, 3.3333333333vw);
  margin: 0 calc(50% - 50vw);
  margin-block-start: calc(-0.6666666667vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-img {
    display: block;
    width: 100vw;
    padding-inline: 0;
    margin: 0 calc(50% - 50vw);
    margin-block-start: 10.5vw;
  }
}

.PageBusiness__head-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(0.832rem, 1.7333333333vw) max(1.024rem, 2.1333333333vw);
  place-items: center;
  align-items: end;
  width: 100%;
  max-width: max(38.4rem, 80vw);
  margin-block: max(1.664rem, 3.4666666667vw) max(2.368rem, 4.9333333333vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .PageBusiness__head-list {
    grid-template-columns: 1fr;
    gap: 11vw;
    margin-block: 13vw 18vw;
  }
}

.PageBusiness__head-item {
  display: flex;
  gap: max(1.088rem, 2.2666666667vw);
  align-items: flex-start;
  justify-content: center;
  padding-block: max(1.792rem, 3.7333333333vw);
  padding-inline: max(1.472rem, 3.0666666667vw) max(1.088rem, 2.2666666667vw);
  border: max(0.032rem, 0.0666666667vw) solid #ccc;
}
@media screen and (max-width:767px) {
  .PageBusiness__head-item {
    flex-direction: column;
    padding-block: 5.5vw 5vw;
    padding-inline: 6vw 5.5vw;
  }
}
.PageBusiness__head-item:nth-child(1) .PageBusiness__head-icon {
  width: max(2.304rem, 4.8vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-item:nth-child(1) .PageBusiness__head-icon {
    width: 14.5vw;
  }
}
.PageBusiness__head-item:nth-child(1) .PageBusiness__item-right {
  margin-inline-start: max(0.448rem, 0.9333333333vw);
}
.PageBusiness__head-item:nth-child(2) .PageBusiness__head-icon {
  width: max(2.88rem, 6vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-item:nth-child(2) .PageBusiness__head-icon {
    width: 18vw;
  }
}
.PageBusiness__head-item:nth-child(3) {
  padding-inline-start: max(1.28rem, 2.6666666667vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-item:nth-child(3) {
    padding-inline-start: 6.75vw;
  }
}
.PageBusiness__head-item:nth-child(3) .PageBusiness__head-icon {
  width: max(2.88rem, 6vw);
  margin-block-start: max(0.16rem, 0.3333333333vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-item:nth-child(3) .PageBusiness__head-icon {
    width: 18vw;
    margin-block-start: -8.75vw;
  }
}
.PageBusiness__head-item:nth-child(4) .PageBusiness__head-icon {
  width: max(2.56rem, 5.3333333333vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-item:nth-child(4) .PageBusiness__head-icon {
    width: 16.5vw;
  }
}

.PageBusiness__head-icon {
  margin-block-start: max(0.192rem, 0.4vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__head-icon {
    margin-block-start: -10vw;
  }
}

@media screen and (max-width:767px) {
  .PageBusiness__item-right {
    margin-block-start: -12.5vw;
  }
}

.PageBusiness__head-itemTitle {
  font-size: max(15px, 1.6vw);
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageBusiness__head-itemTitle {
    margin-inline-start: 21vw;
    font-size: 6vw;
  }
}

.PageBusiness__head-itemText {
  margin-block-start: max(0.16rem, 0.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageBusiness__head-itemText {
    margin-block-start: 2.5vw;
    font-size: 4vw;
  }
}

.PageBusiness__content {
  margin-block-start: max(3.008rem, 6.2666666667vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content {
    margin-block-start: 18vw;
  }
}

.PageBusiness__content-item {
  display: flex;
  gap: max(4.48rem, 9.3333333333vw);
  align-items: flex-start;
  justify-content: center;
  padding-block: max(4.64rem, 9.6666666667vw) max(4.32rem, 9vw);
  padding-inline: max(4.8rem, 10vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item {
    flex-direction: column;
    gap: 9.5vw;
    padding-block: 20vw 24.75vw;
    padding-inline: 6vw;
  }
}
.PageBusiness__content-item:nth-child(odd) {
  background-color: #f1f3ff;
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) {
    gap: 9vw;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) {
    padding-block-start: 20.75vw;
  }
}
.PageBusiness__content-item:nth-child(1) .PageBusiness__content-subTitle {
  margin-block-start: calc(-0.4vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) .PageBusiness__content-subTitle {
    margin-block-start: -1vw;
  }
}
.PageBusiness__content-item:nth-child(1) .page-business-content-deco {
  width: max(2.56rem, 5.3333333333vw);
  height: max(3.84rem, 8vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) .page-business-content-deco {
    width: 20vw;
    height: 30vw;
  }
}
.PageBusiness__content-item:nth-child(1) .page-business-content-deco {
  top: 0%;
  right: -6%;
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) .page-business-content-deco {
    top: 4%;
    right: 0;
  }
}
.PageBusiness__content-item:nth-child(1) .PageBusiness__content-text {
  margin-block-start: max(1.152rem, 2.4vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) .PageBusiness__content-text:last-child {
    margin-block-start: 7.5vw;
  }
}
.PageBusiness__content-item:nth-child(1) .PageBusiness__content-text.--textBold {
  margin-block-start: max(1.28rem, 2.6666666667vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(1) .PageBusiness__content-text.--textBold {
    margin-block-start: 5.5vw;
  }
}
.PageBusiness__content-item:nth-child(2) {
  padding-block: max(3.84rem, 8vw) max(2.88rem, 6vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(2) {
    gap: 10.5vw;
    padding-block: 25.5vw 18vw;
  }
}
.PageBusiness__content-item:nth-child(2) .page-business-content-deco {
  top: 0%;
  right: -10%;
  width: max(3.84rem, 8vw);
  height: max(3.84rem, 8vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(2) .page-business-content-deco {
    top: 1%;
    right: 0;
    width: 30vw;
    height: 30vw;
  }
}
.PageBusiness__content-item:nth-child(2) .PageBusiness__content-text.--textBold {
  margin-block-start: max(0.96rem, 2vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(2) .PageBusiness__content-text.--textBold {
    margin-block-start: 7.5vw;
  }
}
.PageBusiness__content-item:nth-child(2) .PageBusiness__content-text {
  margin-block-start: max(1.152rem, 2.4vw);
}
.PageBusiness__content-item:nth-child(2) .PageBusiness__content-text:last-of-type {
  margin-block-start: max(1.216rem, 2.5333333333vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(2) .PageBusiness__content-text:last-of-type {
    margin-block-start: 8vw;
  }
}
.PageBusiness__content-item:nth-child(3) {
  padding-block: max(4.416rem, 9.2vw) max(4.48rem, 9.3333333333vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(3) {
    padding-block: 20.5vw 17.75vw;
  }
}
.PageBusiness__content-item:nth-child(3) .PageBusiness__content-text {
  margin-block-start: max(1.216rem, 2.5333333333vw);
}
.PageBusiness__content-item:nth-child(3) .page-business-content-deco {
  right: -10%;
  width: max(3.2rem, 6.6666666667vw);
  height: max(3.52rem, 7.3333333333vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(3) .page-business-content-deco {
    top: 3%;
    right: -1%;
    width: 30vw;
    height: 27.5vw;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(3) .PageBusiness__content-textContainer {
    margin-block-start: 7.5vw;
  }
}
.PageBusiness__content-item:nth-child(3) .PageBusiness__content-text.--textBold {
  margin-block-start: max(1.024rem, 2.1333333333vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(3) .PageBusiness__content-text.--textBold {
    margin-block-start: 7.5vw;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(3) .PageBusiness__text-list li {
    line-height: 1.8;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(3) .PageBusiness__content-subTitle {
    margin-block-start: -1vw;
  }
}
.PageBusiness__content-item:nth-child(4) {
  padding-block: max(4.16rem, 8.6666666667vw) max(3.84rem, 8vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(4) {
    padding-block: 22.5vw;
  }
}
.PageBusiness__content-item:nth-child(4) .PageBusiness__content-text {
  margin-block-start: max(1.152rem, 2.4vw);
}
.PageBusiness__content-item:nth-child(4) .page-business-content-deco {
  top: -8%;
  right: -10%;
  width: max(3.52rem, 7.3333333333vw);
  height: max(3.84rem, 8vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(4) .page-business-content-deco {
    top: 0;
    right: 0;
    width: 27.5vw;
    height: 30vw;
  }
}
@media screen and (max-width:767px) {
  .PageBusiness__content-item:nth-child(4) .PageBusiness__content-right {
    margin-block-start: 2vw;
  }
}

.PageBusiness__content-left {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-business-content-deco {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.PageBusiness__content-title {
  margin-block-start: calc(-0.8vw);
  font-size: max(1.344rem, 2.8vw);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageBusiness__content-title {
    font-size: 7vw;
  }
}

.PageBusiness__content-subTitle {
  font-size: max(15px, 1.4666666667vw);
  font-weight: bold;
  line-height: 1.8;
  color: var(--color-base_blue);
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageBusiness__content-subTitle {
    font-size: 5vw;
  }
}

.PageBusiness__content-text {
  margin-block-start: max(1.408rem, 2.9333333333vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageBusiness__content-text {
    font-size: 4vw;
  }
}

.PageBusiness__content-textContainer {
  font-weight: 500;
}

.PageBusiness__text-list li {
  padding-left: 1em;
  margin-left: max(0.64rem, 1.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  text-indent: -1em;
  list-style: disc;
}
@media screen and (max-width:767px) {
  .PageBusiness__text-list li {
    margin-left: 6.25vw;
    font-size: 4vw;
  }
}
.PageBusiness__text-list:last-child li {
  padding-left: 0;
  margin-left: 0;
  text-indent: 0;
  list-style: none;
}

.PageBusiness__content-text.--textBold {
  font-weight: bold;
}

.PageBusiness__content-right {
  width: max(18.432rem, 38.4vw);
}
@media screen and (max-width:767px) {
  .PageBusiness__content-right {
    width: 100%;
  }
}

.PageWorks__head {
  padding-inline: max(4.8rem, 10vw);
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .PageWorks__head {
    padding-block: 15vw 14vw;
    padding-inline: 6vw;
  }
}

.PageWorks__content {
  padding-block-end: max(5.12rem, 10.6666666667vw);
}

.PageWorks__section:first-of-type {
  margin-block-start: max(1.28rem, 2.6666666667vw);
}
@media screen and (max-width:767px) {
  .PageWorks__section:first-of-type {
    margin-block-start: 0;
  }
}
@media screen and (max-width:767px) {
  .PageWorks__section {
    padding-block-start: 0;
  }
}
.PageWorks__section:not(:first-of-type) {
  margin-block-start: max(3.712rem, 7.7333333333vw);
}
@media screen and (max-width:767px) {
  .PageWorks__section:not(:first-of-type) {
    margin-block-start: 22.5vw;
  }
}

h3.page__heading.PageWorks__title {
  padding-block: max(0.576rem, 1.2vw) max(0.32rem, 0.6666666667vw);
  margin-block-start: 0;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  h3.page__heading.PageWorks__title {
    padding-block: 15px;
  }
}

.PageWorks__title {
  margin-block-start: max(0.512rem, 1.0666666667vw);
  font-size: max(15px, 1.6vw);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
  border-top: max(0.128rem, 0.2666666667vw) solid var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .PageWorks__title {
    margin-block-start: 0;
    border-top: 1vw solid var(--color-base_blue);
  }
}

.PageWorks__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(1.984rem, 4.1333333333vw);
  place-items: center;
  margin-block-start: max(1.28rem, 2.6666666667vw);
}
@media screen and (max-width:767px) {
  .PageWorks__list {
    grid-template-columns: 1fr;
    gap: 10vw;
    margin-block-start: 8vw;
  }
}

.PageWorks__item {
  transition: opacity 0.3s 0s ease;
}
.PageWorks__item:hover {
  cursor: pointer;
  opacity: 0.6 !important;
}

.PageWorks__item-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-block-start: max(0.64rem, 1.3333333333vw);
  font-size: max(15px, 1.2vw);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageWorks__item-title {
    margin-block-start: 5.5vw;
    font-size: 4.5vw;
  }
}

/* =========================
  Tabs
========================= */
.History___content {
  width: 100%;
  max-width: max(57.6rem, 120vw);
  padding-block-end: max(3.2rem, 6.6666666667vw);
  padding-inline: max(4.8rem, 10vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .History___content {
    max-width: 100%;
    padding-inline: 6vw;
    margin-block-start: 15vw;
  }
}

.History__head {
  margin-block-start: max(2.624rem, 5.4666666667vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .History__head {
    margin-block-start: 0;
    font-size: 4vw;
  }
}

.History__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-block-start: max(2.176rem, 4.5333333333vw);
  margin-bottom: max(0.768rem, 1.6vw);
  border-bottom: max(0.032rem, 0.0666666667vw) solid var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .History__nav {
    gap: 1vw 2vw;
    margin-block-start: 12.5vw;
    border-bottom: 0.25vw solid var(--color-base_blue);
  }
}

.History__tab {
  width: max(7.232rem, 15.0666666667vw);
  padding: max(0.64rem, 1.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
  font-weight: bold;
  cursor: pointer;
  background: #f5f5f5;
  border: none;
  transition: all 0.3s 0s ease;
}
.History__tab:hover {
  color: white;
  background-color: var(--color-base_blue);
}
@media screen and (max-width:767px) {
  .History__tab {
    width: 27.5vw;
    height: 17vw;
    font-size: 4vw;
    line-height: 1.5;
  }
  .History__tab:nth-child(1) {
    width: 43vw;
  }
  .History__tab:nth-child(2) {
    width: 43vw;
  }
}

.History__tab.is-active {
  color: #fff;
  background: var(--color-base_blue);
  border-color: #2f3e9e;
}

/* =========================
  Panels
========================= */
.History__panel-container {
  margin-block-start: max(1.28rem, 2.6666666667vw);
}

.History__panel {
  display: none;
}

.History__panel.is-active {
  display: block;
}

/* =========================
  Table
========================= */
.HistoryTable {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width:767px) {
  .HistoryTable {
    width: 200%;
  }
}

.HistoryTable th,
.HistoryTable td {
  height: max(1.536rem, 3.2vw);
  padding-inline-start: max(0.448rem, 0.9333333333vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .HistoryTable th,
  .HistoryTable td {
    white-space: wrap;
  }
}
@media screen and (max-width:767px) {
  .HistoryTable th,
  .HistoryTable td {
    font-size: 4vw;
  }
}

.HistoryTable thead th {
  font-weight: bold;
  background: #f0f0f0;
}
.HistoryTable thead th:nth-child(1) {
  width: max(9.472rem, 19.7333333333vw);
}
.HistoryTable thead th:nth-child(2) {
  width: max(18.368rem, 38.2666666667vw);
}
.HistoryTable thead th:nth-child(3) {
  width: max(5.376rem, 11.2vw);
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .HistoryTable thead th:nth-child(3) {
    width: 120px;
  }
}
.HistoryTable thead th:nth-child(4) {
  width: max(5.376rem, 11.2vw);
}

/* 横スクロール（SP対策） */
.History__panel {
  overflow-x: auto;
}

.PageProducts__head {
  width: 100%;
  max-width: max(57.6rem, 120vw);
  padding-block-end: max(2.24rem, 4.6666666667vw);
  padding-inline: max(4.8rem, 10vw);
  margin-block-start: max(1.6rem, 3.3333333333vw);
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .PageProducts__head {
    padding-inline: 6vw;
    font-size: 4vw;
  }
}

/* =========================
   お問い合わせフォーム
========================= */
@media screen and (max-width:767px) {
  .PageContact__head {
    padding-block-end: 2.5vw;
  }
}

.PageContact__head-tel {
  width: 100%;
  max-width: max(31.36rem, 65.3333333333vw);
  height: max(4.416rem, 9.2vw);
  padding-block-start: max(1.152rem, 2.4vw);
  padding-inline: max(1.024rem, 2.1333333333vw);
  margin-block: max(1.152rem, 2.4vw) max(2.56rem, 5.3333333333vw);
  margin-inline: auto;
  background-color: #f3f4fb;
}
@media screen and (max-width:767px) {
  .PageContact__head-tel {
    max-width: 88vw;
    height: auto;
    padding-block-end: 4vw;
  }
}

.PageContact__head-text {
  font-size: max(0.576rem, 1.2vw);
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageContact__head-text {
    font-size: 3.5vw;
    text-align: center;
  }
}

.PageContact__head-number {
  display: flex;
  gap: max(0.704rem, 1.4666666667vw);
  align-items: center;
  justify-content: flex-start;
  font-size: max(1.344rem, 2.8vw);
  font-weight: bold;
  color: var(--color-base_blue);
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageContact__head-number {
    flex-direction: column;
    gap: 0;
    margin-block-start: 2.5vw;
    font-size: 7.5vw;
  }
}

.PageContact__head-time {
  margin-block-start: max(0.064rem, 0.1333333333vw);
  font-size: max(14px, 0.9333333333vw);
  line-height: 1.8;
  color: var(--color-base_txt);
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .PageContact__head-time {
    font-size: 3.5vw;
  }
}

.ArchiveNews__content {
  padding-block-end: max(3.2rem, 6.6666666667vw);
  margin-block-start: max(2.624rem, 5.4666666667vw);
}

.news-list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.news-item {
  border-bottom: max(0.032rem, 0.0666666667vw) solid #ccc;
}
@media screen and (max-width:767px) {
  .news-item {
    justify-content: center;
    height: auto;
    padding-block: 5vw;
    padding-inline: 0vw;
  }
}

.news-item__link {
  display: flex;
  gap: max(2.368rem, 4.9333333333vw);
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding-block: max(1.152rem, 2.4vw) max(1.024rem, 2.1333333333vw);
  color: var(--color-base_txt);
  transition: all 0.3s 0s ease;
}
.news-item__link:hover .news-title {
  color: var(--color-base_blue);
  text-decoration: underline;
}
@media screen and (max-width:767px) {
  .news-item__link {
    flex-direction: column;
    gap: 2vw;
    align-items: flex-start;
  }
}

.news-date {
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.3;
  color: var(--color-base_blue);
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .news-date {
    font-size: 4vw;
  }
}

.news-title {
  flex-grow: 1;
  padding-left: max(0.32rem, 0.6666666667vw);
  font-size: max(15px, 1.0666666667vw);
  line-height: 1.3;
  text-align: left;
  letter-spacing: 0.03em;
}
@media screen and (max-width:767px) {
  .news-title {
    flex-grow: 0;
    padding-left: 0;
    font-size: 4vw;
  }
}

.Pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.Pagination__list {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.Pagination__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

.Pagination__list li.is-active {
  color: #fff;
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.Pagination__list li:hover {
  background: #f5f5f5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: max(2.56rem, 5.3333333333vw);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-base_txt);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  counter-reset: inherit;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  margin: 0;
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  font-style: italic;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.Pc-display {
  display: block;
}

.Sp-display {
  display: none;
}

@media screen and (max-width:767px) {
  .Pc-display {
    display: none;
  }
  .Sp-display {
    display: block;
  }
}
.section__inner {
  width: 100%;
  max-width: max(57.6rem, 120vw);
  padding-inline: max(4.8rem, 10vw);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .section__inner {
    max-width: 100%;
    padding-inline: 6vw;
  }
}

img {
  width: 100%;
  height: auto;
}

.js-fadeIn {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumbs {
  margin-block-start: max(1.792rem, 3.7333333333vw);
}
.breadcrumbs a {
  font-size: max(14px, 0.9333333333vw);
  line-height: 1.8;
  color: var(--color-base_blue);
  letter-spacing: 0.03em;
  text-decoration: underline;
}
@media screen and (max-width:767px) {
  .breadcrumbs a {
    font-size: 3.5vw;
  }
}
@media screen and (max-width:767px) {
  .breadcrumbs {
    margin-block-start: 12vw;
  }
}
.breadcrumbs span {
  font-size: max(15px, 1.0666666667vw);
}
@media screen and (max-width:767px) {
  .breadcrumbs span {
    font-size: 4vw;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 15px !important;
  }
  p,
  span,
  a,
  li,
  dt,
  dd,
  td,
  th,
  small,
  strong,
  span,
  label {
    font-size: 1em !important;
  }
  h1 {
    font-size: 1.6em !important;
  }
  h2 {
    font-size: 1.4em !important;
  }
  h3 {
    font-size: 1.2em !important;
  }
}/*# sourceMappingURL=style.css.map */
