@charset "UTF-8";
/*
Theme Name: グローバル
*/
/* フォントのインポート */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* カスタムプロパティ定義 */
:root {
  /* フォントの太さ */
  --Light: 300;
  --Regular: 400;
  --Medium: 500;
  --SemiBold: 600;
  --Bold: 700;
  --ExtraBold: 800;
  --Black: 900;
  /* 画面サイズ関連 */
  --min-window: 1200px;
  /* ウィンドウサイズがこれより小さい場合は */
  --inner: 1000px;
  /* ニュース等の横幅 */
}

/* html全体に関わるもの */
html,
body {
  margin: 0;
  /* font-family: "Noto Serif JP", serif; */
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
  min-width: var(--min-window);
  /* 横幅1920pxのときに10pxになる */
  /* font-size: calc(100vw / 192); */
}
html:has(.nowLoading):not(:has(.loaded)),
body:has(.nowLoading):not(:has(.loaded)) {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  html,
  body {
    width: auto;
    min-width: auto;
    /* 横幅768pxのときに10pxになる */
    /* font-size: calc(100vw / 76.8); */
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

img {
  vertical-align: top;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 0;
}

.red {
  color: #e7202a;
}

.lum-lightbox.lum-open {
  z-index: 100000;
}
.lum-lightbox.lum-open img {
  max-width: 100%;
}

.lum-lightbox-inner img {
  max-width: 100%;
}

.lum-gallery-button:before, .lum-gallery-button:after {
  width: 18px !important;
  height: 18px !important;
}
@media screen and (max-width: 768px) {
  .lum-gallery-button:before, .lum-gallery-button:after {
    width: 12px !important;
    height: 12px !important;
  }
}

@media screen and (min-width: 769px) {
  .lum-close-button {
    right: 24px !important;
    top: 24px !important;
  }
}

/* rechaptchaの非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

/* アニメーション */
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-right {
  from {
    right: -100vw;
  }
  to {
    right: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fade-in {
  opacity: 0;
  animation-name: opacity;
  animation-duration: 2s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

.slide-in-right .slide-img-right {
  animation-name: slide-right;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-delay: inherit;
  animation-fill-mode: forwards;
}

.slide-img-right {
  position: relative;
  right: -100vw;
}

#nowLoading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: #fff;
  visibility: visible;
  transition: 1s;
}
#nowLoading.loaded {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
#nowLoading .loading-content {
  display: flex;
  position: absolute;
  width: 25%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #nowLoading .loading-content {
    top: 40%;
    width: 70%;
  }
}
#nowLoading .loading-content .loading-icon {
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0 -30px 0 #eee, 21px -21px 0 #ddd, 30px 0 0 #ccc, 21px 21px 0 #bbb, 0 30px 0 #aaa, -21px 21px 0 #999, -30px 0 0 #666, -21px -21px 0 #000;
  /* 左上 */
  animation: rotate 1s steps(8) 0s infinite;
}
#nowLoading .loading-content img {
  width: 100%;
  margin-bottom: 100px;
}

