@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  line-height: 1;
  font-weight: normal;
  font-size: 15px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  * {
    font-size: 12px;
  }
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  line-height: 1;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text);
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--bg-blue);
}

img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  display: block;
}

li {
  list-style: none;
}

span {
  display: block;
}

:root {
  --text: #0f172a;
  --text-thin: #475569;
  --blue: #0ea5e9;
  --blue-deep:#0369a1;
  --pink:#f472b6;
  --pink-deep:#db2777;
  --white: #fff;
  --bg-blue:#f2fbff;
  --bg-pink:#fff8fd;
  --shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-blue: 0 4px 6px -1px rgba(14, 165, 233, 0.2);
}

section {
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 80px;
  }
}

.pg-wrapper {
  position: relative;
  overflow: hidden;
}
.pg-wrapper .ambient-bg {
  position: absolute; /* 親要素を基準に自由な場所に浮かせる */
  border-radius: 50%; /* 完全な円形にする */
  filter: blur(130px); /* 【超重要】130〜140pxもの非常に大きなボカシを適用 */
  z-index: -1; /* コンテンツ（z-index: 10以上など）より背面に配置 */
}
.pg-wrapper .ambient-bg--sky-top {
  width: 700px; /* 非常に大きな幅 */
  height: 700px; /* 非常に大きな高さ */
  top: -100px; /* 画面の左上にはみ出すように配置 */
  left: -100px;
  background-color: var(--blue); /* スカイブルー */
  opacity: 0.25;
}
@media (max-width: 768px) {
  .pg-wrapper .ambient-bg--sky-top {
    width: 300px;
    height: 400px;
    opacity: 0.3;
    filter: blur(80px);
  }
}
.pg-wrapper .ambient-bg--sunset-low {
  width: 700px; /* 青よりもさらに大きく */
  height: 700px;
  bottom: 0; /* 画面右下にはみ出すように配置 */
  right: -200px;
  background-color: var(--pink); /* サンセットピンク */
  opacity: 0.3;
}
@media (max-width: 768px) {
  .pg-wrapper .ambient-bg--sunset-low {
    bottom: 0;
  }
}

.btn-black {
  background-color: var(--text);
  padding: 10px;
  border-radius: 9999px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}
.btn-black a {
  color: var(--white) !important;
}
.btn-black:hover {
  background-color: var(--blue);
}

.btn-blue {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  background-color: var(--blue);
  border: solid 1px var(--blue);
  box-shadow: var(--shadow);
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.btn-blue a {
  color: var(--white);
  font-weight: bold;
  transition: all 0.4s ease;
}
.btn-blue:hover {
  background-color: var(--white);
  transition: all 0.4s ease;
}
.btn-blue:hover a {
  color: var(--blue);
  transition: all 0.4s ease;
}

.btn-line-blue {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  background-color: var(--white);
  border: solid 1px var(--blue);
  box-shadow: var(--shadow);
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.btn-line-blue a {
  color: var(--blue);
  font-weight: bold;
  transition: all 0.4s ease;
}
.btn-line-blue:hover {
  background-color: var(--blue);
  transition: all 0.4s ease;
}
.btn-line-blue:hover a {
  color: var(--white);
  transition: all 0.4s ease;
}

.btn-line-pink {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  background-color: var(--white);
  border: solid 1px var(--pink);
  box-shadow: var(--shadow);
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.btn-line-pink a {
  color: var(--pink);
  font-weight: bold;
  transition: all 0.4s ease;
}
.btn-line-pink:hover {
  background-color: var(--pink);
  transition: all 0.4s ease;
}
.btn-line-pink:hover a {
  color: var(--white);
  transition: all 0.4s ease;
}

.btn-white {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  background-color: var(--white);
  border: solid 1px var(--white);
  box-shadow: var(--shadow);
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.btn-white a {
  color: var(--text);
  font-weight: bold;
  transition: all 0.4s ease;
}
.btn-white:hover {
  border: solid 1px var(--blue);
  background-color: var(--white);
  transition: all 0.4s ease;
}
.btn-white:hover a {
  color: var(--blue);
  transition: all 0.4s ease;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 20px;
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
header .header-container .nav-content {
  width: 60%;
}
header .header-container .nav-content .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-container .nav-content .nav li {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
  transition: all 0.3s ease;
}
header .header-container .nav-content .nav li:last-child {
  margin-right: 0;
}
header .header-container .nav-content .nav li a {
  font-size: 0.8rem;
  color: var(--text-thin);
  letter-spacing: 2px;
  font-weight: 700;
}
@media (max-width: 768px) {
  header .header-container .nav-content {
    display: none;
  }
}
header .header-container .hum {
  z-index: 10;
  position: relative;
  width: 40px;
  height: 20px;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  header .header-container .hum {
    display: block;
  }
}
header .header-container .hum span {
  transition: all 0.4s ease;
  height: 2px;
  background-color: var(--text-thin);
  position: absolute;
}
header .header-container .hum span:first-child {
  top: 0;
}
header .header-container .hum span:nth-child(2) {
  top: 10px;
  opacity: 1;
}
header .header-container .hum span:last-child {
  top: 20px;
}
header .header-container .hum .open {
  transition: all 0.4s ease;
}
header .header-container .hum .open:first-child {
  top: 10px;
  transform: rotate(45deg);
}
header .header-container .hum .open:nth-child(2) {
  opacity: 0;
}
header .header-container .hum .open:last-child {
  top: 10px;
  transform: rotate(-45deg);
}
header .logo-content {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
}
header .logo-content .logo {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--blue);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}
header .logo-content .logo-name {
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1.2;
  font-size: 1.2rem;
}
header .mask {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 110vh;
  background-color: var(--bg-blue);
  overflow: hidden;
}
header .mask .mask-content {
  width: 50%;
  margin: 0 auto;
  margin-top: 80px;
  position: relative;
}
header .mask .mask-content .sky-bg {
  position: absolute; /* 親要素を基準に自由な場所に浮かせる */
  border-radius: 50%; /* 完全な円形にする */
  filter: blur(80px); /* 【超重要】130〜140pxもの非常に大きなボカシを適用 */
  z-index: -1;
  width: 300px; /* 非常に大きな幅 */
  height: 300px; /* 非常に大きな高さ */
  top: -150px; /* 画面の左上にはみ出すように配置 */
  left: -150px;
  background-color: var(--blue); /* スカイブルー */
  opacity: 0.25;
}
header .mask .mask-content .pink-bg {
  position: absolute; /* 親要素を基準に自由な場所に浮かせる */
  border-radius: 50%; /* 完全な円形にする */
  filter: blur(80px); /* 【超重要】130〜140pxもの非常に大きなボカシを適用 */
  z-index: -1;
  width: 300px; /* 非常に大きな幅 */
  height: 300px; /* 非常に大きな高さ */
  bottom: -200px; /* 画面の左上にはみ出すように配置 */
  right: -200px;
  background-color: var(--pink); /* スカイブルー */
  opacity: 0.25;
}
header .mask .mask-content .sp-nav-content {
  margin-top: 40px;
}
header .mask .mask-content .sp-nav-content .sp-nav li {
  margin-bottom: 40px;
}
header .mask .mask-content .sp-nav-content .sp-nav li:last-child {
  margin-bottom: 0;
}
header .mask .mask-content .sp-nav-content .sp-nav li a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-thin);
  letter-spacing: 3px;
}

.section-title-box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.section-title-box .title-en {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-title-box .title-ja {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 20px;
}
.section-title-box .title-under {
  height: 3px;
  background-color: var(--blue);
  border-radius: 9999px;
  width: 100px;
  margin: 0 auto;
}
.section-title-box p {
  color: var(--text-thin);
  margin-top: 20px;
  line-height: 1.5;
}

#hero {
  margin-top: 80px;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 40px;
  }
}
#hero .hero-content {
  display: flex;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1300px;
}
@media (max-width: 768px) {
  #hero .hero-content {
    flex-direction: column;
  }
}
#hero .hero-content-left {
  width: 50%;
}
@media (max-width: 768px) {
  #hero .hero-content-left {
    width: 100%;
  }
}
#hero .hero-content-left .hero-tag {
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 9999px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#hero .hero-content-left h1 {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 800;
  margin-bottom: 20px;
}
#hero .hero-content-left h1 .pink-color {
  color: var(--text);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
  display: inline;
  animation-name: change-color;
  animation-duration: 20s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
