@charset "UTF-8";

/*-----------------------------
color
-----------------------------*/
/* 
【サイトカラーの変数】
ここの色を変更すると全体の色を変更できます(^)o(^)bたぶん
使用例) color: var(--black-color);
*/
:root {
	--white: #ffffff;
	--black: #4E4E4E;
	--gray: #585961;
	--brown: #A37864;
	--pink: #FD6E93;
	--blue: #62B1DD;
	--yellow: #F2B630;
  
	--color1: #041A68;
	--color2: #858DD9;
	--color3: #B26DC3;
  --color4: #F9F8F2;
	
	--hanapana_color1: #d7789a;
	--hanapana_color2: #d9816b;
	--hanapana_color3: #e9c145;
	--hanapana_color4: #a0c159;
	--hanapana_color5: #65bd8d;
	--hanapana_color6: #5bb2dd;
	--hanapana_color7: #6273b8;
	--hanapana_color8: #b16fac;
}
/*-----------------------------
フォント
-----------------------------*/

@font-face {
  font-family: 'title';
  src: url('../fonts/title.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'en-title';
  src: url('../fonts/en-title.woff2') format('woff2');
  font-display: swap;
}

/*------------------------------
common
------------------------------*/

* {
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
	margin: 0 !important;
  overflow-x: hidden;
}
body,
input,
select,
textarea {
  color: var(--brown);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
  font-size: 18px;
  font-weight: 500;
}
body {
  line-height: 1.5;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: break-word;
}
body.home {
  background-color: #FFFDF3;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
	font-family: "title", sans-serif;
}
section h2,
.page section h1,
.archive section h1 {
  font-size:28px;
  margin-bottom: 50px;
  position: relative;
}
.sec h2::before,
.page section h1::before,
.archive section h1::before {
  content: "";
  display: inline-block;
  background-image: url('../images/deco2-h2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  text-align: center;
  width: 600px;
  height: 14px;
  top: 50%;
  left: 50% !important;
  transform: translate(-50%, -50%);
  padding: 0 !important; 
}
.sec .en-title,.sec h2,.page .sec h1,.archive .sec h1 {
  text-align: center;
}
.t-text {
  text-align: center;
  margin-bottom: 50px;
}
h5 {
  font-family: "title", sans-serif;
}
.en-title {
  font-family: "en-title", sans-serif;
  line-height: 1;
  font-weight: inherit;
  font-size: 100px;
  letter-spacing: 5px;
  margin-bottom: 30px;
}
.pink {
  color: var(--pink);
}
.yellow {
  color: var(--yellow);
}
.blue {
  color: var(--blue);
}
iframe,
img,
video {
  display: block;
}
img {
  height: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}
a {
  color: inherit;
  display: block;
  text-decoration: none;
  text-underline-position: under;
  transition: all 0.2s;
}
a.button-pink {
  background: var(--pink);
  color: var(--white);
  border-radius: 30px;
  width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
ul,
ol {
  list-style-type: none;
}
input:not([type="checkbox"]):not([type="radio"]),
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input,
button,
select,
textarea {
  padding: 10px;
  border: none;
}
button,
input[type="button"],
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
input[type="submit"],
label {
  cursor: pointer;
}
textarea {
  resize: none;
}

:target::before {
  content: "";
  display: block;
  height: 100px; /* オフセットする高さ */
  margin-top: -100px; /* オフセットする高さと同じ */
}
.main {
  background: url(../images/bg.jpg) repeat center;
  overflow: hidden;
}
.inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.inner2 {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
main .button {
  padding: 20px 0;
  background-color: var(--pink);
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  width: 100%;
  margin: 50px auto 0;
  font-family: "title", sans-serif;
  border-radius: 60px;
  transition: 
    transform .25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow .25s ease,
    background-color .25s ease;
  box-shadow: 0 6px 0 rgba(0,0,0,.1);
}
main .button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 20px rgba(0,0,0,.1);
  background-color: var(--blue);
}
section .button-w {
  padding: 20px 0;
  background-color: var(--color4);
  color: var(--brown);
  border: 2px solid var(--brown);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  width: 100%;
  margin: 50px auto 0;
  font-family: "title", sans-serif;
  border-radius: 60px;
  transition: 
    transform .25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow .25s ease,
    background-color .25s ease;
  box-shadow: 0 6px 0 rgba(0,0,0,.1);
}
section .button-w:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 20px rgba(0,0,0,.1);
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}

.t-center {
  text-align: center;
}

.grecaptcha-badge {
  display: none !important;
}

@media screen and (max-width: 1536px){
  .inner,.inner2 {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  p,a {
    font-size: 16px;
  }
  .inner {
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
  }
  .inner2 {
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
  }
  #loading-wrapper img {
    width: 80% !important;
    height: auto;
    margin: 0 auto;
  }
  :target::before {
    content: "";
    display: block;
    height: 0px !important; /* オフセットする高さ */
    margin-top: 0px!important; /* オフセットする高さと同じ */
  }
  #page-title em {
    font-size: 14px !important;
  }
  .sec h2::before,
  .page section h1::before,
  .archive section h1::before {
    max-width: 380px;
    width: 100%;
  }
}
@media (max-width: 768px) {
	.inner {
	  padding: 0 15px;
	}
	.inner2 {
	  padding: 0 15px;
	}
  .en-title {
    font-size: 64px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  section h2,
  .page section h1,
  .archive section h1 {
    font-size:20px;
    margin-bottom: 50px;
    position: relative;
  }
  main .button {
    padding: 16px 0;
    background-color: var(--pink);
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 280px;
    width: 100%;
    margin: 30px auto 0;
  }
  section .button-w {
    padding: 16px 0;
    border: 2px solid var(--brown);
    font-size: 18px;
    max-width: 280px;
    width: 100%;
    margin: 30px auto 0;
  }
}

/*-----------------------------
load
-----------------------------*/
#loading-wrapper{ 
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: var(--white); 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  transition: all 0.2s; 
  z-index: 9999;
}
#loading-wrapper .video {
  display: block;
  width: 420px;
  height: 420px;
  margin: 0 auto;
}
.completed {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 768px){
  #loading-wrapper .video {
    width: 260px;
    height: 260px;
  }
}

/*-----------------------------
animation
-----------------------------*/
.drone-float {
  position: fixed;
  top: 18vh;
  left: 0;
  z-index: 1;
  transition: transform 0.3s ease;
}

.drone-float.is-flip {
  transform: scaleX(-1);
}

/* ふわふわは中だけ */
.drone-float .drone-img{
  display: block;
  animation: droneFloat 1.5s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}

@keyframes droneFloat{
  0%   { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(20px) rotate(2deg); }
}

/* フェードインアニメーション */
.pop-text span{
  display:inline-block;
  opacity:0;
  transform:translateY(18px) scale(.85);
}

.pop-text span.is-active{
  animation:popLetter .6s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes popLetter{
  0%{opacity:0; transform:translateY(18px) scale(.85);}
  70%{transform:translateY(-6px) scale(1.08);}
  100%{opacity:1; transform:translateY(0) scale(1);}
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left,
.reveal-right{
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

/* 左：左から */
.reveal-left{
  transform: translateX(-40px);
}

/* 右：右から */
.reveal-right{
  transform: translateX(40px);
}

.reveal-left.is-active,
.reveal-right.is-active{
  opacity: 1;
  transform: translateX(0);
}

.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.5s;
}
.fadein-left{
  transform: translate(-100px,0);
}
.fadein-right{
  transform: translate(100px,0);
}
.fadein-bottom{
  transform: translate(0,50px);
}
.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@media (prefers-reduced-motion: reduce){
  .reveal-left,
  .reveal-right{
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media screen and (max-width: 1024px){
  .drone-float {
    display: none;
  }
}

/*-----------------------------
sec-fv
-----------------------------*/
section.sec-fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: url(../images/bg_fv.jpg) center/cover no-repeat;
  z-index: 0;
  isolation: isolate;
}
.fv-copy {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 764px;
  width: 100%;
  z-index: 5;
}
.fv-copy .fv-copy-img {
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 100%;
}
.fv-copy h1 {
  font-size: clamp(16px, 2vw, 32px);
  color: var(--blue);
  background: var(--color4);
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 30px;
  display: inline-block;
  letter-spacing:3px;
  line-height: 1;
}
h2.deco-text {
  font-family: "en-title", sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--blue);
  letter-spacing: 10px;
  position: absolute;
  line-height: 1;
  left: 10%;
  top: 28%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left top;
  margin: 0;
  z-index: 4;
}
.taiyo {
  position: absolute;
  top: 40px;
  left: 30%;
  z-index: 2;
}
.h-kumo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.kumo-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.img-shima {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.img-shima .fv-shima,
.img-shima .fv-kumo{
  position: absolute;
  top: 20px;
  right: -650px;
  width: 2200px;
  height: 2200px;
}
.img-shima .fv-kumo {
  animation: spin 200s linear infinite reverse;
  z-index: 1;
}
.img-shima .fv-shima {
  animation: spin 120s linear infinite reverse;
  z-index: 2;
}
@keyframes spin{
  to { transform: rotate(360deg); }
}
.img-shima .img-ch{
  position: absolute;
  top: 1%;
  right: 0;
  width: 100%;
  height: 100%;
  transform: scale(clamp(0.6, 1vw + 0.5, 1));
  transform-origin: right bottom;
  z-index: 3;
}
.img-shima .img-ch .ch-kaeru {
  position: absolute;
  right: 660px;
  bottom:150px;
  z-index: 4;
}
.img-shima .img-ch .ch-hili {
  position: absolute;
  right: 520px;
  bottom:200px;
  z-index: 4;
}
.img-shima .img-ch .ch-kochan {
  position: absolute;
  right: 380px;
  bottom:230px;
  z-index: 4;
}
.img-shima .img-ch .ch-usagi {
  position: absolute;
  right: 240px;
  bottom:210px;
  z-index: 4;
}
.img-shima .img-ch .shadow1 {
  position: absolute;
  right:640px;
  bottom:128px;
  z-index: 3;
}
.img-shima .img-ch .shadow2 {
  position: absolute;
  right:530px;
  bottom:178px;
  z-index: 3;
}
.img-shima .img-ch .shadow3 {
  position: absolute;
  right:402px;
  bottom:202px;
  z-index: 3;
}
.img-shima .img-ch .shadow4 {
  position: absolute;
  right:280px;
  bottom:190px;
  z-index: 3;
}
.img-drone .drone1,
.img-drone .drone2{
  transform-origin: center;
  will-change: transform;
}
.img-drone .drone1 {
  position: absolute;
  top: 120px;
  right: 660px;
  z-index: 3;
  animation: droneFloat1 6s ease-in-out infinite;
}
.img-drone .drone2 {
  position: absolute;
  top: 200px;
  right: 170px;
  z-index: 3;
  animation: droneFloat2 7.5s ease-in-out infinite;
}
@keyframes droneFloat1{
  0%   { transform: translate(0, 0) rotate(-3deg); }
  20%  { transform: translate(25px, -15px) rotate(2deg); }
  50%  { transform: translate(0, -30px) rotate(-2deg); }
  80%  { transform: translate(-25px, -12px) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(-3deg); }
}
@keyframes droneFloat2{
  0%   { transform: translate(0, 0) rotate(3deg); }
  25%  { transform: translate(-30px, -18px) rotate(-2deg); }
  55%  { transform: translate(-5px, -35px) rotate(2deg); }
  85%  { transform: translate(30px, -15px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(3deg); }
}
.img-ch img[class^="ch-"]{
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.ch-kaeru{ animation: hopFlip 6s ease-in-out infinite; }
.ch-hili{  animation: hopFlip 6s ease-in-out infinite; animation-delay: -1.2s; }
.ch-kochan{animation: hopFlip 6s ease-in-out infinite; animation-delay: -2.4s; }
.ch-usagi{ animation: hopFlip 6s ease-in-out infinite; animation-delay: -3.6s; }

@keyframes hopFlip{
  0%, 75%, 100% { transform: translateY(0) rotateX(0deg); }
  80% { transform: translateY(4px) rotateX(6deg); }
  87% { transform: translateY(-22px) rotateX(-18deg); }
  92% { transform: translateY(0) rotateX(12deg); }
  96% { transform: translateY(-6px) rotateX(-6deg); }
}
.fv-scene{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.fv-scene-inner{
  position: absolute;
  inset: 0;
  transform-origin: center;
  will-change: transform, filter, opacity;

  transform: translateZ(0) scale(1.4);
  filter: blur(10px);
  opacity: .9;
  transition: transform 1s cubic-bezier(0.22, 1, 0.3, 1), filter .5s ease-out, opacity .5s ease-out;
}
body.fv-ready .fv-scene-inner{
  transform: translateZ(0) scale(1);
  filter: blur(0);
  opacity: 1;
}

/*------レスポンシブ------*/
@media screen and (max-width: 1536px){
  h2.deco-text {
    top: 26%;
  }
  .img-drone .drone1{
    width: 190px;
    right: 520px;
  }
  .img-drone .drone2{
    width: 200px;
    right: 80px;
    top: 160px;
  }
  .fv-copy{
    max-width: 680px;
  }
  .img-shima .fv-kumo,
  .img-shima .fv-shima{
    right: -720px;
    top: -50px;
    width: 2000px;
    height: 2000px;
  }
  .h-kumo {
    width: 480px;
  }
  .img-shima .img-ch{
    left: 10%;
    transform: scale(0.9);
    transform-origin: right bottom;
    top: 2%;
  }
  .taiyo {
    top: 30px;
    width: 170px;
  }
}
@media screen and (max-width: 1280px){
  .fv-copy{
    left: 6%;
    max-width: 560px;
  }
  .fv-copy h1{
    font-size: 26px;
  }
  h2.deco-text{
    font-size: 50px;
    top: 28%;
    left: 6%;
  }
  .img-drone .drone1{
    width: 150px;
    right: 420px;
  }
  .img-drone .drone2{
    width: 160px;
    right: 40px;
    top: 140px;
  }
  .taiyo {
    top: 50px;
    width: 130px;
  }
  .h-kumo {
      width: 390px;
  }
  .img-shima .img-ch{
    left: 10%;
    transform: scale(0.85);
    top: 4%;
  }
  .img-shima .fv-kumo,
  .img-shima .fv-shima{
    right: -640px;
    top: -50px;
    width: 1800px;
    height: 1800px;
  }
}
@media screen and (max-width: 1024px){
  .fv-copy{
    left: 5%;
    max-width: 480px;
  }
  .fv-copy h1{
    font-size: 18px;
    padding: 10px 15px;
    margin-top: 20px;
  }
  h2.deco-text{
    font-size: 40px;
    top: 30%;
    left: 6%;
  }
  .img-shima{
    transform: scale(0.8);
    transform-origin: right bottom;
  }
  .img-shima .img-ch {
    left: 20%;
    transform: scale(0.85);
    top: 3%;
  }
  .h-kumo {
    width: 270px;
    left: -10px;
    top: -15px;
  }
  .img-shima .fv-kumo,
  .img-shima .fv-shima {
    right: -690px;
  }
  .img-drone .drone1 {
    width: 150px;
    right: 350px;
  }
  .img-drone .drone2 {
    width: 160px;
    right: 40px;
    top: 180px;
  }
  .taiyo {
    position: absolute;
    top: 95px;
    width: 110px;
    left: 20%;
  }
}
@media screen and (max-width: 768px){
  .h-kumo {
    width: 265px;
    left: -10px;
    top: -15px;
  }
  .img-shima .fv-kumo, .img-shima .fv-shima {
    right: -630px;
    left: auto;
  }
  section.sec-fv{
    height: 100svh;
    background-position: center;
  }
  .fv-copy{
    right: auto;
    max-width: none;
    top: 19%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
  }
  .fv-copy h1{
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 1px;
  }
  h2.deco-text{
    display: none;
  }
  .img-shima{
    transform: scale(0.65);
    transform-origin: right bottom;
  }
  .img-drone{
    transform: scale(0.7);
    transform-origin: right top;
  }
  .taiyo {
    width: 100px;
    left: 2%;
    top: 80px;
  }
  .img-drone .drone1 {
    width: 140px;
    right: 54%;
    top: 135px;
  }
  .img-drone .drone2 {
    width: 150px;
    right: 8%;
    top: 210px;
  }
  .img-shima .img-ch {
    left: 20%;
    transform: scale(0.7);
    top: 4%;
  }
  .kumo-bottom {
    bottom: -3px;
  }
}

/*-----------------------------
main
-----------------------------*/
#about {
  padding: 120px 0;
  background: var(--white) url(../images/bg_about.jpg) top center / 100% no-repeat;
  text-align: center;
}
#about .en-title {
  font-size: 88px;
  letter-spacing: 2px;
}
#about .en-title br,
#about h2 br {
  display: none;
}
#about h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
#about .about-text,
#about .base-name {
  font-family: "title", sans-serif;
  line-height: 1.5;
  font-size: 24px;
  margin-bottom: 30px;
}
/*#about .base-image {
  display: flex;
  flex-wrap: wrap;
}
#about .base-image li {
  margin: 0 40px 40px 0;
}
#about .base-image li img {
}
#about .base-image li:nth-of-type(3n) {
   margin: 0 0 40px 0;
}*/
.base-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.base-track {
  display: flex;
  width: max-content;
  animation: baseLoop 60s linear infinite;
}
.base-image {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 40px 0 0;
}
.base-image li img {
  height: 267px;
  width: auto;
  display: block;
}
@keyframes baseLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.base-slider::before,
.base-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.base-slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1),
    rgba(255,255,255,0)
  );
}
.base-slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,1),
    rgba(255,255,255,0)
  );
}
.base-image li{
  position: relative;
  cursor: pointer;
}
.base-image li {
  position: relative;
  overflow: visible;
}
.base-image,
.base-image li{
  position: relative;
  overflow: visible !important;
}
.base-image li{
  position: relative;
  overflow: visible;
  cursor: default;
}

