@charset "utf-8";
/*
Theme Name: nekofolio
Theme URL: 
Author: nana
Description: original theme
Version： 3.0.0
*/

/* --------------------------------------------
 * 　フォント指定
 * -------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-size: 1.5rem;
  /* 15px */
  line-height: 1.8;
  color: #333;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

h1 {
  font-size: 3.6rem;
  /* 36px */
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: 3.2rem;
  /* 32px */
  font-weight: 700;
  line-height: 1.4;
}

h3 {
  font-size: 2.5rem;
  /* 25px */
  font-weight: 700;
  line-height: 1.5;
}

h4 {
  font-size: 2.0rem;
  /* 20px */
  font-weight: 700;
}

p {
  font-size: 1.5rem;
  margin: 0;
}

a {
  color: #006BB3;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

/*
a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
*/
.small {
  font-size: 1.2rem;
}

body {
  padding-top: 0px;
}

:root {
  --swiper-theme-color: #006BB3;
}

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

@media screen and (max-width: 768px) {
  body {
    padding-top: 0px;
  }

  html {
    font-size: 62.5%;
    /* 1rem = 10px */
  }

  h1 {
    font-size: 3.6rem;
    /* 36px */
    font-weight: 700;
    line-height: 1.4;
  }

  h2 {
    font-size: 3.2rem;
    /* 32px */
    font-weight: 700;
    line-height: 1.4;
  }

  h3 {
    font-size: 2.5rem;
    /* 25px */
    font-weight: 700;
    line-height: 1.5;
  }

  h4 {
    font-size: 2.0rem;
    /* 20px */
    font-weight: 700;
  }

  p {
    font-size: 1.5rem;
    margin: 0;
  }

  .sp-br {
    display: block;
  }
}

/* --------------------------------------------
 * 　header
 * -------------------------------------------- */

.l-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.l-header_left,
.l-header_right {
  display: flex;
  align-items: center;
}

.l-header-logo img {
  height: 40px;
}

.site-menu {
  display: flex;
}

.site-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-menu ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.site-menu ul li a:hover {
  color: #006BB3;
  border-bottom: 2px solid #006BB3;
}

.sp-hamburger-btn {
  display: none;
}


@media screen and (max-width: 768px) {
  .l-header-inner {
    padding: 10px 15px;
  }

  .site-menu {
    display: none;
  }

  .sp-hamburger-btn {
    display: block;
  }

  .hamburger-btn {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .sp-hamburger-icon {
    display: block;
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .sp-site-menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .sp-site-menu {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  }

  .sp-site-menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .sp-site-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 2.0rem;
    transition: color 0.3s;
  }

  .sp-site-menu ul li a:hover {
    color: #006BB3;
  }

  .hamburger-btn.active .sp-hamburger-icon:nth-child(1) {
    transform: translateY(12px) rotate(50deg);
  }

  .hamburger-btn.active .sp-hamburger-icon:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .sp-hamburger-icon:nth-child(3) {
    transform: translateY(-13px) rotate(-50deg);
  }
}

/* --------------------------------------------
 * 　footer
 * -------------------------------------------- */
.l-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  font-size: 1.5rem;
  text-align: center;
}

.l-footer_wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-footer_nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.l-footer_nav li {
  margin: 0;
}

.l-footer_nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.l-footer_nav a:hover {
  color: #666;
}

.l-footer p {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .l-footer_nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .l-footer p {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

/* --------------------------------------------
 * 　共通
 * -------------------------------------------- */
.main-sec {
  margin: 0 auto;
  padding: 80px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-sec>div {
  width: 900px;
}

.btn {
  margin-top: 30px;
  padding: 20px;
  background-color: #e66439;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #eb4f32;
}

.btn a {
  color: #fff;
}

.main-title h2 {
  color: #006BB3;
  margin-bottom: 30px;
}

.main-title h3 {
  color: #006BB3;
  margin-bottom: 20px;
}

.main-title p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
}

.txt-blk {
  display: flex;
  flex-direction: column;
}

.txt-blk h3 {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .main-sec {
    padding: 60px 0;

  }

  .main-sec>div {
    width: 85%;
  }
}

/* --------------------------------------------
 * 　front-page
 * -------------------------------------------- */
.fv {
  display: flex;
  width: 100%;
  height: 700px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}

.fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn.fv-btn {
  position: absolute;
  bottom: 20%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 35%;
}

.main-cnt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .btn.fv-btn {
    bottom: 15%;
    left: 50%;
    width: 80%;
  }
}



/* bio */
.bio-blk {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.bio-blk img {
  width: 45%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bio-blk .txt-blk {
  width: 45%;
}

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

  .bio-blk img {
    width: 100%;
  }

  .bio-blk .txt-blk {
    width: 100%;
  }
}

/* skill */
.main-sec.skill-sec {
  background-color: #fef2a4;
}

.skill-blk {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.skill-blk .txt-blk {
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  align-items: center;
}

.skill-blk .txt-blk h3 {
  text-align: center;
}

.skill-blk .txt-blk img {
  width: 80%;
  padding-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .skill-blk {
    flex-direction: column;
    gap: 30px;
  }

  .skill-blk .txt-blk {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/*ドロップボタン*/
.folio-drop-cnt {
  position: relative;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.folio-drop-btn {
  background-color: #fff;
  color: #333;
  border: 3px solid #006BB3;
  padding: 20px;
  cursor: pointer;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: background-color 0.3s ease;
}

.folio-drop-btn:hover,
.folio-drop-btn:active {
  background-color: #006BB3;
  color: #fff;
}

.folio-drop-btn.active {
  background-color: #006BB3;
  color: #fff;
}

.folio-drop-blk {
  display: none;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  margin: -15px 0 20px;
  padding: 10px;
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
  background-color: #fff;
  width: 300px;
  z-index: 0;
}

.folio-drop-blk a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.folio-drop-blk a:hover {
  background-color: #f1f1f1;
}

.folio-drop-blk.active {
  display: block;
}

.folio-drop-blk ul {
  list-style: none;
}

.work-blk {
  scroll-margin-top: 80px;
}

/* ポートフォリオ */
.main-sec.folio-sec {}

.main-folio-cnt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 60px;
}

.folio-blk {
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.folio-blk img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.folio-blk:hover img {
  transform: scale(1.1);
}

.folio-blk h3 {}

.folio-blk p {}

.work-blk h3 {
  text-align: center;
}

.pic-blk .pic-tag {
  text-align: center;
  border-radius: 10px;
  border: 1px solid #666;
  color: #666;
}

.pic-blk .pic-tag {
  width: 40%;
}

.pic-blk p {
  width: 55%;
}

.work-blk h3 {
  font-size: 2rem;
}

.pic-txt span {
  font-weight: bold;
  color: #ff6600;
}

.pic-blk {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
}

.pic-blk .pic-txt {
  margin: 0;
  text-align: center;
}

.btn.pic-btn {
  margin: 10px 20px;
  padding: 12px 30px;
  font-size: 1.7rem;
  text-decoration: none;
}

.btn.pic-btn:hover {
  background-color: #006BB3;
}

.btn.pic-btn span {
  font-weight: bold;
}

@media screen and (max-width: 768px) {

  .main-sec {
    padding: 60px 0;
  }

  .main-cnt {
    flex-direction: column;
    justify-content: unset;
  }

  .folio-drop-blk,
  .folio-drop-btn {
    width: 100%;
  }

  .main-folio-cnt {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .folio-blk {
    max-width: 100%;
  }
}

/* --------------------------------------------
 * 　bio.php
 * -------------------------------------------- */
.mind-cnt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mind-cnt h2 {
  width: 30%;
  text-align: end;
}

.mind-cnt p {
  width: 65%;
}

.main-sec.like-sec {
  background-color: #fef2a4;
}

.like-cnt {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 60px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.like-blk {
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.like-blk img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.like-blk h3 {
  margin-bottom: 10px;
  text-align: center;
}

.like-blk p {
  padding: 0;
}


.wrap-item.bio-wrap {
  margin: 0;
  border-radius: unset;
}

.wrap-item.bio-wrap:nth-child(odd) {
  background-color: #f6c774;
}

.wrap-item.bio-wrap:nth-child(even) {
  background-color: #fef2a4;
}

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

  .mind-cnt h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .mind-cnt p {
    width: 100%;
  }

  .like-cnt {
    flex-direction: column;
  }

  .like-blk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.slider-wrap-cnt {
  background-color: ;
  padding: 20px;
  border-radius: 10px;
}

.slider-wrap {
  display: flex;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  margin: 0 auto;
  padding: 30px 0;
  max-width: 900px;
  scroll-behavior: smooth;
}

.wrap-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  margin: 0 20px;
  width: 35%;
  white-space: normal;
  background-color: #eee;
  overflow: hidden;
  padding: 15px;
  border-radius: 10px;
  box-sizing: border-box;
}

.wrap-item h3 {
  text-align: center;
}

.wrap-item img {
  display: block;
  width: 70%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .slider-wrap-cnt {
    padding: 0;
  }

  .wrap-item {
    width: 90%;
  }
}

/* --------------------------------------------
 * 　
 * -------------------------------------------- */

/* --------------------------------------------
 * 　single-works.php
 * -------------------------------------------- */
.fv-under {
  position: relative;
  width: 100%;
  height: auto;
}


.fv-under-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
}

.fv-under-txt::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -85%;
  width: 300%;
  height: 200%;
  filter: blur(15px);
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.65);
}

.fv-sub-txt {
  font-size: 1.5rem;
  color: #006BB3;
  font-weight: bold;
}

.fv-main-txt {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.fv-under-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.fv-under-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#works.main {
  margin-top: 100px;
}


.single-sec {}

.title-cnt {}

.site-name h2 {

  color: #333;
}

.site-link {
  font-size: 1.5rem;
  color: #555;
}

.link-arrow {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: bold;
}

.service-name {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 20px;
}

.works-pic-cnt,
.works-detail-cnt,
.works-images,
.works-info,
.works-capture {
  margin-bottom: 60px;
}

.works-pic-cnt {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: row;
}

.works-pic-blk {
  width: 45%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.works-pic-blk p {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.works-pic-blk p:first-child {
  font-weight: bold;
  border: 2px solid #333;
  color: #333;
  border-radius: 100px;
  padding: 10px 20px;
  margin-right: 20px;
  text-align: center;
  width: 120px;
}

p.works-label.works-pic-highlight {
  background-color: #ff6600 !important;
  border: unset;
  color: #fff;
}

.works-detail-cnt {}

.works-images {
  display: flex;
  gap: 30px;
  align-items: stretch;
  border: 3px solid #eee;
  border-radius: 5px;
}

.pcfv-images,
.spfv-images {
  flex: 2 1 66.66%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
}

.spfv-images {
  flex: 1 1 33.33%;
}

.pcfv-images h4,
.spfv-images h4 {
  padding: 0 30px;
  font-size: 2rem;
  font-weight: bold;
}

.pcfv-images h4::before,
.spfv-images h4::before {
  content: "●";
  font-size: 12px;
  color: #ff6600;
  display: inline-block;
  padding-right: 10px;
}

.pcfv-images img,
.spfv-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.works-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
}

.works-info-blk {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.works-info-blk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #eee;
  transform: translateY(10px);
}

.works-info-blk p:first-child {
  color: #333;
  padding: 10px 0;
  margin-right: 20px;
  text-align: start;
  width: 120px;
}

.works-info-blk p:first-child::before {
  content: "●";
  font-size: 12px;
  color: #ff6600;
  display: inline-block;
  padding-right: 10px;
}

.works-detail {
  width: 100%;
}

.detail-title {
  display: flex;
  margin-bottom: 10px;
  color: #333;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.detail-title h4::before {
  content: "●";
  font-size: 12px;
  color: #ff6600;
  display: inline-block;
}

.detail-title h4 {
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-title p {
  color: #bcbcbc;
}

.works-detail-blk {
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  border: 3px solid #eee;
}


.works-detail-blk p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  word-wrap: break-word;
  /*white-space: pre-line;*/
}

.development-box,
.detail-txt-box,
.system-box,
.detailstxt-box {
  padding: 10px 20px;
}

.development-box ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.development-box ul li {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.development-box ul li.active,
.s-list-box ul li.active {
  background-color: #006BB3;
}

.development-box ul li p.active,
.s-list-box ul li.active p {
  color: #fff;
}

.development-box ul li.inactive,
.s-list-box ul li.inactive {
  border: 2px solid #bcbcbc;
}

.development-box ul li p.inactive,
.s-list-box ul li.inactive p {
  color: #bcbcbc;
}

.s-list-box {
  padding: 20px;
  background-color: #eee;
  margin: 10px 20px;
  border-radius: 5px;
}

.s-list-box ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.s-list-box ul li {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.detail-txt-box h4 {
  color: #006BB3;
}

.detail-txt-box p {
  padding-bottom: 20px;
}

.detail-title p {
  margin: 0;
}

.works-mycomment {
  display: flex;
  justify-content: center;
}

.works-detail-blk.end-blk {
  width: 80%;
}

.hlt-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 50px 0;
}

.hlt-img-box .hlt-image {
  flex: 0 1 400px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.hlt-img-box .hlt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-capture {
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* swiper */
.gallery-top {
  width: 100%;
  height: 400px;
  position: relative;
  margin: 0 auto;
}

.gallery-top.swiper-container {
  width: 70%;
  overflow: hidden;
  height: auto;
  margin: 0 auto;
  padding-bottom: 5%;
}

.gallery-top.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

/*
.gallery-top .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #f4f4f4;
}
*/

.gallery-top .swiper-slide img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.swiper-pagination {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  background-color: #eee;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #ff6600;
  width: 25px;
  height: 25px;
}

.gallery-thumbs {
  width: 70%;
  height: 100px;
  margin: 20px auto 0;
  box-sizing: border-box;
  overflow: hidden;
}

.gallery-thumbs.swiper-container {
  width: 70%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.gallery-thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
}

.gallery-thumbs .swiper-slide {
  width: calc(100% / 3.5);
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .gallery-top {
    height: 300px;
  }

  .gallery-top.swiper-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10%;
  }

  .swiper-pagination {
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
  }

  .gallery-thumbs,
  .gallery-thumbs.swiper-container {
    width: 100%;
    margin: 20px auto 0;
    height: 80px;
  }

  .gallery-thumbs .swiper-slide {
    width: calc(100% / 3.5);
    height: 100%;
  }
}

#works .folio-drop-btn,
#works .folio-drop-blk {
  width: 80%;
}

#works .folio-drop-cnt {
  align-items: center;
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .fv-header {
    margin-bottom: 20px;
  }

  .fv-header img {
    height: 150px;
  }

  .site-name {
    font-size: 28px;
  }

  .site-link,
  .service-name {
    font-size: 14px;
  }

  .works-pic-cnt,
  .works-detail-cnt,
  .works-images,
  .works-info,
  .works-capture {
    margin-bottom: 40px;
  }

  .works-pic-cnt {
    gap: 5px;
  }

  .works-pic-blk {
    width: 100%;
    padding: 10px 0;
  }

  .works-images {
    gap: 0px;
    flex-direction: column;
  }

  .works-info {
    gap: 15px;
  }

  .works-info-blk {
    padding: 15px 0;
  }

  .works-info-blk p:first-child {}

  .works-capture {}

  .works-detail-cnt {}

  .detail-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .works-detail-blk.end-blk {
    width: 100%;
  }
}


/* --------------------------------------------
 * 　single-works.php:end
 * -------------------------------------------- */

/* --------------------------------------------
 * 　contact.php
 * -------------------------------------------- */

.form-area {
  margin-top: 25px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.form-area dt {
  width: 30%;
  padding: 15px 0;
  font-weight: bold;
  line-height: 24px;
}

.form-area dt .required::after {
  content: '必須';
  font-size: 11px;
  color: #eb4f32;
  margin-left: 10px;
}

.form-area dd {
  width: 70%;
  padding: 15px 0;
}

.input-text {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #eee;
  border: none;
  border-radius: 10px;
}

.form-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 30px;
}

.checkbox-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.checkbox-btn input {
  width: 20px;
  height: 20px;
}

.select-box {
  width: 200px;
  height: 40px;
}

.radio-button {
  display: block;
  margin-top: 20px;
}

.radio-button:first-child {
  margin-top: 0;
}

.radio-button input {
  margin-right: 8px;
}

.message {
  width: 100%;
  height: 260px;
  padding: 10px;
  line-height: 1.5;
  background-color: #eee;
  border: none;
  border-radius: 10px;
}

.confirm-text {
  line-height: 22px;
  margin-top: 30px;
}

.submit-btn {
  background-color: #ff6600;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.submit-btn:hover {
  background-color: #eb4f32;
}

.contact-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-check {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

.privacy-modal-cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-height: 80%;
  overflow: auto;
}

.privacy-modal-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 5%;
}

.privacy-modal-cnt h2 {
  font-size: 2.5rem;
}

#close-privacy-modal {
  /*position: absolute;*/
  top: 10px;
  right: 10px;
  font-size: 4rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.privacy-blk {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.privacy-blk h2 {
  font-size: 2.2rem;
}

.privacy-blk p {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .form-area {
    padding: unset;
  }

  .form-area dt,
  .form-area dd {
    width: 100%;
  }

  .form-area dt {
    padding-bottom: 0;
  }

  .privacy-modal-cnt {
    top: 40%;
    width: 90%;
  }

  .submit-button {
    width: 100%;
  }
}

.thanks-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pic-btn.top-backbtn {
  width: 30%;
  margin-top: 50px;
  background-color: #333;
}

.pic-btn.top-backbtn:hover {
  background-color: #ff6600;
}

@media (max-width: 768px) {
  .top-backbtn {
    width: 80%;
  }
}