@charset "UTF-8";
section {
  position: relative;
}

.bg-deco-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -20%);
  z-index: -1;
  width: 400px;
  height: 400px;
  background: url("../img/bg-point.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .bg-deco-left::before {
    transform: translate(-40%, 0);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .bg-deco-left::before {
    width: 200px;
    height: 200px;
  }
}
.bg-deco-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -10%);
  z-index: -1;
  width: 400px;
  height: 400px;
  background: url("../img/bg-point.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .bg-deco-right::after {
    transform: translate(50%, -10%);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .bg-deco-right::after {
    width: 200px;
    height: 200px;
  }
}
.bg-deco-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -20%);
  z-index: -1;
  width: 400px;
  height: 400px;
  background: url("../img/bg-point.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .bg-deco-service::before {
    transform: translate(-40%, -50%);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .bg-deco-service::before {
    width: 200px;
    height: 200px;
  }
}
.bg-deco-flow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-40%, 0);
  z-index: -1;
  width: 400px;
  height: 400px;
  background: url("../img/bg-point.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .bg-deco-flow::before {
    transform: translate(-40%, -100%);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .bg-deco-flow::before {
    width: 200px;
    height: 200px;
  }
}
.bg-deco-faq::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, 10%);
  z-index: -1;
  width: 400px;
  height: 400px;
  background: url("../img/bg-point.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .bg-deco-faq::after {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .bg-deco-faq::after {
    transform: translate(50%, 50%);
    width: 200px;
    height: 200px;
  }
}
/* お問い合わせボタン */
.contact-btn {
  position: relative;
  display: block;
  margin-inline: 24px 16px;
  padding-block: 8px;
  padding-inline: 32px;
  background-color: #24CC97;
  box-shadow: 0 0 4px 4px #24CC97;
  border-radius: 9999px;
  color: #FFF;
  transition: all 0.3s;
}
.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.contact-btn:hover {
  background-color: #72CCFF;
  box-shadow: 0 0 4px 4px #72CCFF;
}

@media screen and (max-width: 1200px) {
  #header .contact-btn {
    display: none;
  }
}
/* viewボタン */
.btn-box {
  margin-top: 32px;
  text-align: center;
}

.base-btn {
  display: inline-block;
  width: 200px;
  margin-inline: auto;
  padding-block: 8px;
  border-radius: 9999px;
  transition: all 0.3s;
}

/* 枠水色 */
.view-btn {
  background-color: #FFF;
  box-shadow: 0 0 8px 0 #72CCFF;
  color: #72CCFF;
}
.view-btn:hover {
  box-shadow: 0 0 16px 0 #00A0E9;
  /* color: v.$title-color; */
}

/* 緑枠 */
.accent-btn {
  background-color: #FFF;
  box-shadow: 0 0 8px 0 #24CC97;
  color: #24CC97;
}
.accent-btn:hover {
  box-shadow: 0 0 16px 0 #24CC97;
  color: #24CC97;
}

/* ------------------------------
header
------------------------------ */
#header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: 2%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  max-width: 1260px;
  margin-inline: auto;
  padding-block: 4px;
  padding-inline: 24px;
  background-color: #fff;
  border-radius: 9999px;
}

.site-logo {
  width: 164px;
}

.header-right {
  display: flex;
  align-items: center;
}

.navi {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.navi a {
  display: inline-block;
  position: relative;
  color: #333;
}
.navi a::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -8px;
  left: 0;
  background-color: #24CC97;
  border-radius: 8px;
  transition: all 0.3s;
  transform: scaleX(0);
}
.navi a:hover::after {
  transform: scaleX(1);
}

.header-right nav {
  position: fixed;
  top: 114px;
  left: -100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}

.active nav {
  left: 40px;
  opacity: 1;
  visibility: visible;
}

.toggle-btn {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 9999;
}

.toggle-btn span {
  display: inline-block;
  width: 50%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #24CC97;
  border-radius: 8px;
  transition: all 0.3s;
}

.toggle-btn span:nth-of-type(1) {
  top: 13px;
}

.toggle-btn span:nth-of-type(2) {
  top: 19px;
}

.toggle-btn span:nth-of-type(3) {
  top: 25px;
}

.toggle-btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 3px;
  left: -2px;
  font-size: 0.75rem;
  color: #24CC97;
}

.active .toggle-btn span:nth-of-type(1) {
  width: 50%;
  top: 27%;
  left: 49%;
  transform: translate(-50%, 5px) rotate(-45deg);
}

.active .toggle-btn span:nth-of-type(2) {
  opacity: 0;
}

.active .toggle-btn span:nth-of-type(3) {
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -6px) rotate(45deg);
}

.active .toggle-btn span:nth-of-type(3)::after {
  content: "Close";
  top: 6px;
  left: 10px;
  transform: translateY(0) rotate(-45deg);
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F5F9FF;
  transition: all 0.3s;
}

.active .mask {
  display: block;
}

.circle-bg-left,
.circle-bg-right {
  width: 200vmax;
  height: 200vmax;
  /*   width: 100px;
  height: 100px; */
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  /*  transform: scale(1); */
  transition: all 0.8s ease;
}

.circle-bg-left {
  position: fixed;
  /*   left: -50px;
  top: -50px; */
  z-index: 10;
  background: #D8EFFF;
  border-radius: 50%;
  box-shadow: 0 0 80px 80px #D8EFFF;
  left: -100vmax;
  top: -100vmax;
}

.circle-bg-right {
  position: fixed;
  /*   right: -50px;
  bottom: -50px; */
  z-index: 10;
  /*   width: 100px;
  height: 100px; */
  background: #C8FADA;
  border-radius: 50%;
  box-shadow: 0 0 80px 80px #C8FADA;
  right: -100vmax;
  bottom: -100vmax;
}

.active .circle-bg-left,
.active .circle-bg-right {
  opacity: 1;
  visibility: visible;
}

.active .circle-bg-left {
  transform: scale(0.8);
}

.active .circle-bg-right {
  transform: scale(0.5);
}

.footer-contact-area {
  padding-block: 320px 80px;
  padding-inline: 2%;
  background-image: url(../img/contact-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-contact-area {
    padding-block: 160px 80px;
  }
}
.text-contact {
  margin-bottom: 16px;
  filter: blur(2px);
  font-size: clamp(2.5rem, 0.278rem + 11.11vw, 10rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #FFF;
}

.footer-text {
  margin-bottom: 40px;
  line-height: 2;
}

@media screen and (max-width: 400px) {
  .footer-text {
    text-align: left;
  }
}
.contact-btn-box {
  text-align: center;
}
.contact-btn-box .contact-btn {
  display: inline-block;
  width: 200px;
}

.copy-light {
  padding-block: 16px;
  background-color: #72CCFF;
  text-align: center;
}
.copy-light small {
  color: #FFF;
}

/* topへ戻るボタン */
.to-top {
  position: fixed;
  z-index: 5;
  right: 24px;
  bottom: 56px;
  width: 60px;
  height: auto;
  cursor: pointer;
}
.to-top img {
  width: 100%;
  height: 100%;
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-6deg);
  }
  50% {
    transform: translate(0, -6px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(6deg);
  }
}
.page-section {
  padding-top: 120px;
}

@media screen and (max-width: 1200px) {
  .page-section {
    padding-top: 80px;
  }
}
.page-works-top-items {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 120px;
}

.page-works-top-img {
  width: 40%;
}
.page-works-top-img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page-works-top-items {
    flex-direction: column;
    margin-bottom: 56px;
  }
  .page-works-top-img {
    width: 60%;
  }
}
.page-works-texts {
  width: 60%;
}
.page-works-texts .page-works-message {
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #00A0E9;
}

@media screen and (max-width: 768px) {
  .page-works-texts {
    width: 100%;
  }
}
#page-service .sec-title {
  margin-bottom: 0;
}

.page-service-top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-service-texts {
  width: 50%;
}
.page-service-texts .page-service-message {
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #00A0E9;
}

.page-service-top-img {
  width: 50%;
}
.page-service-top-img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page-service-top-items {
    flex-direction: column-reverse;
  }
  .page-service-texts {
    width: 100%;
  }
  .page-service-top-img {
    width: 120%;
    margin-top: 0;
  }
}
/* タブメニュー */
.tab-menu {
  display: flex;
  gap: 8px;
}
.tab-menu .tab {
  width: 180px;
  padding-block: 12px;
  background-color: #CFECFF;
  border-radius: 8px 8px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.tab-menu .tab.active {
  background-color: #72CCFF;
}
.tab-menu .tab:hover {
  background-color: #72CCFF;
}

/* タブの中身 */
.tab-contents {
  padding: 16px;
  background-color: #72CCFF;
  border-radius: 8px;
  border-top-left-radius: 0;
}
.tab-contents .tab-content {
  min-height: 600px;
  padding: 24px;
  background-color: #FFF;
  border-radius: 8px;
}

/* 基本料金タブ */
#tab1 .price-set {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#tab1 .plus-img {
  width: 40px;
}
#tab1 .price-icon {
  width: 27%;
  height: auto;
}

@media screen and (max-width: 768px) {
  #tab1 .price-set {
    flex-direction: column;
    gap: 8px;
  }
  #tab1 .price-icon {
    width: 80%;
  }
}
.price-texts {
  margin-top: 32px;
}

.price-title {
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: bold;
}

.price-text,
.notice-text {
  line-height: 1.6;
}

.notice-text {
  margin-top: 56px;
}

/* 保守管理 */
.maintenance-icon {
  text-align: center;
}

.tab-other {
  margin-top: 0;
}

.tab-other-text {
  margin-bottom: 16px;
}
.tab-other-text:last-of-type {
  margin-bottom: 0;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.single-post {
  padding-top: 120px;
}

.post-category {
  max-width: 300px;
  margin-inline: auto;
  padding-block: 8px;
  padding-inline: 40px;
  background-color: #72CCFF;
  box-shadow: 0 0 4px 4px #72CCFF;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #FFF;
  text-align: center;
}

.post-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #00A0E9;
}

#single-post-page .post-title {
  margin-top: 64px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00A0E9;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #single-post-page .post-title {
    margin-top: 32px;
    font-size: 1.125rem;
    text-align: left;
  }
}
.works-post-thumbnail {
  border-radius: 8px;
}
.works-post-thumbnail img {
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .works-post-thumbnail {
    width: 80%;
    margin-inline: auto;
  }
}
.post-page-contents {
  margin-top: 16px;
  padding: 24px;
  background-color: #FFF;
  border-radius: 8px;
}

.post-contents-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.post-contents-item dt,
.post-contents-item dd {
  margin-bottom: 24px;
}
.post-contents-item dt {
  width: 20%;
  padding: 8px;
  text-align: center;
  border: 2px solid #24CC97;
  border-radius: 8px;
}
.post-contents-item dd {
  width: 78%;
}
.post-contents-item dd a {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #24CC97;
}
.post-contents-item dd a:hover {
  color: #00A0E9;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .post-contents-item dt {
    width: 180px;
    margin-bottom: 8px;
  }
  .post-contents-item dd {
    width: 100%;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 576px) {
  .post-contents-item {
    align-items: center;
  }
  .post-contents-item dt {
    width: 100%;
  }
}
.production-comment {
  margin-top: 24px;
  margin-bottom: 40px;
}

.production-voice span {
  display: inline-block;
  margin-bottom: 16px;
  padding-block: 4px;
  padding-inline: 24px;
  background-color: #24CC97;
  box-shadow: 0 0 4px 4px #24CC97;
  border-radius: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #FFF;
}

html {
  font-size: 100%;
}

body {
  background-color: #F5F9FF;
}

main {
  overflow-x: clip;
}

a {
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: "Zen Maru Gothic", sans-serif;
}

p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
}

dt,
dd {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #333;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 4%;
}

.top-section {
  padding-block: 80px;
}

@media screen and (max-width: 768px) {
  .top-section {
    margin-top: -56px;
  }
  #faq {
    padding-bottom: 16px;
  }
}
/* section-title */
.sec-title {
  position: relative;
  margin-bottom: 72px;
}
.sec-title .sec-title-sub {
  font-size: 88px;
  color: #72CCFF;
}
.sec-title .animate-sec-title {
  opacity: 0.3;
}
.sec-title .sec-title-main {
  position: absolute;
  left: 64px;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #003953;
}
.sec-title .sec-title-main::before {
  content: "";
  width: 120px;
  height: 2px;
  margin-right: 16px;
  background-color: #003953;
  border-radius: 8px;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}
.sec-title .sec-title-main.is-inview::before {
  animation: line-animation 0.8s ease 0.6s forwards;
}

@keyframes line-animation {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media screen and (max-width: 768px) {
  .sec-title {
    margin-bottom: 40px;
  }
  .sec-title .sec-title-sub {
    font-size: 3rem;
  }
  .sec-title .sec-title-main {
    bottom: -4px;
    left: 32px;
    font-size: 1.375rem;
  }
  .sec-title .sec-title-main::before {
    width: 88px;
    margin-right: 8px;
  }
}
/* ------------------------------
mainvisual
------------------------------ */
#mainvisual {
  position: relative;
  padding-bottom: 160px;
  background-image: url(../img/mainvisual-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  #mainvisual {
    padding-bottom: 20%;
  }
}
.mainvisual-inner {
  position: relative;
  max-width: 1400px;
  height: 100vh;
  margin-inline: auto;
  /* overflow: hidden; */
  /* border: 2px solid red; */
}

.mainvisual-logo {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 600px;
  /* overflow: hidden; */
}
.mainvisual-logo img {
  width: 100%;
  animation: rotation 120s linear infinite;
}
.mainvisual-logo.blur {
  animation-delay: 1.8s;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1200px) {
  .mainvisual-logo {
    top: 40%;
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual-logo {
    top: 55%;
    right: 40%;
  }
}
.mainvisual-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
}
.mainvisual-text p {
  font-size: clamp(1.375rem, 0.894rem + 2.41vw, 3rem);
  font-weight: bold;
  color: #003953;
}

@media screen and (max-width: 768px) {
  .mainvisual-text {
    writing-mode: vertical-rl;
    top: 66%;
    left: 66%;
    height: 100%;
  }
}
.mainvisual-text .blur-text:nth-child(1) {
  animation-delay: 0.5s;
}
.mainvisual-text .blur-text:nth-child(2) {
  animation-delay: 1.3s;
}

.blur-text {
  opacity: 0;
  filter: blur(10px);
}

.blur {
  animation: blur-text 2s 0.5s ease-out forwards;
}

@keyframes blur-text {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
/* ------------------------------
プロフィール
------------------------------ */
.top-profile-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.top-profile-texts .profile-name {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #00A0E9;
}
.top-profile-texts .short-profile {
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .top-profile-items {
    flex-direction: column;
    gap: 24px;
  }
  .top-profile-items img {
    width: 40%;
  }
}
/* ------------------------------
プロフィール/modal-window
------------------------------ */
.modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-inline: 2%;
  background-color: rgba(114, 204, 255, 0.4);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  padding-block: 40px;
  cursor: pointer;
}

.modal-container-wrapper,
.modal-container-inner {
  cursor: default;
}

.modal-container-wrapper {
  padding: 24px;
  background-color: #50D6AC;
  border-radius: 8px;
}

.modal-container-inner {
  padding: 32px;
  background-color: #FFF;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .modal-container-wrapper {
    padding: 8px;
  }
  .modal-container-inner {
    padding: 24px 16px;
  }
}
.profile-history {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.profile-history dt,
.profile-history dd {
  margin-bottom: 40px;
  font-size: 1rem;
}
.profile-history dt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-right: 24px;
  background-color: #50D6AC;
  box-shadow: 0 0 4px 4px #50D6AC;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  opacity: 0.99;
  color: #FFF;
}
.profile-history dt::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 110px;
  background-color: #50D6AC;
  box-shadow: 0 0 2px 2px #50D6AC;
}
.profile-history dt:nth-of-type(3)::before {
  height: 140px;
}
.profile-history dt:last-of-type::before {
  display: none;
}
.profile-history dd {
  width: 90%;
}

@media screen and (max-width: 1200px) {
  .profile-history dd {
    width: 82%;
  }
}
@media screen and (max-width: 768px) {
  .profile-history dt {
    width: 50px;
    height: 50px;
    font-size: 0.9375rem;
  }
  .profile-history dd {
    width: 80%;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .profile-history dt,
  .profile-history dd {
    margin-bottom: 24px;
  }
  .profile-history dt {
    width: 42px;
    height: 42px;
    margin-right: 4%;
  }
  .profile-history dd {
    width: 80%;
    font-size: 0.875rem;
  }
}
/* 特技・性格・趣味 */
.profile-hobbies {
  display: flex;
  gap: 24px;
}
.profile-hobbies p {
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .profile-hobbies {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .profile-hobbies p {
    font-size: 0.9375rem;
  }
}
.skill-personality,
.hobby {
  width: 50%;
  padding: 24px;
  background-color: rgba(36, 204, 151, 0.1);
  border: 5px solid #24CC97;
  border-radius: 8px;
}

.hobbies-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.hobbies-title img {
  transform: rotate(-15deg);
  width: 48px;
  height: auto;
}
.hobbies-title span {
  font-size: 1.125rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  .hobbies-title {
    margin-bottom: 8px;
  }
  .hobbies-title img {
    width: 36px;
  }
}
.modal-container .btn-box {
  margin-top: 32px;
}

@media screen and (max-width: 1200px) {
  .skill-personality,
  .hobby {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .skill-personality,
  .hobby {
    padding: 16px;
  }
}
/* ------------------------------
制作一覧
------------------------------ */
.works-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.works-contents li {
  box-shadow: 0px 0px 16px 0 #72CCFF;
  border-radius: 8px;
  transition: all 0.3s;
}
.works-contents li:hover {
  box-shadow: 0px 0px 32px 0 #00A0E9;
  transform: translateY(-10px);
}
.works-contents li .works-post-category,
.works-contents li .works-post-date {
  color: #333;
}

.works-post-img img {
  display: block;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.works-post-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
}
.works-post-items span {
  display: inline-block;
}

.works-post-category {
  padding-block: 2px;
  padding-inline: 16px;
  background-color: #CFECFF;
  border-radius: 9999px;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .works-contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 480px) {
  .works-contents {
    grid-template-columns: repeat(1, 1fr);
  }
  .works-contents li {
    width: 80%;
    margin-inline: auto;
  }
}
/* ------------------------------
サービス
------------------------------ */
#top-service {
  text-align: right;
}
#top-service .sec-title {
  z-index: 10;
  margin-bottom: 0;
  text-align: left;
}

/* .service-wrapper {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 2%;
} */
.service-item {
  position: relative;
  display: inline-block;
  margin-top: -140px;
  padding-block: 6% 12%;
  padding-inline: 6%;
  background-color: #D8EFFF;
  border-radius: 50%;
  box-shadow: 0 0 24px 16px #D8EFFF;
  text-align: right;
}
.service-item .service-img {
  display: block;
}
.service-item .btn-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .service-item {
    margin-top: 40px;
    padding-block: 12% 24%;
    padding-inline: 6%;
  }
  .service-item .service-img {
    width: 90%;
    margin-inline: auto;
  }
  .service-item .btn-box {
    margin-top: 24px;
  }
}
/* ------------------------------
ご利用の流れ
------------------------------ */
.flow-list {
  counter-reset: step 0;
}
.flow-list li {
  position: relative;
  width: 90%;
  margin-inline: auto;
  margin-bottom: 40px;
  padding: 24px;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 2px 2px 0 0 #D9D9D9;
  counter-increment: step;
}
.flow-list li::before {
  content: "Step" counter(step);
  position: absolute;
  top: -22px;
  left: -18px;
  transform: rotate(-10deg);
  font-family: "Petit Formal Script", cursive;
  font-size: 2rem;
  color: #00A0E9;
}

.flow-title {
  margin-bottom: 8px;
  font-size: 1.375rem;
  color: #00A0E9;
}

@media screen and (max-width: 768px) {
  #flow .sec-title {
    margin-bottom: 56px;
  }
  .flow-list li {
    width: 100%;
    margin-bottom: 56px;
  }
  .flow-list li::before {
    left: 0;
  }
}
/* ------------------------------
お客様の声
------------------------------ */
#voice {
  background-color: #CFECFF;
}
#voice .sec-title-sub {
  opacity: 0.8;
  color: #FFF;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.voice-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background-color: #FFF;
  border-radius: 8px;
}
.voice-list .row-reverse-list {
  flex-direction: row-reverse;
}

.voice-img {
  width: 30%;
  padding: 16px;
  background-color: rgba(207, 236, 255, 0.6);
  border-radius: 8px;
}

.voice-texts {
  width: 70%;
}
.voice-texts .voice-text-title {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: bold;
}
.voice-texts .accent-text {
  color: #FE8514;
}

@media screen and (max-width: 768px) {
  .voice-list li {
    flex-direction: column;
  }
  .voice-list .row-reverse-list {
    flex-direction: column;
  }
  .voice-img {
    width: 100%;
  }
  .voice-texts {
    width: 100%;
  }
}
/* ------------------------------
よくあるご質問
------------------------------ */
.ac-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ac-item {
  background-color: #FFF;
  box-shadow: 2px 2px 0 0 #D9D9D9;
  border-radius: 8px;
  transition: all 0.3s;
}

.question-box {
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 24px;
  background-color: #FFF;
  border-radius: 8px;
  transition: all 0.3s;
}

/* Answerの装飾 */
.answer-box {
  display: none;
  padding: 24px;
  background-color: #FFF;
  border-radius: 0 0 8px 8px;
  border-top: 3px dashed #72CCFF;
}

/* アイコン/文章/開閉ボタンエリア */
.faq-text-inner {
  position: relative;
  display: block;
  padding-inline: 35px;
  line-height: 1.5;
}

/* Q/Aアイコン共通 */
.circle-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #FFF;
  border-radius: 50%;
  border: 3px solid #72CCFF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 40px;
  color: #72CCFF;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .circle-icon {
    width: 36px;
    height: 36px;
    font-size: 1.375rem;
    line-height: 28px;
  }
}
/* Aアイコン */
.a-circle {
  background-color: #72CCFF;
  color: #FFF;
}

/* Qの文章 */
.faq-text-question {
  font-weight: bold;
  margin-left: 24px;
}

/* Aの文章 */
.faq-text-answer {
  margin-left: 24px;
}

/* 開閉ボタン(+) */
.open-btn::before, .open-btn::after {
  content: "";
  position: absolute;
  margin: auto;
  vertical-align: middle;
  border-radius: 5px;
  transition: all 0.3s;
}
.open-btn::before {
  border-top: 4px solid #72CCFF;
  width: 30px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 18px;
}
.open-btn::after {
  border-left: 4px solid #72CCFF;
  width: 0;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 31px;
}

/* Aが表示された時の開閉ボタン */
.ac-open .open-btn::after {
  height: 0;
}

/* ------------------------------
wordpress後の追記
------------------------------ */
.top-work-img {
  height: auto;
}

.top-voice-img {
  height: auto;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #72CCFF;
  border: 1px solid #72CCFF !important;
  border-radius: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFF;
  transition: all 0.3s;
}

.wp-pagenavi a:hover {
  background-color: #00A0E9;
  color: #FFF;
}

.wp-pagenavi .current {
  background-color: #00A0E9;
  border: 1px solid #00A0E9;
  color: #FFF;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border: none !important;
}

.scroll-blur-item {
  opacity: 0;
  filter: blur(10px);
}

.blur-item {
  animation: blur-item 0.8s 0s ease-out forwards;
}

@keyframes blur-item {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}/*# sourceMappingURL=style.css.map */