.hover-info{
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -40%);
  background: rgba(255,255,255,0.95);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .25s ease,
    transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.base-image li:hover .hover-info{
  opacity: 1;
  transform: translate(-50%, -50%); /* ← ふわっと上がる */
}
.hover-info::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:0; height:0;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-top:10px solid rgba(255,255,255,0.95);
}
.hover-info .city{
  display:block;
  font-weight:600;
  font-size:14px;
}
.hover-info .time{
  display:block;
  margin-top:4px;
  font-size:14px;
  font-weight:600;
  opacity:.75;
}
#service {
  padding: 0 0 120px;
  background: var(--white);
  position: relative;
}
#service h2 {
  margin-bottom: 30px;
}
#service h2::before {
  content: "";
  display: inline-block;
  background-image: url('../images/deco1-h2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  text-align: center;
  width: 200px;
  height: 14px;
  top: 50%;
  left: 300px;
  transform: translateY(-50%);
  padding: 0 !important;
}
#service .service-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
#service .left {
  width: 38%;
  flex-shrink: 0;
}
#service .left ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#service .left li {
  position: relative;
  width: 100%;
}
#service .left li div{
  cursor: pointer;
  user-select: none;
  font-family: "title", sans-serif;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border: 2px solid var(--brown);
  border-radius: 8px;
  background: var(--color4);
  color: var(--brown);
  font-weight: 700;
  font-size: 20px;
  transition: all .2s ease;
  width: 88%;
  cursor: default;
}
#service .left  li.active div {
  width: calc(94%);
  background: var(--brown);
  color: var(--white);
  cursor: default;
}
#service .left ul li::after {
  content: "";
  opacity: 0;
  position: absolute;
  right: 0;
  top: 10px;
  width: 100%;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 25px solid var(--brown);
  transition: all .2s ease;
}
#service .left ul li.active::after {
  opacity: 1;
}
#service .left li .icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  color: var(--brown);
  transition: color .3s cubic-bezier(0.16,1,0.3,1);
}
#service .left  li.active .icon {
  color: var(--white);
}
#service .right {
  flex: 1;
  width: 60%;
}
#service .right ul{
  position: relative;
}
#service .right ul li{
  display: none;
  position: relative;
  padding: 50px;
  border: 2px solid var(--brown);
  border-radius: 20px;
  background: var(--color4);
  min-height: 620px;
}
#service .right ul li p{
  line-height: 1.8;
  font-weight: 600;
}
#service .right ul li.active{
  display: block;
  animation: serviceFade .25s ease;
}
@keyframes serviceFade{
  from{ opacity:0; transform: translateY(8px); filter: blur(2px); }
  to  { opacity:1; transform: translateY(0); filter: blur(0); }
}
#service .serviceImg {
  margin: -260px auto -20px;
  max-width: 440px;
  width: 100%;
  animation: floatSway 4.6s ease-in-out infinite;
  transform-origin: 50% 65%;
  will-change: transform;
}
@keyframes floatSway{
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-12px) rotate(1deg); }
}
#service .service-shima {
  animation: spin 120s linear infinite reverse;
  position: absolute;
  bottom: -400px;
  left: -400px;
  z-index: 1;
}
#service .right ul li h3 {
  font-size: 32px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dashed var(--brown);
}
#service .right ul li h3 .icon {
  width: 44px;
  height: 44px;
  fill: currentColor;
  color: var(--brown);
  transition: color .3s cubic-bezier(0.16,1,0.3,1);
  margin-right: 20px;
}
#service #service {
  margin: 30px auto 0;
}
#service .service-pasokon {
  position: absolute;
  width: 180px;
  top: -180px;
  left: 100px;
  z-index: 1;
  animation: droneFloat 1.5s ease-in-out infinite alternate;
}
.service-inner-sp{ display:none; }

