@charset "UTF-8";
/*
 * foundation
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/*body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}*/
ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  max-height: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

.header {
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  z-index: 11;
  transition: all 2s;
}
@media screen and (max-width: 1023px) {
  .header {
    margin: auto;
    padding: 16px 24px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 8px;
  }
}

.logo {
  display: block;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .logo {
    max-width: 130px;
  }
}

.header-inner {
  position: relative;
  /*width: min(100% - 32px, 1200px);*/
  max-width: 1340px;
  margin: auto;
}

/*ナビゲーション*/
.nav_slidebtm {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .nav_slidebtm {
    max-width: 130px;
  }
}

.header-nav_link::before {
  background: #e67e22;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -10px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.header-nav_link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.nav_en {
  display: block;
  font-family: Poppins;
  font-size: 13px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.nav_ja {
  font-weight: normal;
  font-size: 16px;
}

.nav_en {
  font-weight: normal;
}

.header-nav_link {
  position: relative;
  top: 10px;
}

.header_nav {
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 700px;
}
@media screen and (max-width: 1023px) {
  .header_nav {
    display: none !important;
  }
}

/*ハンバーガーメニュー*/
.hamburger-overlay {
  display: none;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .hamburger-overlay {
    display: block;
  }
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all 0.6s;
}

.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  display: block;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay__link {
  display: inline-block;
  padding: 24px 0;
  font-weight: 700;
  font-family: Poppins;
  color: #ffffff;
  transition: color 0.3s;
  letter-spacing: 2px;
}

.nav-overlay__link:active {
  color: #e67e22;
  transition: all 0.3s;
}

body {
  font-family: Noto Sans JP;
  color: #333333;
  line-height: 1.6;
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  position: static;
  margin: auto;
}

/* ページ読み込み後 */
body.loaded {
  opacity: 1;
}

/* ページ離脱前 */
body.fadeout {
  opacity: 0;
}

main {
  padding-top: 130px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

.bold {
  font-weight: bold;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333333;
  transition: color 0.8s;
}

a:active {
  color: #e67e22;
}

.container {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 0 16px;
}

p {
  font-size: 14px;
}

.section-padding {
  padding: 100px 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section-padding {
    padding: 60px 0;
  }
}

.container960 {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
}

.container1110 {
  margin: 0 auto;
  max-width: 1110px;
  padding: 0 12px;
}

.page-mv {
  position: relative;
}

.page-mv-area {
  height: 400px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-mv-area {
    height: 200px;
  }
}

.margin {
  margin: 0;
}

/*pankuzu*/
.pankuzu .home {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url(../../img/icon/home.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pankuzu .home {
    width: 14px;
    height: 14px;
  }
}

.pankuzu {
  gap: 14px;
  margin: 8px 0;
}

.pankuzu-arrow {
  background-image: url(../../img/icon/arrow-right.svg);
  width: 7px;
  height: 14px;
  background-size: 100% 100%;
  display: block;
}

.post {
  color: #545454;
  font-size: 13px;
}

/*cta*/
.cta {
  background: linear-gradient(to bottom, #fff8ee, #ffecd5);
  padding: 116px 30px 100px;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 60px 20px;
  }
}

.cta-inner {
  padding: 0 109px 45px;
  background-color: #ffffff;
  border-radius: 24px;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .cta-inner {
    padding: 0 46px 46px;
  }
}
@media screen and (max-width: 767px) {
  .cta-inner {
    padding: 0 20px 30px;
  }
}

.cta-inner h3 {
  font-size: 30px;
  font-family: Noto serif JP;
}
@media screen and (max-width: 767px) {
  .cta-inner h3 {
    font-size: 18px;
  }
}

.cta-inner p {
  font-size: 20px;
  font-family: Noto serif JP;
  margin: 24px 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .cta-inner p {
    font-size: 16px;
  }
}

/* br */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.tab-br {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tab-br {
    display: block;
  }
}

.pc-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

/*----------------------------
ローディング
----------------------------*/
body.loading main,
body.loading header,
body.loading footer {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff; /* ← 一旦SCSS変数を直接色コードに */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none; /* ← 初期非表示、JSで表示 */
}

.loading img {
  width: 300px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
 1.5秒間かけてフェードイン 
 ----------------------------*/
.fadeIn1500ms {
  animation-name: fadeIn1500ms;
  animation-delay: 1500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}

@keyframes fadeIn1500ms {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*横スライド*/
.slider {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .slider {
    width: 100%;
  }
}

.slider .slick-slide {
  height: auto !important;
}

.slider .slick-arrow {
  z-index: 2 !important;
}

.slider .slick-next {
  right: 0 !important;
}

.slider .slick-prev {
  left: 0 !important;
}

.slick-slide {
  margin-right: 1vw !important;
  margin-left: 1vw !important;
}

.slick-arrow {
  background: #e67e22;
  width: 30px;
  height: 50px;
  opacity: 0.7;
}

.slider {
  height: 100%;
  width: 100%;
  display: flex;
  transition: 0.5s;
}

.button_area {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button {
  padding: 5px 10px;
  font-size: 18px;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.mv-text {
  font-size: clamp(26px, 5vw, 42px);
  font-family: Noto Serif JP;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .mv-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 425px) {
  .mv-text {
    font-size: 22px;
  }
}

.mv-text::before {
  position: absolute;
  content: "snuggle up";
  font-family: "Nothing You Could Do", cursive;
  font-size: clamp(20px, 3.5vw, 48px);
  position: absolute;
  top: -4.5rem;
  left: -30px;
  letter-spacing: 0.05em;
  color: #fad08d;
  transform: rotate(-20deg);
}
@media screen and (max-width: 1023px) {
  .mv-text::before {
    top: -45px;
  }
}
@media screen and (max-width: 767px) {
  .mv-text::before {
    left: -10px;
    font-size: 26px;
    top: -33px;
  }
}

.mv_sub-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #5c4033;
  margin-top: 0.5em;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 1023px) {
  .mv_sub-title {
    margin-bottom: 12px;
  }
}

.mv-title {
  position: absolute;
  top: 60%;
  left: -10%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .mv-title {
    top: 75%;
  }
}
@media screen and (max-width: 425px) {
  .mv-title {
    top: 113%;
  }
}

.home-title {
  font-size: 20px;
  text-align: center;
  margin: 0;
  display: grid;
}
@media screen and (max-width: 767px) {
  .home-title {
    font-size: 16px;
  }
}

.home-title_en {
  font-family: Poppins;
  font-size: 68px;
}
@media screen and (max-width: 767px) {
  .home-title_en {
    font-size: 44px;
  }
}

.top-t {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-t {
    margin-bottom: 40px;
  }
}

.mincho-title {
  font-family: Noto Serif JP;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mincho-title {
    letter-spacing: 0.1rem;
    font-size: 18px;
  }
}

.mincho-title::before,
.mincho-title::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background-color: #e67e22;
}

.servise-box h4 {
  margin-bottom: 20px;
  font-size: 24px;
  white-space: nowrap;
}

.mark-item h3 {
  font-size: 24px;
}

.servise-item h3 {
  text-align: center;
  padding: 20px 0;
  font-size: 22px;
  white-space: nowrap;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .servise-item h3 {
    font-size: 20px;
  }
}

.main-title img {
  opacity: 50%;
}

.main-title {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.page-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  position: relative;
  margin-bottom: 60px;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .page-title {
    font-size: 24px;
  }
}

.page-title::before,
.page-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #333333;
}

.page-title::before {
  right: 100%;
  margin-right: 16px;
  transform: translateY(-50%);
}

.page-title::after {
  left: 100%;
  margin-left: 16px;
  transform: translateY(-50%);
}

.cta-title {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  top: -35px;
  margin-bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .cta-title {
    font-size: 40px;
    top: -22px;
  }
}
@media screen and (max-width: 767px) {
  .cta-title {
    top: -20px;
  }
}

/*servise*/
.servise-box h3 {
  margin-bottom: 20px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .servise-box h3 {
    font-size: 20px;
  }
}

.point-text h3 {
  letter-spacing: 0.15rem;
  font-size: 24px;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .point-text h3 {
    font-size: 20px;
  }
}

.point-text h3 span {
  background: linear-gradient(transparent 50%, #ffe6a7 100%);
}

.step-item-title {
  padding-bottom: 16px;
  font-size: 24px;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .step-item-title {
    font-size: 18px;
  }
}

/*Works*/
.work-title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.2rem;
}

.work-title span {
  background: linear-gradient(transparent 50%, #ffe6a7 100%);
}

.mv-top {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.mv-img {
  width: 85%;
  margin-left: auto;
  position: relative;
}

.mv-img img {
  margin-left: auto;
  width: 60%;
  display: block;
}
@media screen and (max-width: 767px) {
  .mv-img img {
    width: 70%;
  }
}

.about {
  background-image: linear-gradient(to bottom, #ffffff, #ffecd0);
  height: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 130px;
  }
}

.about::after {
  content: "";
  background-image: url("../../img/wave.png");
  position: absolute;
  bottom: -9%;
  width: 100%;
  height: 150px;
  left: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1023px) {
  .about::after {
    height: 90px;
    bottom: -5%;
  }
}

.about-p {
  text-align: center;
  margin: 30px 0 60px 0;
  line-height: 1.7;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .about-p {
    font-size: 14px;
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-p {
    text-align: left;
  }
}

.about-p span {
  display: block;
  font-weight: 700;
  margin: 24px 0;
}
@media screen and (max-width: 1023px) {
  .about-p span {
    margin: 12px 0;
  }
}

.about-img {
  margin: 0 auto;
  max-width: 600px;
}

.top-servise {
  margin-top: 100px;
}
@media screen and (max-width: 1023px) {
  .top-servise {
    margin-top: 80px;
  }
}

.servise-area-item::before {
  position: absolute;
  font-size: 48px;
  font-family: Caveat;
  left: -7%;
  color: #e67e22;
  transform: rotate(-20deg);
}
@media screen and (max-width: 767px) {
  .servise-area-item::before {
    font-size: 40px;
  }
}

.servise-area-item:nth-of-type(1)::before {
  content: "Servise01";
}

.servise-area-item:nth-of-type(2)::before {
  content: "Servise02";
}

.servise-area-item:nth-of-type(3)::before {
  content: "Servise03";
}

.servise-area-item {
  width: calc((100% - 60px) / 3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .servise-area-item {
    max-width: 250px;
    width: auto;
  }
}

.servise-area {
  padding: 0;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .servise-area {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .servise-area {
    gap: 44px;
  }
}

.servise-item p {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .servise-item p {
    text-align: left;
  }
}

.button {
  text-align: center;
  outline: 1px dashed #ffffff;
  outline-offset: -8px;
  border-radius: 100px;
  width: min(100% - 32px, 220px);
  padding: 20px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  display: block;
  background-color: #e67e22;
}
@media screen and (max-width: 1023px) {
  .button {
    padding: 14px;
  }
}

.button:hover {
  color: #e67e22;
  background-color: #ffffff;
  outline: 1px dashed #e67e22;
  outline-offset: -8px;
  border: 1px solid #e67e22;
  transition: all 0.5s;
}

.orange-btn::before {
  content: "";
  background: url(../../img/icon/mail.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  right: 164px;
  top: 22px;
}

.orange-btn:hover::before {
  background: url(../../img/icon/orange-mail.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  right: 164px;
  top: 24px;
}

.btn-white {
  background: #ffffff;
  width: 220px;
  border-radius: 32px;
  color: #545454;
  padding: 16px 24px;
  border: 1px solid #e67e22;
  box-shadow: 4px 4px 4px #F7E0BF;
  margin: 40px auto 0;
  justify-content: center;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .btn-white {
    padding: 12px;
  }
}

.btn-white::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #545454;
  border-right: 2px solid #545454;
  transform: rotate(45deg);
  margin-left: 6px;
  transition: all 0.3s;
}

.btn-white:hover {
  transition: all 0.5s;
  background: #e67e22;
  color: #ffffff;
  transform: translateY(4px);
  box-shadow: none;
}

.btn-white:hover::after {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}

.cta-btn {
  margin: 0 auto;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 16px;
  border-radius: 100px;
  width: 220px;
  font-weight: 700;
  color: #ffffff;
  background-color: #e67e22;
  text-align: center;
  outline: 1px dashed #ffffff;
  outline-offset: -8px;
}
@media screen and (max-width: 1023px) {
  .footer-contact {
    margin-left: auto;
  }
}
.footer-contact .icon {
  background-image: url(../../img/icon/mail.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s;
}
.footer-contact:hover .icon {
  background-image: url(../../img/icon/orange-mail.svg);
}
.footer-contact:hover {
  background-color: #ffffff;
  color: #e67e22;
  outline-color: #e67e22;
  border: 1px solid #e67e22;
  transition: all 0.5s;
}

.nav-contact {
  width: 270px;
  padding: 24px 0;
  display: flex;
  justify-content: center;
}

.footer {
  background: #f8efd9;
  border-top: 1px solid #e0d3af;
  padding: 40px 20px;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 20px;
  }
}

.footer-inner {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.footer-nav-list {
  display: flex;
  gap: 60px;
  align-items: baseline;
}
@media screen and (max-width: 1023px) {
  .footer-nav-list {
    display: block;
    padding: 0;
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    padding: 0;
  }
}

.footer-nav-menu {
  gap: 60px;
  margin: 0;
  padding: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .footer-nav-menu {
    display: none;
  }
}

.footer-nav {
  font-family: Poppins;
}

.copyright {
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.1rem;
  margin: 30px 0;
}

time {
  font-family: Lato;
  font-weight: 700;
  color: #9b9898;
  letter-spacing: 0.1rem;
  font-size: 13px;
}

.info-item {
  border-bottom: 1px solid #f3f3f3;
  gap: 30px;
  padding: 24px 0;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .info-item {
    gap: 20px;
    padding: 12px 0;
  }
}

.info-item a:active {
  color: #e67e22;
}

.info-item p {
  color: #545454;
}
@media screen and (max-width: 767px) {
  .info-item p {
    font-size: 14px;
    text-align: left;
  }
}

.pager img {
  width: 10px;
  vertical-align: middle;
  margin: 6px 12px;
}

.pager {
  justify-content: space-between;
}

.pager a {
  font-size: 14px;
}

.info-date {
  margin-bottom: 12px;
  font-size: 13px;
}

.info-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f3f3;
  font-size: 20px;
}

.article-text {
  margin-top: 24px;
}

.info-single {
  padding-bottom: 100px;
  text-align: left;
}

.info-list {
  padding: 0;
}

.info-page {
  background-color: #ffffff;
}

.info-t {
  font-size: 16px;
  font-weight: 600;
  color: #545454;
  text-align: left;
}

.info-t:hover {
  opacity: 0.7;
}

.article-text p {
  line-height: 1.8;
}

.article-text h2 {
  padding: 16px 0 16px 20px;
  background-color: #fff9f2;
  font-size: 20px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .article-text h2 {
    padding: 8px;
    padding: 8px 0 8px 16px;
    font-size: 18px;
  }
}

.article-text h3 {
  border-left: double #ffc778;
  padding: 12px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .article-text h3 {
    padding: 8px;
  }
}

strong {
  background: linear-gradient(transparent 70%, #ffc778 70%);
}

.works-content {
  display: flex;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.works-item {
  width: calc(33.3% - 26.6px);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(21, 31, 65, 0.2);
  padding: 30px;
}
@media screen and (max-width: 1023px) {
  .works-item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .works-item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.works-item-text h2 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.works-item-text p {
  text-align: left;
}

.works-item-img {
  display: block;
  transition-duration: 0.5s;
  overflow: hidden;
}

.works-item-img img {
  transition: transform 0.5s ease;
  max-width: 100%;
  height: auto;
}

.works-item-img:hover img {
  transform: scale(1.1);
}

.works {
  background: #fcfcfc;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 80px 0;
  }
}

/*Works下層ページ*/
.nav-page {
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  display: flex;
}
.nav-page .page-numbers {
  font-weight: 600;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #333333;
  text-decoration: none;
}
.nav-page .page-numbers.current {
  background: #e67e22;
  color: #ffffff;
  pointer-events: none;
}
.nav-page .page-numbers.next, .nav-page .page-numbers.prev {
  background-image: url(../../img/icon/arrow.svg);
  background-size: 100% 100%;
  width: 12px;
  height: 24px;
  text-indent: -9999px;
}
.nav-page .page-numbers.prev {
  transform: rotate(180deg);
}

/*----------------------------
制作実績詳細
----------------------------*/
.work-list {
  padding: 80px;
  background: #ffffff;
  border: 1px solid #f3f3f3;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1023px) {
  .work-list {
    padding: 40px;
  }
}

.work-item {
  border-bottom: 1px solid #f3f3f3;
  padding: 40px 0;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .work-item {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }
}

.work-item dt {
  font-weight: 700;
  width: calc(30% - 20px);
}
@media screen and (max-width: 767px) {
  .work-item dt {
    width: auto;
  }
}

.work-item dd {
  flex: 1;
  text-align: left;
  color: #5a5a5a;
}
@media screen and (max-width: 1023px) {
  .work-item dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .work-item dd {
    margin: 0;
  }
}

.url:hover {
  color: #e67e22;
}

.work-img {
  max-width: 750px;
  margin: 0 auto;
  aspect-ratio: 16/9; /* 必要に応じて比率を変更 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .work-img {
    aspect-ratio: 4/3;
  }
}

.work-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.works-text {
  font-size: 16px;
  text-align: center;
  padding-bottom: 40px;
  color: #5a5a5a;
}
@media screen and (max-width: 767px) {
  .works-text {
    text-align: left;
  }
}

.profile-box {
  position: relative;
  max-width: 1068px;
  margin: 0 auto;
  height: 400px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .profile-box {
    flex-direction: column;
    height: auto;
    margin: 0;
  }
}

.profile-img {
  width: 300px;
  z-index: 1;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .profile-img {
    position: relative;
    bottom: auto;
    width: 250px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .profile-img {
    margin-bottom: 40px;
  }
}

.profile-text {
  width: min(55.55vw, 700px);
  padding: 40px 60px;
  background: #fff9f2;
  position: relative;
  right: -260px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .profile-text {
    right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .profile-text {
    padding: 20px 32px;
  }
}

.profile-text::before {
  content: "";
  border: 1px solid #fbdbb0;
  width: min(55.55vw, 700px);
  height: 100%;
  position: absolute;
  top: -10px;
  left: 15px;
}
@media screen and (max-width: 1023px) {
  .profile-text::before {
    width: 100%;
  }
}

.profile-text p {
  line-height: 1.7;
  margin: 0;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .profile-text p {
    font-size: 14px;
    padding: 0;
  }
}

.message-name {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.profile-text::after {
  content: "Message";
  font-family: "Nothing You Could Do";
  font-size: 48px;
  color: #e88a38;
  position: absolute;
  right: 0;
  top: -5%;
  transform: rotate(20deg);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1023px) {
  .profile-text::after {
    font-size: 40px;
    right: -20px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .profile-text::after {
    font-size: 36px;
  }
}

.skill-box {
  width: 350px;
  border-radius: 4px;
  background: #f3f3f3;
  padding: 24px 30px;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .skill-box {
    width: min(50% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .skill-box {
    width: 100%;
  }
}

.skill {
  gap: 16px;
}

.skill-level {
  text-align: left;
}

.skill-level span {
  display: block;
  color: #f2c94c;
}

.skill h3 {
  font-size: 14px;
}

.star {
  gap: 4px;
}

.skill-text {
  margin-top: 24px;
  font-size: 14px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .skill-text {
    margin-top: 12px;
  }
}

.skill-area {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .skill-area {
    gap: 24px;
  }
}

.servise {
  background: #fafafa;
}

.servise_img {
  width: 100%;
  max-width: 100%;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .servise_img {
    width: 160%;
    max-width: 160%;
  }
}

.servise-box {
  width: calc((100% - 40px) / 3);
  background: #ffffff;
  border-radius: 18px;
  padding: 60px 30px;
  position: relative;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1023px) {
  .servise-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .servise-box {
    padding: 20px;
  }
}

.servise-box p {
  letter-spacing: 0.1rem;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .servise-box p {
    font-size: 14px;
  }
}

.servise-box::before {
  padding: 8px;
  width: 210px;
  letter-spacing: 0.1rem;
  position: absolute;
  font-family: "Jost", "futura-pt", sans-serif;
  background: #ffb347;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  border-radius: 32px;
  text-align: center;
  top: -26px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .servise-box::before {
    font-size: 20px;
    width: 180px;
  }
}

.servise-box:nth-of-type(1)::before {
  content: "Servise01";
}

.servise-box:nth-of-type(2)::before {
  content: "Servise02";
}

.servise-box:nth-of-type(3)::before {
  content: "Servise03";
}

.servise-page {
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .servise-page {
    flex-direction: column;
    gap: 60px;
  }
}

.point-box {
  max-width: 1042px;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .point-box {
    flex-direction: column;
    gap: 20px;
  }
}

.point-text {
  width: calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .point-text {
    width: 100%;
  }
}

.point-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .point-area {
    gap: 20px;
  }
}

.point-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .point-img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .reverse {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.flow {
  background: #fafafa;
}

.step-item-area {
  margin: 0;
}

.step-item-number {
  width: 70px;
  height: 70px;
  background-color: #e67e22;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  flex-direction: column;
  position: absolute;
  transform: translate(-50%, -50%);
  padding-top: 10px;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .step-item-number {
    font-size: 14px;
    width: 62px;
    height: 62px;
  }
}
@media screen and (max-width: 767px) {
  .step-item-number {
    top: 0;
    left: 50%;
  }
}

.step-item-number span {
  display: block;
  font-size: 24px;
  position: absolute;
  letter-spacing: 0.1rem;
  top: 38%;
  left: 19px;
}
@media screen and (max-width: 1023px) {
  .step-item-number span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .step-item-number span {
    top: 24px;
  }
}

.step-item {
  position: relative;
  margin-bottom: 80px;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  margin-left: 26px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1023px) {
  .step-item {
    padding: 20px 40px 20px 48px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .step-item {
    margin-bottom: 80px;
    padding: 40px 20px 48px 20px;
    margin-top: 40px;
  }
}

.step-item p {
  letter-spacing: 0.15rem;
}

.step-item::after {
  content: "";
  background-image: url(../../img/icon/orange-arrow.svg);
  position: absolute;
  width: 20px;
  height: 15px;
  left: 50%;
  bottom: -10%;
  bottom: -15px;
  transform: translateX(-50%);
}

.step-item:nth-child(4)::after {
  display: none;
}

.step-item-text p {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .step-item-text p {
    font-size: 15px;
    text-align: left;
  }
}

.items {
  margin-bottom: 0;
}

.point-text p {
  text-align: left;
  margin-top: 30px;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .point-text p {
    font-size: 14px;
  }
}

.contactpage {
  background: #fff9f2;
}

.contact-page {
  padding: 80px;
  margin: 0 auto;
  max-width: 898px;
  background: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .contact-page {
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact-page {
    padding: 20px;
    margin-bottom: 40px;
  }
}

.contact-p {
  font-size: 13px;
  text-align: center;
  margin: 0 0 60px;
}
@media screen and (max-width: 1023px) {
  .contact-p {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-p {
    text-align: left;
  }
}

.sub-title {
  text-align: center;
  padding-bottom: 16px;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .sub-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .sub-title {
    text-align: left;
  }
}

.contact-form-item {
  margin-bottom: 40px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

/* ラベルのスタイル */
label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: bold;
}

/* 入力欄のスタイル */
input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* テキストエリアの高さを調整 */
textarea {
  resize: vertical;
  height: 120px;
}

.contact-tag {
  background: #e67e22;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
}

.contact-page input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.list-item-label {
  display: inline-block;
  margin-left: 24px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: normal;
}

/* Contact Form 7のリスト項目をすべて縦並びに */
.wpcf7-list-item {
  margin: 0 !important;
  display: block !important;
}

::-moz-placeholder {
  color: #ccc !important;
}

::placeholder {
  color: #ccc !important;
}

/*プライバシーポリシー*/
.privacy {
  display: flex;
  flex-direction: column;
  max-width: 840px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .privacy p {
    text-align: left;
  }
}

.privacy h3 {
  text-align: left;
}

.privacy-content {
  background: #ffffff;
  padding: 30px;
  margin: 40px 0 40px;
  max-width: 880px;
  border: 1px solid #f3f3f3;
  max-height: 250px;
  overflow-y: scroll;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .privacy-content {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .privacy-content {
    margin: 20px 0 20px;
  }
}

.privacy-content p {
  margin-top: 12px;
  text-align: left;
}

.privacy-content ol {
  padding: 0 0 0 16px;
}

.privacy ol li {
  list-style-type: decimal;
  margin-top: 12px;
  text-align: left;
}

.contact-btn {
  text-align: center;
  color: #ffffff;
  background-color: #e67e22;
  border-radius: 8px;
  padding: 20px 0;
  width: 300px;
  display: block;
  margin: 40px auto;
  transition: all 0.3s;
}

.contact-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1023px) {
  .recaptcha {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .recaptcha {
    font-size: 12px;
  }
}

.recaptcha a {
  color: #e67e22;
}

/*thanks-page*/
.thanks-area {
  background: #fff9f2;
  padding: 40px;
}

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

.thanks-text h3 {
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0.15rem;
}/*# sourceMappingURL=style.css.map */