@charset "UTF-8";
html {
  font-size: 16px;
  scroll-padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 999;
  pointer-events: none;
}

.header__inner {
  position: relative;
  height: inherit;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.header__logo {
  width: 258px;
  height: 180px;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 114px;
    height: 80px;
  }
}

.header__nav {
  height: 80px;
  display: flex;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  justify-content: end;
  z-index: -1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-list-item {
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}

.header__nav-list-item.is-current::before {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #00495D;
  animation: slide ease 0.2s forwards;
}

@keyframes slide {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.header__nav-list-item a {
  display: flex;
  align-items: center;
  height: inherit;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  padding: 0 clamp(10px, 2.5vw, 30px);
}

.header__contact-button {
  height: inherit;
  background-color: #00495D;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 187px;
  gap: 10px;
}

.header__contact-button i {
  font-size: 22px;
}

.header__hamburger {
  display: none;
  height: inherit;
  padding: 0 30px;
  z-index: 999;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #242424;
  position: relative;
  transition: all 0.3s;
}

.active .header__hamburger span {
  opacity: 0;
}

.header__hamburger span::before,
.header__hamburger span::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  left: 0;
  top: 0;
  background-color: #242424;
  transition: all 0.3s;
}

.active.header__hamburger span::before,
.active.header__hamburger span::after {
  background-color: #fff;
}

.header__hamburger span::before {
  top: -8px;
  width: 25px;
}

.active.header__hamburger span::before {
  top: 0;
  width: 29px;
  rotate: 47deg;
}

.header__hamburger span::after {
  top: 7px;
  width: 17px;
}

.active.header__hamburger span::after {
  top: 0;
  width: 29px;
  rotate: -47deg;
}

.header__drawer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  padding: 50px 0;
  pointer-events: auto;
}

#g-nav.panelactive {
  display: block;
}

.header__drawer-logo {
  width: 114px;
  height: 80px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.header__drawer-nav {
  margin-top: 30px;
  padding-top: 79px;
  width: 275px;
  height: 100%;
  margin-inline: auto;
  opacity: 0;
  overflow-y: auto;
  pointer-events: auto;
}

#g-nav.panelactive .header__drawer-nav,
#g-nav.panelactive .header__drawer-logo {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__drawer-nav-list-item:first-child {
  border-top: 1px solid #00798C;
}

.header__drawer-nav-list-item {
  border-bottom: 1px solid #00798C;
}

.header__drawer-nav-list-item a {
  color: #fff;
  display: block;
  padding: 9.3px 0;
  width: 100%;
  font-size: 14px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.header__drawer-nav-sns-list {
  margin-top: 43px;
  display: flex;
}

.header__drawer-nav-sns-list-item a {
  color: #fff;
  font-size: 22px;
  padding: 9px 9px 9px 0;
}

.header__drawer-nav-sns-list-item:not(:first-child) {
  margin-left: 11px;
}

.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #002B36;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  bottom: -50px;
  transition: all 0.6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

.footer {
  color: #fff;
  background-color: #002B36;
  padding-top: 51px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 29px;
  }
}

.footer__inner {
  max-width: 1200px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 315px;
  }
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.footer__head {
  padding-left: 2.5%;
  display: flex;
  flex-direction: column;
  margin-top: 49px;
}
@media screen and (max-width: 768px) {
  .footer__head {
    padding-left: unset;
    margin-top: 51px;
  }
}

.footer__head-top {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__head-top {
    flex-direction: column;
    align-items: start;
  }
}

.footer__logo {
  width: 258px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 114px;
  }
}

.footer__logo img {
  aspect-ratio: 114/80;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    aspect-ratio: 114/80;
  }
}

.footer__sns {
  margin-left: 35px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    margin-left: unset;
    margin-top: 36px;
  }
}

.footer__sns a {
  padding: 10px;
  color: #fff;
  display: inline-block;
  padding: 7px 12px;
}

.footer__facebook {
  font-size: 27px;
}

.footer__twitter {
  font-size: 27px;
}

.footer__instagram {
  font-size: 27px;
}

.footer__small {
  font-size: 12px;
  font-weight: 300;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .footer__small {
    margin-top: 36px;
  }
}

.footer__link-item a {
  font-size: 16px;
  font-weight: 300;
  padding: 8px 0 7px;
  color: #fff;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__link-item a {
    font-size: 14px;
    padding: 9px 0 9px;
  }
}

@media screen and (max-width: 768px) {
  .footer__link-item + .footer__link-item {
    margin-top: 1px;
  }
}

.uppercase {
  text-transform: uppercase;
}

.profile {
  padding-top: 69px;
  padding-bottom: 119px;
  background-color: #F5F7F5;
}
@media screen and (max-width: 768px) {
  .profile {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.profile__list {
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .profile__list {
    margin-top: 10px;
  }
}

.profile__item {
  display: grid;
  grid-template-columns: 170px auto;
  padding-block: 39px;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .profile__item {
    font-size: 14px;
    grid-template-columns: 1fr;
    padding-block: 19px;
  }
}

.profile__term {
  font-weight: 500;
}

.profile__description {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .profile__description {
    margin-top: 15px;
  }
}

.profile__description-adress {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .profile__description-adress {
    margin-left: 2em;
  }
}

.profile__description-spacing {
  display: inline-block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .profile__description-spacing {
    margin-top: 8px;
  }
}

.inline-block {
  display: inline-block;
}

.topFv__set {
  height: 100vh;
  overflow: hidden;
  animation: first 0.5s ease-in forwards;
}
@keyframes first {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .topFv__set {
    height: auto;
  }
}

.inner.topFv__inner {
  max-width: 1320px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner.topFv__inner {
    padding-inline: 10px;
  }
}

.topFv__wrap {
  display: grid;
  grid-template-columns: 80.78125% auto;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topFv__wrap {
    grid-template-columns: 1fr;
    height: 100vh;
    grid-template-rows: 80.2675585284% 19.7324414716%;
    align-items: start;
  }
}

.topFv__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.topFv__slider {
  overflow: hidden;
}

.topFv__slider,
.topFv-wrapper,
.topFv-slide,
.topFv__img,
.topFv__img img {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .topFv__slider,
  .topFv-wrapper,
  .topFv-slide,
  .topFv__img,
  .topFv__img img {
    height: 100%;
  }
}

.topFv__img {
  position: relative;
}

.topFv__img img {
  aspect-ratio: 1034/780;
  object-fit: cover;
}

.topFv__text {
  writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: 700;
  line-height: 106%;
  margin-top: 62px;
  letter-spacing: 0.06em;
  margin-left: 1.5625%;
  padding-inline: 50px;
  margin-block: auto;
}
@media screen and (max-width: 768px) {
  .topFv__text {
    font-size: clamp(1.563rem, -0.074rem + 8.182vw, 2.125rem);
    margin-left: 10px;
    writing-mode: unset;
    margin-top: 27px;
    letter-spacing: 0;
    padding-inline: 0;
  }
}

.topFv__text-2 {
  margin-right: 22px;
}
@media screen and (max-width: 768px) {
  .topFv__text-2 {
    margin-right: unset;
    margin-top: 13px;
  }
}

.topFv__under {
  overflow: hidden;
  margin-top: 57px;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .topFv__under {
    font-size: 84px;
    margin-top: 20px;
  }
}

.topFv__under-text {
  font-size: 150px;
  font-weight: 700;
  color: #00495D;
  display: inline-block;
  animation: scroll 12s linear infinite;
  white-space: nowrap;
  padding-right: 50px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.inner {
  max-width: 1140px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
  }
}

.topAbout__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .topAbout__wrap {
    display: block;
  }
}

.topAbout__img {
  object-fit: contain;
  width: 100%;
  margin: auto;
}

.topAbout__main {
  margin-top: 70px;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .topAbout__main {
    margin: 30px 0 0;
  }
}

.topAbout__title {
  font-size: 14px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.topAbout__text {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .topAbout__text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.topAbout__link {
  margin-top: 34px;
  margin-left: auto;
}

.moreLink {
  display: inline-block;
  position: relative;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #00798C;
  padding-right: 16px;
}

.moreLink:hover {
  opacity: 1;
}

.moreLink__border,
.moreLink__border--single-prev,
.moreLink__border--single-next {
  border: 1px solid #00495D;
  border-radius: 4px;
  padding-top: 11px;
  padding-bottom: 10px;
}

.moreLink__border {
  padding-left: 23px;
  padding-right: 38px;
}

.moreLink__border--single-prev {
  padding-left: 38px;
  padding-right: 23px;
}

.moreLink__border--single-next {
  padding-left: 23px;
  padding-right: 34px;
}

.moreLink__border--not404 {
  border: 1px solid #fff;
  border-radius: 4px;
  width: 145px;
  padding-block: 10.5px;
  text-align: center;
  padding-right: 0px;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .moreLink__border--not404 {
    border-color: #00495D;
  }
}

.moreLink__underline::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: calc(100% + 7px);
  height: 1px;
  background: #00798C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.moreLink__underline:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.moreLink--thanks {
  width: 460px;
  padding-left: 22px;
  padding-right: 22px;
  padding-top: 21px;
  padding-bottom: 18px;
  background-color: #00495D;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .moreLink--thanks {
    width: 100%;
    max-width: 275px;
    font-size: 14px;
    padding-left: 28px;
    padding-right: 13px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

.topService__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .topService__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 19px;
  }
}

.topService__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topService__title {
  position: relative;
}

.topService__title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.topService__img {
  aspect-ratio: 355/170;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .topService__img {
    aspect-ratio: 335/170;
  }
}

.topService__text {
  color: #fff;
  position: absolute;
  top: 28.8235294118%;
  left: 8.4507042254%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topService__text {
    left: 9.014084507%;
    top: 50%;
    transform: translateY(-51%);
  }
}

.topService__text-top {
  font-size: 16px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.topService__text-under {
  font-size: clamp(1.125rem, -0.208rem + 2.667vw, 1.625rem);
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .topService__text-under {
    margin-top: 9px;
  }
}

.topService__item-text {
  margin-top: 20px;
  font-weight: 300;
  line-height: 2.37;
  margin-right: 20px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .topService__item-text {
    font-size: 14px;
    line-height: 2.2857142857;
    margin-right: unset;
  }
}

.topService__item-link {
  align-self: flex-end;
  margin-top: 19px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .topService__item-link {
    margin-top: 20px;
    margin-right: unset;
  }
}

.section-title__text {
  font-size: 70px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-title__text {
    font-size: 38px;
  }
}

.section-title__text--right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-title__text--right {
    text-align: left;
  }
}

.section-title--in-right {
  transform: translateX(50%);
  opacity: 0;
  transition: all 0.5s ease-out;
}

.section-title--in-right.is-active {
  transform: translateX(0);
  opacity: 1;
}

.section-title--in-left {
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.7s ease-out;
}

.section-title--in-left.is-active {
  transform: translateX(0);
  opacity: 1;
}

.works {
  background-color: #F5F7F5;
}

@media screen and (max-width: 768px) {
  .inner.works__inner {
    padding-inline: unset;
  }
}

@media screen and (max-width: 768px) {
  .works__section-title {
    padding-inline: 20px;
  }
}

.works__list {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.works__list--top {
  margin-top: 39px;
  padding: 50px 40px 48px;
}
@media screen and (max-width: 768px) {
  .works__list--top {
    margin-top: 20px;
    padding: 29px 40px 78px;
  }
}

.works__item--top:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .works__item--top:not(:first-child) {
    margin-top: 30px;
  }
}

.works__item--main:not(:first-child) {
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .works__item--main:not(:first-child) {
    margin-top: 20px;
  }
}

.works__item {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 47px;
}
@media screen and (max-width: 768px) {
  .works__item {
    padding-bottom: 27px;
  }
}

.works__item--main {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .works__item--main {
    padding-bottom: 19.6px;
  }
}

.works__content {
  display: grid;
  opacity: 0;
  translate: 0 -100%;
  transition: all 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .works__content {
    align-items: flex-start;
  }
}

.works__content--top {
  grid-template-columns: 28.431372549% 66.6666666667%;
  gap: 4.9019607843%;
}
@media screen and (max-width: 768px) {
  .works__content--top {
    align-items: flex-start;
    grid-template-columns: 40.6779661017% 53.2203389831%;
    gap: min(18px, 6.1016949153%);
  }
}

.works__content--main {
  grid-template-columns: 20.618556701% 75.5154639175%;
  gap: 3.8659793814%;
}
@media screen and (max-width: 768px) {
  .works__content--main {
    grid-template-columns: 44.0677966102% 50.8474576271%;
    gap: 5.0847457627%;
  }
}

.works__content.is-active-works {
  opacity: 1;
  translate: 0 0;
}

.works__img {
  margin-block: auto;
}
@media screen and (max-width: 768px) {
  .works__img {
    margin-block: unset;
  }
}

.works__img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .works__img img {
    aspect-ratio: 130/100;
  }
}