#blog {
  padding: 120px 0;
  background:
    url(../images/bg_kumo-top.png) top center / 100% no-repeat,
    url(../images/bg.jpg) top center / 100% repeat;
  position: relative;
}
#blog .inner {
  position: relative;
  z-index: 2;
}
#blog h2 {
  margin-bottom: 30px;
}
#blog .column{
  display:flex;
  gap:48px;
  align-items:flex-start;
}
#blog .column .left-cnt{ flex: 1; min-width: 0; }
#blog .column .right{ width: 320px; flex: 0 0 320px; }

#blog .left{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
}
#blog .left article{
  width: calc(50% - 20px);
  position: relative;
  margin-bottom: 20px;
}
#blog .left article > a{
  display:block;
  text-decoration:none;
  color:inherit;
}
#blog .left article time{
  position:absolute;
  top:-30px;
  left:0;
  z-index:3;
  font-family: "en-title", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color:var(--brown);
  text-shadow: 2px 2px 0 rgba(255,255,255,1);
}
#blog .left article figure{
}
#blog .left article .thumb{
  margin:0;
  border-radius: 30px;
  overflow:hidden;
  border: 2px solid var(--brown);
  position:relative;
  aspect-ratio: 3 / 2;
}
#blog .left article .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.001);
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#blog .left article a:hover .thumb img{
  transform: scale(1.15) rotate(-5deg);
}
#blog .left article figcaption{
  padding: 15px 0 0px;
}
#blog .left article .postMeta{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-top:-40px;
  margin-bottom:10px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
#blog .left article .user{
  display:flex;
  align-items: flex-end;
  gap:5px;
  font-size: 14px;
  color:var(--blue);
  font-family: "title", sans-serif;
  font-weight:700;
}
#blog .left article .user img{
  width:60px;
  height:60px;
  border-radius:999px;
  border: 3px solid var(--color4);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  background:var(--white);
}
#blog .left article .reaction{
  transform: translateY(6px);
  font-size: 12px;
  color: var(--pink);
}
#blog .left article .title{
  margin:0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--brown);
  font-weight: 800;
  transition: color .25s ease;
}
#blog .left article a:hover .title {
  color: var(--blue);
}
#blog .left article .post-categories{
  list-style:none;
  margin: 12px 0 0;
  padding:0;
}
#blog .left article .post-categories li{
  display:inline-block;
}
#blog .left article .post-categories a{
  display:inline-flex;
  align-items:center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--white);
  font-weight:800;
  font-size: 12px;
  text-decoration:none;
}
#blog .left article .post-categories a:hover {
  background: var(--blue);
  color: var(--white);
}
#blog .left .postMeta .reaction {
  display: flex;
  align-items: center;
  font-size: 18px;
}
#blog .left .postMeta .reaction::before {
  width: 20px;
  height: 23px;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  background-image: url(../images/icon_good.png);
}
#blog .left .postMeta .reaction .button_name, #blog .left .postMeta .reaction .braces {
    display: none;
}
.count_number {
  font-size: 14px;
  letter-spacing: 0px;
  color: var(--brown);
}

