@charset "UTF-8";
.page {
  padding-top: 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141c2f 40%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.05), transparent 60%);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate;
}

.contents_sec {
  padding: 0 0 90px 0;
}

:root {
  --header-height: 100px; /* 実際のヘッダー高さに合わせて調整 */
}

[id] {
  scroll-margin-top: var(--header-height);
}

.singleContents_sec {
  padding: 60px 0 60px 0;
}

.singleContents_sec .sec_in {
  background: #fff;
  border-radius: 10px;
}

.singleContents_sec .sec_in_in {
  width: 90%;
  margin: auto;
  padding: 60px 0 60px 0;
  z-index: 9;
  position: relative;
}

/*--------------------------------------------------------
h1
--------------------------------------------------------*/
.h1_sec .h1_textBox {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
}

.h1_sec .eng {
  font-weight: 900;
  line-height: 1;
  font-size: 60px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  text-shadow: -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.5), 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
}

.h1_sec h1 {
  font-weight: 900;
  font-size: 16px;
}

.h1_sec_in {
  width: 1360px;
  height: 400px;
  margin: auto;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: bg-zoom 8s ease-out forwards;
  background: center/100% no-repeat;
}

/* 背景がズームするアニメーション */
@keyframes bg-zoom {
  0% {
    background-size: 100% auto;
  }
  100% {
    background-size: 120% auto;
  }
}
/* 上下のまぶた用レイヤー */
.h1_sec_in::before,
.h1_sec_in::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  z-index: 2;
  animation: blink-open 0.6s ease-out forwards;
}

.h1_sec_in::before {
  top: 0;
  height: 50%;
  animation-delay: 0.2s;
}

.h1_sec_in::after {
  bottom: 0;
  height: 50%;
  animation-delay: 0.2s;
}

/* まぶたが開くアニメーション */
@keyframes blink-open {
  0% {
    height: 50%;
  }
  30% {
    height: 0%;
  }
  100% {
    height: 0%;
  }
}
@media only screen and (max-width: 820px) {
  .h1_sec .eng {
    font-weight: 900;
    line-height: 1;
    font-size: 40px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    text-shadow: -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.5), 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
  }
  .h1_sec h1 {
    font-weight: 900;
    font-size: 14px;
  }
  .h1_sec_in {
    width: 90%;
    height: 200px;
    margin: auto;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: bg-zoom 8s ease-out forwards;
    background: center/100% no-repeat;
  }
}
/*------------------------------------------------------------
page_contact
-------------------------------------------------------------*/
.page_contact .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/page/contact/h1_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/*------------------------------------------------------------
page_company
-------------------------------------------------------------*/
.page_company .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/page/company/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/*------------------------------------------------------------
page_policy
-------------------------------------------------------------*/
.page_policy .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/page/policy/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/*------------------------------------------------------------
アーカイブ
-------------------------------------------------------------*/
.archive_sec .subhead {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 30px;
}

.archive_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.archive_flBox .blog_card {
  width: 24%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px); /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px); /* Safari対応 */
  /* width: 390px; */
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden; /* はみ出しを隠す */
  border-radius: 5px; /* 角丸 */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.archive_flBox .blog_card img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_flBox .blog_card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}
.archive_flBox .blog_card:hover img {
  transform: scale(1.05);
}
.archive_flBox .blog_card .day {
  margin-bottom: 0;
  padding: 0 5px;
}
.archive_flBox .blog_card .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
  width: 90%;
  padding: 0 3px;
}
.archive_flBox .blog_card .cat a {
  color: #fff;
  font-weight: bold;
  background: #7f7fb6;
  padding: 0 5px;
}
.archive_flBox .blog_card .textArea {
  padding: 0 10px 0 5px;
  width: 97%;
  margin: 0 auto;
}