.works__img--top img {
  aspect-ratio: 290/229;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .works__img--top img {
    aspect-ratio: 120/90;
  }
}

.works__article {
  display: flex;
  flex-direction: column;
}

.works__category {
  display: inline-block;
  background-color: #E7EEE8;
  padding: 4px 18px;
  font-size: 11px;
  font-weight: 500;
  color: #626262;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .works__category {
    font-size: 10px;
    padding-inline: 15px;
  }
}

.works__category-block {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
@media screen and (max-width: 768px) {
  .works__category-block {
    column-gap: 6px;
  }
}

.works__title {
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 768px) {
  .works__title {
    line-height: 2;
    -webkit-line-clamp: 3;
    margin-top: 12px;
    font-size: 14px;
  }
}

.works__title--top {
  font-size: 24px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .works__title--top {
    font-size: 14px;
    margin-top: 12px;
  }
}

.works__title--main {
  font-size: 18px;
  margin-top: 32px;
  width: min(100%, 30em);
}
@media screen and (max-width: 768px) {
  .works__title--main {
    font-size: 14px;
    margin-top: 10px;
  }
}

.works__text {
  font-weight: 300;
  line-height: 2.375;
  color: #626262;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .works__text {
    display: none;
  }
}

.works__date {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .works__date {
    margin-top: 4px;
  }
}

.works__date--main {
  margin-top: auto;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .works__date--main {
    margin-top: 6px;
  }
}

.works__date--worksArticle {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .works__date--worksArticle {
    margin-top: 2px;
  }
}

.works__link {
  margin-top: 33px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works__link {
    margin-top: 35px;
  }
}

.tabList__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .tabList__inner {
    flex-direction: column;
  }
}

.tabList__wrap {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tabList__wrap {
    padding-inline: 20px;
  }
}

.tabList__wrap--sticky {
  position: sticky;
  top: 180px;
}

.tabList__tab-list {
  width: 264px;
}
@media screen and (max-width: 768px) {
  .tabList__tab-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 12px;
    width: 100%;
    justify-content: space-between;
    padding-right: 21px;
  }
}

.tabList__tab-list--works {
  width: 264px;
}
@media screen and (max-width: 768px) {
  .tabList__tab-list--works {
    display: grid;
    grid-template-columns: repeat(auto-fit, 129px);
    justify-content: space-between;
    width: 100%;
    column-gap: 10px;
    row-gap: 4px;
  }
}

.tabList__tab-list--topNews {
  margin-top: 44px;
}

.tabList__tab-item:not(:first-child) a {
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .tabList__tab-item:not(:first-child) a {
    margin-top: unset;
  }
}

.tabList__tab-item a {
  padding: 0 17px 10px;
  color: #626262;
  font-size: 14px;
  font-weight: 500;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tabList__tab-item a {
    padding: 5px 14px;
    font-size: 12px;
    color: #A9A9A9;
  }
}

.tabList__tab-item--active a {
  color: #000;
}

.tabList__tab-item--active a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #00495D;
  margin-right: 8px;
  display: block;
  position: absolute;
  top: 6px;
  left: 3px;
}
@media screen and (max-width: 768px) {
  .tabList__tab-item--active a::before {
    top: 10px;
    left: 0;
  }
}

.tabList__list {
  border-left: 1px solid #E2E2E2;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tabList__list {
    border-left: unset;
    padding-left: 0;
  }
}

.tabList__list--newsPage {
  padding-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .tabList__list--newsPage {
    margin-top: 31px;
  }
}

.tabList__works {
  border-left: 1px solid #E2E2E2;
  padding-left: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .tabList__works {
    border-left: unset;
    padding-left: unset;
    margin-top: 32px;
  }
}

.tabList__item:not(:first-child) {
  margin-top: 29.5px;
}
@media screen and (max-width: 768px) {
  .tabList__item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .tabList__item:first-child {
    border-top: 1px solid #E2E2E2;
  }
}

.tabList__item a {
  padding-bottom: 29px;
  border-bottom: 1px solid #E2E2E2;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .tabList__item a {
    padding: 19px 0;
  }
}

.tabList__item a:hover {
  opacity: 1;
}

.tabList__date {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  row-gap: 6px;
}

.tabList__time {
  margin-right: 9px;
  display: inline-flex;
  padding-top: 4px;
  margin-right: 29px;
}
@media screen and (max-width: 768px) {
  .tabList__time {
    margin: auto 6px auto 0;
    padding-top: unset;
    margin-right: 12px;
  }
}

.tabList__time--topNews {
  margin-right: 29px;
}

.tabList__title {
  margin-top: 25px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .tabList__title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 2;
  }
}

.tabList__link {
  margin-top: 34px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .tabList__link {
    margin-top: 39px;
  }
}

.tabList__category {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
@media screen and (max-width: 768px) {
  .tabList__category {
    column-gap: 6px;
  }
}

.date-time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #A9A9A9;
}

.date-time--news {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .date-time--news {
    font-size: 10px;
  }
}

.date-time--works {
  font-size: 10px;
}

.date-time--single {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .date-time--single {
    font-size: 10px;
  }
}

.date-time--latest {
  font-size: 10px;
}

.date-time--worksArticle {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .date-time--worksArticle {
    font-size: 10px;
  }
}

.underContact {
  background-color: #00495D;
  color: #fff;
}

.underContact__wrap {
  display: grid;
  grid-template-columns: 56.9444444444% 43.0555555556%;
}
@media screen and (max-width: 768px) {
  .underContact__wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.underContact__img img {
  aspect-ratio: 820/446;
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .underContact__img img {
    aspect-ratio: 375/240;
  }
}

.underContact-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .underContact-detail {
    padding: 80px 0 79px;
  }
}

.underContact-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6666666667;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .underContact-text {
    font-size: 14px;
    line-height: 2;
    text-align: center;
  }
}

.underContact__contact {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .underContact__contact {
    margin-top: 32px;
  }
}

.underContact-link {
  font-size: 22px;
  font-weight: 300;
  width: 235px;
  height: 68px;
  border: 1px solid #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .underContact-link {
    font-size: 16px;
    width: 227px;
    height: unset;
    padding-block: 17px;
  }
}

.underContact-link p {
  margin-left: 16px;
  display: inline;
}
@media screen and (max-width: 768px) {
  .underContact-link p {
    margin-left: 8px;
  }
}

.underContact__phone {
  margin-top: 20px;
}

.underContact__phone a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 768px) {
  .underContact__phone a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.underContact__time {
  font-size: 14px;
  font-weight: 300;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .underContact__time {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
  }
}

.slide-link-anime {
  position: relative;
  z-index: 1;
  transition: color ease 0.3s;
}

.slide-link-anime::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform ease 0.3s;
  z-index: -1;
}

.slide-link-anime:hover {
  opacity: 1;
  color: #00495D;
}

.slide-link-anime:hover::after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.underLine {
  display: inline;
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

@media (hover: hover) {
  .works__item a:hover .underLine,
  .newsList__item a:hover .underLine,
  .tabList__item a:hover .underLine {
    background-size: 100% 1px;
  }
}
.pageFv {
  padding-top: 176px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pageFv {
    padding-top: 64px;
  }
}

.pageFv__inner {
  max-width: 1140px;
  padding-left: 20px;
  margin-inline: auto;
}

.pageFv-main {
  position: relative;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .pageFv-main {
    margin-left: 10px;
  }
}

.pageFv__img {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .pageFv__img {
    padding-top: 0;
  }
}

.pageFv img {
  aspect-ratio: 1270/514;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .pageFv img {
    aspect-ratio: 365/280;
  }
}

.pageFv__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  background-color: #fff;
  padding: 41px 0 46px 50px;
}
@media screen and (max-width: 768px) {
  .pageFv__title {
    width: 190px;
    padding: 30px 0 35px 18px;
  }
}

.pageFv__title-sub {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .pageFv__title-sub {
    font-size: 44px;
  }
}

.pageFv__title-main {
  font-weight: 700;
  font-size: 20px;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .pageFv__title-main {
    font-size: 12px;
    margin-top: 3px;
  }
}

.pageFv__img {
  opacity: 0;
  translate: 0 500px;
  transition: opacity 0.6s ease-out, translate 0.6s ease-out;
}

.pageFv__title {
  opacity: 0;
  translate: -300px 0;
  transition: opacity 0.6s ease-out 0.3s, translate 0.6s ease-out 0.3s;
}

.is-active .pageFv__img,
.is-active .pageFv__title {
  opacity: 1;
  translate: 0 0;
}

.jump {
  display: flex;
  justify-content: center;
}

.inner.jump__inner {
  max-width: 880px;
}
@media screen and (max-width: 768px) {
  .inner.jump__inner {
    max-width: 600px;
  }
}

.jump__map {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .jump__map {
    margin-top: 19px;
  }
}

.jump__list {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .jump__list {
    gap: unset;
    width: 100%;
    max-width: 335px;
    justify-content: space-between;
  }
}

.jump__item a {
  color: #00495D;
  display: flex;
  align-items: center;
  padding: 20px 20px;
}
@media screen and (max-width: 768px) {
  .jump__item a {
    padding: 10px;
    font-size: 12px;
  }
}

.jump__item a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .jump__item a::after {
    margin-left: 4px;
    margin-bottom: 2px;
  }
}

.jump__main {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .jump__main {
    margin-top: 49px;
  }
}

.jump__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .jump__title {
    font-size: 18px;
    line-height: 2.0555555556;
  }
}

.jump__text {
  margin-top: 40px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .jump__text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.pageSection-title__main {
  color: #00798C;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .pageSection-title__main {
    font-size: 12px;
  }
}