#blog .column .right{
  max-width: 320px;
  width: 100%;
}
#topblogright-wid.wid-area{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#topblogright-wid .widget-conts{
  background: var(--color4);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  backdrop-filter: blur(6px);
}
#topblogright-wid .widget-conts h3{
  font-family: "en-title", sans-serif;
  font-size: 40px;
  letter-spacing: .08em;
  margin: 0 0 20px;
  color: var(--brown);
  text-align: center;
  position: relative;
}
#topblogright-wid .widget-conts h3::after{
  content: "";
  display: block;
  width: 182px;
  height: 8px;
  margin: 12px auto 0;
  background: url(../images/line-f.svg) center no-repeat;
  background-size: contain;
}

#categories ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#categories ul li{
  margin: 0;
}
#categories ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-radius: 999px;
  border: 2px solid var(--blue);
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  background: var(--white);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "title", sans-serif;
}
#categories ul li a:hover{
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
#topblogright-wid .popular-posts .wpp-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
#topblogright-wid .popular-posts .wpp-list li{
  display: flex;
  padding: 15px 0;
  border-bottom: 1px dashed var(--blue);
  margin: 0;
}
#topblogright-wid .popular-posts .wpp-list li:last-of-type{
  border-bottom: none;
}
#topblogright-wid .popular-posts img.wpp-thumbnail{
  width: 90px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin: 0;
}
#topblogright-wid .popular-posts .wpp-post-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  color: var(--brown);
  font-weight: 700;
  line-height: 1.7;
  transition: color .2s ease;
  flex: 1;
}
#topblogright-wid .popular-posts a:hover + a.wpp-post-title,
#topblogright-wid .popular-posts .wpp-post-title:hover{
  color: var(--blue);
}
#topblogright-wid .popular-posts a:first-child{
  overflow: hidden;
  border-radius: 10px;
  display: block;
  margin-right: 10px;
}
#topblogright-wid .popular-posts a:first-child img{
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
#topblogright-wid .popular-posts a:first-child:hover img{
  transform: scale(1.15) rotate(-5deg);
}
#blog .blog-kaeru {
  position: absolute;
  width: 200px;
  top: 90px;
  right: 240px;
  z-index: 1;
  animation: droneFloat 1.5s ease-in-out infinite alternate;
}

.sec-sky {
  padding: 300px 0 150px;
  background: url(../images/bg_kusa-top.png) bottom center / 100% no-repeat,
              url(../images/bg_sky.jpg) top center / cover no-repeat;
  position: relative;
}
.sec-sky .bg-deco img{
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.sec-sky .bg-deco .kumo1 {
  position: absolute;
  top: -160px;
  left: -50px;
  z-index: 0;
  animation: kumoFloat1 5s ease-in-out infinite alternate;
}
.sec-sky .bg-deco .kumo2 {
  position: absolute;
  top: -120px;
  right: -50px;
  z-index: 0;
  animation: kumoFloat2 6s ease-in-out infinite alternate;
}
.sec-sky .bg-deco .kumo3 {
  position: absolute;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  animation: kumoFloat3 8s ease-in-out infinite alternate;
}
@keyframes kumoFloat1{
  0%{ transform: translate(0, 0) rotate(-1.2deg); }
  100%{ transform: translate(20px, 28px) rotate(1.2deg); }
}
@keyframes kumoFloat2{
  0%{ transform: translate(0, 0) rotate(1.2deg); }
  100%{ transform: translate(-24px, 22px) rotate(-1.2deg); }
}
@keyframes kumoFloat3{
  0%{ transform: translateX(-50%) translateY(0) rotate(-0.6deg); }
  100%{ transform: translateX(-50%) translateY(14px) rotate(0.6deg); }
}

#company.inner2{
  position: relative;
  padding: 0 0 120px;
}
#company .left{
  width: 54%;
  background: var(--white);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  position: relative;
  z-index: 2;
}
#company h2::before {
  content: "";
  display: inline-block;
  background-image: url('../images/deco1-h2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  text-align: center;
  width: 200px;
  height: 14px;
  top: 50%;
  left: 280px;
  transform: translateY(-50%);
  padding: 0 !important;
}
#company .company-text{
  margin: 0;
  color: var(--brown);
  font-size: 18px;
  line-height: 2;
}
#company .button{
  margin: 50px auto 0 0;
}
#company .right{
  position: absolute;
  right: 0;
  top: -50px;
  z-index: 1;
}
#company .right img{
  width: 100%;
  max-width: 880px;
  height: auto;
  border-radius: 26px;
  object-fit: cover;
}
#company .taiyo {
  position: absolute;
  top: -140px;
  left: 0%;
  z-index: 2;
}
#company .img-drone .drone1 {
  position: absolute;
  top: auto;
  bottom: -70px;
  right: auto;
  left: -20px;
  z-index: 3;
  animation: droneFloat1 6s ease-in-out infinite;
}
#company .img-drone .drone2 {
  position: absolute;
  top: auto;
  bottom: 0;
  right: -20px;
  z-index: 3;
  animation: droneFloat2 7.5s ease-in-out infinite;
}

#recruit {
  padding: 50px;
  background: var(--color4);
  border: 4px solid var(--brown);
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
#recruit .recruit-cnt {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#recruit .recruit-cnt li {
  width: 31%;
}
#recruit .recruit-cnt li a {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--brown);
  border-radius: 30px;
  background: var(--brown);
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
#recruit .recruit-cnt li a .recruit-type {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  padding: 10px 0;
  background: var(--brown);
  color: var(--color4);
  text-align: center;
  width: 50%;
  border-radius: 0 0 30px 30px;
  font-family: "title", sans-serif;
  line-height: 1;
  z-index: 1;
  transition: all 0.2s;
}
#recruit .recruit-cnt li a .deco-text {
  color: var(--color4);
  font-size: 44px;
  position: absolute;
  left: 36px;
  top: 70px;
  transform-origin: left top;
  transform: translateY(-50%) rotate(90deg);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  z-index: 1;
  transition: all 0.2s;
}
#recruit .recruit-cnt li a .recruit-job {
  font-size: 28px;
  padding: 25px 0;
  background: var(--brown);
  color: var(--color4);
  text-align: center;
  width: 100%;
  font-family: "title", sans-serif;
  line-height: 1;
  transition: all 0.2s;
}
#recruit .recruit-cnt li a .thumb {
  overflow: hidden;
}
#recruit .recruit-cnt li a .thumb img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#recruit .recruit-cnt li a:hover .thumb img{
  transform: scale(1.15) rotate(-5deg);
  opacity: .8;
}
#recruit .recruit-cnt li a:hover {
  border: 4px solid var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
#recruit .recruit-cnt li a:hover .recruit-type,
#recruit .recruit-cnt li a:hover .recruit-job {
  background: var(--blue);
}
#recruit .recruit-cnt li a:hover .deco-text {
  color: var(--blue);
}
.sec-sky .bg-deco-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  max-width: 980px;
}
.sec-sky .bg-deco-bottom img {
  width: 100%;
}

/*------レスポンシブ------*/
@media screen and (max-width: 1536px){
  #company .right img {
    max-width: 720px;
  }
  .sec-sky {
    padding: 300px 50px 150px;
  }
}
@media (max-width: 1280px){
  #blog .column{
    gap: 32px;
  }
  #blog .column .right{
    width: 280px;
    flex: 0 0 280px;
  }
  #blog .left{
    gap: 32px;
  }
  #blog .left article{
    width: calc(50% - 16px);
  }
  #company .left {
    padding: 30px;
    width: 70%;
  }
  #company .right img {
    max-width: 640px;
  }
}

@media (max-width: 1024px){
  #blog{
    padding: 100px 0;
  }
  #blog .column{
    display:block;
  }
  #blog .column .right{
    width: 100%;
    max-width: none;
    flex: none;
    margin-top: 80px;
  }
  #blog .left{
    gap: 28px;
  }
  #blog .left article{
    width: calc(50% - 14px);
  }
  #company .left {
    width: 100%;
    background: var(--white);
    border-radius: 0 0 30px 30px;
    padding: 20px 30px 30px;
    order: 2;
  }
  #company .right {
    position: relative;
    right: 0;
    top: 0;
    z-index: 1;
    order: 1;
  }
  #company.inner2 {
    display: flex;
    flex-wrap: wrap;
  }
  #company .right img {
    border-radius: 30px 30px 0 0;
    max-width: 100%;
  }
  #company .img-drone {
    display: none;
  }
  #company .button {
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 768px){
  #about {
    padding: 80px 0 120px;
  }
  #about .en-title {
    font-size: 50px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  #about .en-title br,
  #about h2 br {
    display: block;
  }
  #about h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #about .about-text, #about .base-name {
    font-size: 18px;
  }
  .base-image li img {
    height: 140px;
  }
  .base-slider::before, .base-slider::after {
    width: 30px;
  }
  .base-image {
    gap: 20px;
    margin: 0 20px 0 0;
  }
  #service .service-pasokon {
    width: 110px;
    top: -125px;
    left: -10px;
  }
  #service h2::before {
    width: 120px;
    height: 14px;
    top: 50%;
    left: 230px;
  }

  #service .service-inner{ display:none; }

  #service .service-inner-sp{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top: 20px;
    position: relative;
    z-index: 5;
  }

  #service .service-inner-sp li{
    border: 2px solid var(--brown);
    border-radius: 10px;
    background: var(--color4);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
  }

  #service .service-inner-sp dt{
    margin:0;
  }
  #service .service-inner-sp dt > div{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 46px 14px 14px;
    cursor:pointer;
    user-select:none;
    position:relative;
    font-family: "title", sans-serif;
    font-weight: 700;
    color: var(--brown);
  }

  #service .service-inner-sp dt .icon{
    width: 22px;
    height: 22px;
    fill: currentColor;
    color: var(--brown);
    flex: 0 0 auto;
  }

  #service .service-inner-sp dt > div::after{
    content:"+";
    position:absolute;
    right:15px;
    top:48%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    color: var(--brown);
    transition: transform .25s ease;
  }

  #service .service-inner-sp li.is-open dt > div{
    background: var(--brown);
    color: var(--white);
  }
  #service .service-inner-sp li.is-open dt .icon{
    color: var(--white);
  }
  #service .service-inner-sp li.is-open dt > div::after{
    content:"−";
    color: var(--white);
  }

  #service .service-inner-sp dd{
    margin:0;
    background: var(--color4);
    overflow:hidden;

    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height .45s cubic-bezier(.22,1,.36,1),
      opacity .25s ease,
      transform .35s cubic-bezier(.22,1,.36,1);
  }

  #service .service-inner-sp li.is-open dd{
    opacity: 1;
    transform: translateY(0);
    padding: 15px 15px 30px;
  }

  #service .service-inner-sp dd .serviceImg{
    width: min(320px, 88%);
    margin: 10px auto 0;
  }

  #service .service-inner-sp dd h3{
    font-size: 20px;
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom: 10px;
    margin: 0 0 10px;
    border-bottom: 2px dashed var(--brown);
  }

  #service .service-inner-sp dd h3 .icon{
    width: 28px;
    height: 28px;
    color: var(--brown);
    fill: currentColor;
    flex: 0 0 auto;
  }

  #service .service-inner-sp dd p{
    font-size: 16px;
    line-height: 1.9;
    font-weight: 600;
  }

  @media (prefers-reduced-motion: reduce){
    #service .service-inner-sp dd{
      transition:none;
      opacity:1;
      transform:none;
    }
  }
  #service .service-shima {
    width: 560px;
    height: 560px;
    bottom: -200px;
    left: -300px;
  }

  .t-text {
      margin-bottom: 30px;
  }
  #blog{
    padding: 80px 0;
  }
  #blog .blog-kaeru {
    width: 110px;
    top: 32px;
    right: 10px;
  }
  #blog .left article{
    width: 100%;
    margin-bottom: 10px;
  }
  #blog .left article time{
    top: -22px;
    font-size: 24px;
  }

  #blog .left article .thumb{
    border-radius: 22px;
  }

  #blog .left article figcaption{
    padding-top: 12px;
  }

  #blog .left article .postMeta{
    margin-top: -34px;
    padding: 0 8px;
  }

  #blog .left article .user{
    font-size: 13px;
  }

  #blog .left article .user img{
    width: 52px;
    height: 52px;
  }

  #blog .left .postMeta .reaction{
    font-size: 16px;
  }

  #blog .left article .title{
    font-size: 18px;
  }

  #topblogright-wid.wid-area{
    gap: 28px;
  }

  #topblogright-wid .widget-conts{
    padding: 20px 15px 30px;
    border-radius: 20px;
  }

  #topblogright-wid .widget-conts h3{
    font-size: 34px;
  }
  #topblogright-wid .widget-conts h3::after{
    width: 160px;
  }

  #categories ul{
    gap: 14px;
  }
  #categories ul li a{
    font-size: 16px;
    padding: 10px 0;
  }
  #topblogright-wid .popular-posts .wpp-post-title {
    -webkit-line-clamp: 3;
    line-height: 1.4;
  }
  #blog .inner {
    padding: 0 15px 30px;
  }

  .sec-sky {
    padding: 150px 15px 80px;
  }
  .sec-sky .bg-deco .kumo1 {
    top: -50px;
    left: -80px;
    width: 300px;
  }
  .sec-sky .bg-deco .kumo2 {
    top: -85px;
    right: -70px;
    width: 250px;
  }
  #company h2::before {
    width: 120px;
    height: 14px;
    top: 50%;
    left: 170px;
  }
  section h2 {
    margin-bottom: 30px;
  }
  #company.inner2 {
    position: relative;
    padding: 0px 0 80px;
  }
  #company .en-title {
    font-size: 54px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  #company .left {
    border-radius: 0 0 20px 20px;
    padding: 20px 15px 30px;
  }
  #company .right img {
    border-radius: 20px 20px 0 0;
  }

  #recruit {
    padding: 20px 15px 15px;
    border-radius: 20px;
    border: 2px solid var(--brown);
  }
  #recruit .recruit-cnt li {
    width: 100%;
    margin-bottom: 20px;
  }
  #recruit .recruit-cnt li a {
    border: 3px solid var(--brown);
    border-radius: 15px;
  }
  #recruit .recruit-cnt li a .thumb img {
    width: 100%;
    height: 300px;
  }
  #recruit .recruit-cnt li a .recruit-job {
    font-size: 20px;
    padding: 15px 0;
  }
  #recruit .recruit-cnt li a .deco-text {
    font-size: 32px;
    left: 28px;
    top: 40px;
  }
  #recruit .recruit-cnt li a .recruit-type {
    font-size: 16px;
    padding: 8px 0;
    width: 50%;
    border-radius: 0 0 20px 20px;
  }
}