@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

ul,
ol {
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: auto;
}

textarea {
  resize: vertical;
}

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

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

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

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

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1156px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
  }
}

.span {
  position: absolute;
  top: 40%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #6B705C;
  border-right: 1px solid #6B705C;
  transform: rotate(45deg);
  margin-left: 8px;
}

.title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 70px;
  color: #626F47;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 38px;
  }
}

.read__more::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #6B705C;
  bottom: 0px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.read__more:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.read__more .span {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* 統一されたトランジション */
}

.read__more:hover .span {
  transform: translateX(4px) rotate(45deg);
}

/* 共通 */
.fade-slidein {
  opacity: 0;
  transform: translateX(0);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 初期状態 */
.fade-slidein.left {
  transform: translateX(-100px);
}

.fade-slidein.right {
  transform: translateX(150px);
}

/* 表示された時 */
.fade-slidein.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fadein-up {
  transform: translateY(50px);
}

.fadein-down {
  transform: translateY(-50px);
}

/* 表示されたら */
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.header__inner {
  display: flex;
  justify-content: space-between;
}

/* wp */

@media screen and (max-width: 768px) {
    .swiper-slide.swiper-slide1.swiper-slide-active {
  width: 100%;
  }
}

@media screen and (max-width: 768px) {
    .drawar__icon {
  max-width: 200px;
  }
}
.tab{
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .tab {
    display: grid;
    grid-template-columns: minmax(173px, auto) 108px;
    /* margin: 0 auto; */
    /* row-gap: 16px; */
  }
}

.tab a{
  color: #a9a9a9;
}

.breadcrumb {
  display: flex;
  align-items: center;
}
.breadcrumb a{
  color: #a9a9a9;
}
.breadcrumb__between {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
 background-color:#a9a9a9; */
}

.disabled__border:first-child,
.disabled__border:last-child{
  background-color: unset;
}

.news2__topic-img-box img{
  width: 718px;
    max-width: 100%;
    max-height: 700px;
    /* height: 100%; */
}

.wp-block-heading{
  margin-top: 47px;
  background-color:#f8f9f9;
  border-left: 3px solid #001e63;
  height: 48px;
  padding-left: 13px;
  padding-top: 8px;
  letter-spacing: 0em;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .wp-block-heading {
font-size: 16px;  }
}

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

.detail__content h3{
  padding-bottom: 6px;
  padding-left: 15px;
  font-size: 18px;
  position: relative;
  border-left: none;
}

.detail__content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    #001e63 0%,
    #001e63 40%,
    #e4e4e4 40%,
    #e4e4e4 100%
  );
}

.wp-block-list ul,
.wp-block-list {
  list-style: disc;
  margin-left: 1.5em; /* 左に少し余白を付ける */
}

.news__link {
  display: flex;
}
.news__link img{
  /* max-width: 97px;
  max-height: 97px; */
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
 .news__link img{
     max-height: 85px;
  }
}

@media screen and (max-width: 768px) {
  .works__card {
    gap: 17px;
  }
}
@media screen and (max-width: 768px) {
  .news__link.archive__link img{
    max-height: 100px;
  }
}
.news2__right-text{
  font-size: 12px;
}

.news2__item{
  padding: 17.5px 18px;
  border-bottom: 1px solid #e2e2e2;
}

/* .detail__list li+ li {
  margin-top: 4px;
} */

.detail__list a {
color: #000;
}

.detail__list li,
.category__list li{
  padding: 17px 0px;
    font-size: 14px;
    border-bottom: 1px solid #e2e2e2;
}
.detail__list li:last-child,
.category__list li:last-child{
  border-bottom: none;
}
.news__categories.newspg__categories{
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news__categories.newspg__categories  {
    display: grid;
    grid-template-columns: minmax(135px, auto) 173px;
    row-gap: 16px;
  }
}

.works__card.workspg__card a{
  display: flex;
  width: 100%;
}

.article-title-box.workspg-title-box{
  padding-top: 0;
}

.news__category{
  font-size: 11px;
  background-color: #e2e2e2;
  padding: 4px;
}

.news__link a{
  gap: 25px;
}

/* .news__link img {
  /* max-width: 160px;
    max-height: 130px */
/* } */
/* @media screen and (max-width: 768px) {
  .news__link img  {
      /* max-width: 97px; */
    /* width: 100%;
  }
} */ */ */

.works__card.workspg__card a{
gap: 25px;
}
.workspg__card a{
  display: flex;
gap: 30px;
}

.works__item {
  list-style: none;
}

.article-item li{
  display: flex;
  gap: 25px;
}

.news__category{
  background-color: rgb(248, 248, 248);
  color: #626262;
}

.works2-img-box img{
max-width:840px;
width: 100%;
max-height: 471px;
height: 100%;
}

.works2__text-sub p:nth-child(2){
  margin-top: 40px;
}
.works2__text-sub p:last-child{
  margin: auto;
    border: 1px solid #001e63;
    border-radius: 4px;
    width: 288px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 52px;
}
.works2__text-sub a {
      display: flex;
    position: relative;
    /* justify-content: center; */
    color: #001e63;
    font-size: 14px;
    font-weight: 500;
    font-family: "Noto Sans JP", "sans-serif";
    cursor: pointer;
    padding: 10px 21px 10px 38px;
    transition: color 0.4s 
cubic-bezier(0.25, 0.46, 0.45, 0.94);
} 
.works2__text-sub a::before{
    content: "";
    position: absolute;
  top: 42%;
  left: 18px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #001e63;
  border-left: 1px solid #001e63;
  transform: rotate(-45deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.works2__text-sub a:hover::before {
  transform: translateX(-5px) rotate(-45deg);
}

.wpcf7-form-control{
  font-size: 14px;
  color: #000;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  margin-top: 9px;
  padding: 13px;
  width: 100%;
}
.wpcf7-form-control.wpcf7-acceptance{
  border: none;
}

.contactform__button-box.contactcheck__button-box{
  margin-top: 30PX;
}

.contactform__button-box.contactcheck__button-box p{
max-width: 280px;
    width: 100%;
}
.wpcf7-form-control.wpcf7-previous.contact__back-button{
      background-color: #fff;
    color: #011950;
    border: 2px solid #011950
}
.wpcf7-form-control.wpcf7-submit.has-spinner.contact__submit-input{
  background-color: #011950;
    color: #fff;
}

.contactcheck__name.contactform__label-text.required{
  display: flex;
}

.tab__link {
  color: #a9a9a9;
  font-weight: 500;
  font-size: 14px;
  padding-top: 19px;
  position: relative;
  padding-left: 1.2em;
  margin-left: 3px;
  transition: color 0.3s;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (max-width: 1133px) {
  .tab__link  {
    font-size: 11px;
  }
}
@media screen and (max-width: 1000px) {
  .tab__link  {
    font-size: 12px;
    margin-left: 5px;
    padding-right: 21px;
  }
}
@media screen and (max-width: 768px) {
  .tab__link  {
    font-size: 12px;
  }
}

.tab__link.is-active,
.newspg__category-btn.category-btn.is-active {
  font-weight: 500;
  color: #5A5148;
}
.tab__link::before,
.newspg__category-btn.category-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 71%;
  transform: translateY(-45%);
  font-size: 9px;
}
  @media screen and (max-width: 768px) {
  .tab__link::before {
  top: 74%;
  }
}

.tab__link.is-active::before,
.newspg__category-btn.category-btn.is-active::before {
  content: "■";
  color:#5A5148;
  margin-right: 0.5em;
  font-size: 0.9em;
}

.tab__linknews__item:not(:first-child) {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .tab__linknews__item:not(:first-child) {
  padding-top: 17px;
  }
}

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

.contactform__button-box p input{
    background-color: #798645;
    color: white;

}
.contactform__button-box p:hover {
  opacity: 0.7;
      transition: opacity 0.3s;
}
.form__checkbox::after{
  display:none;
}

@media screen and (max-width: 768px) {
 .philosophy__container picture{
 margin: auto;
  }
}

.works__img-box.workspg__img-box{
  width: 53%;
}
@media screen and (max-width: 768px) {
.works__img-box.workspg__img-box{
  aspect-ratio: 120/90;
 width: 120px;
  }
}

.works__img.workspg__img.wp-post-image{
width: 100%;
    max-width: 293px;
    max-height: 227px;
    height: 100%;
}
.news__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .news__excerpt p{
    display: none;
  }
}
@media (max-width: 768px) {
  .news__excerpt{
    margin-top: 0;
  }
}
 /* PC用 */
.pc-only {
  display: inline-block;
}
.sp-only {
  display: none;
}

/* スマホ用 */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline-block;
  }
}

.news__excerpt{
  margin-top: 30px;
    font-size: 16px;
    color: #626262;
    line-height: 2;
}
@media (max-width: 768px) {
 .news__excerpt{
margin-top: 0;
  }
}


/* works */
.article-item li{ 
gap:0;
}
.works__card.workspg__card a {
  gap: 50px;
}
@media (max-width: 768px) {
 .works__card.workspg__card a{
gap: 13px;
  }
}

.workspg__card{
  gap: 30px;
}


.artical-title.workspg-title{
  font-size: 24px;
}
/* works */
.target-text {
  word-break: break-word; /* 単語が長すぎても折り返す */
  white-space: normal;    /* 自然に折り返す */
}
.works__item-box{
  display: flex;
    gap: 25px;
}
@media (max-width: 768px) {
 .works__item-box {
   gap: 14px;
  }
}
/* .works__img-box{
  width: 290px;
  height: 229px;
} */
/* .news__link img {
    max-width: 120px;
    max-height: 88px;
} */
/* .works__img-box.workspg__img-box {
    width: 31%;
}
@media screen and (max-width: 768px) {
  .works__img-box.workspg__img-box {
   width: 47%;
  }
} */

.works__text-box.workspg__text-box{
  width: 57%;
}
@media screen and (max-width: 768px) {
  .works__text-box.workspg__text-box {
  width: 52%;
  flex-grow: 1;
  }
}
.artical-title {
  display: inline-block;   /* 省略処理に必要 */
  max-width: 100%;         /* 幅の上限を指定 */
  white-space: nowrap;     /* 折り返ししない */
  overflow: hidden;        /* はみ出した部分を隠す */
  text-overflow: ellipsis; /* 「…」を表示 */
}
/* wp */

.header__logo {
  max-width: 257px;
  width: 100%;
  height: 180px;
  z-index: 999;
}
@media screen and (max-width: 1000px) {
  .header__logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 114px;
    height: 80px;
  }
}

.header__nav {
  height: 80px;
}

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

.header__nav-link {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 16px;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 1000px) {
  .header__nav-link {
    font-size: 13px;
  }
}

.header__nav-item a {
  color: #000;
  height: inherit;
  padding: 30px 25px;
  transition: opacity 0.3s;
}
.header__nav-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .header__nav-item a {
    padding: 40px 15px;
  }
}

.header__nav-item:nth-child(5) {
  padding-right: 25px;
}
@media screen and (max-width: 1000px) {
  .header__nav-item:nth-child(5) {
    padding-right: 15px;
  }
}

.header__nav-item-contact {
  height: inherit;
  display: flex;
  background-color: #798645;
}

.header__nav-item-contact a {
  font-family: "Roboto";
  font-weight: 500;
  height: inherit;
  color: #fff;
  padding: 20px 35px;
  transition: opacity 0.3s;
}
.header__nav-item-contact a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .header__nav-item-contact a {
    padding: 20px 18px;
    font-size: 14px;
  }
}
.fa-regular {
  padding-right: 5px;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .fa-regular {
    font-size: 17px;
  }
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 26px;
  width: 29px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 23px;
  right: 27px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #5A5148;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger.is-active span {
  background-color: #5A5148;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.js-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.js-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F5F3EE;
  clip-path: circle(0% at 100% 100%);
  transition: clip-path 0.6s ease-in-out, background-color 0.6s ease-in-out;
  z-index: 999;
  display: block;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* メニューが開いたとき */
.js-drawer.is-open {
  clip-path: circle(150% at 100% 100%);
}

/* メニュー内のコンテンツ */
.drawer-menu__inner {
  margin: 0 auto;
  max-width: 73%;
  width: 100%;
  justify-content: left;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out 0.3s; /* clip-pathの後に表示 */
}

/* is-open時に中身表示 */
.js-drawer.is-open .drawer-menu__inner {
  opacity: 1;
}

.drawer__logo {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 114px;
  width: 100%;
  height: auto;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 115px;
  align-items: baseline;
  transition: opacity 0.3s;
}
.drawer-menu__items:hover {
  opacity: 0.7;
}

.drawer-menu__item {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #798645;
}

/* .drawer-menu__item:first-child {
  border-top: 1px solid #798645;
} */

.drawer-menu__link {
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto";
  display: inline-block;
  text-align: center;
  color: #5A5148;
  padding-right: 40%;
  padding-top: 9px;
  padding-bottom: 8px;
}

.drawar__icon a {
  color: #fff;
  transition: opacity 0.3s;
}
.drawar__icon a:hover {
  opacity: 0.7;
}

.drawar__icon {
  font-size: 22px;
  display: flex;
  margin-top: 50px;
  gap: 10px;
}

.mv__styling {
  width: 100%;
  height: 100vh;
  min-height: 500px;
}
@media screen and (max-width: 768px) {
  .mv__styling {
    height: initial;
  }
}

.mv__inner {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  max-width: 1310px;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.mv__container {
  display: flex;
  margin-top: -100px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv__container {
    flex-direction: column;
    margin-top: -81px;
  }
}

.swiper__box {
  max-width: 80%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .swiper__box {
    max-width: 83%;
  }
}
@media screen and (max-width: 768px) {
  .swiper__box {
    max-width: 100%;
    height: 90vh;
  }
}

.swiper1 {
  height: 100%;
}

/* .swiper-wrapper1 {
  display: flex;
  flex-direction: column;
  height: auto;
} */

.swiper-slide1 {
  width: 100%;
  aspect-ratio: 1034/700;
}
@media screen and (max-width: 768px) {
  .swiper-slide1 {
    width: 355px;
    aspect-ratio: 355/480;
  }
}

.swiper-slide1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__text {
  width: 20%;
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .mv__text {
    width: 100%;
    margin-top: 21px;
    margin-left: 11px;
  }
}

.mv__text-vartical {
  writing-mode: vertical-rl;
  font-size: clamp(37px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 34%;
}
@media screen and (max-width: 1000px) {
  .mv__text-vartical {
    margin-left: 22%;
  }
}
@media screen and (max-width: 768px) {
  .mv__text-vartical {
    font-size: 34px;
    writing-mode: horizontal-tb;
    margin-left: 0;
    letter-spacing: 0;
  }
}

.mv__txt {
  width: 100%;
  line-height: 1;
  overflow: hidden;
  margin-top: 63px;
}
@media screen and (max-width: 1000px) {
  .mv__txt {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .mv__txt {
    height: inherit;
    margin-top: 105px;
  }
}

.animetxt {
  font-size: 150px;
  font-weight: 700;
  color: #011950;
  white-space: nowrap;
  animation: animetxt 20s linear infinite;
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .animetxt {
    font-size: 85px;
  }
}

@keyframes animetxt {
  100% {
    transform: translateX(-100%);
  }
}
.about-us__styling {
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  .about-us__styling {
    margin-top: 150px;
  }
}

.about-us__inner {
  padding-left: 27px;
}
@media screen and (max-width: 768px) {
  .about-us__inner {
    padding-left: 20px;
  }
}

.about-us__container {
  display: flex;
  gap: clamp(15px, 4vw, 62px);
}
@media screen and (max-width: 768px) {
  .about-us__container {
    flex-direction: column;
  }
}

.about-us__img {
  width: 554px;
  aspect-ratio: 554/484;
}
@media screen and (max-width: 768px) {
  .about-us__img {
    max-width: 400px;
    width: 100%;
    aspect-ratio: 340/297;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .about-us__img {
    width: 285px;
  }
}

.about-us__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-us__text-container {
  max-width: 490px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about-us__text-container {
    max-width: initial;
    text-align: center;
  }
}

.about-us__main-text {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 700;
  padding-top: 14%;
  color: #626F47;
}
@media screen and (max-width: 1000px) {
  .about-us__main-text {
    padding-top: 9.5px;
  }
}

.about-us__text {
  line-height: 2.37;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .about-us__text {
    margin: 0;
    line-height: 2.3;
    padding-top: 29px;
    font-size: 14px;
  }
}

.read__more-container {
  display: flex;
  justify-content: right;
  padding-top: 9px;
}
@media screen and (max-width: 1000px) {
  .read__more-container {
    padding-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .read__more-container {
    padding-top: 37px;
  }
}

.read__more {
  font-family: "Roboto";
  width: 94px;
  position: relative;
  color: #6B705C;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .read__more {
    font-weight: 400;
  }
}

.service__styling {
  margin-top: 300px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .service__styling {
    margin-top: 76px;
    margin-bottom: 86px;
  }
}

.service__inner {
  max-width: 1145px;
  padding-right: 23px;
}
@media screen and (max-width: 1133px) {
  .service__inner {
    max-width: 770px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service__inner {
    max-width: 600px;
    width: 100%;
    padding-left: 19px;
  }
}

.service__title-box {
  text-align: end;
}
@media screen and (max-width: 768px) {
  .service__title-box {
    text-align: left;
  }
}

.service__title-box.fade-slidein {
  opacity: 0;
  transform: translateX(150px);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .service__title-box.fade-slidein {
    transform: translateX(-180px);
  }
}

.service__title-box.fade-slidein.is-animated {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.service__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 80px 13px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 39px;
  }
}
@media screen and (max-width: 375px) {
  .service__list {
    grid-template-columns: 1fr;
  }
}

.service__card-container {
  margin-top: 105px;
}
@media screen and (max-width: 768px) {
  .service__card-container {
    margin-top: 19px;
  }
}

.service__card-container.scc2 {
  margin-top: 160px;
}
.service__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 355px;
  max-width: 355px;
  margin: 0 auto;
}

.service__item:hover .service__img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .service__item {
    margin: 0 auto;
    min-width: 340px;
    max-width: 600px;
  }
}
@media screen and (max-width: 375px) {
  .service__item {
    min-width: 280px;
    max-width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .service__item:not(:first-child) {
    padding-top: 11px;
  }
}

.service__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service__img-box {
  width: 355px;
  aspect-ratio: 355/170;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service__img-box {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 335/170;
    margin: initial;
  }
}
@media screen and (max-width: 375px) {
  .service__img-box {
    width: 280px;
    margin: initial;
  }
}

.service__img {
  width: 100%;
  aspect-ratio: 355/170;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .service__img {
    max-width: 600p;
    width: 100%;
    aspect-ratio: 335/170;
  }
}
@media screen and (max-width: 375px) {
  .service__img {
    width: 280px;
  }
}

.img3 {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 95.7%;
  aspect-ratio: 355/170;
  object-fit: cover;
}
.service__text-box {
  position: absolute;
  top: 47%;
  left: 31.2%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .service__text-box {
    top: 85px;
    left: 32.2%;
  }
}

.service__text-namber {
  color: #fff;
  font-size: 16px;
  font-family: "Oswald";
  font-weight: 700;
}

.service__text-main {
  color: #fff;
  font-size: 24px;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: 700;
  padding-top: 11px;
  letter-spacing: 0.09em;
}

.service__text-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-left: 2px;
  padding-top: 17px;
}
@media screen and (max-width: 768px) {
  .service__text-inner {
    padding-top: 19px;
  }
}

.sti__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-left: 3px;
  padding-top: 16px;
  text-align: center;
}

.service__explain {
  line-height: 2.38;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 16px;
  font-weight: 400;
  padding-right: 20px;
  color:#5A5148;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service__explain {
    font-size: 14px;
    line-height: 2.3;
    padding-right: 15px;
  }
}

.service__explain-small {
  margin-top: 20px;
  color:#5A5148;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.service__link-box {
  display: flex;
  justify-content: end;
  padding-top: 21px;
  padding-right: 19px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .service__link-box {
    padding-top: 20px;
    padding-right: 4px;
  }
}

.arrow-container {
  border: 1px solid #6B705C;
  border-radius: 4px;
  width: 141px;
  text-align: center;
}

.arrow {
  display: flex;
  position: relative;
  color: #6B705C;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto";
  cursor: pointer;
  padding: 10px 24px;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arrow:hover .span {
  transform: translateX(5px) rotate(45deg);
  transition: transform 0.3s ease;
}

.works__styling {
  background-color: #f8f8f8;
  padding-top: 300px;
}
@media screen and (max-width: 768px) {
  .works__styling {
    padding-top: 56px;
  }
}

.works__title {
  padding-left: 9px;
}

@media screen and (max-width: 768px) {
  .works__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .works__title-box {
    padding-left: 11px;
  }
}

.works__container {
  background-color: #fff;
  margin-top: 40px;
  padding: 50px 45px;
}
@media screen and (max-width: 768px) {
  .works__container {
    padding: 50px 30px;
    margin-top: 0;
  }
}

.works__item {
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .works__item {
    padding-left: 11px;
  }
}

.works__item:not(:first-child) {
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .works__item:not(:first-child) {
    padding-top: 29px;
    padding-left: 11px;
  }
}

.works__item a {
  display: block;
  padding-bottom: 51px;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .works__item a {
    padding-bottom: 17px
  }
}

.works__card {
  display: flex;
  gap: 47px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .works__card {
    gap: 17px;
  }
}

.works__card.workspg__card.archive__card a{
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .works__card.workspg__card.archive__card a{
    gap: 17px;
  }
}

.works__img-box,
.works__img-box-shadow {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .works__img-box,
  .works__img-box-shadow {
    width: initial;
  }
}

.works__img-box {
  aspect-ratio: 290/229;
  max-width: 290px;
}
@media screen and (max-width: 768px) {
  .works__img-box {
    aspect-ratio: 124/92;
    width: 279px;
  }
}

.works__text-box {
  width: 125%;
}

.workspg-title{
    background-image: linear-gradient(black, black);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 0.5s ease;
  padding-bottom: 3px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .workspg-title {
    font-size: 14px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;        /* 3行まで表示 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;          /* 折り返しOKに戻す */
  }
}

.works__item a:hover .workspg-title {
  background-size: 100% 1px;
}


.artical-title {
  /* display: inline; */
  background-image: linear-gradient(black, black);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 0.5s ease;
  padding-bottom: 3px;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .artical-title {
    font-size: 14px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;        /* 3行まで表示 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;          /* 折り返しOKに戻す */
  }
}

.works__item a:hover .artical-title {
  background-size: 100% 1px;
}

.article-label {
  margin-left: 2px;
  width: 91px;
  background-color: #EAE6E1;
  font-size: 11px;
  font-weight: 400;
  padding: 4px 17px;
  text-align: center;
  color: #5A5148;
}
@media screen and (max-width: 768px) {
  .article-label {
    width: 80px;
    margin-left: 0;
    font-size: 10px;
  }
}

.article-title-box {
  padding-top: 28px;
}
@media screen and (max-width: 768px) {
  .article-title-box {
  padding-top: 19px;
  }
}

.article-text {
  color: #626262;
  padding-top: 30px;
  line-height: 2.3;
  font-weight: 400;
}

.artical-date {
  padding-top: 18px;
  font-size: 12px;
  color: #a9a9a9;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .artical-date {
    padding-top: 10px;
    font-size: 10px;
  }
}

.works__btn {
  padding-top: 38px;
  padding-right: 2px;
}
@media screen and (max-width: 768px) {
  .works__btn {
    padding-top: 37px;
    padding-right: 12px;
  }
}

.news__styling {
  background-color: #f8f8f8;
  padding-top: 300px;
  padding-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .news__styling {
    padding-top: 108px;
    padding-bottom: 52px;
  }
}

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

.fade-slidein-wrapper {
  overflow: hidden;
}

.news__left-inner {
  position: relative;
  overflow: hidden;
}

.news__categories {
  width: 187px;
  padding-top: 26px;
  padding-left: 3px;
}
@media screen and (max-width: 768px) {
  .news__categories {
    padding-top: 18px;
    padding-left: 14px;
    display: flex;
    flex-wrap: wrap;
    max-width: 413px;
    width: 100%;
  }
}

.news__right {
  width: 100%;
  padding-left: 59px;
}
@media screen and (max-width: 768px) {
  .news__right {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .news__right-inner {
    padding: 17px 19px;
  }
}

.news__container {
  padding-left: 7px;
  padding-right: 77px;
  border-right: 1px solid #e2e2e2;
}
@media screen and (max-width: 1000px) {
  .news__container {
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .news__container {
    padding-left: 0px;
    padding-right: 0px;
    border-right: none;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 33px;
  }
}

.category-btn {
  color: #a9a9a9;
  font-weight: 500;
  font-size: 14px;
  padding-top: 19px;
  position: relative;
  padding-left: 1.2em;
  margin-left: 3px;
  transition: color 0.3s;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .category-btn {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .category-btn {
    font-size: 12px;
    margin-left: 5px;
    padding-right: 21px;
  }
}
@media screen and (max-width: 375px) {
  .category-btn {
    font-size: 10px;
  }
}

.category-btn.active {
  font-weight: 500;
  color: #5A5148;
}

.category-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 71%;
  transform: translateY(-45%);
  font-size: 9px;
}
@media screen and (max-width: 768px) {
  .category-btn::before {
    top: 74%;
  }
}

.category-btn.active::before {
  content: "■";
  color: #5A5148;
  margin-right: 0.5em;
  font-size: 0.9em;
}

.news__item:not(:first-child) {
  padding-top: 18px;
}
@media screen and (max-width: 768px) {
  .news__item:not(:first-child) {
    padding-top: 17px;
  }
}

.news__date {
  font-weight: 700;
  font-size: 12px;
  color: #a9a9a9;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 10px;
  }
}

.news__label-box {
  display: inline-block;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .news__label-box {
    display: inline;
    padding-left: 0;
    margin-left: 19px;
  }
}
@media screen and (max-width: 375px) {
  .news__label-box {
    margin-left: 5px;
  }
}

.news__label {
  background-color: #fff;
  color: #626262;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 18px;
}
@media screen and (max-width: 768px) {
  .news__label {
    font-size: 10px;
    padding-left: 13px;
    padding: 0;
  }
}
@media screen and (max-width: 375px) {
  .news__label {
    padding: 5px 9px;
    font-size: 7px;
  }
}

.news__label:not(:first-child) {
  margin-left: 17px;
}
@media screen and (max-width: 768px) {
  .news__label:not(:first-child) {
    margin-left: 21px;
  }
}

.news__text-box {
  padding-bottom: 29px;
  padding-top: 26px;
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .news__text-box {
    padding-top: 22px;
    padding-bottom: 19px;
  }
}

.news__text {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  display: inline;
  background-image: linear-gradient(black, black);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 0.5s ease;
  padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 14px;
    line-height: 2;
  }
}

.news__item:hover .news__text {
  background-size: 100% 1px;
}

.news__btn {
  padding-top: 34px;
  padding-right: 8px;
}
@media screen and (max-width: 768px) {
  .news__btn {
    padding-top: 45px;
    padding-right: 0px;
  }
}

.contact__styling {
  width: 100%;
  background-color: #798645;
}

@media screen and (max-width: 768px) {
  .contact__inner {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
    max-width: initial;
  }
}

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

.contact__text-box {
  color: #fff;
}

.contact__text-inner {
  width: 300px;
}

.contact__img-box {
  width: 57%;
  margin: 0px auto 0px calc(50% - 50vw);
  width: 60vw;
}
@media screen and (max-width: 768px) {
  .contact__img-box {
    width: 100vw;
  }
}

.contact__img {
  height: 448px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact__img {
    height: 240px;
  }
}

.contact__text-box {
  display: flex;
  justify-content: end;
  width: 43%;
}
@media screen and (max-width: 768px) {
  .contact__text-box {
    width: 100%;
    padding-bottom: 78px;
    justify-content: center;
  }
}

.contact__main-text {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 18px;
  font-weight: 400;
  padding-top: 87px;
  line-height: 1.7;
  text-align: center;
  /* padding-left: 17px; */
}
@media screen and (max-width: 1000px) {
  .contact__main-text {
    font-size: 16px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .contact__main-text {
    justify-content: center;
    display: flex;
    font-size: 14px;
    padding-top: 79px;
    line-height: 2;
  }
}

.contact__list {
  justify-content: center;
  display: grid;
}
@media screen and (max-width: 768px) {
  .contact__list {
    padding-top: 10px;
  }
}

.contact__item {
  margin-left: -34px;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .contact__item {
    margin-top: 22px;
    margin-left: 0;
  }
}

.button--accessible {
  transition: background-color 0.3s;
}

.button--accessible:focus-visible {
  background-color: var(--background-hover);
}

@media (any-hover: hover) {
  .button--accessible:hover {
    background-color: var(--background-hover);
  }
}
.contact__btn {
  display: flex;
  width: 235px;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 300;
  position: relative;
  transition: color 0.5s ease;
}
@media screen and (max-width: 1000px) {
  .contact__btn {
    width: 230px;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn {
    width: 230px;
    padding: 16px 31px;
    font-size: 16px;
    border: 1.5px solid #fff;
  }
}

.contact__btn:hover {
  color: #5A5148;
}

.contact__btn:hover .fa-solid,
.contact__btn:hover .fa-regular {
  color: #5A5148;
}

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

.contact__btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.fa-regular,
.fa-solid,
.contact__btn-text {
  position: relative;
}

.contact__btn-text {
  font-weight: 400;
}

.contact__sub-text {
  font-size: 14px;
  font-weight: 300;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .contact__sub-text {
    font: 12px;
    padding-left: 0;
	text-align: center;
  }
}

.fa-regular,
.fa-solid {
  color: #fff;
  padding-top: 9px;
  padding-left: 13px;
  padding-right: 13px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .fa-regular,
  .fa-solid {
    padding-top: 6px;
    padding-left: 23px;
    padding-right: 10px;
    font-size: 16px;
  }
}

.contact__sub-text {
  padding-top: 21px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contact__sub-text {
    text-align: center;
    font-size: 12px;
    padding-top: 35px;
  }
}

.footer__styling {
  background-color: #F5F3EE;
  /* padding-bottom: 70px; */
  overflow-x: hidden;
}

.footer__inner {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1205px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 600px;
  }
}

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

.footer__item-box {
  display: flex;
  padding-top: 94px;
  padding-left: 33px;
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .footer__item-box {
    flex-direction: column;
    padding-top: 53px;
    padding-left: 30px;
    padding-bottom: 42px;
  }
}

.footer__item-logo,
.footer__logo {
  max-width: 258px;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .footer__item-logo,
  .footer__logo {
    max-width: 115px;
  }
}

.footer__icon {
  display: flex;
  padding-top: 73px;
  padding-left: 29px;
}
@media screen and (max-width: 768px) {
  .footer__icon {
    padding-top: 40px;
    padding-left: 0px;
  }
}

.fa-brands {
  color: #5A5148;
  padding-top: 9px;
  padding-left: 14px;
  padding-right: 9px;
  font-size: 22px;
  transition: opacity 0.3s;
}
.fa-brands:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .fa-brands {
    padding-left: 0px;
    padding-right: 20px;
  }
}

.footer-menu__items a {
  transition: opacity 0.3s;
}
.footer-menu__items a:hover {
  opacity: 0.7;
}

.footer-menu__link {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto";
  letter-spacing: 0.05em;
  display: inline-block;
  text-align: center;
  color: #5A5148;
  padding-top: 10px;
  padding-bottom: 5px;
  white-space: nowrap; /* 折り返し禁止 */
}
@media screen and (max-width: 768px) {
  .footer-menu__link {
    font-size: 14px;
    padding-left: 9%;
    padding-top: 13.5px;
  }
}

.link5 {
  padding-right: 10px;
}

.footer-menu__items {
  margin-top: 100px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .footer-menu__items {
    padding-top: 46px;
  }
}

.footer__copy {
  color: #fff;
  font-size: 11.7px;
  padding-left: 28px;
  font-family: "Roboto";
}
@media screen and (max-width: 768px) {
  .footer__copy {
    padding-left: 32px;
  }
}

.fv__styling {
  height: 100%;
  min-height: 300px;
}

.fv__inner {
  padding-top: 56px;
  padding-left: 11.5%;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding-top: 32px;
    padding-left: 2.5%;
  }
}

.fv__container {
  position: relative;
}

.fv__title-box {
  position: absolute;
  top: -1%;
  left: -0.5%;
  background-color: #fff;
  z-index: 100;
  width: clamp(195px, 40vw, 510px);
  height: clamp(130px, 20vw, 230px);
}
@media screen and (max-width: 768px) {
  .fv__title-box {
    top: -1%;
    left: -1%;
  }
}

.fv__title {
  padding-left: 60px;
  padding-top: 22px;
  font-size: 100px;
}
@media screen and (max-width: 1133px) {
  .fv__title {
    font-size: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__title {
    padding-top: 0;
    font-size: 71px;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 44px;
    padding-left: 11%;
    padding-top: 9%;
  }
}

.fv__title-sub {
  padding-left: 59px;
  font-size: 20px;
  margin-top: -20px;
  font-weight: 700;
  color:#5A5148;
}
@media screen and (max-width: 1133px) {
  .fv__title-sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__title-sub {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .fv__title-sub {
    padding-left: 22px;
    font-size: 12px;
    margin-top: -6px;
  }
}

.fv-fade-left {
  opacity: 0;
  transform: translateX(-150px);
  transition: opacity 1.2s ease, transform 0.8s ease;
}

.fv-fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fv-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fv-fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fv__img-box {
  width: 100vw;
  height: 521px;
  width: calc(50% + 45vw);
}
@media screen and (max-width: 768px) {
  .fv__img-box {
    width: calc(50% + 50vw);
    height: 280px;
  }
}

.fv__img {
  display: block;
  object-fit: cover;
  width: calc(50% + 50vw);
  height: inherit;
}
@media screen and (max-width: 768px) {
  .fv__img {
    height: inherit;
    object-position: center top;
  }
}

.about-fv__t-a-box.fv__t-a-box.breadcrumb{
   width: 50%;
  display: flex;
  justify-content: end;
  padding-top: 11px;
  padding-right: 39px;
}
@media screen and (max-width: 768px) {
 .about-fv__t-a-box.fv__t-a-box.breadcrumb{
    padding-right: 0;
    width: 50%;
    font-size: 9px;
    /* width: 100vw; */
    /* width: calc(50% + 49vw); */
    padding-top: 6px;
  }
}
.fv__t-a-box {
  /* width: 50%; */
  display: flex;
  justify-content: end;
  padding-top: 11px;
  padding-right: 39px;
}
@media screen and (max-width: 768px) {
  .fv__t-a-box {
    padding-right: 0;
    /* width: 80%; */
    font-size: 12px;
    width: 100vw; 
    width: calc(50% + 49vw);
    padding-top: 6px;
  }
}
.fv__t-a-box span:last-child {
white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv__t {
  color: #a9a9a9;
  font-size: 15px;
  display: flex;
  padding-right: 10px;
  font-weight: 400;
  font-family: "Roboto";
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__t {
    font-size: 10px;
    padding-right: 8px;
  }
}

.fv__a {
  color: #242424;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto";
}
@media screen and (max-width: 768px) {
  .fv__a {
    font-size: 10px;
  }
}

.fv__t::after {
  content: "";
  position: absolute;
  top: 59%;
  left: 95%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #e2e2e2;
}

.information-styling {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .information-styling {
    margin-top: 25px;
  }
}

.information-informaition {
  display: flex;
  gap: 120px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .information-informaition {
    gap: 34px;
  }
}
@media screen and (max-width: 375px) {
  .information-informaition {
    gap: 22px;
  }
}

@media screen and (max-width: 768px) {
  .about__information-inner.information-inner {
    padding-right: 20px;
  }
}

.information__link {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  color: #011950;
}
@media screen and (max-width: 768px) {
  .information__link {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .information__link {
    font-size: 10px;
  }
}

.information__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #011950;
  border-bottom: 1px solid #011950;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .information__link::after {
    right: 5px;
    top: 35%;
  }
}

.information-title-box {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  margin-top: 170px;
}
@media screen and (max-width: 768px) {
  .information-title-box {
    /* padding-top: 58px; */
  }
}

.information-title {
  font-size: 27px;
  font-weight: 500;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information-title {
    font-size: 18px;
    line-height: 2;
  }
}

.information-text {
  padding-top: 42px;
  font-size: 16px;
  line-height: 2.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information-text {
    padding-top: 29px;
    font-size: 14px;
    line-height: 2.3;
  }
}

.philosophy-styling {
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  .philosophy-styling {
    margin-top: 100px;
    background-color: #f8f8f8;
  }
}

.philosophy__inner {
  max-width: 1143px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .philosophy__inner {
    max-width: 600px;
    padding-left: 0;
    padding-right: 0;
  }
}

.philosophy__container {
  display: flex;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .philosophy__container {
    flex-direction: column;
  }
}

.philosophy__text-box {
  width: 100%;
  max-width: 67%;
  padding: 66px 32px;
}
@media screen and (max-width: 1000px) {
  .philosophy__text-box {
    padding: 37px 25px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__text-box {
    max-width: 100%;
    padding-left: 21px;
    padding-right: 19px;
    padding-top: 80px;
    padding-bottom: 28px;
  }
}

.about__sub-title {
  color: #5A5148;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__sub-title {
    font-size: 12px;
  }
}

.about__title {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 26px;
  }
}

.about__title::after {
  content: "";
  display: inline-block;
  width: 63px; /* 長さは調整 */
  height: 2px; /* 太さも調整可 */
  background-color: #000; /* 線の色 */
  margin-left: 22px;
  vertical-align: super;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .about__title::after {
    width: 59px;
    height: 2px;
    margin-left: 10px;
    vertical-align: super;
    margin-bottom: 3px;
  }
}

.philosophy__text {
  padding-top: 57px;
  line-height: 2.4;
}
@media screen and (max-width: 1000px) {
  .philosophy__text {
    padding-top: 28px;
    font-size: 14px;
    line-height: 2.3;
  }
}

.philosophy__img-box {
  max-width: 33%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .philosophy__img-box {
    max-width: none;
    width: 335px;
    aspect-ratio: 335/300;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .philosophy__img-box {
    width: 280px;
  }
}

.philosophy__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 360/535;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .philosophy__img {
    width: 335px;
    aspect-ratio: 335/300;
    object-fit: contain;
  }
}
@media screen and (max-width: 375px) {
  .philosophy__img {
    width: 280px;
  }
}

.philosophy__name {
  display: flex;
  justify-content: end;
  padding-top: 38px;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .philosophy__name {
    padding-top: 30px;
    padding-right: 1px;
    font-size: 14px;
  }
}

.access__styling {
  margin-top: 300px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .access__styling {
    /* padding-top: 80px; */
    padding-bottom: 150px;
    margin-top: 200px;
  }
}

.access__inner {
  padding-left: 28px;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding-left: 20px;
  }
}

.access__add-box {
  display: flex;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .access__add-box {
    flex-direction: column;
    padding-top: 18px;
  }
}

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

.access__add2 {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .access__add2 {
    padding-top: 4px;
    padding-left: 0px;
    font-size: 14px;
  }
}

.access__map-box {
  max-width: 1100px;
  width: 100%;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .access__map-box {
    padding-top: 20px;
  }
}

iframe {
  display: block;
  width: 100%;
}

.profile__styling {
  background-color: #f8f8f8;
}

.profile__inner {
  padding-left: 28px;
  padding-top: 150px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .profile__inner {
    padding-left: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.profile__container {
  max-width: 1100px;
  width: 100%;
}

.profile__list {
  padding-top: 59px;
}
@media screen and (max-width: 768px) {
  .profile__list {
    padding-top: 30px;
  }
}

.profile__item {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .profile__item {
    flex-direction: column;
    padding-bottom: 20px;
  }
}

.profile__item:not(:first-child) {
  padding-top: 38px;
}
@media screen and (max-width: 768px) {
  .profile__item:not(:first-child) {
    padding-top: 19.5px;
  }
}

.profile__dd {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .profile__dd {
    font-size: 14px;
  }
}

.profile__dt {
  font-size: 16px;
  font-weight: 500;
  width: 15.5%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .profile__dt {
    width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .profile__dd {
    padding-top: 14px;
  }
}

.profile__dd2 {
  /* padding-left: 16px; */
}
@media screen and (max-width: 768px) {
  .profile__dd2 {
    font-size: 14px;
    padding-left: 0px;
    padding-top: 15px;
  }
}

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


.profile__dd-wrap2 {
  display: flex;
  flex-direction: column;
  gap: 8px; /* 行間調整したい場合 */
  width: 84.5%;
}
@media screen and (max-width: 768px) {
  .profile__dd-wrap2 {
    width: 100%;
    font-size: 14px;
  }
}

.profile__dd-wrap2 p:not(:first-of-type) {
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  .profile__dd-wrap2 p:not(:first-of-type) {
    padding-top: 0px;
  }
}

.infinite-slider {
  width: 100vw;
  overflow: hidden;
  height: 400px;
  margin-top: 120px;
  margin-bottom: 118px;
}
@media screen and (max-width: 768px) {
  .infinite-slider {
    height: 230px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.infinite-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.slide {
  flex-shrink: 0;
  max-width: 480px;
  width: 100%;
  height: 496px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .slide {
    max-width: 180px;
    height: 150px;
  }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.service01__styling {
  padding-top: 124px;
}
@media screen and (max-width: 768px) {
  .service01__styling {
    padding-top: 101px;
    padding-bottom: 80px;
  }
}

.information-inner {
  max-width: 1237px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .information-inner {
    max-width: 600px;
    padding-right: 21px;
  }
}

.service01__container {
  display: flex;
  background-color: #f8f8f8;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service01__container {
    flex-direction: column;
  }
}

.service01__text-box {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .service01__text-box {
    width: 100%;
  }
}

.service01__text-box-inner {
  padding: 20% 19% 4% 8.9%;
}
@media screen and (max-width: 1133px) {
  .service01__text-box-inner {
    padding: 6% 9% 4% 8.9%;
  }
}
@media screen and (max-width: 768px) {
  .service01__text-box-inner {
    padding: 0;
  }
}

.service01__img-box {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .service01__img-box {
    width: 100%;
    padding-top: 21px;
  }
}

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

.servicepg__title {
  font-family: "Oswald";
  font-size: 40px;
  font-weight: 700;
  color: #001e63;
}
@media screen and (max-width: 768px) {
  .servicepg__title {
    padding-top: 9px;
    font-size: 32px;
  }
}

.servicepg__title::after {
  content: "|";
  margin-left: 0.35em;
  font-weight: 200;
  color: #000;
  position: absolute;
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .servicepg__title::after {
    margin-left: 0.25em;
    font-size: 29px;
  }
}

.servicepg__sub {
  font-size: 28px;
  font-weight: 700;
  padding-top: 18px;
}
@media screen and (max-width: 768px) {
  .servicepg__sub {
    font-size: 20px;
  }
}

.service01__text {
  padding-top: 21px;
  font-size: 22px;
  font-weight: 500;
  line-height: 2.1;
}
@media screen and (max-width: 1000px) {
  .service01__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .service01__text {
    padding-top: 20px;
    font-size: 14px;
    line-height: 2.4;
  }
}

@media screen and (max-width: 768px) {
  .servicepg__item {
    background: linear-gradient(to bottom, #f8f9f9 0%, #f8f9f9 calc(100% - 250px), #fff calc(100% - 200px), #fff 100%);
  }
}

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

@media screen and (max-width: 768px) {
  .features__container {
    padding-top: 16px;
  }
}

.features__inner {
  max-width: 1185px;
  width: 100%;
  padding: 30px 48px 120px;
}
@media screen and (max-width: 768px) {
  .features__inner {
    width: 100%;
    padding: 0;
  }
}

.features__title-box {
  display: flex;
}

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

.features__title-sub {
  font-size: 12px;
  margin-left: 16px;
  display: flex;
  align-items: anchor-center;
}
@media screen and (max-width: 768px) {
  .features__title-sub {
    font-size: 10px;
    margin-left: 10px;
  }
}

.features__text {
  padding-top: 20px;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .features__text {
    padding-top: 20px;
    line-height: 2.3;
    font-size: 14px;
  }
}

.newspg__styling {
  padding-top: 55px;
  padding-bottom: 125px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .newspg__styling {
    padding-top: 29px;
    padding-bottom: 48px;
  }
}

.news-fv__t-a-box .fv__t-a-box {
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .news-fv__t-a-box .fv__t-a-box {
    padding-right: 0;
  }
}

.news-fv__img.fv__img {
  height: 100%;
}

.newspg__lr-container {
  display: flex;
  align-items: stretch;
}

.newspg__container {
  flex: 0 0 auto;
  height: auto;
  align-self: stretch;
  padding-right: 77px;
}
@media screen and (max-width: 1133px) {
  .newspg__container {
    padding-left: 43px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .newspg__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.newspg-sticky {
  position: sticky;
  top: 50px;
  align-self: flex-start;
}

.newspg__left {
  margin-top: -16px;
  border: none;
}
@media screen and (max-width: 768px) {
  .newspg__left {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
}

.newspg__categories {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .newspg__categories {
    display: grid;
    grid-template-columns: minmax(135px, auto) 134px;
    row-gap: 16px;
  }
}


.newspg__category-btn {
  color: #a9a9a9;
  font-weight: 500;
  font-size: 14px;
  padding-top: 3px;
  position: relative;
  margin-left: 3px;
  transition: color 0.3s;
  line-height: 1.5;
  padding-left: 12px;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .newspg__category-btn {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .newspg__category-btn {
    font-size: 12px;
    margin-left: 5px;
    padding-right: 21px;
  }
}
@media screen and (max-width: 375px) {
  .newspg__category-btn {
    font-size: 9px;
    padding-right: 13px;
  }
}

.newspg__category-btn .active {
  font-weight: 500;
  color: #000;
}

.newspg__category-btn::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 70%;
  transform: translateY(-45%);
  font-size: 9px;
}
@media screen and (max-width: 768px) {
  .newspg__category-btn::before {
    top: 50%;
  }
}

.newspg__category-btn.active::before {
  content: "■";
  color: #5A5148;
  margin-right: 0.5em;
  font-size: 0.7em;
}

.newspg__category-btn {
  padding-top: 19px;
}
@media screen and (max-width: 768px) {
  .newspg__category-btn {
    padding-top: 0;
  }
}

.pagenation__box {
  display: flex;
  justify-content: flex-start;
  padding-top: 53px;
}
@media screen and (max-width: 768px) {
  .pagenation__box {
    justify-content: center;
  }
}

.newspg__right {
  border-left: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .newspg__right {
    border: none;
  }
}

@media screen and (max-width: 768px) {
  .newspg__item:not(:first-child) {
    padding-top: 18.5px;
  }
}

@media screen and (max-width: 768px) {
  .newspg__label-box {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .news__label2 {
    padding: 5px 15px;
  }
}

@media screen and (max-width: 768px) {
  .news__label2:not(:first-child) {
    margin-left: 13px;
  }
}

@media screen and (max-width: 768px) {
  .newspg__text-box {
    padding-bottom: 20.5px;
  }
}

.pagination {
  display: flex;
  gap: 9px;
}
@media screen and (max-width: 375px) {
  .pagination {
    gap: 6px;
  }
}

.disabled-ft {
  padding-right: 13px;
}

.disabled-end {
  padding-left: 13px;
}

.disabled-ft a,
.disabled-end a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 24px;
  padding-top: 7px;
}

.disabled__border {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #000;
  /* background-color: #e9eeef; */
  text-decoration: none;
  font-family: "Oswald";
  font-size: 14px;
}

.disabled__border a {
  padding: 8px 15px;
  color: #242424;
}

.disabled__border.active {
  background-color: #5A5148;
  color: #fff;
}

.news2-fv__inner {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .news2-fv__styling {
    padding-top: 8px;
  }
}

.news2-fv__t-a-box {
  padding-top: 17px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .news2-fv__t-a-box {
    padding-top: 0;
    padding-right: 0;
  }
}

.fv__t a {
  position: relative;
  padding-right: 7px;
  color: #a9a9a9;
}

.news2-fv__n {
  position: relative;
  padding-left: 35px;
}

.news2-fv__n::after {
  content: "";
  position: absolute;
  top: 59%;
  left: 94%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #e2e2e2;
}

.news2__container {
  padding-top: 52px;
}
@media screen and (max-width: 768px) {
  .news2__container {
    padding-top: 21px;
  }
}

.news2__topic-inner {
  max-width: 1200px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news2__topic-inner {
    flex-direction: column;
    padding-left: 17px;
    padding-right: 17px;
    padding-bottom: 73px;
    max-width: 600px;
  }
}

.news2__topic-left-inner {
  padding-right: 140px;
}
@media screen and (max-width: 1000px) {
  .news2__topic-left-inner {
    padding-right: 70px;
  }
}
@media screen and (max-width: 768px) {
  .news2__topic-left-inner {
    padding: 0px 12px;
  }
}

.news2__label-box {
  padding-left: 0;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .news2__label-box {
    margin-left: 0px;
  }
}

.news2__label-box span {
  margin-right: 2px;
}

.news2__label {
  background-color: #f8f8f8;
  color: #626262;
  padding: 4px 21px;
}
@media screen and (max-width: 768px) {
  .news2__label {
    padding: 4px 16px;
  }
}

@media screen and (max-width: 768px) {
  .news__label.news2__label:not(:first-child) {
    margin-left: 0px;
  }
}

.news__label2 {
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .news__label2 {
    margin-right: -10px;
  }
}

.news__label.news2__label a{
color: #626262;
}
.news2__text-box {
  border: none;
  padding-top: 20px;
  padding-bottom: 14px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news2__text-box {
    padding-top: 10px;
    padding-left: 2px;
    padding-bottom: 0px;
    width: 100%;
    padding-right: 20px;
    letter-spacing: 0.05em;
  }
}

.news2__text {
  font-weight: 600;
  font-size: 26px;
  color: #000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news2__text {
    font-size: 17px;
    line-height: 1.9;
  }
}

.news2__topic-img {
  aspect-ratio: 718/380;
  width: 100%;
  object-fit: cover;
}

.news2__date-top {
  font-size: 11px;
}

.news2__topic-img-box {
  padding-top: 37px;
}
@media screen and (max-width: 768px) {
  .news2__topic-img-box {
    padding-top: 39px;
  }
}

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

.news2__text2-main {
  background-color: #f8f9f9;
  border-left: 3px solid #001e63;
  height: 48px;
  padding-left: 13px;
  padding-top: 8px;
  letter-spacing: 0em;
  font-size: 22px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .news2__text2-main {
    padding-top: 7px;
    font-size: 16px;
    height: 40px;
    padding-left: 10px;
    border-left: 4px solid #001e63;
  }
}

.news2__text2-sub1,
.news2__text3-sub2 {
  padding-top: 40px;
  line-height: 2;
  font-size: 16x;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news2__text2-sub1,
  .news2__text3-sub2 {
    font-size: 14px;
    line-height: 2.3;
  }
}

.news2__text2-sub2 {
  padding-top: 32px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news2__text2-sub2 {
    padding-top: 31px;
    font-size: 14px;
    line-height: 2.3;
  }
}

.news2__text3-sub2 {
  padding-top: 31px;
}
@media screen and (max-width: 768px) {
  .news2__text3-sub2 {
    font-size: 14px;
    padding-top: 34px;
    line-height: 2.3;
  }
}

.news2__text3-main {
  padding-top: 72px;
  padding-bottom: 6px;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news2__text3-main {
    padding-top: 38px;
    padding-bottom: 7px;
  }
}

.news2__text3-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #001e63 0%, #001e63 40%, #e4e4e4 40%, #e4e4e4 100%);
}

.news2__text3-sub1 {
  padding-top: 40px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news2__text3-sub1 {
    padding-top: 40px;
    font-size: 14px;
    line-height: 2.3;
  }
}

.news2__list-box {
  padding-top: 71px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e2e2e2;
  padding-left: 18px;
}
@media screen and (max-width: 768px) {
  .news2__list-box {
    font-size: 14px;
    padding-top: 15px;
    border: none;
  }
}

ol {
  list-style-type: disc;
  color: #001e63;
}

.news2__list-item {
  color: #000;
}

.news2__list-item::marker {
  color: #001e63;
}

.news2__link-box {
  display: flex;
  justify-content: space-between;
  padding: 41px 10px 119px 1px;
}
@media screen and (max-width: 768px) {
  .news2__link-box {
    padding: 7px 1px 52px;
  }
}

.left-arrow-container,
.right-arrow-container {
  width: 132px;
}

.news2__span {
  transform: rotate(226deg);
}

.left__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0px;
  padding: 0 0 0 10px;
}

.box__span {
  left: 74%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 左矢印 */
.left__arrow {
  display: flex;
  position: relative;
  justify-content: center;
  color: #6B705C;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
  cursor: pointer;
  padding: 10px 21px 10px 38px;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.left__arrow:hover .left__span {
  transform: translateX(-5px) rotate(-45deg);
  transition: transform 0.3s ease;
}

.left__span {
  position: absolute;
  top: 40%;
  left: 25px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #6B705C;
  border-left: 1px solid #6B705C;
  transform: rotate(-45deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* .news__item.news2__item:not(:first-child) {
  padding-top: 0;
} */

.news__item.news2__item:last-child {
  border: none;
}

.news2__topic-rghit-box {
  padding-top: 8px;
}

.archive__item,
.category__item,
.news2__item a {
  cursor: pointer;
  color: #000;
  transition: opacity 0.3s;
}
.archive__item:hover,
.category__item:hover,
.news2__item a:hover {
  opacity: 0.7;
}

.news2__topic-rghit-inner {
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .news2__topic-rghit-inner {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .news2__topic-rghit-inner {
    width: 100%;
  }
}

.new-topic {
  background-color: #F5F3EE;
  color: #5A5148f;
  height: 50px;
  font-size: 14px;
  padding-top: 13px;
  padding-left: 17px;
}

/* .news__label-img-box {
  width: 100px;
} */
.news__link-single{
  display: flex;
}
.news__label-img {
  aspect-ratio: 1/1;
  max-width: 100px;
  max-height: 100px;
  object-fit: cover;
}

.news__link__container {
  display: flex;
  padding: 17.5px 18px;
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .news__link__container {
    padding: 17px 11px;
    padding: 17px 14px;
  }
}

@media screen and (max-width: 768px) {
  .news__link__container:last-child {
    border-bottom: none;
  }
}

.news__label-img-box {
  width: 37%;
}
@media screen and (max-width: 768px) {
  .news__label-img-box {
    width: 32%;
  }
}

.news2__right-text-box {
  width: 63%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 19px;
  font-size: 12px;
  line-height: 2;
  border: none;
  color: #040404;
}
@media screen and (max-width: 768px) {
  .news2__right-text-box {
    width: 65%;
    padding-left: 22px;
    padding-top: 3px;
  }
}

.news2__right-text {
  line-height: 2;
}
.time-box {
  padding-top: 5px;
}

.news2__date {
  font-size: 10px;
}

.archive__list,
.category__list {
  padding: 0 15px;
}

.archive,
.category {
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .archive,
  .category {
    padding-top: 17px;
  }
}

.archive__img-box{
      aspect-ratio: 1 / 1;
    max-width: 160px;
    width: 100%;
}
@media screen and (max-width: 768px) {
  .archive__img-box {
    aspect-ratio: 130/100;
    max-width: 130px;
    max-height: 100px;
  }
}
.archive {
  padding-top: 24px;
}

.category {
  padding-top: 31px;
}

.archive__list a,
.category__list a {
  color: #000;
  padding: 17px 90px 17px 2px;
}
@media screen and (max-width: 1133px) {
  .archive__list a,
  .category__list a {
    padding: 17px 36px 17px 8px;
  }
}

.archive__item,
.category__item {
  padding: 5px 0px;
  font-size: 14px;
  /* border-bottom: 1px solid #e2e2e2; */
}
.archive__item:last-child {
  border-bottom: none;
}

.category__item:last-child {
  border-bottom: none;
}

.workspg__styling {
  padding-bottom: 121px;
}
@media screen and (max-width: 768px) {
  .workspg__styling {
    padding-bottom: 39px;
  }
}

.workspg__inner {
  max-width: 1160px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .workspg__inner {
    max-width: 600px;
  }
}

.works-fv__t-a-box.fv__t-a-box {
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .works-fv__t-a-box.fv__t-a-box {
    padding-right: 0;
  }
}

.workspg__right {
  padding-left: 58px;
}
@media screen and (max-width: 768px) {
  .workspg__right {
    padding-left: 0;
  }
}

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

.workspg__container {
  padding-right: 80px;
}
@media screen and (max-width: 1133px) {
  .workspg__container {
    padding-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .workspg__container {
    padding-right: 0;
    padding-bottom: 30px;
  }
}

.works__container.workspg__container {
  margin-top: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .workspg__categories {
    display: grid;
    grid-template-columns: minmax(135px, auto) 152px;
    row-gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .workspg__item {
    padding-left: 0px;
    padding-bottom: 16px;
  }
}

.workspg__item a {
  padding-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .workspg__item a {
    padding-bottom: 0;
  }
}

.workspg__img-box {
  width: 34%;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .workspg__img-box {
    width: 112%;
  }
}

.works__img.workspg__img {
  aspect-ratio: 160/160;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .works__img.workspg__img {
    aspect-ratio: 130/100;
  }
}

.workspg__card {
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .workspg__card {
    gap: 11px;
  }
}

.workspg__text-box {
  padding-left: 3px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .workspg__text-box {
    padding-bottom: 30px;
  }
}

.workspg-article-label {
  background-color: #f8f8f8;
}

.workspg-title-box {
  padding-top: 33px;
}
@media screen and (max-width: 1000px) {
  .workspg-title-box {
    padding-top: 13px;
  }
}

.artical-title.workspg-title a {
  background-image: linear-gradient(black, black);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.artical-title.workspg-title {
  font-size: 18px;
  font-size: 18px;
  line-height: 1.78;
}
@media screen and (max-width: 1000px) {
  .workspg-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .workspg-title {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0;
  }
}

.workspg-date {
  position: absolute;
  bottom: 0;
  font-size: 10px;
}

.workspg__item:not(:first-child) {
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .workspg__item:not(:first-child) {
    padding-top: 13px;
    padding-left: 0;
  }
}

.workspg-pagenation__box {
  padding-top: 58px;
}

.works2-img-box {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .works2-img-box {
    padding-top: 34px;
  }
}

.works2__img {
  aspect-ratio: 840/471;
  width: 100%;
  object-fit: contain;
}

.works2-fv__t-a-container{
  display: flex;
  justify-content: end;
}
.works2-fv__t-a-box.fv__t-a-box {
  padding-top: 18px;
  padding-right: 61px;
}
@media screen and (max-width: 768px) {
  .works2-fv__t-a-box.fv__t-a-box {
    padding-top: 7px;
    padding-right: 0;
  }
}

.works2__inner {
  max-width: 880px;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 122px;
}
@media screen and (max-width: 768px) {
  .works2__inner {
    max-width: 600px;
    padding-top: 27px;
    padding-left: 31px;
    padding-right: 30px;
    padding-bottom: 82px;
  }
}

.works2__text-box {
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .works2__text-box {
    padding-right: 0;
    padding-bottom: 0;
  }
}

.works2__text-inner {
  padding-top: 38px;
  max-width: 680px;
  text-align: left;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .works2__text-inner {
    padding-top: 40px;
  }
}

.works2__text-sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", "sans-serif";
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .works2__text-sub {
    font-size: 14px;
    line-height: 2.3;
  }
}

@media screen and (max-width: 768px) {
  .works2__text {
    font-size: 18px;
    font-weight: 500;
    font-family: "Noto Sans JP", "sans-serif";
    letter-spacing: 0em;
    line-height: 1.8em;
  }
}

.works2__btn-box {
  padding-top: 52px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .works2__btn-box {
    padding-top: 38px;
  }
}

.works2-arrow-container {
  width: 285px;
}

.works2-span {
  position: absolute;
  top: 42%;
  left: 81px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #001e63;
  border-left: 1px solid #001e63;
  transform: rotate(-45deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.contact-fv__t-a-box.fv__t-a-box {
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .contact-fv__t-a-box.fv__t-a-box {
    padding-right: 0;
  }
}

.contactform__inner {
  max-width: 712px;
  width: 100%;
  padding: 0 36px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contactform__inner {
    padding: 0 20px;
    max-width: 600px;
  }
}

.contactform__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.3;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contactform__text {
    font-size: 14px;
  }
}

.contactform__form {
  margin-top: 102px;
}
@media screen and (max-width: 768px) {
  .contactform__form {
    margin-top: 39px;
  }
}

.contactform__item:not(:first-child) {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .contactform__item:not(:first-child) {
    margin-top: 31px;
  }
}

.contactform__label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contactform__label {
    flex-direction: column;
    align-items: baseline;
    row-gap: 10px;
  }
}

.contactform__label-text {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
}

.contactform__label-text-sub {
  padding-left: 12px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .contactform__label-text-sub {
    font-size: 14px;
    padding-left: 0;
  }
}

.contactform__label-text.required::after {
  content: " *"; /* アスタリスクを追加 */
  color: red; /* 赤色にする */
  font-weight: 400;
}

.contactform__input,
.contactform__select {
  font-size: 14px;
  color: #000;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  margin-top: 9px;
  padding: 13px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactform__input,
  .contactform__select {
    margin-top: 10px;
  }
}

.contactform__select-wrap {
  position: relative;
}

.contactform__select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}

.contactform__select-wrap::after {
  content: "";
  position: absolute;
  top: 58%;
  right: 15px; /* 右端からの距離 */
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000; /* 黒い三角 */
  pointer-events: none; /* 矢印の上をクリックしてもselectが反応するように */
}

.contactform__select option {
  color: #000;
}

.contactform__textarea {
  font-size: 14px;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: 400;
  color: #000;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  width: 100%;
  height: 159px;
  margin-top: 9px;
  padding: 11px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .contactform__textarea {
    font-size: 13px;
    padding: 8px;
    height: 146px;
  }
}

.contactform__button-box {
  text-align: center;
}

.contactform__button {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
  border-radius: 4px;
  background-color: #011950;
  color: #fff;
  padding: 21px 12px;
  margin-top: 40px;
  max-width: 446px;
  width: 100%;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .contactform__button {
    max-width: 260px;
    margin-top: 40px;
    padding: 11px 12px;
    font-size: 14px;
    font-family: "Noto Sans JP", "sans-serif";
    font-weight: 500;
  }
}

.contactform__input::placeholder,
.contactform__textarea::placeholder {
  font-size: 14px;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: 400;
  color: #a9a9a9;
}

/* チェックボックスとテキストを横並び */
.contactform__checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .contactform__checkbox {
    gap: 0;
  }
}

.contactform__checkbox input[type=checkbox] {
  vertical-align: middle; /* テキストと縦位置を揃える */
}
@media screen and (max-width: 768px) {
  .contactform__checkbox input[type=checkbox] {
    margin-right: 11px;
  }
}

/* デフォルト（SP版） → 先頭に＊ */
.contactform__checkbox::after {
  content: " *";
  color: red;
  font-weight: bold;
}

/* PC版では最後に＊ */
/* @media screen and (max-width: 768px) {
  .contactform__checkbox::after {
    content: ""; /* 先頭用を消す */
  /* } */
  /* .contactform__checkbox::before {
    content: " *"; /* ラベルの最後に追加 */
    /* color: red;
    font-weight: bold;
  } */ */
/* } */ */
.contactform__checkbox input[type=checkbox] {
  appearance: none; /* デフォルトの見た目を消す */
  -webkit-appearance: none; /* Safari対応 */
  width: 16px;
  height: 16px;
  border: 1px solid #e2e2e2; /* ← 好きな色で枠線 */
  cursor: pointer;
  background-color: #fff; /* 背景は白に固定 */
  position: relative;
}

/* チェックされたとき */
.contactform__checkbox input[type=checkbox]:checked {
  background-color: #fff; /* チェック時の塗りつぶし色 */
  border-color: #e2e2e2; /* 枠も同じ色に */
}

/* チェックマーク */
.contactform__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #001e63;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contactform__check-btn-box {
  padding-top: 36px;
}

.contactcheck__styling {
  padding-top: 44px;
}
@media screen and (max-width: 768px) {
  .contactcheck__styling {
    padding-top: 22px;
  }
}

@media screen and (max-width: 768px) {
  .cc-fv__t-a-box.fv__t-a-box {
    padding-top: 7px;
  }
}

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

.contactcheck__inner {
  max-width: 753px;
}
@media screen and (max-width: 768px) {
  .contactcheck__inner {
    max-width: 600px;
  }
}

.wpcf7 {
  padding-top: 93px;
}
@media screen and (max-width: 768px) {
  .wpcf7 {
    padding-top: 34px;
  }
}

.contactcheck__items:not(:first-child) {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .contactcheck__items:not(:first-child) {
    padding-top: 25.5px;
  }
}

.contactcheck__name {
  max-width: 28%;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .contactcheck__name {
    max-width: 100%;
  }
}

.contactcheck__input {
  max-width: 78%;
  width: 100%;
  font-size: 14px;
  line-height: 2.3em;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .contactcheck__input {
    max-width: 100%;
    padding-top: 2px;
  }
}

.cc__btn {
  max-width: 280px;
  width: 100%;
  padding: 19px 12px;
  margin-top: 38px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .cc__btn {
    padding: 9px 10px;
    margin-top: 40px;
    font-size: 14px;
  }
}

.contactcheck__button-box {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .contactcheck__button-box {
    gap: 23px;
    padding: 0 4px;
  }
}

.cc__btn-white {
  background-color: #fff;
  color: #011950;
  border: 2px solid #011950;
}

@media screen and (max-width: 768px) {
  .ci-t {
    padding-top: 9px;
  }
}

@media screen and (max-width: 768px) {
  .thanks.thanks__styling {
    padding-top: 68px;
    padding-bottom: 81px;
  }
}

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

.thanks__sub {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .thanks__sub {
    font-size: 14px;
    margin-top: 10px;
  }
}

.thanks__text {
  padding-top: 41px;
  line-height: 2.3;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .thanks__text {
    font-weight: 400;
    font-size: 14px;
    padding-top: 30px;
    line-height: 2.29;
  }
}

.thanks-fv__t-a-box.fv__t-a-box {
  padding-top: 11px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .thanks-fv__t-a-box.fv__t-a-box {
    padding-top: 7px;
  }
}

.thk-fv__ti.fv__a {
  padding-left: 24px;
}

.thk-fv__n {
  padding-left: 23px;
}

.thk-fv__n {
  position: relative;
}

.thk-fv__n::before {
  content: "";
  position: absolute;
  top: 59%;
  left: 95%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #e2e2e2;
}

.fv__t1 {
  position: relative;
  color: #a9a9a9;
  font-size: 15px;
  display: flex;
  padding-right: 10px;
  font-weight: 400;
  font-family: "Roboto";
}
@media screen and (max-width: 768px) {
  .fv__t1 {
    font-size: 10px;
    padding-right: 8px;
  }
}

.fv__t1 a {
  color: #a9a9a9;
}

.thk-fv__t::before {
  content: "";
  position: absolute;
  top: 59%;
  left: 95%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #e2e2e2;
}

.thanks__styling {
  padding-top: 57px;
  padding-bottom: 120px;
}

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

.thanks__btn {
  display: flex;
  justify-content: center;
  padding-top: 44px;
}
@media screen and (max-width: 768px) {
  .thanks__btn {
    padding-top: 39px;
  }
}

.thk-arrow-container {
  max-width: 460px;
  width: 100%;
  background-color: #798645
;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .thk-arrow-container {
    max-width: 275px;
    width: 100%;
  }
}

.thk__arrow {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", "sans-serif";
  padding: 19px 33px;
}
@media screen and (max-width: 768px) {
  .thk__arrow {
    padding: 10px 33px;
    font-size: 14px;
  }
}

.thk__span {
  left: 168px;
  top: 46%;
  left: 145px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .thk__span {
    left: 76px;
  }
}

.fv404__inner {
  padding-bottom: 120px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .fv404__inner {
    padding-bottom: 78px;
    padding-top: 38px;
  }
}

.fv404__img-box {
  margin: 0 calc(50% - 45vw);
  width: 90vw;
  height: inherit;
  padding-left: 23px;
  padding-top: 93px;
}
@media screen and (max-width: 768px) {
  .fv404__img-box {
    aspect-ratio: 365/243;
    width: 100vw;
    padding: 0;
  }
}

.fv404__img {
  aspect-ratio: 1270/600;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv404__img {
    aspect-ratio: 365/243;
  }
}

.fv404__title-box {
  position: absolute;
  top: 56.6%;
  left: 68.5%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .fv404__title-box {
    top: 61%;
    max-width: 400px;
    width: 100%;
    left: 64%;
  }
}
@media screen and (max-width: 768px) {
  .fv404__title-box {
    top: 31%;
    left: 52%;
    max-width: 208px;
    width: 100%;
  }
}

.fv404__container {
  position: relative;
}

.fv404__title {
  font-size: 70px;
  font-weight: 700;
  font-family: "Oswald";
  color: #fff;
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1133px) {
  .fv404__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .fv404__title {
    font-size: 46px;
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fv404__title {
    font-size: 35px;
    max-width: 208px;
    width: 100%;
  }
}

.fv404__title-sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", "sans-serif";
  line-height: 2.3;
  color: #fff;
  padding-top: 20px;
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1133px) {
  .fv404__title-sub {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .fv404__title-sub {
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fv404__title-sub {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    font-family: "Noto Sans JP", "sans-serif";
    line-height: 2.3;
    color: #000;
    padding-top: 35px;
    padding-left: 9px;
  }
}

@media screen and (max-width: 768px) {
  .fv404__sub {
    display: flex;
    justify-content: center;
  }
}

.wp404__btn {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .wp404__btn {
    display: flex;
    justify-content: center;
    padding-top: 41px;
    padding-left: 12px;
  }
}

.wp404-arrow-container {
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .wp404-arrow-container {
    border: 1px solid #011950;
  }
}

.wp404__arrow {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .wp404__arrow {
    color: navy;
  }
}

.wp404__span {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .wp404__span {
    border-top: 2px solid #011950;
    border-left: 2px solid #011950;
    left: 26px;
  }
}/*# sourceMappingURL=style.css.map */