.pageSection-title__sub {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pageSection-title__sub {
    font-size: 26px;
  }
}

.pageSection-title__sub::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-left: 20px;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .pageSection-title__sub::after {
    margin-left: 10px;
    margin-bottom: 4px;
  }
}

.philosophy {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .inner.philosophy__inner {
    padding-inline: unset;
  }
}

.philosophy__main {
  display: grid;
  grid-template-columns: auto 360px;
  background: linear-gradient(270deg, transparent 0%, transparent 10.4%, #F5F7F5 10.4%, #F5F7F5);
}
@media screen and (max-width: 768px) {
  .philosophy__main {
    display: flex;
    flex-direction: column;
    background: linear-gradient(0deg, transparent 0%, transparent 10.4%, #F5F7F5 10.4%, #F5F7F5);
  }
}

.philosophy__main-contents {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .philosophy__main-contents {
    padding: 0 20px;
  }
}

.philosophy__title {
  margin-top: 69px;
  margin-left: 2px;
}
@media screen and (max-width: 768px) {
  .philosophy__title {
    margin-top: 59px;
  }
}

.philosophy__main-text {
  margin-top: 59px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .philosophy__main-text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.philosophy__main-name {
  margin-top: 39px;
  margin-right: 11px;
  text-align: right;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .philosophy__main-name {
    font-size: 14px;
    margin-top: 30px;
    margin-right: unset;
    padding-bottom: unset;
  }
}

.philosophy__img {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .philosophy__img {
    padding: 0 20px;
    margin-top: 29px;
  }
}

.philosophy__img img {
  aspect-ratio: 360/535;
  object-fit: cover;
  height: auto;
  object-position: 64% center;
}
@media screen and (max-width: 768px) {
  .philosophy__img img {
    aspect-ratio: 335/300;
  }
}

.access {
  margin-top: 119px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 80px;
    padding-bottom: 39px;
  }
}

.access__address {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .access__address {
    font-size: 14px;
    margin-top: 19px;
  }
}

.access__detail {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .access__detail {
    display: block;
    margin-left: unset;
    margin-top: 3px;
  }
}

.access__map {
  margin-top: 60px;
  aspect-ratio: 1100/400;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin-top: 1ppx;
    aspect-ratio: 335/400;
  }
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.aboutSlider {
  padding-bottom: 115px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .aboutSlider {
    padding-bottom: 75px;
  }
}

@media screen and (max-width: 768px) {
  .aboutSlider__contents {
    padding-left: 171px;
  }
}

.aboutSlider__wrapper {
  display: inline-flex;
  transition-timing-function: linear;
}

.aboutSlider-img img {
  aspect-ratio: 480/400;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .aboutSlider-img img {
    aspect-ratio: 180/150;
  }
}

@media screen and (max-width: 768px) {
  .br__pc {
    display: none;
  }
}

.br__form-sp {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .br__form-sp {
    display: block;
    font-size: 14px;
    margin-top: 8px;
  }
}

.br__sp {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .br__sp {
    display: block;
  }
}

.service {
  margin-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .service {
    margin-top: 50px;
    padding-bottom: 80px;
  }
}

.inner.service__inner {
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .inner.service__inner {
    max-width: 600px;
    padding-inline: 0;
  }
}

.service_wrap:not(:first-child) {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .service_wrap:not(:first-child) {
    margin-top: 50px;
  }
}

.service__content {
  display: grid;
  grid-template-columns: 46.6666666667% 1fr;
  align-items: center;
  justify-content: space-between;
  background-color: #F5F7F5;
}
@media screen and (max-width: 768px) {
  .service__content {
    grid-template-columns: 1fr;
    padding: 60px 20px 0 20px;
  }
}

.service__main {
  max-width: 400px;
  margin: 80px 50px;
  flex-shrink: 1;
}
@media screen and (max-width: 768px) {
  .service__main {
    max-width: unset;
    margin: unset;
  }
}

.service__title {
  font-size: 700;
}

.service__title-number {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  color: #00495D;
}
@media screen and (max-width: 768px) {
  .service__title-number {
    font-size: 32px;
  }
}

.service__title-number::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 34px;
  background-color: #000;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .service__title-number::after {
    height: 30px;
    margin-left: 10px;
  }
}

.service__title-main {
  font-size: 28px;
  margin-top: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .service__title-main {
    font-size: 20px;
    margin-top: 19px;
  }
}

.service__text {
  font-size: 22px;
  line-height: 2.0909090909;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .service__text {
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

@media screen and (max-width: 768px) {
  .service__img {
    margin-top: 20px;
  }
}

.service__img img {
  aspect-ratio: 640/499;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .service__img img {
    aspect-ratio: 335/220;
  }
}

.service__features {
  margin-top: 31px;
  padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  .service__features {
    margin-top: 21px;
    padding-inline: 20px;
  }
}

.service__features-title {
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .service__features-title {
    font-size: 18px;
  }
}

.service__features-subtitle {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  left: 17px;
  bottom: 3px;
  color: #626262;
}
@media screen and (max-width: 768px) {
  .service__features-subtitle {
    font-size: 10px;
    left: 9px;
  }
}

.service__features-text {
  line-height: 2.375;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .service__features-text {
    font-size: 14px;
    line-height: 2.2857142857;
    margin-top: 19px;
  }
}

.layout__about {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .layout__about {
    margin-top: 16px;
  }
}

.layout__topService {
  margin-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .layout__topService {
    margin-top: 77px;
    padding-bottom: 80px;
  }
}

.layout__topWorks {
  padding-top: 120px;
  background-color: #F5F7F5;
}
@media screen and (max-width: 768px) {
  .layout__topWorks {
    padding-top: 60px;
  }
}

.layout__topNews {
  padding-top: 119px;
  padding-bottom: 118px;
  background-color: #F5F7F5;
}
@media screen and (max-width: 768px) {
  .layout__topNews {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.layout__tabList {
  margin-top: 57px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .layout__tabList {
    margin-top: 47px;
    padding-bottom: 60px;
  }
}

.news__layout {
  padding-top: 278px;
  padding-bottom: 119px;
}
@media screen and (max-width: 768px) {
  .news__layout {
    padding-top: 132px;
    padding-bottom: 82px;
  }
}

.layout__worksArticle {
  padding-top: 278px;
  padding-bottom: 119px;
}
@media screen and (max-width: 768px) {
  .layout__worksArticle {
    padding-top: 132px;
    padding-bottom: 79px;
  }
}

.layout__contact {
  margin-top: 98px;
  padding-bottom: 119px;
}
@media screen and (max-width: 768px) {
  .layout__contact {
    margin-top: 52px;
    padding-bottom: 79px;
  }
}

.layout__confirm {
  margin-top: 97px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .layout__confirm {
    margin-top: 52px;
    padding-bottom: 80px;
  }
}

.layout__thanks {
  margin-top: 98px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .layout__thanks {
    margin-top: 92px;
    padding-bottom: 80px;
  }
}

.layout__not404 {
  padding-top: 330px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .layout__not404 {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.category__item {
  display: inline-block;
  color: #626262;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 18px 3px;
  background-color: #E7EEE8;
}
@media screen and (max-width: 768px) {
  .category__item {
    font-size: 10px;
    padding: 5px 15px;
  }
}

.category__item--topNews {
  background-color: #fff;
}

.category-tab li + li {
  border-top: 1px solid #E4E4E4;
}

.category-tab a {
  font-size: 14px;
  color: #000;
  padding-top: 15px;
  padding-bottom: 16px;
  display: block;
}

.inner.news__inner {
  max-width: 1198px;
}
@media screen and (max-width: 768px) {
  .inner.news__inner {
    max-width: 600px;
    padding-inline: 15px;
  }
}

.news__wrap {
  display: grid;
  grid-template-columns: 65.5142610199% min(33.3333333333%, 300px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news__wrap {
    grid-template-columns: 1fr;
    justify-content: unset;
  }
}

.news__container {
  padding-right: 5.2303860523%;
}
@media screen and (max-width: 768px) {
  .news__container {
    padding-inline: 15px;
  }
}

.news__single {
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E2E2;
}

@media screen and (max-width: 768px) {
  .news__tab {
    margin-top: 57px;
  }
}

.news__tab-item + .news__tab-item {
  margin-top: 40px;
}

.news__tab-title {
  background-color: #002B36;
  padding: 15px 18px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.news__tab-inner {
  padding-inline: 18px;
}

.single__title {
  font-size: 26px;
  line-height: 1.9230769231;
  font-weight: 500;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .single__title {
    font-size: 18px;
    line-height: 1.6666666667;
    margin-top: 9px;
  }
}

.single__time {
  display: inline-flex;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .single__time {
    margin-top: 9px;
  }
}

.single__img {
  margin-top: 38px;
}

.single__img img {
  aspect-ratio: 718/380;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .single__img img {
    aspect-ratio: 315/176;
  }
}

.single__content {
  margin-top: 40px;
}

.single__content h2 {
  font-size: 22px;
  font-weight: 500;
  background-color: #F8F9F9;
  display: flex;
  align-items: center;
  border-left: 3px solid #00798C;
  padding: 8px 0 7px 11px;
}
@media screen and (max-width: 768px) {
  .single__content h2 {
    font-size: 16px;
    padding: 7px 0 9px 8px;
  }
}

.single__content p {
  margin-top: 40px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .single__content p {
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.single__content h3 {
  margin-top: 72px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #00798C 40%, #E4E4E4 40%) 1;
  padding-left: 14px;
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .single__content h3 {
    margin-top: 40px;
  }
}

.single__content ul {
  margin-top: 71px;
}
@media screen and (max-width: 768px) {
  .single__content ul {
    margin-top: 22px;
  }
}

.single__content li {
  margin-left: 11px;
  text-indent: -6px;
  padding-left: 6px;
}
@media screen and (max-width: 768px) {
  .single__content li {
    margin-left: 10px;
    font-size: 14px;
    line-height: 1.44;
  }
}

.single__content li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #00798C;
  border-radius: 50%;
  position: relative;
  bottom: 6px;
  right: 11px;
}
@media screen and (max-width: 768px) {
  .single__content li::before {
    bottom: 3px;
    right: 10px;
  }
}

.single__link-all {
  display: flex;
  justify-content: space-between;
  margin-top: 39px;
  padding-right: 11px;
}
@media screen and (max-width: 768px) {
  .single__link-all {
    margin-top: 7px;
  }
}

.single__link-next {
  margin-left: auto;
}

.latest__item {
  padding-top: 18px;
  padding-bottom: 17px;
  border-bottom: 1px solid #E4E4E4;
}

.latest__item a {
  display: grid;
  grid-template-columns: 37.8787878788% 55.303030303%;
  gap: 6.8181818182%;
  align-items: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .latest__item a {
    grid-template-columns: 100px 61.8122977346%;
    gap: 5.8252427184%;
    align-items: start;
  }
}

.latest__img img {
  aspect-ratio: 100/100;
  object-fit: cover;
  height: auto;
}

.latest__article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .latest__article {
    margin-top: 1px;
  }
}

.latest__title {
  font-size: 12px;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 768px) {
  .latest__title {
    line-height: 2.3333333333;
  }
}

.latest__time {
  display: inline-flex;
}

.inner.worksArticle__inner {
  max-width: 880px;
}
@media screen and (max-width: 768px) {
  .inner.worksArticle__inner {
    max-width: 600px;
    padding-inline: 30px;
  }
}

.works__title--worksArticle {
  font-size: 26px;
  font-weight: 500;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .works__title--worksArticle {
    font-size: 18px;
    line-height: 1.6666666667;
    margin-top: 10px;
  }
}

.worksArticle__main {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .worksArticle__main {
    margin-top: 32px;
  }
}

.worksArticle__img img {
  aspect-ratio: 840/471;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .worksArticle__img img {
    aspect-ratio: 315/176;
  }
}

.worksArticle__text {
  line-height: 2;
  margin-top: 40px;
  padding-inline: 80px;
}
@media screen and (max-width: 768px) {
  .worksArticle__text {
    padding-inline: unset;
    margin-top: 42px;
  }
}

.worksArticle__link {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .worksArticle__link {
    margin-top: 40px;
  }
}

.moreLink--worksArticle {
  width: 285px;
}

.inner.contact__inner {
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .inner.contact__inner {
    max-width: 600px;
  }
}

.contact__text {
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.contact__form {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 26px;
  }
}

.form__item {
  padding: 20.4px 0;
}
@media screen and (max-width: 768px) {
  .form__item {
    padding-block: 15px;
  }
}

.form__title {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .form__title {
    width: 100%;
  }
}

.required {
  display: inline-block;
  padding-right: 15px;
  font-size: 15px;
  color: #E20000;
}

.form__title--type02 {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .form__title--type02 {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form__title--aiStart {
  align-items: flex-start;
}

.form__input {
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .form__input {
    width: 100%;
    margin-top: 10px;
  }
}

.formInput input::placeholder,
.formTextarea textarea::placeholder {
  color: lightgray;
  font-size: 14px;
}

.formInput input,
.formInput textarea {
  width: 100%;
  padding-left: 14px;
  border: 1px solid #E2E2E2;
  border-radius: 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .formInput input,
  .formInput textarea {
    width: 100%;
    margin-left: 0;
    padding-left: 15px;
  }
}

.is-error .formInput input,
.is-error .formInput textarea {
  border-color: #E20000;
}

.formInput input {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .formInput input {
    height: 50px;
  }
}

.formInput textarea {
  height: 160px;
}

.formInput input:focus,
.formTextarea textarea:focus {
  outline: 2px solid #B5B5B5;
}

.formSelect {
  position: relative;
}

.formSelect select {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  border: 1px solid #E2E2E2;
  border-radius: 0;
  font-size: 14px;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .formSelect select {
    height: 50px;
  }
}

.is-error .formSelect select {
  border-color: #E20000;
}

.formSelect::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 6px;
  top: 22px;
  right: 15px;
  display: inline-block;
  background-color: #000;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.formSelect select:focus {
  outline: 2px solid #B5B5B5;
}

.formTextarea textarea {
  width: 100%;
  height: 160px;
  padding-top: 10px;
  padding-left: 20px;
  border: 1px solid #E2E2E2;
  border-radius: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .formTextarea textarea {
    width: 100%;
    margin-left: 0;
    padding-left: 15px;
  }
}

.is-error .formTextarea textarea {
  border-color: #E20000;
}

.form__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .form__privacy {
    text-align: left;
  }
}

.form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.form__acceptance {
  margin-top: 14px;
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form__acceptance {
    text-align: left;
    margin-top: 9px;
  }
}

input[type=checkbox] + span::before {
  width: 17px;
  height: 17px;
  content: "";
  display: inline-block;
  border: 1px solid #E2E2E2;
  position: relative;
  top: 2px;
  left: 0;
  margin-right: 9px;
}

input[type=checkbox] + span::after {
  content: "";
  display: none;
}

input[type=checkbox]:checked + span::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  border-left: 4px solid #00495D;
  border-bottom: 4px solid #00495D;
  rotate: 315deg;
  position: absolute;
  top: 3px;
  left: 1px;
}

.wpcf7-list-item {
  margin: 0;
}

.form__submit {
  margin-top: 40px;
  text-align: center;
}

.formBtn input {
  width: 446px;
  padding: 20px 0;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  background-color: #00495D;
  cursor: pointer;
  transition: opacity 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
@media screen and (max-width: 768px) {
  .formBtn input {
    width: 260px;
    padding-block: 12px;
    font-size: 14px;
  }
}
.formBtn input:disabled {
  color: #fff;
  background-color: #E2E2E2;
}
@media screen and (min-width: 768px) {
  .formBtn input:disabled:hover {
    cursor: not-allowed;
  }
}
@media screen and (min-width: 768px) {
  .formBtn input:hover {
    opacity: 0.7;
    transition: opacity 0.5s;
  }
}

.error-text {
  color: #E20000;
  font-size: 14px;
  display: none;
}

.is-error .error-text {
  display: block;
}

.inner.confirm__inner {
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .inner.confirm__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .confirm__text {
    font-size: 14px;
  }
}

.confirm__contents {
  margin-top: 81px;
}
@media screen and (max-width: 768px) {
  .confirm__contents {
    margin-top: 25px;
  }
}

.confirm__list {
  border-collapse: collapse;
}

.confirm__item {
  padding-block: 18.8px;
  display: grid;
  grid-template-columns: 191px 71.7647058824%;
}
@media screen and (max-width: 768px) {
  .confirm__item {
    padding-block: 14.2px;
    grid-template-columns: 1fr;
  }
}

.confirm__head {
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

.confirm__head p::after {
  content: "*";
  display: inline-block;
  color: #E20000;
  position: relative;
  top: 0;
  left: -1px;
}

.confirm__data {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .confirm__data {
    margin-top: 6px;
  }
}

.confirm__data--whiting {
  font-size: 14px;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .confirm__data--whiting {
    margin-top: 7px;
  }
}

.confirm__button-all {
  margin-top: 20px;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .confirm__button-all {
    margin-top: 25px;
    gap: 23px;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .confirm__prev,
  .confirm__submit {
    flex-shrink: 1;
    width: 151px;
  }
}

.confirm-button input {
  width: 280px;
  padding-top: 17px;
  padding-bottom: 16px;
  border-radius: 4px;
  display: grid;
  font-size: 18px;
  transition: opacity 0.5s;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .confirm-button input {
    width: min(100%, 151px);
    max-width: 151px;
    padding-top: 9px;
    padding-bottom: 7px;
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .confirm-button input:hover {
    opacity: 0.7;
  }
}
.confirm-button--prev input {
  background-color: #fff;
  border: 2px solid #00495D;
}

.confirm-button--prev input {
  color: #00495D;
}

.confirm-button--submit input {
  background-color: #00495D;
}

.confirm-button--submit input {
  color: #fff;
}

.wpcf7-spinner {
  display: none !important;
}

.inner.thanks__inner {
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .inner.thanks__inner {
    max-width: 600px;
  }
}

.thanks__head {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .thanks__head {
    font-size: 24px;
  }
}

.thanks__under {
  margin-top: 19px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .thanks__under {
    margin-top: 10px;
    font-size: 14px;
  }
}

.thanks__text {
  margin-top: 39px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .thanks__text {
    margin-top: 29px;
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.thanks__button {
  margin-top: 40px;
  text-align: center;
}

.arrow__next::after,
.arrow__prev::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #00495D;
  border-right: 1px solid #00495D;
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
}

.arrow__next::after {
  rotate: 45deg;
}

.arrow__next::after {
  translate: 9px -9px;
}

.arrow__prev::after {
  rotate: 226deg;
}

.arrow__prev::after {
  translate: -13px -8px;
}

.arrow__prev--white::after {
  border-color: #fff;
  translate: -15px -11px;
}
@media screen and (max-width: 768px) {
  .arrow__prev--white::after {
    translate: -15px -8px;
  }
}

.arrow__next,
.arrow__prev {
  display: inline-block;
  transition: transform 0.3s ease;
  translate: 0 0;
}

.moreLink:hover .arrow__next {
  transform: translateX(5px);
}

.moreLink:hover .arrow__prev {
  transform: translateX(-5px);
}

.not404__button .arrow__prev::after {
  border-color: #fff;
}
@media screen and (max-width: 768px) {
  .not404__button .arrow__prev::after {
    border-color: #00495D;
  }
}

.not404__wrap {
  position: relative;
}

.not404__bg {
  background-image: url("../images/404/404.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  display: grid;
  align-items: center;
  margin-left: 11.8055555556%;
}
@media screen and (max-width: 768px) {
  .not404__bg {
    background-image: url("../images/404/404_sp.webp");
    background-position: center top;
    height: 243px;
    margin-left: 2.6666666667%;
  }
}

.not404__main {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .not404__main {
    display: contents;
    padding-inline: unset;
  }
}

.not404__title {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 70px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .not404__title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 35px;
    height: 243px;
    padding-inline: 20px;
    white-space: nowrap;
    display: grid;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .not404__under {
    padding-inline: 18px;
  }
}

.not404__text {
  font-weight: 500;
  line-height: 2.375;
  margin-top: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .not404__text {
    color: #000;
    font-size: 14px;
    line-height: 2.2857142857;
    margin-top: 40px;
  }
}

.not404__button {
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .not404__button {
    margin-top: 40px;
    text-align: center;
  }
}

.not404__button .moreLink {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .not404__button .moreLink {
    color: #00495D;
  }
}

.breadcrumb {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 60px;
  font-size: 15px;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 10px;
    padding-right: 10px;
    margin-top: 8px;
  }
}

.breadcrumb a {
  color: #A9A9A9;
}

.breadcrumb__between {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 11px;
  background-color: #A9A9A9;
}

.pagination {
  margin-top: 57px;
  display: flex;
  align-items: center;
  gap: 10.5px;
}

.pagination__arrow {
  position: relative;
}

.pagination__arrow a {
  height: 40px;
  display: flex;
  align-items: center;
}

.pagination__arrow::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #242424;
  border-right: 3px solid #242424;
}

.pagination__arrow.is-link::before {
  border-color: #242424;
}

.pagination__arrow.is-span::before {
  border-color: #E9EEEF;
}

.pagination__arrow a {
  position: absolute;
  top: -8px;
  left: 0;
  right: -5px;
}

.pagination__arrow--prev,
.pagination__arrow--next {
  padding-right: 8px;
}

.pagination__arrow--prev::before {
  rotate: 226deg;
  margin-left: 4px;
}

.pagination__arrow--next::before {
  rotate: 45deg;
}

.pagination .current,
.pagination > a {
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
}

.pagination .current {
  color: #fff;
  background-color: #00495D;
}

.pagination > a {
  color: #242424;
  background-color: #E9EEEF;
}

.next.page-numbers {
  background-color: unset;
  transform: translateX(-10px);
}

body.no-scroll {
  overflow: hidden;
}

.section {
  opacity: 0;
  translate: 0 100px;
  transition: translate 0.7s ease-in-out, opacity 1s ease-in-out;
}

.section__visible {
  opacity: 1;
  translate: 0 0;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  clip-path: inset(0% 0% 0% 0%); /* 初期状態を追加 */
}

.loader__logo {
  width: 300px; /* remを直接的な値に変更 */
  max-width: 40vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: inset(0% 100% 0% 0%);
  opacity: 0;
  visibility: hidden;
  z-index: 1005;
}/*# sourceMappingURL=style.css.map */