@media only screen and (max-width: 800px) {
  .archive_sec {
    padding: 0 0 30px 0;
  }
  .archive_sec .archive_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .archive_sec .subhead {
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .archive_sec .blog_card {
    width: 100%;
    margin-bottom: 30px;
  }
  .archive_sec .blog_card img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  .archive_sec .blog_card .day {
    font-size: 10px;
  }
  .archive_sec .blog_card .title a {
    font-weight: bold;
    font-size: 13px;
    margin: 0;
    padding: 0;
    display: block;
  }
  .archive_sec .blog_card .cat a {
    color: #A68B62;
    font-size: 13px;
  }
}
/*------------------------------------------------------------
.single_blog
-------------------------------------------------------------*/
.single_blog .single_sec {
  padding: 0 0 90px 0;
}
.single_blog .eyecatch img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.single_blog .single_tags {
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px;
}
.single_blog h1 {
  font-weight: bold;
  font-size: 24px;
}

/*------------------------------------------------------------
.page_archive
-------------------------------------------------------------*/
.page_archive .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/page/news/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.page_archive .news_box {
  width: 100%;
  margin: auto;
  border-radius: 5px;
  margin-bottom: 90px;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05), inset 0 0 20px rgba(0, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 40px 0 40px 0;
  margin: 0 auto 150px auto;
}
.page_archive .news_box_in {
  padding: 30px 0 30px 0;
}
.page_archive .news_box .news_en {
  font-weight: 900;
  text-align: center;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 60px;
}
.page_archive .news_line {
  display: flex;
  align-items: center;
  gap: 1em; /* 要素間のスペース */
  padding: 0.5em 0;
  border-bottom: 1px solid #ddd;
  width: 85%;
  margin: auto;
}
.page_archive .news_line .day {
  display: inline-block;
  color: #888;
  width: 100px;
}
.page_archive .news_line .cat {
  display: inline-block;
  width: 100px;
}
.page_archive .news_line .cat a {
  background-color: #000;
  color: #000;
  padding: 0.2em 0.6em;
  border-radius: 2px;
  font-size: 18px;
}
.page_archive .news_line .title {
  background: url("../images/page/top/news_arrow.svg");
  text-decoration: none;
  flex: 1;
  background-size: 24px;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 0 5px 0 5px;
}
.page_archive .news_line .title:hover {
  background: url("../images/page/top/news_arrow.svg");
  color: #ccc;
  text-decoration: none;
  flex: 1;
  background-size: 24px;
  background-position: center right 5px;
  background-repeat: no-repeat;
}
.page_archive .news_line a:hover {
  color: #0073aa;
}

@media only screen and (max-width: 800px) {
  .page_archive .news_sec {
    padding: 60px 0 60px 0;
    margin-bottom: 60px;
    overflow: hidden;
  }
  .page_archive .news_box .news_en {
    font-weight: 900;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 40px;
    color: #fff;
  }
  .page_archive .news_box {
    width: 100%;
    margin: auto;
    box-shadow: none;
    border-radius: 10px;
  }
  .page_archive .news_line {
    display: block;
  }
  .page_archive .news_info {
    width: 100%;
    display: block;
  }
  .page_archive .news_line .day {
    display: inline-block;
    color: #888;
    width: 80px;
    font-size: 12px;
  }
  .page_archive .news_line .cat {
    font-size: 12px;
  }
  .page_archive .news_line .title {
    width: 100%;
    background: none;
    text-decoration: none;
    padding: 0;
    font-size: 12px;
  }
}
/*------------------------------------------------------------
pager
-------------------------------------------------------------*/
.pager {
  padding: 30px 0 0 0;
  text-align: center;
}
.pager .current {
  background: #000;
  color: #fff;
  font-weight: bold;
}
.pager .page-numbers {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.pager a {
  margin: 0;
}
.pager a:hover {
  background: #999;
  opacity: 0.8;
  color: #000;
}

@media only screen and (max-width: 800px) {
  .pager {
    padding: 30px 0 0 0;
  }
  .pager .current {
    background: #EFE8D9;
    color: #fff;
    font-weight: bold;
  }
  .pager .page-numbers {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .pager a {
    margin: 0;
  }
  .pager a:hover {
    background: #EFE8D9;
    opacity: 0.3;
  }
}