header {
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 62px;
  justify-content: space-between;
  transition: 0.3s;
}
header:has(.toggle:checked) {
  background-color: #000;
}
header.white {
  background-color: rgba(255, 255, 255, 0.8);
}
header.white .menu .item {
  color: #000;
}
header .logo {
  width: 154px;
  font-size: 1em;
  margin: 16px 0 0 32px;
}
header .logo a {
  width: 100%;
  display: inline-block;
}
header .logo a img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .logo {
    margin: 24px 0 0 24px;
  }
  header .logo a {
    width: 65%;
  }
}
header .toggle {
  display: none;
}
header .toggle:checked + .menu-btn .open {
  display: none;
}
header .toggle:checked + .menu-btn .close {
  display: block;
}
header .toggle:checked + .menu-btn img {
  width: 24px;
  height: 24px;
}
header .toggle:checked + .menu-btn + .menu {
  max-height: 1000px;
}
header .menu-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .menu-btn {
    display: flex;
  }
}
header .menu-btn .close {
  display: none;
}
header .menu-btn img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .menu {
    position: absolute;
    top: 62px;
    left: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: 0.3s;
  }
}
header .menu ul {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  header .menu ul {
    display: block;
    color: #000;
  }
}
header .menu ul li {
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .menu ul li {
    width: 100%;
  }
}
header .menu ul .item {
  margin-right: 3vw;
}
@media screen and (max-width: 768px) {
  header .menu ul .item {
    width: 100%;
    margin-right: 0;
    padding: 1.5em 2em;
    border-bottom: 1px solid #cccccc;
  }
}
header .menu ul .contact {
  display: flex;
  height: 100%;
  padding: 0 2vw;
  color: #fff !important;
  background-color: #e7202a;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .menu ul .contact {
    display: block;
    width: 100%;
    margin-right: 0;
    padding: 1.5em 2em;
    border-bottom: 1px solid #cccccc;
    background-color: unset;
    color: #000 !important;
  }
  header .menu ul .contact::before {
    display: none;
  }
}
header .menu ul .contact::before {
  content: "";
  width: 23px;
  height: 19px;
  margin-right: 16px;
  background-image: url("images/email.png");
}

#front-page-top {
  position: relative;
  width: 100%;
  height: 200vh;
}
#front-page-top .back-image {
  position: fixed;
  z-index: 1;
}
#front-page-top .cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#front-page-top .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#front-page-top .text1 {
  position: absolute;
  width: 35%;
  left: 5%;
  top: 18%;
  z-index: 100;
}
#front-page-top .text1 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #front-page-top .text1 {
    left: 8%;
    width: 84%;
  }
}
#front-page-top .text2 {
  position: absolute;
  width: 45%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 65%;
  z-index: 100;
}
#front-page-top .text2 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #front-page-top .text2 {
    width: 85%;
    top: 65%;
  }
}

#front-page-news {
  position: relative;
  z-index: 200;
}
#front-page-news .article-link {
  display: flex;
  position: absolute;
  width: 60%;
  height: 80px;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #front-page-news .article-link {
    display: block;
    width: 90%;
    top: -55px;
    height: auto;
  }
}
#front-page-news .article-link .left {
  display: flex;
  height: inherit;
  background: linear-gradient(to right, #f14704 0%, #e40210 12%, #660027 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  padding: 0 48px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #front-page-news .article-link .left {
    height: 60px;
    padding: 0;
    justify-content: center;
    font-size: 20px;
  }
}
#front-page-news .article-link .article-information {
  display: flex;
  width: 100%;
  height: inherit;
  background-color: #000;
  padding: 0 48px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #front-page-news .article-link .article-information {
    width: auto;
    padding: 24px 16px;
    flex-direction: column;
    align-items: normal;
    justify-content: center;
  }
}
#front-page-news .article-link .article-information .article-date {
  color: #868686;
  margin-right: 48px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #front-page-news .article-link .article-information .article-date {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
#front-page-news .article-link .article-information .article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #front-page-news .article-link .article-information .article-title {
    -webkit-line-clamp: 2;
    font-size: 15px;
  }
}

#front-page-service {
  position: relative;
  min-height: 110vw;
  z-index: 100;
  background-color: #fff;
  background-image: url("images/BG_logo.png");
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 5% 100px;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #front-page-service {
    min-height: unset;
    padding: 150px 0;
    background-image: none;
  }
}
#front-page-service .sp-background {
  position: absolute;
  overflow: hidden;
  width: 100%;
  margin-top: 50px;
}
#front-page-service .sp-background img {
  width: 200%;
  transform: translateX(-30%);
}
#front-page-service .front-page-inner {
  padding: 0 4%;
}
#front-page-service .front-page-inner .services {
  position: relative;
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .services {
    margin-top: 32px;
    margin-bottom: 64px;
  }
}
#front-page-service .front-page-inner .services .service {
  display: inline-block;
  width: 45%;
  margin-right: 7%;
  margin-bottom: 256px;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .services .service {
    width: 100%;
    margin-right: 0;
    margin-bottom: 64px;
  }
}
#front-page-service .front-page-inner .services .service:nth-child(2) {
  position: relative;
  top: 25vw;
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  #front-page-service .front-page-inner .services .service:nth-child(2) {
    top: 300px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .services .service:nth-child(2) {
    position: static;
  }
}
#front-page-service .front-page-inner .services .service .service-title {
  max-width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .services .service .service-title {
    margin-bottom: 16px;
  }
  #front-page-service .front-page-inner .services .service .service-title.title1 {
    max-width: 27%;
  }
  #front-page-service .front-page-inner .services .service .service-title.title2 {
    max-width: 60%;
  }
}
#front-page-service .front-page-inner .services .service .service-image {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .services .service .service-image {
    margin-bottom: 16px;
  }
}
#front-page-service .front-page-inner .services .service .service-text {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .services .service .service-text {
    font-size: 16px;
    padding: 0 8px;
  }
}
#front-page-service .front-page-inner .photo1 {
  position: absolute;
  top: 200px;
  right: 5%;
  width: 40%;
}
#front-page-service .front-page-inner .photo1 img {
  width: 100%;
}
#front-page-service .front-page-inner .photo2 {
  position: absolute;
  top: calc(200px + 7vw);
  right: 0%;
  width: 40%;
}
#front-page-service .front-page-inner .photo2 img {
  width: 100%;
}
#front-page-service .front-page-inner .photo3 {
  position: absolute;
  bottom: 420px;
  right: 10%;
  width: 25%;
}
#front-page-service .front-page-inner .photo3 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .photo3 {
    position: relative;
    bottom: auto;
    width: 65%;
    right: -25%;
  }
}
#front-page-service .front-page-inner .photo4 {
  position: absolute;
  bottom: 340px;
  right: 30%;
  width: 15%;
}
#front-page-service .front-page-inner .photo4 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #front-page-service .front-page-inner .photo4 {
    position: relative;
    bottom: auto;
    width: 35%;
    right: -7%;
    margin-top: -100px;
  }
}
#front-page-service .gray {
  position: absolute;
  width: 100%;
  margin-top: -250px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #front-page-service .gray {
    margin-top: -100px;
  }
}

#front-page-information {
  position: relative;
  z-index: 100;
  background-color: #ececec;
  padding-bottom: 256px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #front-page-information {
    padding-bottom: 128px;
  }
}
#front-page-information .wrap {
  position: relative;
  margin: 0 2.5%;
  padding: 96px 7% 128px;
  z-index: 100;
  background-image: url("images/information-background.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap {
    padding: 32px 7% 96px;
    background-image: url("images/information-background_sp.png");
  }
}
#front-page-information .wrap .title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: var(--SemiBold);
  text-align: center;
  color: #fff;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .title {
    margin: 32px 0 64px;
  }
}
#front-page-information .wrap .news-list {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .news-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 96px;
  }
}
#front-page-information .wrap .news-list article {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .news-list article {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .news-list article:last-child {
    margin-bottom: 0;
  }
}
#front-page-information .wrap .news-list article .article-eye-catch {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .news-list article .article-eye-catch {
    margin-bottom: 16px;
  }
}
#front-page-information .wrap .news-list article .article-eye-catch img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#front-page-information .wrap .news-list article .article-date {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .news-list article .article-date {
    margin-bottom: 20px;
  }
}
#front-page-information .wrap .news-list article .article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: var(--Light);
}
#front-page-information .wrap .more {
  display: inline-block;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #front-page-information .wrap .more {
    position: static;
    width: 100%;
  }
  #front-page-information .wrap .more img {
    width: 100%;
  }
}

#page-about .top-image {
  position: relative;
}
#page-about .top-image .image {
  width: 100%;
}
#page-about .top-image .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#page-about .top-image .top-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #page-about .top-image .top-text {
    width: 45%;
    left: 7%;
  }
  #page-about .top-image .top-text img {
    width: 100%;
  }
}
#page-about .tabs {
  width: 1000px;
  display: flex;
  margin: 48px auto;
  align-items: center;
  gap: 32px;
  justify-content: space-around;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #page-about .tabs {
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 32px 7%;
    font-size: 16px;
    text-align: center;
  }
}
#page-about .tabs .tab {
  cursor: pointer;
  padding: 8px 16px;
}
#page-about .tabs .tab.active {
  color: #fff;
  background-color: #e7202a;
  border-radius: 4px;
}
#page-about .display-contents .display-content {
  display: none;
}
#page-about .display-contents .display-content.active {
  display: block;
}
#page-about .greetings {
  padding: 48px 0 72px 0;
  background-image: url("images/BG_logo.png");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position-x: 35%;
  background-position-y: -15%;
}
@media screen and (max-width: 768px) {
  #page-about .greetings {
    background-size: 270%;
    background-position-y: 130%;
  }
}
#page-about .greetings .about {
  width: 12%;
  margin-bottom: 48px;
  padding: 0 7%;
}
@media screen and (max-width: 768px) {
  #page-about .greetings .about {
    width: 40%;
    padding: 0 8%;
  }
}
#page-about .greetings .about img {
  width: 100%;
}
#page-about .greetings .content {
  display: flex;
  padding: 0 7%;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  #page-about .greetings .content {
    display: block;
  }
}
#page-about .greetings .content .photo {
  width: 60%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page-about .greetings .content .photo {
    width: 100%;
  }
}
#page-about .greetings .content .photo img {
  width: 100%;
}
#page-about .greetings .content .text {
  margin: 0 0 0 4%;
}
@media screen and (max-width: 768px) {
  #page-about .greetings .content .text {
    margin: 0;
  }
}
#page-about .greetings .content .text .top {
  line-height: 4;
  font-size: 0.9375vw;
  margin: 3.125vw 0;
}
@media screen and (max-width: 1200px) {
  #page-about .greetings .content .text .top {
    font-size: 11.25px;
    margin: 37.5px 0;
  }
}
@media screen and (max-width: 768px) {
  #page-about .greetings .content .text .top {
    font-size: 16px;
    margin: 32px 0 48px;
    line-height: 2;
  }
}
#page-about .greetings .content .text .president .title {
  font-size: 1.0416666667vw;
  margin-bottom: 0.8333333333vw;
}
@media screen and (max-width: 1200px) {
  #page-about .greetings .content .text .president .title {
    font-size: 12.5px;
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #page-about .greetings .content .text .president .title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
#page-about .greetings .content .text .president .name {
  font-size: 1.875vw;
  font-weight: var(--Bold);
}
@media screen and (max-width: 1200px) {
  #page-about .greetings .content .text .president .name {
    font-size: 22.5px;
  }
}
@media screen and (max-width: 768px) {
  #page-about .greetings .content .text .president .name {
    font-size: 28px;
  }
}
#page-about .company {
  background-color: #ececec;
  padding: 48px 0;
}
#page-about .company .about {
  width: 12%;
  margin-bottom: 48px;
  padding: 0 7%;
}
@media screen and (max-width: 768px) {
  #page-about .company .about {
    width: 43%;
    padding: 0 8%;
  }
}
#page-about .company .about img {
  width: 100%;
}
#page-about .company .about-grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid #d9dada;
}
#page-about .company .about-grid .item {
  width: calc(36% - 2px);
  padding: 48px 7%;
  border-right: 2px solid #d9dada;
  border-bottom: 2px solid #d9dada;
}
@media screen and (max-width: 768px) {
  #page-about .company .about-grid .item {
    width: 86%;
    border-right: none;
    padding: 28px 7%;
  }
}
@media screen and (min-width: 769px) {
  #page-about .company .about-grid .item:nth-child(2n) {
    border-right: none;
    padding: 48px 10.5% 48px 3.5%;
  }
}
#page-about .company .about-grid .item:last-child {
  border-bottom: none;
}
#page-about .company .about-grid .item.large {
  width: 86%;
  border-right: none;
  padding: 64px 7%;
}
@media screen and (max-width: 768px) {
  #page-about .company .about-grid .item.large {
    width: 100%;
    padding: 32px 0;
  }
  #page-about .company .about-grid .item.large .title {
    padding: 0 7%;
  }
  #page-about .company .about-grid .item.large .content {
    padding: 0 7%;
  }
}
#page-about .company .about-grid .item .title {
  font-size: 20px;
  font-weight: var(--Bold);
  margin-bottom: 4px;
}
#page-about .company .about-grid .item .content {
  font-size: 16px;
  line-height: 2;
}
#page-about .company .about-grid .item .map {
  width: 100%;
  margin-top: 16px;
  aspect-ratio: 1700/460;
}
@media screen and (max-width: 768px) {
  #page-about .company .about-grid .item .map {
    aspect-ratio: 800/370;
  }
}
#page-about .history {
  padding: 48px 7%;
}
#page-about .history .about {
  width: 14%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #page-about .history .about {
    width: 50%;
  }
}
#page-about .history .about img {
  width: 100%;
}
#page-about .history .content-wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  #page-about .history .content-wrap {
    display: block;
  }
}
#page-about .history .content-wrap .content {
  display: flex;
  flex-direction: column;
  width: 50%;
  border-left: 1px solid #cbcbcb;
  margin-bottom: 72px;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  #page-about .history .content-wrap .content {
    width: 100%;
    margin-bottom: 0;
  }
}
#page-about .history .content-wrap .content.right {
  margin-left: 5%;
}
@media screen and (max-width: 768px) {
  #page-about .history .content-wrap .content.right {
    margin-left: 0;
    padding-top: 0;
  }
}
#page-about .history .content-wrap .content .item {
  margin-bottom: 72px;
}
#page-about .history .content-wrap .content .item .date {
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--Medium);
  font-style: italic;
  align-items: center;
  color: #e7202a;
  font-size: 24px;
  margin-bottom: 16px;
}
#page-about .history .content-wrap .content .item .date::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #e7202a;
  border-radius: 5px;
  margin-right: 24px;
  margin-left: -5px;
}
#page-about .history .content-wrap .content .item .text {
  font-size: 17px;
  margin-left: 27px;
}
@media screen and (min-width: 769px) {
  #page-about .history .content-wrap .content .item:nth-child(1) .text {
    height: 49px;
  }
  #page-about .history .content-wrap .content .item:nth-child(5) .text {
    height: 73.5px;
  }
}
#page-about h3 {
  display: block;
  min-width: 6em;
  max-width: fit-content;
  border-bottom: 3px solid #e7202a;
  font-size: 24px;
  margin: 0 auto 16px;
  text-align: center;
  font-weight: var(--Regular);
}
@media screen and (max-width: 768px) {
  #page-about h3 {
    font-size: 20px;
  }
}
#page-about h3.serif {
  font-family: "Noto Serif JP", serif;
}
#page-about h3.big {
  font-size: 36px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #page-about h3.big {
    font-size: 28px;
  }
}
#page-about .message {
  display: block;
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 36px;
  font-weight: var(--Bold);
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #page-about .message {
    font-size: 28px;
  }
}
#page-about .awards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px 32px;
  padding: 48px 7%;
}
@media screen and (max-width: 768px) {
  #page-about .awards {
    grid-template-columns: 1fr;
  }
}
#page-about .awards .title {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #page-about .awards .title {
    margin-bottom: 8px;
  }
}
#page-about .awards .image {
  max-width: 100%;
  border: 1px solid #333;
}

#page-introduction .top-image {
  position: relative;
}
#page-introduction .top-image .image {
  width: 100%;
}
#page-introduction .top-image .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#page-introduction .top-image .top-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #page-introduction .top-image .top-text {
    width: 60%;
    left: 7%;
  }
  #page-introduction .top-image .top-text img {
    width: 60%;
  }
}
#page-introduction .content {
  background-image: url("images/BG_logo.png");
  background-repeat: no-repeat;
  background-size: 70%;
  background-position-x: 50%;
  background-position-y: 15%;
}
@media screen and (max-width: 768px) {
  #page-introduction .content {
    background-size: 250%;
    background-position-y: 5%;
  }
}
#page-introduction .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page-introduction .inner {
    margin: 0 8%;
  }
}
#page-introduction .inner .text {
  margin-bottom: 32px;
}
#page-introduction .inner .photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  #page-introduction .inner .photos {
    grid-template-columns: 1fr;
  }
}
#page-introduction .inner .photos img {
  max-width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#page-introduction .transportation {
  padding: 48px 0 72px;
}
#page-introduction .transportation .about {
  width: 20%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #page-introduction .transportation .about {
    width: 48%;
  }
}
#page-introduction .transportation .about img {
  width: 100%;
}
#page-introduction .warehouse {
  padding: 48px 0 72px;
}
#page-introduction .warehouse .about {
  width: 40%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #page-introduction .warehouse .about {
    width: 84%;
  }
}
#page-introduction .warehouse .about img {
  width: 100%;
}
#page-introduction .painting {
  padding: 48px 0 72px;
}
#page-introduction .painting .about {
  width: 67%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #page-introduction .painting .about {
    width: 75%;
  }
}
#page-introduction .painting .about img {
  width: 100%;
}

#page-recruit h3 {
  font-size: 46px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #page-recruit h3 {
    font-size: 34px;
  }
}
#page-recruit h4 {
  font-size: 30px;
  font-weight: var(--Bold);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #page-recruit h4 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
#page-recruit .top-image {
  position: relative;
}
#page-recruit .top-image .image {
  width: 100%;
}
#page-recruit .top-image .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#page-recruit .top-image .top-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #page-recruit .top-image .top-text {
    width: 35%;
    left: 7%;
  }
  #page-recruit .top-image .top-text img {
    width: 100%;
  }
}
#page-recruit .content {
  background-image: url("images/BG_logo.png");
  background-repeat: repeat-y;
  background-size: 70%;
  background-position-x: 50%;
}
@media screen and (max-width: 768px) {
  #page-recruit .content {
    background-size: 250%;
    background-position-y: 5%;
  }
}
#page-recruit .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page-recruit .inner {
    margin: 0 8%;
  }
}
#page-recruit dl {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 128px;
}
@media screen and (max-width: 768px) {
  #page-recruit dl {
    padding-bottom: 64px;
  }
}
#page-recruit dl dt {
  width: 30%;
  padding: 16px 0;
  border-bottom: 1px solid #151e2f;
}
@media screen and (max-width: 768px) {
  #page-recruit dl dt {
    width: 100%;
    padding: 16px 0 4px;
    border-bottom: none;
  }
}
#page-recruit dl dd {
  width: 70%;
  padding: 16px 0;
  margin-inline-start: 0;
  border-bottom: 1px solid #151e2f;
}
@media screen and (max-width: 768px) {
  #page-recruit dl dd {
    width: 100%;
    padding: 0 0 16px;
  }
}

#page-contact .top-image {
  position: relative;
}
#page-contact .top-image .image {
  width: 100%;
}
#page-contact .top-image .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#page-contact .top-image .top-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #page-contact .top-image .top-text {
    width: 35%;
    left: 7%;
  }
  #page-contact .top-image .top-text img {
    width: 100%;
  }
}
#page-contact .content {
  background-image: url("images/BG_logo.png");
  background-repeat: no-repeat;
  background-size: 40%;
  background-position-x: 50%;
  background-position-y: 5%;
}
@media screen and (max-width: 768px) {
  #page-contact .content {
    background-size: 90%;
    background-position-y: 5%;
  }
}
#page-contact .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page-contact .inner {
    margin: 0 8%;
  }
}
#page-contact .address {
  padding: 48px 0 72px;
}
#page-contact .address .about {
  width: 22%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #page-contact .address .about {
    width: 55%;
  }
}
#page-contact .address .about img {
  width: 100%;
}
#page-contact .address dl {
  display: flex;
  flex-wrap: wrap;
}
#page-contact .address dl dt {
  width: 30%;
  padding: 32px 0;
  border-bottom: 1px solid #151e2f;
}
@media screen and (max-width: 768px) {
  #page-contact .address dl dt {
    width: 100%;
    padding: 16px 0 4px;
    border-bottom: none;
  }
}
#page-contact .address dl dd {
  width: 70%;
  padding: 32px 0;
  margin-inline-start: 0;
  border-bottom: 1px solid #151e2f;
}
@media screen and (max-width: 768px) {
  #page-contact .address dl dd {
    width: 100%;
    padding: 0 0 16px;
  }
}
#page-contact .address a {
  color: #e7202a;
  text-decoration: underline;
}
#page-contact .form {
  padding: 48px 0 72px;
}
#page-contact .form .about {
  width: 50%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #page-contact .form .about {
    width: 100%;
  }
}
#page-contact .form .about img {
  width: 100%;
}
#page-contact .wrap {
  margin-bottom: 48px;
}
#page-contact .wrap .item {
  align-items: center;
  margin-bottom: 8px;
}
#page-contact .wrap .item .required {
  font-size: 13px;
  color: #e7202a;
  margin-left: 0.5em;
}
#page-contact input[type=text], #page-contact input[type=email], #page-contact input[type=tel], #page-contact textarea {
  width: 100%;
  border: 1px solid #e7202a;
  border-radius: 5px;
  padding: 1em 0.5em;
  box-sizing: border-box;
}
#page-contact .wpcf7-list-item:first-child {
  margin: 0;
}
#page-contact .wpcf7-form.sent .wpcf7-response-output {
  text-align: center;
}
#page-contact .wpcf7-form.invalid .wpcf7-response-output {
  border: none;
  color: #e7202a;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
#page-contact .sent-now {
  pointer-events: none;
  opacity: 0.3;
  cursor: auto;
}
#page-contact .recaptcha {
  margin: 16px auto;
  font-size: 12px;
}
#page-contact .recaptcha a {
  color: #e7202a;
}

#single-news {
  position: relative;
  padding-bottom: 96px;
  z-index: 100;
}
#single-news .top-image {
  position: relative;
}
#single-news .top-image .image {
  width: 100%;
}
#single-news .top-image .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#single-news .top-image .top-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #single-news .top-image .top-text {
    width: 35%;
    left: 7%;
  }
  #single-news .top-image .top-text img {
    width: 100%;
  }
}
#single-news .inner {
  max-width: 1000px;
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  #single-news .inner {
    margin: 64px 8% 0;
  }
}
#single-news .inner p {
  margin: 0;
}
#single-news article .article-date {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  margin-bottom: 16px;
}
#single-news article .article-title {
  font-size: 30px;
  font-weight: var(--Bold);
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #single-news article .article-title {
    font-size: 26px;
  }
}
#single-news article .article-eye-catch {
  margin-bottom: 30px;
}
#single-news article .article-eye-catch img {
  max-width: 100%;
  height: auto;
}
#single-news article .article-content {
  margin-bottom: 64px;
}
#single-news .back-btn {
  display: block;
  max-width: 100%;
  width: 250px;
  background-color: #e7202a;
  color: #fff;
  padding: 8px 0;
  margin: 0 auto;
  text-align: center;
}

#archive-news {
  position: relative;
  z-index: 100;
}
#archive-news .top-image {
  position: relative;
}
#archive-news .top-image .image {
  width: 100%;
}
#archive-news .top-image .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/top-cover.png");
  z-index: 10;
}
#archive-news .top-image .top-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #archive-news .top-image .top-text {
    width: 35%;
    left: 7%;
  }
  #archive-news .top-image .top-text img {
    width: 100%;
  }
}
#archive-news .index-news {
  display: flex;
  margin-bottom: 64px;
  justify-content: left;
}
#archive-news .index-news .category {
  display: inline-block;
  width: 150px;
  color: #e7202a;
  background-color: #fff;
  border: 1px solid #e7202a;
  padding: 8px 0;
  margin-right: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #archive-news .index-news .category {
    width: 100%;
    margin-right: 16px;
  }
}
#archive-news .index-news .category.active {
  background-color: #e7202a;
  color: #fff;
}
#archive-news .news-list {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  #archive-news .news-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  #archive-news .news-list article {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  #archive-news .news-list article:last-child {
    margin-bottom: 0;
  }
}
#archive-news .news-list article .article-eye-catch {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #archive-news .news-list article .article-eye-catch {
    margin-bottom: 16px;
  }
}
#archive-news .news-list article .article-eye-catch img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#archive-news .news-list article .flex {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #archive-news .news-list article .flex {
    margin-bottom: 20px;
  }
}
#archive-news .news-list article .flex .article-date {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  margin-right: 16px;
}
#archive-news .news-list article .flex .article-category {
  width: 7em;
  color: #fff;
  background-color: #e7202a;
  padding: 2px 0;
  text-align: center;
  font-size: 14px;
}
#archive-news .news-list article .article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: var(--Light);
}
#archive-news .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 96px 0;
}
@media screen and (max-width: 768px) {
  #archive-news .inner {
    margin: 0 8%;
  }
}
#archive-news .pagination {
  text-align: center;
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  #archive-news .pagination {
    margin: 32px auto;
  }
}
#archive-news .pagination .page-numbers {
  display: inline-flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border: 1px solid #e7202a;
  color: #e7202a;
  font-size: 15px;
  font-weight: var(--Bold);
}
#archive-news .pagination .page-numbers.current {
  background-color: #e7202a;
  color: #fff;
}

#footer-top {
  position: relative;
  z-index: 100;
}
#footer-top img {
  width: 100%;
}

footer {
  position: relative;
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  padding: 128px 5% 64px;
  z-index: 100;
  margin-top: -192px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: -32px;
    padding: 64px 5% 32px;
  }
}
footer .logo {
  width: 100%;
  padding-bottom: 48px;
  border-bottom: 2px solid #cccccc;
}
footer .logo img {
  width: 229px;
}
@media screen and (max-width: 768px) {
  footer .logo img {
    width: 50%;
  }
}
footer .footer-content {
  padding: 48px 32px;
  border-bottom: 2px solid #cccccc;
}
@media screen and (max-width: 768px) {
  footer .footer-content {
    padding: 48px 24px;
    line-height: 2;
  }
}
footer .footer-content .title {
  font-size: 20px;
  font-weight: var(--Medium);
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  margin-bottom: 20px;
}
footer .footer-content .content-menu {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footer-content .content-menu {
    flex-wrap: wrap;
  }
}
footer .footer-content .content-menu .item {
  display: flex;
  margin-right: 48px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer-content .content-menu .item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
footer .footer-content .content-menu .item::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background-image: url("images/arrow.png");
}
footer .footer-office {
  padding: 48px 32px;
  border-bottom: 2px solid #cccccc;
}
@media screen and (max-width: 768px) {
  footer .footer-office {
    padding: 48px 24px;
    font-size: 14px;
  }
}
footer .footer-office .title {
  font-size: 20px;
  font-weight: var(--Medium);
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  margin-bottom: 24px;
}
footer .footer-office .offices {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footer-office .offices {
    display: block;
  }
}
footer .footer-office .offices .office {
  line-height: 1.6;
  margin-right: 64px;
}
@media screen and (max-width: 768px) {
  footer .footer-office .offices .office {
    margin-right: 0;
    margin-bottom: 48px;
  }
}
footer .footer-office .offices .office:last-child {
  margin-right: 0;
}
footer .footer-office .offices .office .office-title {
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  footer .footer-office .offices .office .office-title {
    margin-bottom: 16px;
  }
}
footer .footer-office .offices .office .item {
  display: flex;
}
footer .footer-office .offices .office .item .left {
  width: 6em;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  footer .footer-office .offices .office .item .left {
    width: 7em;
  }
}
footer .copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: var(--Light);
  text-align: right;
  padding: 32px 8px;
}