@keyframes change-color {
  0% {
    color: var(--text);
  }
  5% {
    color: var(--pink);
  }
  95% {
    color: var(--pink);
  }
  100% {
    color: var(--text);
  }
}
#hero .hero-content-left h1 .blue-color {
  color: var(--text);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
  display: inline;
  animation-name: change-color02;
  animation-duration: 20s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
@keyframes change-color02 {
  0% {
    color: var(--text);
  }
  5% {
    color: var(--blue);
  }
  95% {
    color: var(--blue);
  }
  100% {
    color: var(--text);
  }
}
#hero .hero-content-left p {
  line-height: 2;
  color: var(--text-thin);
  margin-bottom: 40px;
  width: 80%;
}
@media (max-width: 768px) {
  #hero .hero-content-left p {
    width: 100%;
  }
}
#hero .hero-content-left .hero-btns {
  display: flex;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  #hero .hero-content-left .hero-btns {
    flex-direction: column;
    margin: 0 auto;
  }
}
#hero .hero-content-right {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  #hero .hero-content-right {
    width: 100%;
  }
}
#hero .hero-content-right .flow-pink {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: var(--pink);
  opacity: 0.3;
  filter: blur(100px);
  z-index: -2;
  animation-name: pink-bg;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 768px) {
  #hero .hero-content-right .flow-pink {
    animation: none;
    top: -300px;
    right: -200px;
  }
}
@keyframes pink-bg {
  0% {
    top: -600px;
    left: -400px;
  }
  100% {
    top: 1000px;
    left: 1000px;
  }
}

#about {
  padding: 100px 20px 0 20px;
}
#about .about-flex {
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  #about .about-flex {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}
#about .about-flex-left {
  width: 50%;
}
@media (max-width: 768px) {
  #about .about-flex-left {
    width: 100%;
  }
}
#about .about-flex-left img {
  border-radius: 20px;
  box-shadow: var(--shadow-blue);
}
#about .about-flex-right h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #about .about-flex-right h3 {
    margin-bottom: 20px;
  }
}
#about .about-flex-right p {
  line-height: 2;
  color: var(--text-thin);
  margin-bottom: 40px;
}
#about .about-flex-right .tech-item-content {
  width: 80%;
}
@media (max-width: 768px) {
  #about .about-flex-right .tech-item-content {
    width: 100%;
  }
}
#about .about-flex-right .tech-item-content h4 {
  color: var(--text-thin);
  font-weight: 700;
  margin-bottom: 15px;
}
#about .about-flex-right .tech-item-content .tech-items {
  flex-wrap: wrap;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
}
@media (max-width: 768px) {
  #about .about-flex-right .tech-item-content .tech-items {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
#about .about-flex-right .tech-item-content .tech-items li {
  box-shadow: var(--shadow);
  padding: 10px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  background-color: var(--white);
  font-weight: 700;
  color: var(--text-thin);
}

#skills {
  padding: 100px 20px 0 20px;
}
#skills .skills-content {
  margin: 0 auto;
  border-radius: 20px;
  margin-top: 80px;
  max-width: 1200px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  #skills .skills-content {
    margin-top: 40px;
  }
}
#skills .skills-content .skills-items {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
}
@media (max-width: 768px) {
  #skills .skills-content .skills-items {
    gap: 20px;
    flex-direction: column;
    padding: 20px;
  }
}
#skills .skills-content .skills-items .skills-item {
  padding: 20px;
  border-radius: 20px;
  border: solid 1px transparent;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  #skills .skills-content .skills-items .skills-item {
    padding: 10px;
  }
}
#skills .skills-content .skills-items .skills-item:hover {
  transition: all 0.4s ease;
  border: solid 1px var(--blue);
}
#skills .skills-content .skills-items .skills-item h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}
#skills .skills-content .skills-items .skills-item h4 i {
  color: var(--blue);
  margin-bottom: 5px;
  font-size: 1.2rem;
}
#skills .skills-content .skills-items .skills-item h4 .pink {
  color: var(--pink);
}
#skills .skills-content .skills-items .skills-item p {
  font-size: 0.9rem;
  color: var(--text-thin);
  line-height: 1.5;
}
#skills .skills-content .skills-items .item-pink:hover {
  border: solid 1px var(--pink);
}

#works {
  padding: 100px 20px 0 20px;
}
#works .btn-blue {
  margin: 0 auto;
}
#works .works-content {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #works .works-content {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
#works .works-content .works-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: -moz-fit-content;
  height: fit-content;
}
#works .works-content .works-item .works-item-wrapper .works-image-frame {
  overflow: hidden;
}
#works .works-content .works-item .works-item-wrapper .works-image-frame img {
  height: 200px;
}
#works .works-content .works-item .works-item-wrapper .works-item-content {
  background-color: var(--white);
  padding: 20px;
}
#works .works-content .works-item .works-item-wrapper .works-item-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--text);
}
#works .works-content .works-item .works-item-wrapper .works-item-content p {
  font-size: 0.8rem;
  color: var(--text-thin);
  line-height: 1.5;
  margin-bottom: 20px;
}
#works .works-content .works-item .works-item-wrapper .works-item-content span {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
}
#works .works-content .works-item .works-item-wrapper .works-item-content .pink {
  color: var(--pink);
}
#works .works-content .works-item:hover {
  transition: all 0.4s ease;
  transform: translateY(-5px);
}

#instagram {
  padding: 100px 20px 0 20px;
}
#instagram .insta-content {
  margin: 0 auto;
  max-width: 1000px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  #instagram .insta-content {
    margin-top: 40px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
#instagram .insta-content .sbi_item {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
#instagram .insta-content .sbi_item:hover {
  transition: all 0.4s ease;
  transform: translateY(-5px);
}
#instagram .insta-content .sbi_photo_wrap svg { /*再エーマークを消す*/
  display: none !important;
  opacity: 0 !important;
}
#instagram .follow-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 80px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  border-radius: 10px;
  background-color: var(--white);
  transition: all 0.4s ease;
  border: solid 1px transparent;
}
@media (max-width: 768px) {
  #instagram .follow-btn {
    margin-top: 40px;
  }
}
#instagram .follow-btn a {
  color: var(--text-thin);
  font-size: 0.8rem;
  transition: all 0.4s ease;
  font-weight: 700;
}
#instagram .follow-btn a i {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-right: 5px;
  transition: all 0.4s ease;
}
#instagram .follow-btn:hover {
  border: solid 1px var(--pink);
  transition: all 0.4s ease;
}
#instagram .follow-btn:hover a {
  color: var(--pink);
  transition: all 0.4s ease;
}
#instagram .follow-btn:hover a i {
  color: var(--pink);
  transition: all 0.4s ease;
}

#flow {
  padding: 100px 20px 0 20px;
}
#flow .flow-content {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 800px;
  padding: 0 40px;
  border-left: 1px solid var(--blue-deep);
}
@media (max-width: 768px) {
  #flow .flow-content {
    margin-top: 40px;
  }
}
#flow .flow-content li {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #flow .flow-content li {
    margin-bottom: 40px;
  }
}
#flow .flow-content li:last-child {
  margin-bottom: 0;
}
#flow .flow-content li span {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
#flow .flow-content li span::before {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  position: absolute;
  left: -52px;
  top: -5px;
  background-color: var(--bg-blue);
}
#flow .flow-content li h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#flow .flow-content li p {
  color: var(--text-thin);
  line-height: 1.5;
}

#plans {
  padding: 100px 20px 0 20px;
}
#plans .plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 768px) {
  #plans .plans-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
#plans .plans-grid .plans-card {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
}
#plans .plans-grid .plans-card:nth-child(2) {
  border: 1px solid var(--pink);
}
#plans .plans-grid .plans-card:nth-child(2) .plans-card-badge {
  background-color: var(--pink);
}
#plans .plans-grid .plans-card:nth-child(2) .plans-description li i {
  color: var(--pink);
}
#plans .plans-grid .plans-card-badge {
  padding: 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  background-color: var(--blue);
}
#plans .plans-grid .plans-card-header {
  padding: 30px;
  border-bottom: 1px solid rgba(240, 249, 255, 0.5);
  height: 200px;
}
@media (max-width: 768px) {
  #plans .plans-grid .plans-card-header {
    height: -moz-fit-content;
    height: fit-content;
  }
}
#plans .plans-grid .plans-card-header .plans-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 30px;
}
#plans .plans-grid .plans-card-header .plans-price-box {
  display: flex;
  align-items: baseline;
  margin-top: 8px;
  padding-left: 20px;
}
#plans .plans-grid .plans-card-header .plans-price-box .plans-price {
  font-size: 2rem;
  font-weight: 800;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  margin-bottom: 10px;
}
#plans .plans-grid .plans-card-header .plans-price-box .plans-price-unit {
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-thin);
}
#plans .plans-grid .plans-card .plans-description {
  padding: 0 30px;
  height: 200px;
}
@media (max-width: 768px) {
  #plans .plans-grid .plans-card .plans-description {
    height: -moz-fit-content;
    height: fit-content;
  }
}
#plans .plans-grid .plans-card .plans-description li {
  line-height: 1.5;
  color: var(--text-thin);
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#plans .plans-grid .plans-card .plans-description li i {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--blue);
  line-height: 1.5;
}
#plans .btn-line-blue {
  margin: 30px auto;
  padding: 10px 40px;
}
#plans .btn-line-pink {
  margin: 30px auto;
  padding: 10px 40px;
}

#faq {
  padding: 100px 20px 0 20px;
}
#faq .faq-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 768px) {
  #faq .faq-content {
    margin-top: 40px;
  }
}
#faq .faq-content .faq-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  cursor: pointer;
}
#faq .faq-content .faq-item:last-child {
  margin-bottom: 0;
}
#faq .faq-content .faq-item .faq-question {
  color: var(--text-thin);
  line-height: 1.5;
  font-weight: 700;
  padding: 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#faq .faq-content .faq-item .faq-question .plus {
  font-weight: 800;
  color: var(--blue);
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}
#faq .faq-content .faq-item .faq-question .plus-open {
  transform: rotate(135deg);
  transition: all 0.4s ease;
  color: var(--pink);
}
#faq .faq-content .faq-item .faq-answer {
  padding: 20px;
  padding-top: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-thin);
  display: none;
}

#contact {
  padding: 100px 20px 0 20px;
  position: relative;
}
#contact .section-title-box .title-en {
  color: var(--pink);
}
#contact .section-title-box .title-under {
  background-color: var(--pink);
}
#contact .custom-contact-form {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 40px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  #contact .custom-contact-form {
    margin-top: 40px;
    padding: 20px;
  }
}
#contact .custom-contact-form input,
#contact .custom-contact-form textarea,
#contact .custom-contact-form select {
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background-color: var(--bg-blue);
  border: solid 1px #dcdcdc;
  transition: all 0.4s ease;
  outline: none;
}
#contact .custom-contact-form input::-moz-placeholder, #contact .custom-contact-form textarea::-moz-placeholder, #contact .custom-contact-form select::-moz-placeholder {
  font-size: 0.9rem;
  line-height: 1.5;
}
#contact .custom-contact-form input::placeholder,
#contact .custom-contact-form textarea::placeholder,
#contact .custom-contact-form select::placeholder {
  font-size: 0.9rem;
  line-height: 1.5;
}
#contact .custom-contact-form input:focus,
#contact .custom-contact-form textarea:focus,
#contact .custom-contact-form select:focus {
  transition: all 0.4s ease;
  border: 1px solid var(--pink);
}
#contact .custom-contact-form .wpcf7-select option:first-child {
  color: var(--text-thin);
}
#contact .custom-contact-form .wpcf7-select {
  font-size: 0.9rem;
}
#contact .custom-contact-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  margin-top: 5px;
  color: var(--pink);
}
#contact .custom-contact-form .form-row {
  display: flex;
  gap: 80px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #contact .custom-contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}
#contact .custom-contact-form .form-row .form-col .form-label {
  color: var(--text-thin);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
#contact .custom-contact-form .form-row .form-col .form-label .required {
  color: var(--pink);
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  transform: translateY(5px);
  font-weight: 700;
}
#contact .custom-contact-form .wpcf7-list-item {
  display: flex;
  font-size: 0.8rem;
  color: var(--text-thin);
}
#contact .custom-contact-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
#contact .custom-contact-form .wpcf7-list-item label input {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  transform: translateY(-5px);
}
#contact .custom-contact-form .wpcf7-list-item .privacy-link {
  color: var(--pink);
  text-decoration: underline;
  display: inline-block;
  font-size: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
#contact .custom-contact-form .wpcf7-list-item-label {
  font-size: 0.8rem;
  color: var(--text-thin);
  line-height: 1.5;
}
#contact .custom-contact-form .btn-submit {
  background-color: var(--pink);
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 80px;
  border-radius: 10px;
  border: solid 1px transparent;
  transition: all 0.4s ease;
  margin: 0 auto;
  margin-top: 40px;
  display: block;
}
@media (max-width: 768px) {
  #contact .custom-contact-form .btn-submit {
    margin-top: 10px;
  }
}
#contact .custom-contact-form .btn-submit:hover {
  transition: all 0.4s ease;
  background-color: var(--white);
  border: 1px solid var(--pink);
  color: var(--pink);
}
#contact .wpcf7-response-output {
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 20px 80px;
  border: 1px solid var(--pink);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #contact .wpcf7-response-output {
    padding: 10px;
    bottom: 10px;
    width: 80%;
  }
}

footer {
  background-color: var(--white);
  box-shadow: var(--shadow);
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 40px 20px;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footer-content .logo-content {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
}
footer .footer-content .logo-content .logo {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--blue);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}
footer .footer-content .logo-content .logo-name {
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1.2;
  font-size: 1.2rem;
}
footer .footer-content .logo-content .logo-name br {
  display: none;
}
@media (max-width: 768px) {
  footer .footer-content .logo-content .logo-name br {
    display: block;
  }
}
footer .footer-content .hyouki-link {
  font-weight: 700;
  color: var(--blue);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 40px;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  footer .footer-content .hyouki-link {
    margin: 0;
  }
}
footer .footer-content .hyouki-link:hover {
  opacity: 0.5;
  transition: all 0.4s ease;
}
footer .footer-content .copy-write {
  font-size: 0.8rem;
  color: var(--text-thin);
  width: -moz-fit-content;
  width: fit-content;
}

#law {
  padding: 0 20px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  #law {
    margin-top: 40px;
  }
}
#law .law-content {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 40px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  #law .law-content {
    margin-top: 40px;
    padding: 20px;
  }
}
#law .law-content table tbody tr {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e3e3e3;
}
#law .law-content table tbody tr:last-child {
  border-bottom: none;
}
#law .law-content table tbody tr th {
  color: var(--text-thin);
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  width: 50%;
}
#law .law-content table tbody tr td {
  color: var(--text-thin);
  text-align: left;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */