@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #242424;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  position: relative;
  background: #fff;
}

/********************************************
HEADERcss
********************************************/
#header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 5px 10px -6px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #header {
    height: 60px;
  }
}

.h_inner {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 4em;
}
@media screen and (max-width: 1100px) {
  .h_inner {
    padding: 0 2em;
  }
}
@media screen and (max-width: 768px) {
  .h_inner {
    padding: 0 1em;
  }
}

.h_logo {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .h_logo {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .h_logo {
    max-width: 260px;
  }
}
.h_logo a {
  display: block;
  width: 100%;
}
.h_logo a img {
  width: 100%;
}

.h_nav {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .h_nav {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    z-index: -1;
    bottom: 0;
    left: 0;
    background: rgb(43, 43, 43);
    display: none;
    transition: all 0.5s;
    opacity: 0;
  }
  .h_nav.active {
    display: block;
    opacity: 1;
  }
}

.h_nav__inner {
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 3em;
}
@media screen and (max-width: 768px) {
  .h_nav__inner {
    flex-direction: column;
    padding: 3em;
  }
}
.h_nav__inner li a {
  color: #242424;
  text-decoration: none;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .h_nav__inner li a {
    color: #fff;
    font-size: 6rem;
    font-family: "Anton", sans-serif;
  }
}
@media (hover: hover) and (pointer: fine) {
  .h_nav__inner li a:hover::after {
    width: 100%;
  }
}
.h_nav__inner li a::after {
  content: "";
  transition: all 0.5s;
  height: 1px;
  background-color: #242424;
  width: 0;
  left: 0;
  top: 105%;
  position: absolute;
}

/* spドロアーメニュー */
.menu_btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 62.8px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .menu_btn {
    z-index: 9999;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .menu_btn {
    height: 60px;
    width: 31px;
  }
}

.bar {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  background-color: #000;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.bar:nth-child(1) {
  top: 19px;
}
@media screen and (max-width: 768px) {
  .bar:nth-child(1) {
    top: 17px;
  }
}
.bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.bar:nth-child(3) {
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .bar:nth-child(3) {
    bottom: 17px;
  }
}

.menu_btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 8px);
}
.menu_btn.active .bar:nth-child(2) {
  opacity: 0; /* 真ん中のラインを非表示 */
}
.menu_btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -10px);
}

/********************************************
KVcss
********************************************/
.kv_area {
  height: calc(100vh - 80px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv_area {
    height: auto;
  }
}

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

.kv_inner_l {
  font-family: "Anton", sans-serif;
  font-size: 20rem;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9rem, 13vw, 20rem);
}
.kv_inner_l span {
  font-size: 0.5em;
  display: block;
  margin-top: 0.2em;
}
@media screen and (max-width: 768px) {
  .kv_inner_l {
    padding-top: 0.4em;
    width: 100%;
    font-size: clamp(7rem, 24.5vw, 15rem);
  }
}
@media screen and (max-width: 480px) {
  .kv_inner_l {
    padding-top: 0.6em;
    padding-bottom: 0.3em;
  }
}
.kv_inner_l h1 {
  color: #242424;
}

.kv_text .line {
  display: flex !important;
}

.kv_inner_r {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv_inner_r {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .kv_inner_r {
    position: relative;
    z-index: -1;
  }
}
.kv_inner_r canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll_down {
  position: absolute;
  bottom: 0px;
  left: 40px;
}
@media screen and (max-width: 480px) {
  .scroll_down {
    left: 16px;
  }
}
.scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #000;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 160px;
  background: #000;
}

.scroll_up {
  position: fixed;
  z-index: 1000;
  right: 2em;
}
@media screen and (max-width: 768px) {
  .scroll_up {
    right: 1.6em;
  }
}
@media screen and (max-width: 480px) {
  .scroll_up {
    right: 0;
  }
}
.scroll_up.inverted a {
  color: #fff;
}
@media screen and (max-width: 480px) {
  .scroll_up.inverted a {
    color: #383838;
  }
}
.scroll_up.inverted::before {
  background: #fff;
}
.scroll_up.inverted::after {
  background: #fff;
}
.scroll_up a {
  transition: all 0.5s;
  position: absolute;
  left: 10px;
  bottom: 75px;
  color: #2e2e2e;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .scroll_up a {
    left: 5px;
    bottom: 90px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .scroll_up a {
    width: 50px;
    height: 50px;
    left: -50px;
    bottom: 0;
    background-color: #383838;
    color: #383838;
  }
  .scroll_up a::before {
    content: "▲";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
  }
}
.scroll_up a::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.scroll_up:before {
  content: "";
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2e2e2e;
  animation: circlemoveUp 1.6s ease-in-out infinite, cirlemovehideUp 1.6s ease-out infinite;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .scroll_up:before {
    display: none;
  }
}

@keyframes circlemoveUp {
  0% {
    bottom: 0px;
  }
  100% {
    bottom: 160px;
  }
}
@keyframes cirlemovehideUp {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_up:after {
  content: "";
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 160px;
  background: #2e2e2e;
}
@media screen and (max-width: 480px) {
  .scroll_up:after {
    display: none;
  }
}

/********************************************
FOOTERcss
********************************************/
footer {
  background-color: #000;
  padding: 6em 1em 1em;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 6em 1em 1em;
  }
}

.ft_inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ft_inner--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .ft_inner--top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .ft_inner--top {
    align-items: center;
  }
}

.ft_inner--top--img {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .ft_inner--top--img {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 480px) {
  .ft_inner--top--img {
    width: 100%;
    max-width: 90%;
    margin-bottom: 4em;
  }
}
.ft_inner--top--img img {
  width: 100%;
}
.ft_inner--top--img ul li {
  margin-bottom: 1em;
}
.ft_inner--top--img ul li:last-child {
  margin-bottom: 0;
}
.ft_inner--top--img ul .imsm_logo {
  margin-bottom: 0.5em;
}
.ft_inner--top--img ul .imsm_logo img {
  width: 70%;
}
@media screen and (max-width: 480px) {
  .ft_inner--top--img ul .imsm_logo img {
    width: 50%;
  }
}

.isms_txt {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4em;
}

@media screen and (max-width: 480px) {
  .ft_inner--top--nav {
    width: 100%;
  }
}
.ft_inner--top--nav ul {
  display: flex;
  gap: 3em;
}
@media screen and (max-width: 480px) {
  .ft_inner--top--nav ul {
    flex-direction: column;
    gap: 0;
  }
}
.ft_inner--top--nav ul li {
  list-style-type: none;
}
@media screen and (max-width: 480px) {
  .ft_inner--top--nav ul li {
    border-top: 1px solid #fff;
    width: 100%;
  }
  .ft_inner--top--nav ul li:last-child {
    border-bottom: 1px solid #fff;
  }
}
.ft_inner--top--nav ul li a {
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 480px) {
  .ft_inner--top--nav ul li a {
    padding: 1em;
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .ft_inner--top--nav ul li a:hover {
    opacity: 0.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .ft_inner--top--nav ul li a:hover::after {
    width: 100%;
  }
}
.ft_inner--top--nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  top: 105%;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.5s;
}

.ft_inner--bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .ft_inner--bottom {
    flex-direction: column;
  }
}

.ft_inner--bottom--copy {
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1100px) {
  .ft_inner--bottom--copy {
    order: 2;
  }
}
@media screen and (max-width: 480px) {
  .ft_inner--bottom--copy {
    flex-direction: column;
  }
}

.f_townlife_logo {
  display: inline-block;
  margin-left: 1em;
  max-width: 16rem;
}
.f_townlife_logo img {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .ft_inner--bottom--nav {
    order: 1;
  }
}
@media screen and (max-width: 480px) {
  .ft_inner--bottom--nav {
    margin-bottom: 2em;
    width: 100%;
  }
}
.ft_inner--bottom--nav ul {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 480px) {
  .ft_inner--bottom--nav ul {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media screen and (max-width: 480px) {
  .ft_inner--bottom--nav ul li {
    width: 50%;
    border: 1px solid #fff;
  }
}
.ft_inner--bottom--nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.4em;
}
@media screen and (max-width: 480px) {
  .ft_inner--bottom--nav ul li a {
    display: block;
    font-size: 1.2rem;
    padding: 1.4em 1em;
  }
}

/********************************************
maincss
********************************************/
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 100px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #fff;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
.main_content {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .main_content {
    margin-top: 60px;
  }
}

.sec_gray {
  background-color: #E8E8E8;
}

.sec_gray2 {
  background-color: #f5f5f5;
}

section {
  padding: 8em 0;
}
@media screen and (max-width: 1366px) {
  section {
    padding: 6em 1em;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 4em 1em;
  }
}

.sub_section {
  padding: 4em 0 8em;
}
@media screen and (max-width: 1366px) {
  .sub_section {
    padding: 3em 1em 6em;
  }
}
@media screen and (max-width: 480px) {
  .sub_section {
    padding: 3em 1em 4em;
  }
}

.sec_inner {
  max-width: 1280px;
  margin: 0 auto;
}

.sec_ttl {
  font-family: "Anton", sans-serif;
  text-align: center;
  font-size: 8.4rem;
  font-weight: 500;
  margin-bottom: 1em;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .sec_ttl {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_ttl {
    font-size: 5.6rem;
  }
}

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

.vsm_Only {
  display: none;
}
@media screen and (max-width: 480px) {
  .vsm_Only {
    display: block;
  }
}

.sec_more_btn {
  margin-top: 4rem;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 480px) {
  .sec_more_btn {
    justify-content: center;
  }
}
.sec_more_btn a {
  border: 1px solid #000;
  padding: 1.4em;
  min-width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
}
.sec_more_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background-color: #000;
  height: 100%;
  transition: all 0.5s;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .sec_more_btn a:hover {
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec_more_btn a:hover::before {
    width: 100%;
  }
}

.sec_more_btn_center-sec {
  justify-content: center !important;
}

.figcaption {
  transition: all 0.3s;
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  transform: translateY(101%);
}
.figcaption p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
}
.figcaption p span {
  font-size: 0.8em;
  display: block;
  line-height: 1.6em;
  margin-top: 1em;
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt3 {
  margin-top: 3em !important;
}

.mt4 {
  margin-top: 4em !important;
}

.mt5 {
  margin-top: 5em !important;
}

.mt6 {
  margin-top: 6em !important;
}

.content_search {
  background-color: #000;
  padding: 1em;
  display: flex;
  gap: 16px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .content_search {
    flex-direction: column;
  }
}

.search_word {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .search_word {
    width: 100%;
  }
}
.search_word input {
  font-family: ts-unused;
  width: 100%;
  height: 100%;
  padding: 0.8em;
  border: 0;
  border-radius: 0.2em;
}

.search_select {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .search_select {
    width: 100%;
  }
}
.search_select select {
  color: #242424 !important;
  font-family: ts-unused;
  width: 100%;
  height: 100%;
  padding: 0.8em;
  border: 0;
  border-radius: 0.2em;
}
.search_select select option {
  color: #242424;
}

.search_btn {
  flex-grow: 1;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #000;
  border-radius: 0.2em;
  border: 1px solid #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .search_btn {
    width: 100%;
    padding: 1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .search_btn:hover {
    background-color: #fff;
    color: #000;
  }
  .search_btn:hover svg path {
    stroke: #000;
  }
}
.search_btn svg {
  width: 1.8rem;
}
.search_btn svg path {
  transition: all 0.5s;
}

html,
body,
a {
  cursor: none;
}

.cursor_origin {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  z-index: 9999;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
  mix-blend-mode: difference;
}
.cursor_origin::after {
  content: "";
  width: 300%;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: #fff 1px solid;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0.4;
}

/*aタグにホバーした時に見た目変化*/
.cursor_origin.cursor--hover {
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
}
.cursor_origin.cursor--hover::after {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: #fff 1px solid;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0.4;
}

.single_cate_ttl {
  font-family: "Anton", sans-serif;
  color: #8F8F8F;
  font-size: 8.4rem;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .single_cate_ttl {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 480px) {
  .single_cate_ttl {
    font-size: 5.6rem;
  }
}

.single_cate_inner {
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
  margin-bottom: 4rem;
}
.single_cate_inner ul {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
  gap: 16px;
}
.single_cate_inner ul li a {
  display: flex;
  padding: 1em 1.5em;
  background-color: #242424;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5em;
  transition: all 0.5s;
  border: 1px solid #000;
}
@media (hover: hover) and (pointer: fine) {
  .single_cate_inner ul li a:hover {
    color: #000;
    background-color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .single_cate_inner ul li a {
    font-size: 1rem;
  }
}

.simple_pager {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 4em;
}
@media screen and (max-width: 768px) {
  .simple_pager {
    flex-wrap: wrap;
  }
}
.simple_pager .sec_more_btn {
  margin: 0;
}

.simple_pager--next a,
.simple_pager--prev a {
  display: flex;
  position: relative;
  color: #000;
  text-decoration: none;
  transition: all 0.5s;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (hover: hover) and (pointer: fine) {
  .simple_pager--next a:hover::before,
  .simple_pager--prev a:hover::before {
    width: 100%;
  }
}
.simple_pager--next a::before,
.simple_pager--prev a::before {
  content: "";
  position: absolute;
  top: 1.2em;
  background-color: #000;
  height: 2px;
  width: 0;
  transition: all 0.5s;
}
.simple_pager--next a::after,
.simple_pager--prev a::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  transform: translateY(-50%);
  aspect-ratio: 1/2;
  background: #000;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .simple_pager--next {
    order: 2;
  }
}
.simple_pager--next a {
  padding-right: 1.2em;
}
@media (hover: hover) and (pointer: fine) {
  .simple_pager--next a:hover::after {
    right: -0.3em;
  }
}
.simple_pager--next a::after {
  content: "";
  right: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.simple_pager--next a::before {
  left: 0;
}

.simple_pager--prev a {
  padding-left: 1.2em;
}
@media (hover: hover) and (pointer: fine) {
  .simple_pager--prev a:hover::after {
    left: -0.3em;
  }
}
.simple_pager--prev a::after {
  content: "";
  left: 0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.simple_pager--prev a::before {
  right: 0;
}

@media screen and (max-width: 768px) {
  .simple_pager--list {
    order: 3;
    width: 100%;
    margin-top: 2em;
  }
  .simple_pager--list .sec_more_btn {
    justify-content: center;
  }
}

.single_simple_pager {
  margin-bottom: 10em;
}
@media screen and (max-width: 768px) {
  .single_simple_pager {
    margin-bottom: 6em;
  }
}

.tabs {
  width: 100%;
}

.tab_list {
  display: flex;
  gap: 10px;
}

.tab_item {
  border: 1px solid #000;
  border-bottom: 0px;
  background-color: #fff;
  color: #242424;
  width: 33.3333333333%;
  font-weight: bold;
  cursor: pointer;
  padding: 1em;
  transition: all 0.5s;
}
.tab_item.active {
  background-color: #000;
  color: #fff;
}

.tab_content {
  border-top: 1px solid #000;
}

.tab_panel {
  padding: 2em 1em;
  display: none;
  transition: all 0.5s;
}
.tab_panel.active {
  display: block;
}

.tab_text {
  margin-bottom: 1em;
  line-height: 1.6em;
}

.wrap-original-transform {
  opacity: 0; /* 最初は透明になる */
  transition: 0.3s all; /* フェードインの効果をスムーズに */
  perspective: 2000px;
  transform-style: preserve-3d;
  position: fixed;
  top: 30%;
  left: 15%;
}
@media screen and (max-width: 768px) {
  .wrap-original-transform {
    display: none;
  }
}

.original-transform {
  transform-style: preserve-3d;
  background-image: linear-gradient(135deg, #39d2f8, #306160);
  height: 180px;
  width: 180px;
  transition: 0.1s;
  will-change: transform;
  animation: rotateCube 10s infinite linear; /* アニメーションを追加 */
}

@keyframes rotateCube {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}
.original-transform div {
  align-items: center;
  border: 0.5px solid hsla(0, 0%, 100%, 0.6);
  color: #fff;
  display: flex;
  height: 345px;
  justify-content: center;
  letter-spacing: 0.05em;
  position: absolute;
  transition: 0.2s;
  width: 345px;
}
@media screen and (max-width: 768px) {
  .original-transform div {
    height: 170px;
    width: 170px;
  }
}

.bg_cube {
  background-image: none;
}

.front,
.back,
.rightSide,
.leftSide,
.top,
.bottom {
  background-color: rgba(0, 0, 0, 0.05);
}

.front {
  transform: translateZ(173px);
}
@media screen and (max-width: 768px) {
  .front {
    transform: translateZ(85px);
  }
}

.back {
  transform: translateZ(-173px) rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .back {
    transform: translateZ(-85px) rotateY(180deg);
  }
}

.rightSide {
  transform: rotateY(90deg) translateZ(173px);
}
@media screen and (max-width: 768px) {
  .rightSide {
    transform: rotateY(90deg) translateZ(85px);
  }
}

.leftSide {
  transform: rotateY(-90deg) translateZ(173px);
}
@media screen and (max-width: 768px) {
  .leftSide {
    transform: rotateY(-90deg) translateZ(85px);
  }
}

.top {
  transform: rotateX(90deg) translateZ(173px);
}
@media screen and (max-width: 768px) {
  .top {
    transform: rotateX(90deg) translateZ(85px);
  }
}

.bottom {
  transform: rotateX(-90deg) translateZ(173px);
}
@media screen and (max-width: 768px) {
  .bottom {
    transform: rotateX(-90deg) translateZ(85px);
  }
}

.top_service_sec {
  position: relative;
  z-index: 1;
}

.sec_service_cont {
  padding: 2em 12em;
  position: relative;
}
@media screen and (max-width: 1366px) {
  .sec_service_cont {
    padding: 2em 6em;
  }
}
@media screen and (max-width: 1100px) {
  .sec_service_cont {
    padding: 2em 2em;
  }
}
@media screen and (max-width: 768px) {
  .sec_service_cont {
    padding: 1em 0;
  }
}
.sec_service_cont::after {
  content: "";
  border: 5px solid #242424;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec_service_cont::after {
    width: 70%;
  }
}

.sec_service_cont--slider--item {
  aspect-ratio: 16/11;
  margin: 0 1em;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .sec_service_cont--slider--item {
    margin: 0 0.5em;
  }
}
.sec_service_cont--slider--item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .sec_service_cont--slider--item a:hover .figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec_service_cont--slider--item a:hover img {
    transform: scale(1.2, 1.2);
    transform-origin: center center;
  }
}
.sec_service_cont--slider--item a img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec_service_cont--slider_thumb {
  display: none;
}
@media screen and (max-width: 480px) {
  .sec_service_cont--slider_thumb {
    display: flex !important;
  }
  .sec_service_cont--slider_thumb .slick-track {
    display: flex;
    height: 100%;
  }
}

.sec_service_cont--slider_thumb--item {
  margin: 0 1em;
  background-color: #000;
  color: #fff;
  padding: 1em;
  align-items: stretch;
}
@media screen and (max-width: 480px) {
  .sec_service_cont--slider_thumb--item {
    margin: 0 0.5em;
  }
}

.sec_service_cont--slider_thumb--item--ttl {
  margin-bottom: 1em;
  line-height: 1.4em;
}

.sec_service_cont--slider_thumb--item--txt {
  font-size: 1.4rem;
  line-height: 1.4em;
}

.top_about_sec {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.top_about_sec .sec_ttl {
  color: #fff;
}

.sec_about--txt {
  position: relative;
  margin-top: 2em;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 2em;
  margin-bottom: 1em;
  z-index: 10;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.48);
}
@media screen and (max-width: 1100px) {
  .sec_about--txt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_about--txt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_about--txt {
    font-size: 2rem;
  }
}

.sec_about--subtxt {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 2.2em;
  z-index: 10;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1100px) {
  .sec_about--subtxt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_about--subtxt {
    font-size: 1.4rem;
    text-align: left;
  }
}

.sec_about--light {
  aspect-ratio: 498/656;
  width: 399px;
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
  opacity: 0.9;
}
@media screen and (max-width: 1100px) {
  .sec_about--light {
    width: 343px;
  }
}
@media screen and (max-width: 520px) {
  .sec_about--light {
    top: 18%;
  }
}
@media screen and (max-width: 480px) {
  .sec_about--light {
    width: 300px;
  }
}
.sec_about--light::after {
  content: "";
  background-image: url("../img/light_off.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sec_about--light::before {
  content: "";
  display: none;
  background-image: url("../img/light_on.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.sec_about--light.active::before {
  display: block; /* クラスが切り替わったら表示 */
}

.sec_about_point {
  margin-top: 6em;
}
@media screen and (max-width: 520px) {
  .sec_about_point {
    margin-top: 2em;
  }
}

.sec_about_point--inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 520px) {
  .sec_about_point--inner {
    flex-direction: column;
    align-items: center;
  }
}

.sec_about_point--item {
  display: flex;
  width: 28.3333333333%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1100px) {
  .sec_about_point--item {
    width: 31.6666666667%;
  }
}
@media screen and (max-width: 520px) {
  .sec_about_point--item {
    width: 90%;
    margin-bottom: 2em;
    aspect-ratio: auto;
  }
  .sec_about_point--item:last-child {
    margin-bottom: 0;
  }
}

.sec_about_point--item--wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .sec_about_point--item--wrap {
    border-radius: 0;
    border: 2px solid #fff;
  }
}

.sec_about_point--icon {
  position: relative;
  aspect-ratio: 1/1;
  width: 100px;
  margin-bottom: 1em;
}
@media screen and (max-width: 1100px) {
  .sec_about_point--icon {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .sec_about_point--icon {
    width: clamp(52px, 9vw, 80px);
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 520px) {
  .sec_about_point--icon {
    width: clamp(100px, 920.833vw, 100px);
  }
}
.sec_about_point--icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.about_onestop::after {
  background-image: url(../img/about_icon.svg);
}

.about_repeat::after {
  background-image: url(../img/repeat_icon.svg);
}

.about_isms::after {
  background-image: url(../img/isms_icon.svg);
}

.sec_about_point--ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1em;
}
@media screen and (max-width: 1100px) {
  .sec_about_point--ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_about_point--ttl {
    font-size: clamp(1.4rem, 2.666vw, 2rem);
  }
}
@media screen and (max-width: 520px) {
  .sec_about_point--ttl {
    font-size: clamp(1.4rem, 5.333vw, 2rem);
  }
}

.sec_about_point--txt {
  line-height: 1.6em;
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 1100px) {
  .sec_about_point--txt {
    font-size: 1.2rem;
    margin-bottom: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  .sec_about_point--txt {
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  }
}
@media screen and (max-width: 520px) {
  .sec_about_point--txt {
    font-size: clamp(1.4rem, 3.73vw, 1.4rem);
    margin-bottom: 1em;
  }
}

/* 既存：枠の基本 */
.sec_about_point--item--wrap {
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

/* 既存：控えめ発光（枠） */
.sec_about_point--item--wrap.is-glow,
.sec_about_point--item--wrap.is-glow-all {
  border-color: #FFFCD9;
  box-shadow: 0 0 6px rgba(255, 247, 0, 0.45), 0 0 12px rgba(255, 247, 0, 0.35), 0 0 19px rgba(255, 247, 0, 0.28);
}

/* 発光時に内包文字とアイコンも光らせる（控えめ） */
.sec_about_point--item--wrap .sec_about_point--ttl,
.sec_about_point--item--wrap .sec_about_point--txt {
  transition: color 0.45s ease, text-shadow 0.45s ease;
}

.sec_about_point--item--wrap.is-glow .sec_about_point--ttl,
.sec_about_point--item--wrap.is-glow .sec_about_point--txt,
.sec_about_point--item--wrap.is-glow-all .sec_about_point--ttl,
.sec_about_point--item--wrap.is-glow-all .sec_about_point--txt {
  color: #FFFCD9; /* やや暖色寄りで光の色に寄せる */
  text-shadow: 0 0 6px rgba(255, 247, 0, 0.35), 0 0 12px rgba(255, 247, 0, 0.25);
}

/* アイコン自体にも発光（ぼかし弱め） */
.sec_about_point--item--wrap .sec_about_point--icon {
  transition: filter 0.45s ease, opacity 0.45s ease;
}

.sec_about_point--item--wrap.is-glow .sec_about_point--icon,
.sec_about_point--item--wrap.is-glow-all .sec_about_point--icon {
  filter: drop-shadow(0 0 8px rgba(255, 247, 0, 0.35)) drop-shadow(0 0 16px rgba(255, 247, 0, 0.25));
  opacity: 1; /* 念のため */
}

/* 通常アイコン（既存） */
.about_onestop::after {
  background-image: url(../img/about_icon.svg);
}

.about_repeat::after {
  background-image: url(../img/repeat_icon.svg);
}

.about_isms::after {
  background-image: url(../img/isms_icon.svg);
}

/* 点灯時は _2 に切替（親の発光クラスに反応させる） */
.sec_about_point--item--wrap.is-glow .about_onestop::after,
.sec_about_point--item--wrap.is-glow-all .about_onestop::after {
  background-image: url(../img/about_icon_2.svg);
}

.sec_about_point--item--wrap.is-glow .about_repeat::after,
.sec_about_point--item--wrap.is-glow-all .about_repeat::after {
  background-image: url(../img/repeat_icon_2.svg);
}

.sec_about_point--item--wrap.is-glow .about_isms::after,
.sec_about_point--item--wrap.is-glow-all .about_isms::after {
  background-image: url(../img/isms_icon_2.svg);
}

/* 注意: 上記でタイプミスしないように。`.sec_about_point--item--item--wrap` ではなく `.sec_about_point--item--wrap` */
.sec_news--li {
  display: block;
}

.sec_news--li--item {
  list-style-type: none;
  margin-bottom: 5px;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.sec_news--li--item:last-child {
  margin-bottom: 0;
}
.sec_news--li--item a {
  border: 1px solid #000;
  text-decoration: none;
  color: #242424;
  display: flex;
  align-items: stretch;
}
@media (hover: hover) and (pointer: fine) {
  .sec_news--li--item a:hover .sec_news--li--item--txt {
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec_news--li--item a:hover .sec_news--li--item--txt::before {
    width: 100%;
  }
}
.sec_news--li--item a:hover .sec_news--li--item--btn span {
  transform: translateX(13px);
}

.sec_news--li--nolink {
  border: 1px solid #000;
}

.sec_news--li--item--txt {
  padding: 1.2em;
  flex-grow: 1;
  position: relative;
  transition: all 0.5s;
}
.sec_news--li--item--txt::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000;
  z-index: -1;
  width: 0;
  height: 100%;
  transition: all 0.5s;
}

.sec_news--li--item--data {
  font-size: 1.6rem;
  font-family: "Anton", sans-serif;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  .sec_news--li--item--data {
    font-size: 1.4rem;
  }
}

.sec_news--li--item--ttl {
  font-size: 1.6rem;
  line-height: 1.4em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec_news--li--item--ttl {
    font-size: 1.4rem;
  }
}

.sec_news--li--item--inner-txt {
  font-size: 1.4rem;
  line-height: 1.4em;
  color: #8F8F8F;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .sec_news--li--item--inner-txt {
    font-size: 1.2rem;
  }
}

.sec_news--li--item--btn {
  min-width: 100px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .sec_news--li--item--btn {
    width: 130px;
  }
}
.sec_news--li--item--btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  transition: all 0.5s;
}
.sec_news--li--item--btn span img {
  width: 100%;
}

.sec_about_point--item--wrap {
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.sec_about_point--item--wrap.is-glow {
  border-color: #FFFCD9;
  /* 控えめな外側発光 */
  box-shadow: 0 0 6px rgba(255, 247, 0, 0.45), 0 0 12px rgba(255, 247, 0, 0.35), 0 0 19px rgba(255, 247, 0, 0.28); /* 指定の19pxを一番外側で弱めに */
}

.sec_about_point--item--wrap.is-glow-all {
  border-color: #FFFCD9;
  /* 全点灯時も控えめに、少しだけ強調 */
  box-shadow: 0 0 8px rgba(255, 247, 0, 0.48), 0 0 16px rgba(255, 247, 0, 0.38), 0 0 24px rgba(255, 247, 0, 0.3);
}

/* 角丸の発光が切れないように（既に border-radius:50% 済みなのでOK） */
.sec_works_cont--slider {
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
}

.sec_works_cont--slider--item {
  margin: 0 1em;
  background-color: #FFF;
}
.sec_works_cont--slider--item a {
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .sec_works_cont--slider--item a:hover .figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .sec_works_cont--slider--item a .figcaption {
    background: none;
    transform: none;
    width: auto;
    height: auto;
    opacity: 1;
  }
  .sec_works_cont--slider--item a .figcaption p {
    position: static;
    transform: none;
    text-align: left;
    width: auto;
    top: auto;
    left: auto;
    color: #000;
    padding: 1em;
    font-size: 1.4rem;
  }
}
.sec_works_cont--slider--item a img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec_works_arrowbox {
  max-width: 585px;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  height: 40px;
  margin-top: clamp(2rem, 3.63vw, 4rem);
}
@media screen and (max-width: 768px) {
  .sec_works_arrowbox {
    margin-right: 1em;
  }
}

.sec_works--prev {
  left: 0;
}

.sec_works--next {
  right: 0;
}

.sec_works--dots {
  max-width: 800px;
  margin-top: 3em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.sec_works--dots li {
  width: calc(20% - 10px);
}
.sec_works--dots li.slick-active button {
  background-color: #000;
}
.sec_works--dots li button {
  transition: 0.2s ease;
  text-indent: -9999px;
  width: 100%;
  height: 7px;
  background-color: #D9D9D9;
  border: 0px;
}

.blog_section_inner {
  display: flex;
  gap: 10px;
}

.blog_section_item {
  width: 33.3333333333%;
  list-style-type: none;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .blog_section_item {
    margin: 0 0.5em;
  }
}
.blog_section_item a {
  display: block;
  padding: 2em;
  border: 1px solid #000;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .blog_section_item a {
    padding: 1.5em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .blog_section_item a:hover .figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}

.blog_section_item--img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1em;
}
.blog_section_item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_section_item--data {
  padding: 0.5em 1em;
  color: #fff;
  background-color: #000;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.blog_section_item--ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1em;
  line-height: 1.4em;
}

.blog_section_item--txt {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.4em;
}

.sec_banner {
  border-top: 1px solid #c2c2c2;
}

.sec_banner_li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sec_banner_item {
  width: 48%;
  aspect-ratio: 700/309;
}
@media screen and (max-width: 768px) {
  .sec_banner_item {
    width: 100%;
  }
}
.sec_banner_item a {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .sec_banner_item a:hover .figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}
.sec_banner_item a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec_contact_btn--work,
.sec_contact_btn--paper,
.sec_contact_btn--form {
  margin-bottom: 0.5em;
}
.sec_contact_btn--work .sec_contact_btn--next img,
.sec_contact_btn--paper .sec_contact_btn--next img,
.sec_contact_btn--form .sec_contact_btn--next img {
  transition: all 0.5s;
  position: relative;
  transform: translate(50%, -40%);
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--work .sec_contact_btn--next img,
  .sec_contact_btn--paper .sec_contact_btn--next img,
  .sec_contact_btn--form .sec_contact_btn--next img {
    position: absolute;
  }
}
@media screen and (max-width: 480px) {
  .sec_contact_btn--work .sec_contact_btn--next img,
  .sec_contact_btn--paper .sec_contact_btn--next img,
  .sec_contact_btn--form .sec_contact_btn--next img {
    width: 40px;
  }
}
.sec_contact_btn--work .sec_contact_btn--next::after,
.sec_contact_btn--paper .sec_contact_btn--next::after,
.sec_contact_btn--form .sec_contact_btn--next::after {
  content: "";
  width: 100%;
  max-width: 33%;
  position: absolute;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  .sec_contact_btn--work .sec_contact_btn--next::after,
  .sec_contact_btn--paper .sec_contact_btn--next::after,
  .sec_contact_btn--form .sec_contact_btn--next::after {
    max-width: 37%;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--work .sec_contact_btn--next::after,
  .sec_contact_btn--paper .sec_contact_btn--next::after,
  .sec_contact_btn--form .sec_contact_btn--next::after {
    max-width: 70px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
@media screen and (max-width: 480px) {
  .sec_contact_btn--work .sec_contact_btn--next::after,
  .sec_contact_btn--paper .sec_contact_btn--next::after,
  .sec_contact_btn--form .sec_contact_btn--next::after {
    max-width: 45px;
  }
}

.sec_contact_btn--paper {
  background-color: #000000;
}

.sec_contact_btn--form {
  background-color: #000E2E;
}

.sec_contact_btn--tel {
  background-color: #001A2E;
}
.sec_contact_btn--tel p {
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 1100px) {
  .sec_contact_btn--tel p {
    font-size: 2.4rem;
  }
}

.sec_contact_btn--work {
  background-color: #fff;
  border: 1px solid #000;
}
.sec_contact_btn--work a::after {
  border-color: #000 !important;
}
.sec_contact_btn--work .sec_contact_btn--txt {
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: "Anton", sans-serif;
}
.sec_contact_btn--work .sec_contact_btn--txt p {
  margin-bottom: 0;
  font-size: 6.8rem;
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--work .sec_contact_btn--txt p {
    font-size: 4.8rem;
  }
}
.sec_contact_btn--work .sec_contact_btn--next::after {
  border-color: #000 !important;
}

.sec_contact_btn a {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  padding: 4em 2em;
  color: #fff;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .sec_contact_btn a {
    gap: 2em;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_btn a {
    flex-direction: column;
    align-items: center;
    padding: 2em 1em;
    gap: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec_contact_btn a:hover .sec_contact_btn--next img {
    position: relative;
    transform: translate(100%, -40%);
    opacity: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec_contact_btn a:hover::after {
    border-width: 10px;
  }
}
.sec_contact_btn a::before {
  content: attr(data);
  display: block;
  position: relative;
  z-index: 100;
}
.sec_contact_btn a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: border-width 300ms;
  border: 0 solid #fff;
  box-sizing: border-box;
  z-index: 100;
}

.sec_contact_btn--img {
  width: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--img {
    margin-bottom: 2em;
    width: 11%;
  }
}
@media screen and (max-width: 480px) {
  .sec_contact_btn--img {
    width: 19%;
  }
}
.sec_contact_btn--img img {
  object-fit: contain;
}
@media screen and (max-width: 1100px) {
  .sec_contact_btn--img img {
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--img img {
    width: 100%;
  }
}

.sec_contact_btn--txt {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--txt {
    margin-bottom: 2em;
  }
}
.sec_contact_btn--txt p {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 0.7em;
  line-height: 1.4em;
}
@media screen and (max-width: 1100px) {
  .sec_contact_btn--txt p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--txt p {
    text-align: center;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 480px) {
  .sec_contact_btn--txt p {
    font-size: 2rem;
    margin-bottom: 1em;
  }
}
.sec_contact_btn--txt span {
  line-height: 1.6em;
}
@media screen and (max-width: 480px) {
  .sec_contact_btn--txt span {
    font-size: 1.4rem;
  }
}

.sec_contact_btn--next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--next p {
    font-size: 3.2rem;
    margin-bottom: 0.3em;
  }
}
@media screen and (max-width: 480px) {
  .sec_contact_btn--next p {
    font-size: 2.4rem;
    margin-bottom: 0.3em;
  }
}
@media screen and (max-width: 1100px) {
  .sec_contact_btn--next {
    min-width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_btn--next {
    width: 100%;
  }
}

/********************************************
partscss
********************************************/
.breadcrumbs {
  max-width: 1100px;
  margin: 0 1em;
}
.breadcrumbs ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  .breadcrumbs ul {
    flex-wrap: wrap;
  }
}
.breadcrumbs ul li {
  padding-right: 4em;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.6em;
}
.breadcrumbs ul li:last-child {
  padding-right: 0;
}
.breadcrumbs ul li:last-child::after, .breadcrumbs ul li:last-child::before {
  display: none;
}
.breadcrumbs ul li::after, .breadcrumbs ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 1px;
  height: 7px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 4px) 50%;
}
.breadcrumbs ul li::after {
  transform: translateY(-50%) rotate(-45deg);
}
.breadcrumbs ul li::before {
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumbs ul li a {
  cursor: pointer;
  color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumbs ul li a:hover {
    opacity: 0.8;
  }
}

.page_kv {
  aspect-ratio: 12/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .page_kv {
    aspect-ratio: 12/3;
  }
}
@media screen and (max-width: 768px) {
  .page_kv {
    aspect-ratio: 12/4;
  }
}
@media screen and (max-width: 480px) {
  .page_kv {
    aspect-ratio: 12/5;
  }
}
.page_kv h1 {
  font-family: "Anton", sans-serif;
  font-size: 8.8rem;
}
@media screen and (max-width: 768px) {
  .page_kv h1 {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 480px) {
  .page_kv h1 {
    font-size: 5.6rem;
  }
}

.part_pager {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 4em;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .part_pager {
    flex-wrap: wrap;
  }
}
.part_pager .current {
  color: #fff;
  background: #000;
  border: 1px solid #000;
  padding: 0.8em 0.8em;
}
.part_pager .page_next {
  padding: 0.8em 1em;
}
.part_pager .page_prev {
  padding: 0.8em 1em;
}
@media (hover: hover) and (pointer: fine) {
  .part_pager .page_dots:hover {
    background-color: #fff !important;
    color: #242424 !important;
  }
}

.page_numbers {
  color: #242424;
  padding: 1em;
  background: #fff;
  border: 1px solid #000;
  padding: 0.8em 0.8em;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .page_numbers:hover {
    background-color: #000;
    color: #fff;
  }
}

.sec_works_genre {
  display: flex;
  justify-content: end;
  margin-bottom: 3em;
}
@media screen and (max-width: 480px) {
  .sec_works_genre {
    margin-bottom: 2em;
  }
}
.sec_works_genre ul {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .sec_works_genre ul {
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid #000;
  }
}
.sec_works_genre ul .sec_works--li--current {
  position: relative;
}
.sec_works_genre ul .sec_works--li--current::before {
  content: "";
  aspect-ratio: 11/7;
  margin-right: 0.5em;
  background-image: url("../img/current_tri.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 8px;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .sec_works_genre ul .sec_works--li--current::before {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sec_works_genre ul .sec_works--li--current a {
    background-color: #242424;
    color: #fff;
  }
}
.sec_works_genre ul .sec_works--li--current a::after {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .sec_works_genre ul .sec_works--li--current a::after {
    display: none;
  }
}
.sec_works_genre ul li {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .sec_works_genre ul li {
    width: 50%;
    border: 1px solid #000;
    border-top: 0;
  }
  .sec_works_genre ul li:nth-child(even) {
    border-left: 0;
  }
}
.sec_works_genre ul li a {
  font-weight: bold;
  color: #242424;
  text-decoration: none;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 480px) {
  .sec_works_genre ul li a {
    padding: 1em;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec_works_genre ul li a:hover {
    opacity: 0.8;
  }
  .sec_works_genre ul li a:hover::after {
    width: 100%;
  }
}
.sec_works_genre ul li a::after {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 0;
  height: 2px;
  background-color: #242424;
  transition: all 0.5s;
}

.sec_works--li ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: stretch;
}
.sec_works--li ul li {
  width: calc(33.3333333333% - 11px);
}
@media screen and (max-width: 768px) {
  .sec_works--li ul li {
    width: calc(50% - 8px);
  }
}
.sec_works--li ul li a {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #F2F2F2;
}
@media (hover: hover) and (pointer: fine) {
  .sec_works--li ul li a:hover .figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}
.sec_works--li ul li a img {
  width: 100%;
}

.sec_single_works {
  margin-bottom: 4em;
}

.sec_single_works--headimg {
  margin-bottom: 4em;
  aspect-ratio: 1360/889;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sec_single_works--headimg {
    margin-bottom: 2em;
  }
}
.sec_single_works--headimg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec_single_works--ttl {
  margin-bottom: 1em;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4em;
}
@media screen and (max-width: 1100px) {
  .sec_single_works--ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_single_works--ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_single_works--ttl {
    font-size: 1.8rem;
  }
}

.sec_single_works--link {
  margin-bottom: 1.4em;
}
.sec_single_works--link a {
  color: #0073E6;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.4em;
}
@media (hover: hover) and (pointer: fine) {
  .sec_single_works--link a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .sec_single_works--link a {
    font-size: 1.4rem;
  }
}

.sec_single_works--tags {
  margin-bottom: 2em;
}
.sec_single_works--tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 1em;
  background-color: #F2F2F2;
}
@media screen and (max-width: 768px) {
  .sec_single_works--tags ul {
    gap: 16px;
  }
}
.sec_single_works--tags ul li {
  font-weight: bold;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  .sec_single_works--tags ul li {
    font-size: 1.4rem;
  }
}

.sec_single_works--txt * {
  line-height: 1.8em;
}
.sec_single_works--txt p {
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .sec_single_works--txt p {
    font-size: 1.4rem;
  }
}
.sec_single_works--txt dl {
  margin: 1em 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec_single_works--txt dl {
    flex-direction: column;
  }
}
.sec_single_works--txt dl dt {
  width: 10%;
}
@media screen and (max-width: 1366px) {
  .sec_single_works--txt dl dt {
    width: 13%;
  }
}
@media screen and (max-width: 1100px) {
  .sec_single_works--txt dl dt {
    min-width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .sec_single_works--txt dl dt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.sec_single_works--txt dl dd {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .sec_single_works--txt dl dd {
    width: 100%;
    font-size: 1.4rem;
  }
}

.sec_works--singlesld {
  background-color: #F2F2F2;
  display: block;
}

.sec_service--sec {
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .sec_service--sec {
    margin-bottom: 8rem;
  }
}

.sec_service--head {
  margin-bottom: 4rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec_service--head {
    flex-direction: column;
  }
}

.sec_service--head--txt {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .sec_service--head--txt {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.sec_service--head--ttl {
  font-family: "Anton", sans-serif;
  font-size: 6.4rem;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .sec_service--head--ttl {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_service--head--ttl {
    font-size: 4rem;
  }
}

.sec_service--head--subttl {
  font-size: 1.8em;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .sec_service--head--subttl {
    font-size: 1.6em;
  }
}

.sec_service--head--img {
  aspect-ratio: 681/582;
}
@media screen and (max-width: 1366px) {
  .sec_service--head--img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .sec_service--head--img {
    width: 100%;
    height: 100%;
    aspect-ratio: 681/500;
  }
}
@media screen and (max-width: 480px) {
  .sec_service--head--img {
    aspect-ratio: 681/582;
  }
}
.sec_service--head--img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sec_service--head--img img {
    object-fit: contain;
  }
}
@media screen and (max-width: 480px) {
  .sec_service--head--img img {
    object-fit: cover;
  }
}

.sec_service--description {
  display: flex;
  position: relative;
  background-color: #F5F5F5;
  border-radius: 0.9rem;
  margin-bottom: 6rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_service--description {
    flex-direction: column;
    margin-bottom: 3rem;
    align-items: end;
  }
}
.sec_service--description::after {
  font-family: "Anton", sans-serif;
  font-size: 15rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 2.8rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1100px) {
  .sec_service--description::after {
    font-size: 11rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_service--description::after {
    font-size: 10rem;
    top: 1.5em;
    word-break: break-word;
  }
}
@media screen and (max-width: 480px) {
  .sec_service--description::after {
    font-size: 8rem;
  }
}

.sec_service--description--web::after {
  content: "Web Design";
}

.sec_service--description--dtp::after {
  content: "DTP/Graphics";
}

.sec_service--description--video::after {
  content: "Video Contents";
}

.sec_service--description--txt {
  flex-grow: 1;
  max-width: 60%;
  line-height: 2em;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec_service--description--txt {
    max-width: 100%;
    width: 100%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_service--description--txt {
    padding: 2em 1.5em;
  }
}

.sec_service--description--img {
  aspect-ratio: 498/269;
  width: 40%;
  margin-top: 1em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_service--description--img {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .sec_service--description--img {
    width: 90%;
  }
}
.sec_service--description--img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec_service--content {
  margin-bottom: 10rem;
}

.sec_service--content--inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .sec_service--content--inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .sec_service--content--inner {
    gap: 16px;
    justify-content: space-around;
  }
}

.sec_service--content--item {
  width: calc(25% - 20px);
}
@media screen and (max-width: 1100px) {
  .sec_service--content--item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .sec_service--content--item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.sec_service--content--item h5 {
  padding: 1em;
  background-color: #E8E8E8;
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1.6em;
}
@media screen and (max-width: 1100px) {
  .sec_service--content--item h5 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_service--content--item h5 {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.sec_service--content--item--img {
  aspect-ratio: 342/256;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .sec_service--content--item--img {
    margin-bottom: 1em;
    width: 95%;
  }
}
.sec_service--content--item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_service--package {
  padding: 3rem;
  background-color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_service--package {
    padding: 2rem;
  }
}
.sec_service--package h4 {
  position: absolute;
  bottom: calc(100% - 3px);
  left: 0;
  font-size: 4rem;
  font-family: "Anton", sans-serif;
}

.sec_service--package--li {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sec_service--package--li {
    flex-direction: column;
    gap: 32px;
  }
}

.sec_service--package--item {
  width: calc(33.3333333333% - 10px);
}
@media screen and (max-width: 768px) {
  .sec_service--package--item {
    width: 100%;
  }
}
.sec_service--package--item a {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sec_service--package--item a:hover .sec_service--package--item--img img {
    transform: scale(1.2);
  }
  .sec_service--package--item a:hover .sec_service--package--item--ttl::after {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .sec_service--package--item {
    font-size: 2rem;
  }
}

.sec_service--package--item--img {
  aspect-ratio: 420/270;
  margin-bottom: 1em;
  overflow: hidden;
}
.sec_service--package--item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.sec_service--package--item--ttl {
  font-size: 2.2rem;
  line-height: 1.8em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5em;
  position: relative;
}
.sec_service--package--item--ttl::after {
  content: "";
  position: absolute;
  top: 103%;
  left: 0;
  height: 2px;
  background-color: #fff;
  width: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1100px) {
  .sec_service--package--item--ttl {
    font-size: 2rem;
  }
}

.sec_service--package--item--txt {
  color: #fff;
  line-height: 1.6em;
  font-size: 1.4rem;
}

.search_result {
  margin-bottom: 3em;
}

.not_search_blog {
  display: none;
}

.not_search_blog--txt {
  text-align: center;
  font-size: 2rem;
}

.search_cat {
  background-color: #000;
  padding: 0.8em 1em;
  border-radius: 0.3em;
  display: inline-flex;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1em;
}

.search_cat_word {
  font-size: 2rem;
  font-weight: bold;
}

.blog_section_list .blog_section_inner_li {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .blog_section_list .blog_section_inner_li {
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .blog_section_list .blog_section_inner_li {
    gap: 10px;
  }
}
.blog_section_list .blog_section_inner_li .blog_section_item {
  width: calc(33.3333333333% - 10px);
}
@media screen and (max-width: 768px) {
  .blog_section_list .blog_section_inner_li .blog_section_item {
    width: calc(50% - 10px);
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .blog_section_list .blog_section_inner_li .blog_section_item {
    width: 100%;
  }
  .blog_section_list .blog_section_inner_li .blog_section_item a {
    padding: 1em;
  }
  .blog_section_list .blog_section_inner_li .blog_section_item a .blog_section_item--img {
    aspect-ratio: 16/9;
  }
}

.main_404 {
  padding-top: 10rem;
}

.ttl_404 {
  font-family: "Anton", sans-serif;
  text-align: center;
  font-weight: 500;
  font-size: 12rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1100px) {
  .ttl_404 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .ttl_404 {
    font-size: 8rem;
  }
}

.subttl_404 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 1100px) {
  .subttl_404 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .subttl_404 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .subttl_404 {
    font-size: 2rem;
  }
}

.txt_404 {
  line-height: 1.6em;
  text-align: center;
}

.backbtn_404 {
  margin-top: 4em;
}
.backbtn_404 a {
  display: flex;
  width: 100%;
  font-size: 1.8rem;
  padding: 2em;
  color: #fff;
  background-color: #000;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.5s;
}
@media screen and (max-width: 480px) {
  .backbtn_404 a {
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .backbtn_404 a:hover {
    color: #000;
    background-color: #fff;
  }
}

.contact_ttl {
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .contact_ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .contact_ttl {
    font-size: 2.4rem;
  }
}

.contact_txt {
  padding-bottom: 4em;
  line-height: 1.6em;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 480px) {
  .contact_txt {
    font-size: 1.4rem;
    padding-bottom: 3em;
  }
}

.contact_inner {
  padding: 4em 0 0;
}
@media screen and (max-width: 480px) {
  .contact_inner {
    padding: 3em 0 0;
  }
}

.contact_item {
  margin-bottom: 6em;
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact_item {
    flex-direction: column;
    margin-bottom: 3em;
  }
}

.contact_item_ttl {
  width: 40%;
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  padding-right: 1em;
  align-items: center;
  font-weight: bold;
  line-height: 1.4em;
}
.contact_item_ttl > p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact_item_ttl > p {
    width: 100%;
    padding: 0;
    justify-content: flex-start;
    gap: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .contact_item_ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_item_ttl {
    width: 100%;
    padding: 0;
    margin-bottom: 2em;
    justify-content: flex-start;
    gap: 40px;
  }
}

.contact_item_input {
  width: 60%;
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .contact_item_input {
    width: 100%;
    padding: 0;
  }
}
.contact_item_input input[type=text],
.contact_item_input input[type=email],
.contact_item_input input[type=tel],
.contact_item_input input[type=url],
.contact_item_input textarea {
  width: 100%;
  padding: 1em;
  border: 1px solid #666;
}
.contact_item_input textarea {
  min-height: 6em;
}

.check_box_li {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .check_box_li {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.check_box_li li label {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .check_box_li li label {
    font-size: 1.4rem;
  }
}

.contact_inner_ttl {
  font-size: 1.8rem;
  margin-bottom: 4em;
  display: flex;
  gap: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact_inner_ttl {
    margin-bottom: 3em;
  }
}

.contact_inner_ttl_required,
.contact_item_ttl_required,
.contact_item_ttl_any {
  font-size: 1.4rem;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .contact_inner_ttl_required,
  .contact_item_ttl_required,
  .contact_item_ttl_any {
    font-size: 1.2rem;
    padding: 0.2em 1em;
  }
}

.contact_inner_ttl_required,
.contact_item_ttl_required {
  background-color: #000;
}

.contact_item_ttl_any {
  background-color: #666;
}

.contact_privacy {
  margin-bottom: 3em;
}
.contact_privacy .contact_privacy_txt {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.5em;
}
.contact_privacy .contact_privacy_input {
  text-align: center;
}

.submit input[type=submit] {
  width: 100%;
  display: flex;
  font-size: 1.8rem;
  padding: 2em;
  color: #fff;
  background-color: #000;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .submit input[type=submit] {
    padding: 1.5em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .submit input[type=submit]:hover {
    color: #000;
    background-color: #fff;
  }
}

.sec_whitepaper_li {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.sec_whitepaper_li_item {
  width: 49%;
}
.sec_whitepaper_li_item a {
  display: flex;
  flex-direction: column;
  border: 1px solid #C4C4C4;
  padding: 1.4em;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sec_whitepaper_li_item a:hover .sec_whitepaper_li_item--img img {
    transform: scale(1.1);
  }
  .sec_whitepaper_li_item a:hover .sec_whitepaper_li_item--btn {
    color: #242424;
  }
  .sec_whitepaper_li_item a:hover .sec_whitepaper_li_item--btn::after {
    width: 100%;
  }
}

.sec_whitepaper_li_item--img {
  aspect-ratio: 16/9;
  width: 100%;
  margin-bottom: 1.4em;
  overflow: hidden;
}
.sec_whitepaper_li_item--img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}

.sec_whitepaper_li_item--ttl {
  font-weight: bold;
  color: #242424;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}

.sec_whitepaper_li_item--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  padding: 1.4em;
  position: relative;
  z-index: 1;
  border: 1px solid #000;
  transition: all 0.5s;
}
.sec_whitepaper_li_item--btn::after {
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  position: absolute;
  background-color: #fff;
  transition: all 0.5s;
}
.sec_whitepaper_li_item--btn::before {
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
}

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

.sec_whitepaper_cont {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .sec_whitepaper_cont {
    width: 100%;
  }
}

.sec_whitepaper_form {
  width: 40%;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .sec_whitepaper_form {
    width: 100%;
    padding-left: 0;
  }
}

.sec_whitepaper_slider__item {
  margin-bottom: 1em;
}
.sec_whitepaper_slider__item img {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
}

.sec_whitepaper_slider_thumb {
  display: flex;
  justify-content: space-around;
  gap: 0.4rem;
}

.sec_whitepaper_slider_thumb__item {
  width: calc(33.3333333333% - 0.8rem);
}
.sec_whitepaper_slider_thumb__item img {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
}

.whitepaper_contact_item {
  margin-bottom: 1.5em;
}

.whitepaper_contact_item_ttl {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .whitepaper_contact_item_ttl {
    font-size: 1.4rem;
  }
}

.whitepaper_contact_item_ttl_required {
  font-size: 1.2rem;
  padding: 0.5em 0.8em;
  background-color: #000;
  color: #fff;
  border-radius: 0.3em;
}

.whitepaper_contact_item_input {
  width: 100%;
}
.whitepaper_contact_item_input input {
  width: 100%;
  padding: 1em;
  border: 1px solid #979797;
}

.whitepaper_contact_privacy_txt {
  font-weight: bold;
  margin-bottom: 1em;
}
.whitepaper_contact_privacy_txt a {
  color: #0073E6;
  text-decoration: none;
  line-height: 1.4em;
}

.whitepaper_contact_privacy_input {
  margin-bottom: 2em;
}

.whitepaper_submit input[type=submit] {
  width: 100%;
  display: flex;
  font-size: 1.8rem;
  padding: 1em;
  color: #fff;
  background-color: #000;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .whitepaper_submit input[type=submit] {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .whitepaper_submit input[type=submit]:hover {
    color: #000;
    background-color: #fff;
  }
}

.recently_news {
  margin-top: 8em;
}

.sec_flowlist {
  display: flex;
  gap: 10px 20px;
}

.sec_flowlist_item {
  border: 1px solid #000;
  position: relative;
  padding: 2em 1em;
}

/* --------------------------------
 * タイピングアニメーション用カーソル (追従版)
 * -------------------------------- */
/* アニメーション対象の要素に relative を指定 */
.typing-anim {
  position: relative;
}

/* --------------------------------
 * タイピングアニメーション用カーソル (追従版)
 * -------------------------------- */
.typing-anim {
  position: relative;
}

.typing-anim.is-typing::after {
  content: "";
  position: absolute;
  /* ▼ カーソルの見た目（縦線） */
  width: 2px;
  height: 1.5em; /* テキストの高さに合わせる */
  background-color: #fff;
  margin-left: 1em;
  margin-top: 0.5em;
  /* ▼ 位置（CSS変数で制御） */
  left: var(--cursor-left, 0px);
  /* ★ 修正: bottom ではなく top を使う */
  top: var(--cursor-top, 0px);
  /* ★ 修正: left のみ transition させる (top は瞬時に移動) */
  transition: left 0.05s linear;
  /* ▼ 点滅アニメーション */
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */