/*
 Theme Name:   zetalink 2025
 Template:     generatepress
 Version:      1.0.0
 Description:  GeneratePressの子テーマです。
 Author:       yanaba
*/
:root {
  /* フォントサイズ（レスポンシブ） */
  --fs-xs: clamp(0.75rem, 0.9vw, 0.875rem);   /* 12px - 14px */
  --fs-sm: clamp(0.875rem, 1vw, 1rem);        /* 14px - 16px */
  --fs-base: clamp(1rem, 1.5vw, 1.25rem);     /* 16px - 20px */
  --fs-base-minus: clamp(-1.1rem, -1.5vw, -1.25rem);     /* 16px - 20px */
  --fs-md: clamp(1.125rem, 2vw, 1.5rem);      /* 18px - 24px */
  --fs-lg: clamp(1.25rem, 3vw, 2rem);         /* 20px - 32px */
  --fs-xl: clamp(2.5rem, 4vw, 2.5rem);        /* 24px - 40px */
  --fs-xl-minus: clamp(-2.5rem, -4vw, -2.5rem);
  --fs-xxl: clamp(3.5rem, 5vw, 3.5rem);        /* 24px - 40px */
  --fs-xxl-minus: clamp(-3.5rem, -5vw, -3.5rem);
  --fs-opening: clamp(1rem, 2.5vw, 2.25rem);

  /* カラー */
  --color-default: #333;

  --color-bg: rgb(215 215 215 / 1);
  --color-primary: #004080;
  --color-white: #fff;
  --color-gray: #4e5053;
  /*--color-accent: #b9f6ca;*/
  --color-accent: #97f5b1;
  --color-secondary: #f0f0f0;

  --menu-line-color: var(--bg-color-highlight); /* デフォルト状態 */

  --bg-color-default: rgb(215 215 215 / 1);
  --bg-color-highlight: #121212;

  /* レイアウト */
  --line-height-base: 1.6;
  --container-max-width: 1200px;
  --fs-center: 16;
  --sec-padding: 4vw;
}

/* 基本リセット＋設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
	font-size: var(--fs-base);
	overflow-x: clip;
	overflow-y: scroll;
	scrollbar-color: rgba(255, 255, 255, .3) #0e1028;
	scrollbar-width: thin
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--fs-base);
  line-height: var(--line-height-base);
  color: var(--color-default);
  background-color: var(--bg-color-default);
  transition: none;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body.is-highlight {
  background-color: var(--bg-color-highlight);
  color: var(--color-white);
  --menu-line-color: white;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

p {
  line-height: 2;
  margin-bottom: 0; 
}

a {
  text-decoration: none;
  color: inherit;
}

.bg-white { background-color: #ffffff; }
.bg-gray  { background-color: #d7d7d7; }
.bg-dark  { background-color: #222222; color: white; }

/* タイポグラフィ */
h1 { font-size: var(--fs-xl); margin-bottom: 0.5em; }
h2 { font-size: var(--fs-lg); margin-bottom: 0.5em; }
h3 { font-size: var(--fs-md); margin-bottom: 0.5em; }
p  { font-size: var(--fs-base);}

/* オープニング用全画面 */
#opening {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  font-family: 'Arial', sans-serif;
  display: none;
}

.opening__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  will-change: transform;
}

.opening__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.opening__count {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 1;
}

.opening__company {
  font-size: var(--fs-opening);
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 1.2rem;
  opacity: 0;
  transform: scale(0.5);
  will-change: transform, opacity;
}

/* モバイル　---　ヘッダー */
header {
  width: 100%;
  z-index: 500;
  position: fixed !important;
  top: 0;
  left: 0;
}

.site-header {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.custom-logo-link {
  display: block;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
}

.custom-logo-link img {
  width: inherit;
  height: auto;
}

#menu-btn-lines {
  z-index: 2;
  width: 6.5rem;
  height: 2rem;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
  background: transparent !important;
}

#menu-btn-lines span {
  background: var(--menu-line-color);
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: 1px;
  transition: all 0.5s ease;
  transform-origin: center center;
}

#menu-btn-lines.is-open span {
  background-color: #fff;
}

#menu-btn-lines span:nth-child(1) {
  top: calc(50% - 0.25rem);
}

#menu-btn-lines span:nth-child(2) {
  top: calc(50% + 0.25rem);
}

#menu-btn-lines.is-open span:nth-child(1) {
  transform: rotate(10deg) translateY(4px);
}

#menu-btn-lines.is-open span:nth-child(2) {
  transform: rotate(-10deg) translateY(-3px);
}

.site-content {
  display: block !important;
  padding-top: 7rem;
}

/* モバイル ナビ */
.nav_menu {
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: clip-path;
}

.nav_mask {
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  background: var(--bg-color-highlight);
  z-index: 2;
  clip-path: inset(0% 100% 0% 0%); /* 初期閉じ状態 */
  transition: clip-path 0.4s ease;
  will-change: clip-path;
}

.nav_inner {
  padding-block: 7rem;
  padding-inline: 0.7rem;
  font-size: var(--fs-xl);
}

.nav_menu_inner {
  color: var(--color-accent);
  font-weight: bold;
  margin: 1.5em 0;
}

.nav_menu_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_menu_inner li {
  padding: 0.5rem 0;
}

.nav_overlay {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}

/* モバイル　---　セクション共通 */
.sec_title {
  padding: 0 var(--sec-padding) 3rem;
}

.sec_title_inner {
}

.sec_title p {
  font-weight: bold;
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-default);
  width: fit-content;
}

.sec_title h3 {
  font-size: clamp(2.8rem, 6.3vw, 3.5rem);
  font-weight: bold;
  display: block;
}

.sec_title_text {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

/* HTML: <div class="loader"></div> */
.loader_item {
 margin: 0 auto; 
}
.loader {
  margin: 1rem auto;
  display: flex;
  justify-content: center;
}


/* HTML: <div class="loader"></div> */
.loader_01 {
  width: 90px;
  aspect-ratio: 1.154;
  color: #c084fc;
  display: grid;
  animation: l38-0 6s infinite linear;
}
.loader_01:before,
.loader_01:after {
  content: "";
  grid-area: 1/1;
}
.loader_01:before {
  clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
  background: conic-gradient(from -30deg,#0000 60deg,currentColor 0);
}
.loader_01:after {
  background: conic-gradient(from -30deg,currentColor 60deg,#0000 0);
  animation: l38 0.5s infinite alternate;
}
@keyframes l38-0 {
  0%,16.66%     {transform: rotate(0deg)}
  16.67%,33.33% {transform: rotate(60deg)}
  33.34%,50%    {transform: rotate(120deg)}
  50.1%,66.66%  {transform: rotate(180deg)}
  66.67%,83.33% {transform: rotate(240deg)}
  83.34%,100%   {transform: rotate(300deg)}
}
@keyframes l38 {
  100%  {transform: translateY(-20px)}
}

/* HTML: <div class="loader"></div> */
.loader_02 {
  display: inline-grid;
  width: 90px;
  aspect-ratio: 1;
  animation: l11-0 3s linear infinite;
}
.loader_02:before,
.loader_02:after {
  content: "";
  grid-area: 1/1;
}
.loader_02:before {
  clip-path: polygon(100% 50%,83.81% 59.06%,93.3% 75%,74.75% 74.75%,75% 93.3%,59.06% 83.81%,50% 100%,40.94% 83.81%,25% 93.3%,25.25% 74.75%,6.7% 75%,16.19% 59.06%,0% 50%,16.19% 40.94%,6.7% 25%,25.25% 25.25%,25% 6.7%,40.94% 16.19%,50% 0%,59.06% 16.19%,75% 6.7%,74.75% 25.25%,93.3% 25%,83.81% 40.94%);
  background: #00bcd4;
  transform: rotate(0turn) translate(-12.5%) rotate(0turn);
  animation: l11-1 2s linear infinite;
}
.loader_02:after {
  margin: 12.5%;
  clip-path: polygon(100% 50%,78.19% 60.26%,88.3% 82.14%,65% 75.98%,58.68% 99.24%,44.79% 79.54%,25% 93.3%,27.02% 69.28%,3.02% 67.1%,20% 50%,3.02% 32.9%,27.02% 30.72%,25% 6.7%,44.79% 20.46%,58.68% 0.76%,65% 24.02%,88.3% 17.86%,78.19% 39.74%);
  background: #4fd6e7;
}
@keyframes l11-0 {to{rotate: 1turn;}}
@keyframes l11-1 {to{transform: rotate(-1turn) translate(-12.5%) rotate(.75turn);}}

/* HTML: <div class="loader"></div> */
.loader_03 {
  width: 90px;
  aspect-ratio: 1.154;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  --c:no-repeat linear-gradient(#ff9f1c 0 0);
  background: var(--c),var(--c),var(--c),var(--c),var(--c);
  background-size: 100% calc(100%/5 + 1px);
  animation: l15 2s infinite;
}
@keyframes l15 {
  0%  {background-position: 0 calc(-2*100%/4),0 calc(-2*100%/4),0 calc(-2*100%/4),0 calc(-2*100%/4),0 calc(-2*100%/4)}
  20% {background-position: 0 calc(4*100%/4) ,0 calc(-2*100%/4),0 calc(-2*100%/4),0 calc(-2*100%/4),0 calc(-2*100%/4)}
  40% {background-position: 0 calc(4*100%/4) ,0 calc(3*100%/4) ,0 calc(-2*100%/4),0 calc(-2*100%/4),0 calc(-2*100%/4)}
  60% {background-position: 0 calc(4*100%/4) ,0 calc(3*100%/4) ,0 calc(2*100%/4) ,0 calc(-2*100%/4),0 calc(-2*100%/4)}
  80% {background-position: 0 calc(4*100%/4) ,0 calc(3*100%/4) ,0 calc(2*100%/4) ,0 calc(1*100%/4) ,0 calc(-2*100%/4)}
  100%{background-position: 0 calc(4*100%/4) ,0 calc(3*100%/4) ,0 calc(2*100%/4) ,0 calc(1*100%/4) ,0 calc(0*100%/4)}
}
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.loader_04 {
  width: 90px;
  aspect-ratio: 1;
  display: flex;
}
.loader_04::before,
.loader_04::after {
  content:"";
  flex:1;
  animation: l14 1.5s -.25s infinite linear alternate both;
}
.loader_04::after {
  --s:-1,-1;
  animation-delay: .5s;
}
@keyframes l14 {
  0%,
  30%  {transform:scale(var(--s,1)) translate(0px)   perspective(150px) rotateY(0deg);
        clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,0 75%,0 25%);
        background:#e30062;}
  37.5%{transform:scale(var(--s,1)) translate(-10px) perspective(150px) rotateX(0deg);
        clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,0 75%,0 25%);
        background:#e30062;}
  50%  {transform:scale(var(--s,1)) translate(-10px) perspective(150px) rotateX(-90deg);
        clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,0 75%,0 25%);
        background:#e30062;
        border-radius: 0}
  50.01%{transform:scale(var(--s,1)) translate(-10px) perspective(150px) rotateX(-90.1deg);
         clip-path:polygon(0 0,100% 0,100% 100%,50% 100%,0 100%,0 25%);
         background:#ff5ca2;
         border-radius: 100px 0 0 100px}
  62.5%{transform:scale(var(--s,1)) translate(-10px) perspective(150px) rotateX(-180deg);
        clip-path:polygon(0 0,100% 0,100% 100%,50% 100%,0 100%,0 25%);
        background:#ff5ca2;
        border-radius: 100px 0 0 100px}
  70%,
  100%{transform:scale(var(--s,1)) translate(0px)   perspective(150px) rotateX(-180deg);
        clip-path:polygon(0 0,100% 0,100% 100%,50% 100%,0 100%,0 25%);
        background:#ff5ca2;
        border-radius: 100px 0 0 100px;}
}


/* HTML: <div class="loader"></div> */
.loader_05 {    
  --r1: 154%;
  --r2: 68.5%;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%; 
  background:
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#ffee32 80%),
    radial-gradient(var(--r1) var(--r2) at bottom,#ffee32 79.5%,#0000 80%),
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#ffee32 80%),
    #ccc;
  background-size: 50.5% 220%;
  background-position: -100% 0%,0% 0%,100% 0%;
  background-repeat:no-repeat;
  animation: l9 2s infinite linear;
}
@keyframes l9 {
    33%  {background-position:    0% 33% ,100% 33% ,200% 33% }
    66%  {background-position: -100%  66%,0%   66% ,100% 66% }
    100% {background-position:    0% 100%,100% 100%,200% 100%}
}

/* モバイル　---　会社情報 */
#company {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#company, #service {
	padding: 7rem 0;
}

#company .info_list {
	width: 100%;
	margin: 0 auto;
}

/*.info_list {
  z-index: 5;
  background:transparent;
}*/

#company .info_list dl {
    width: 100%;
}

#company .info_list dt {
	flex-shrink: 0;
  color: var(--color-gray);
  font-feature-settings: "palt" on;
  font-weight: bold;
  line-height: 175%;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  letter-spacing: .014rem;
  padding: 1.5rem 0 1rem 2rem;
}

#company .info_list dd {
  flex-grow: 1;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #c8c2c2;
  font-feature-settings: "palt" on;
  font-weight: 500;
  line-height: 175%;
  display: flex;
  align-items: center;
  padding: 1.6rem 1.6rem 2rem 1.9rem;
  font-size: 1rem;
  letter-spacing: .024rem;
}

#company__box__img {
  width: 50%;
}

.circle_effect {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 45vw;
  height: 45vw;
  background: var(--color-accent);
  border-radius: 8px;
  z-index: -1;
  transform-origin: center;
}


/* モバイル　---　サービス */
#service {
}

.ser_wrapper {
	z-index: 0;
  position: relative;
  top: 0;
  left: 0;
  --gap: 40;
  padding-bottom: 100px;
  padding: 0 var(--sec-padding);
  margin: 0 auto;
}

.ser_list {
  display: grid;
  position: relative;
  padding: calc(120 / var(--fs-center) * 1em) 0 0;
  padding-top: 0;
  gap: 40px;
}

.ser_item {
	position: relative;
  top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  left: 0;
  width: 100%;
  --key-color: #fff;
  contain: layout style;
}

.ser_item:first-child {
  z-index: 0;
}

.ser_item_inner {
  grid-template-columns: 1fr;  
}

.ser_item_inner {
  contain: layout style paint;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: relative;
  align-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  transition: background-color .4s ease-out;
}

.ser_item_block {
  display: grid;
  width: 100%;
  height: 100%;
  will-change: opacity, transform;
  padding: 3rem;
  background: var(--bg-color-highlight);
}

.ser_item_title {
  color: var(--color-accent);
}

.ser_item_title p {
  margin-bottom: 0.5rem;
}

.ser_item_title h3 {
  font-size: clamp(1.5rem, 4.3vw, 3.5rem);
  margin-bottom: 2rem;
}

.ser_item_line, .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.line {
  z-index: 5;
  border: 2px solid var(--color-accent);
  border-radius: 8px;
}

/* モバイル フッター */
footer {

}

.inside-site-footer {
  padding: 6rem var(--sec-padding) 3rem;
}

.contact_btn_card {
  perspective: 800px;
  transform-style: preserve-3d;
  will-change: transform;
}

.contact_btn {
  display: flex;
  padding: 5rem 2rem;
  /*background: rgba(255, 255, 255, 0.05);*/
  background: rgba(200, 200, 200, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  text-align: center;
  flex-flow: column;
}

.con_wrapper {
  display: flex;
  text-align: center;
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-flow: column;
}

.con_title {
  font-size: clamp(2.8rem, 6.3vw, 3.5rem);
  font-weight: bold;
}

.con_sub_title {

}

.ct_icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--color-accent);
  position: relative;
  margin: 1rem auto 0;
  transition: transform 0.3s ease;
}

.ct_icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-right: 5px solid rgba(200, 200, 200, 0.7);
  border-bottom: 5px solid rgba(200, 200, 200, 0.7);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-45%, -50%) rotate(-45deg);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  border-radius: 2px;
  will-change: transform;
  backface-visibility: hidden;
}

.contact_btn:hover .ct_icon::after {
  transform: translate3d(-45%, -50%, 0) rotate(-100deg);
}

.ft_info_left {
  padding: 3rem 0;
}

.ft_menu li {
  padding: 1rem 0;
}
.ft_menu li a {
  display: inline-block;
  margin: 0.5rem 0;
  text-decoration: none;
  color: transparent;
  text-shadow: 0 var(--fs-base-minus) 0 var(--color-default), 0 0 0 var(--color-default);
  transition: text-shadow 0.5s;
  line-height: 0.9;
  overflow: hidden;
}

.ft_menu li a:hover {
  text-shadow: 0 0 0 var(--color-default), 0 var(--fs-base) 0 var(--color-default);
}

.ft_info_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ft_icon {
  width: 40px;
  height: auto;
}

.ft_copy {
  padding-top: 1rem;
  color: var(--color-gray);
  font-size: var(--fs-xs);
}

/* モバイル TOP */
.fv.top {
  width: 95%;
  margin: 0 auto;
}

.fv__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.fv__ttl {
  position: relative;
  z-index: 2;
  padding-top: 20%;
}

.fv__des {
  position: relative;
  z-index: 2;
  padding-top: 3%;
  font-size: clamp(1.8rem, 2.2vw, 4rem);
  line-height: 3;
}

.fv__ttl h1 {
  font-size: clamp(5rem, 13vw, 17rem);
  font-weight: 700;
  line-height: 1;
}

.fv__ttl h1 .fv-span,
.fv__des p .fv-span {
  overflow: hidden;
  display: block;
}

.fv__des .fv-span {
  line-height: 3;
}

.fv-span {
  display: block;
  transform: translateY(20px);
  opacity: 0;
}

.fv__img {
  position: absolute;
  width: 53.444%;
  right: 0%;
  top: 28px;
  z-index: 1;
}

.fv-slider {
  position: relative;
  width: 100%;
  height: auto;
}

.fv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  z-index: 0;
  transition: opacity 3s ease;
  pointer-events: none;
}

.fv-img.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.border {
  height: 1px;
  background-color: #fff;
  width: 90%;
  margin: 12% auto;
  transform-origin: center left;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.border.jsBorder {
  transform: scale(1);
}

/* フッター前ループアニメーション */
.loop_box {
  height: 35.2rem;
  position: relative;
  overflow: hidden;
  width: 100%;

}
.loop_img_bg {
  background-image: url('img/pop_05.jpg');
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.loop_text_wrapper {
  z-index: 10;
  position: absolute;
  top: -1px;
  left: 0;
  aspect-ratio: 5300 / 800;
  height: 100%;
  height: calc(100%  + 2px);
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  white-space: nowrap;
  will-change: transform;
  display: flex;
  font-size:0;
}

.loop_text_item {
  display: inline-block;
  letter-spacing:normal;
  height: 100%;
}

.loop_text_item svg {
   width: 5300px;
  height: 100%;
  /*height: calc(100% + 2px);*/
  display: block;
  margin: 0;
  padding: 0;
}

.logo-path {
  will-change: fill;
}

/* タブレット以上 */
@media screen and (min-width: 768px) {

    #company .info_list dl {
        margin: 0;
    }

    #company .info_list dt {
        width: 100%;
        font-size: 1.2rem;
        letter-spacing: .014rem;
        padding: 1rem 0 1rem 2rem;
    }
}

/* ノートPC以上 */
@media screen and (min-width: 1024px) {

  #menu-btn-lines.is-open span:nth-child(1) {
    transform: rotate(10deg) translateY(6px);
  }

  #menu-btn-lines.is-open span:nth-child(2) {
    transform: rotate(-10deg) translateY(-3px);
  }

  .nav_inner {
    font-size: var(--fs-xxl);
  }

  .nav_menu_inner {
    margin: 0;
    display: inline-block;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
  }

  .nav_menu_inner ul li {
    padding: 1rem 0;
  }

  .nav_menu_inner ul li a {
    display: inline-block;
    margin: 0.5rem 0;
    text-decoration: none;
    color: transparent;
    text-shadow: 0 var(--fs-xxl-minus) 0 var(--color-accent), 0 0 0 var(--color-accent);
    transition: text-shadow 0.5s;
    line-height: 0.9;
    overflow: hidden;
  }

  .nav_menu_inner ul li a:hover {
    text-shadow: 0 0 0 var(--color-accent), 0 var(--fs-xxl) 0 var(--color-accent); /* 2つの影の位置を上方向に1.5emずつずらす */
  }

  .site-content {
    padding-top: 5rem;
  }

  .fv {
    width: 95%;
    padding-top: 0;
    margin: 0 auto;
  }

  #menu-btn-lines {
    width: 7.5rem;
  }

	/* ノートPC以上---　サービス */
	.ser_wrapper {	    
	    --gap: 60;
  }

	.ser_item {
    position: sticky;
    top: 0;
    left: 0;
    min-height: 500px;
  }

  .ser_item:first-child {
    padding-top: 30px;
  }

  .ser_item:nth-child(2) {
    padding-top: 60px;
  }

  .ser_item:nth-child(3) {
    padding-top: 90px;
  }

  .ser_item:nth-child(4) {
    padding-top: 120px;
  }

  .ser_item:nth-child(5) {
    padding-top: 150px;
  }

  .ser_item:nth-child(6) {
    padding-top: 300px;
  }

  .ser_item_title,
  .ser_dep {
    margin: 0;
  }

  .ser_dep ,.ser_dep p {
    font-size: 1rem;
  }

  .ser_item_inner_right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ser_item_block {
    grid-template-columns: auto 1fr; /* 左: loader / 右: title + dep */
    padding: 5vw;
    justify-content: center;
    align-items: start;
    gap: 10px;
    display: grid;
     grid-template-columns: 25vw 1fr;
    grid-template-areas:
      "loader title"
      "loader dep";
    column-gap: 1.5rem;
    align-items: stretch;
    min-height: 100%;
  }

  .loader {
    grid-area: loader;
    display: flex;
    align-items: center;   /* 縦方向の中央揃え */
    justify-content: center;
  }

  .ser_item_title {
    grid-area: title;
  }

  .ser_dep {
    grid-area: dep;
  }

  .ser_item_title h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
  }

  .ser_dep {
    /*padding-top: 3rem;*/
  }

  /* ノートPC以上---　会社概要 */
  #service {
    padding: 0 0 3rem 0; 
  }

  #company .info_list {
    width: 70%;
    margin-left:2rem;
  }

  #company .info_list dt {
    padding: 2rem 0 1rem 2rem;
  }

  #company .info_list dd {
    padding-bottom: 3rem;
  }

  #company {
    padding: 15rem 0 20rem 0;
  }

  .circle_effect {
    position: absolute;
    top: 0;
    right: 1rem;
    width: 45vw;
    height: 45vw;
    background: var(--color-accent);
    border-radius: 8px;
    z-index: -1;
    transform-origin: center;
  }






}

/* デスクトップワイド */
@media screen and (min-width: 1280px) {

  .ser_item_block {
    padding: 6rem 5vw;
  }

}



/* プライバシーポリシー */
.site-main .wp-block-group__inner-container {
  padding: 0;
  padding-bottom: 4rem;
}

.policy_wrapper {
  width: 90%;
  max-width: 1200px;
  min-width: 280px;
  margin: 0 auto;
}

.policy_wrapper .wp-block-heading {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.policy_wrapper .wp-block-heading:nth-child(1){
  padding-top: 0;
}

.policy_wrapper ul {
  padding: 1rem 0;
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}

.policy_wrapper ul li {
  position: relative;
  padding-left: 0;
  line-height: 2;
}

.policy_wrapper ul li ::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  background-color: black;
  border-radius: 50%;
}

.policy_wrapper .policy_box {
  margin: 2rem 0;
  border: 1px solid #797979;
  padding: 2rem 1rem;
}
.policy_box .wp-block-group__inner-container {
  padding: 0;
}

/* お問い合わせ */
.contact_box {
  width: 90%;
  max-width: 1000px;
  min-width: 280px;
  margin: 0 auto;
}

dd {
  margin: 0;
}

.wpcf7-list-item {
  display: flex;
  align-items: center;
  padding:2rem 0;
  justify-content: center;
  margin: 0;
}

.contact__fm {
  padding-bottom: 5rem;
}
.contact-ttl {
  margin-top:1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.required {
  color: #e63946;
  margin-left: 4px;
}

input[type="submit"] {
  width: 80%;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #bdbdbd;
  /*border-radius: 8px;*/
  transition: border-color 0.3s ease;
  background: transparent;
}
input:focus,
textarea:focus {
  border-color: #0077ff;
  outline: none;
  background: transparent !important;
  /*box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);*/
  box-shadow:none;
}
textarea {
  resize: vertical;
  min-height: 120px;
}

.ply-chk-box {
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.ply-chk-box a {
  color: #0077ff;
  text-decoration: underline;
}

.form-btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}
input[type="submit"].form-btn-common {
  background-color: #0077ff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
input[type="submit"].form-btn-common:hover {
  background-color: #005fcc;
}
