@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");
* {
  font-family: "Klee One", cursive;
} 
/* @import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
* {
  font-family: "BIZ UDPGothic", cursive;
} */

a {
  color: #000;
}

section {
  padding: 100px 0;
}

img {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

body.lock {
  overflow-y: hidden;
}

.mb30 {
  margin-bottom: 30px;
}

.btn_wrap {
  text-align: center;
  padding-bottom: 30px;
}

.btn {
  width: 330px;
  font-size: 24px;
  font-weight: 600;
  color: #009a92;
  background-color: #fff;
  border-radius: 32px;
  max-width: 100%;
  border: 3px solid #009a92;
  padding: 10px;
  position: relative;
}

.btn:hover {
  background-color: #009a92;
  color: #fff;
}

.btn:after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 5%;
  border-top: solid 3px #009a92;
  border-right: solid 3px #009a92;
  transform: translateY(-50%) rotate(45deg);
}

.btn.wpcf7-submit {
  cursor: pointer;
}
.bold_text {
  font-weight: bold;
}
.more {
  color: #009a92;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  padding-right: 30px;
}

.more:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  border-top: solid 3px #009a92;
  /* 好みで色を変えてください */
  border-right: solid 3px #009a92;
  /* 好みで色を変えてください */
  transform: translateY(-50%) rotate(45deg);
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.section_head {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

.section_head.en {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.sub_head {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: 50px;
}

.under_line {
  text-decoration: underline;
}

.section_text {
  font-size: 20px;
  line-height: 2.4;
}

.logo img {
  width: 300px;
}

.header {
  padding: 30px 0 0;
  margin-bottom: 60px;
}

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

.header .logo {
  position: relative;
  z-index: 1000;
}

.header .humburger {
  margin-left: auto;
  position: fixed;
  top: 40px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: transparent;
  z-index: 1000;
}

.header .humburger span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  right: 13px;
  height: 1px;
  background-color: #000;
}

.header .humburger span:nth-of-type(1) {
  top: 22px;
  width: 65px;
}

.header .humburger span:nth-child(2) {
  top: 40px;
  width: 40px;
}

.header .humburger.active span:nth-child(1) {
  top: 40px;
  transform: rotate(-45deg);
}

.header .humburger.active span:nth-child(2) {
  width: 65px;
  transform: rotate(45deg);
}

.header .nav {
  display: none;
  animation: bgdown 0.5s ease;
}

.header .nav.active {
  position: fixed;
  top: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.header .nav.active .bg_nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #e9f4f0;
  z-index: -1;
}

.header .nav.active .bg_nav.up {
  animation: bgup 0.5s ease;
}

.header .nav.active .nav_img {
  animation: show 0.5s 0.5s ease-in-out forwards;
}

.header .nav.active .nav_item {
  animation: show 0.5s 0.5s ease-in-out forwards;
}

.header .nav_list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header .nav_img {
  opacity: 0;
  /* width: 250px;
            height: 350px; */
  margin-right: 100px;
  object-fit: cover;
}

.header .nav_img img {
  width: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.header .nav_item {
  opacity: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.kv_text_box {
display: flex;
justify-content: center;

align-items: center;
}

@keyframes bgdown {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes bgup {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.box {
  display: flex;
  margin-bottom: 130px;
}

.box:nth-child(even) {
  flex-direction: row-reverse;
}

.box:nth-child(even) .box_left {
  margin: 0;
}

.box:nth-child(even) .box_right {
  margin-right: 100px;
  overflow: hidden;
}

.box_left {
  width: 51%;
  margin-right: 100px;
  overflow: hidden;
}

.box_right {
  width: 45%;
  overflow: hidden;
}

.box_right img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.scale {
  opacity: 0;
  transform: translateY(50px);
  transition: 2s ease;
}

.scale.loaded {
  opacity: 1;
  transform: translateY(0px);
}

.kv {
  position: relative;
  padding-bottom: 100px;
}

.kv .box_text {
  /* margin-top: 60px; */
  line-height: 2.5;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.kv .box {
  margin-bottom: 0;
}

.kv .box.even {
  margin-top: -30px;
}

.kv .box.even .box_text {
  margin: 12%;
  margin-right: 0;
}

.kv .box_right {
  margin: 0;
}

.kv .box_right img {
  object-fit: cover;
  height: 500px;
}

.kv .box_left img {
  object-fit: cover;
  height: 500px;
}

.kv .float_img {
  position: absolute;
  transition: 2s 1s ease-out;
}

.kv .float_img.left {
  top: 20%;
  left: 0%;
}

.kv .float_img.right {
  right: 0;
  bottom: 9%;
  z-index: -1;
}

.float_img {
  transition: 2s ease-out;
}

.float_img.left {
  transform: translateX(-270px);
}

.float_img.left.scroll {
  transform: translateX(0);
  z-index: -2;
}

.float_img.right {
  transform: translateX(340px);
}

.float_img.right.scroll {
  transform: translateX(0);
}

.area_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  width: 80%;
}

.area_item {
  width: 110px;
  max-width: 100%;
  text-align: center;
  background: #e4e4e4;
  border-radius: 20px;
  font-size: 20px;
  letter-spacing: 0.2em;
  padding: 5px;
}

.line {
  position: relative;
}

.line .float_img {
  position: absolute;
  right: 0;
}

.service_img {
  margin: auto;
}

.service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 146px;
}

.service_item {
  width: calc(100% / 4 - 110px);
}

.service .sub_head {
  text-align: center;
  margin-top: 30px;
}

.flow {
  background-image: url("../img/bg.png");
  background-size: contain;
  background-repeat: round;
}

.flow_item {
  display: flex;
  background: #fff;
  margin-bottom: 50px;
  padding: 50px 30px;
  border-radius: 20px;
  align-items: center;
  position: relative;
}

.flow_item:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 50px;
  bottom: -51px;
  left: 49px;
  background: #009a92;
}

.flow_item:last-child:after {
  display: none;
}

.flow_item_left {
  width: 63%;
}

.flow_item_right {
  margin-left: auto;
  width: 37%;
}

.flow .sub_head {
  margin: 0;
  font-size: 24px;
}

.flow .sub_head .num {
  font-size: inherit;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 5px 15px;
  margin-right: 25px;
}

.flow_text {
  font-size: 16px;
  line-height: 2;
}

.profile {
  position: relative;
}

.profile_name {
  text-align: right;
  font-size: 20px;
  line-height: 2;
}

.profile .box_left {
  width: 55%;
  margin-right: 60px;
}

.profile .sub_head {
  font-size: 24px;
}

.profile .skill {
  line-height: 2;
  margin-bottom: 30px;
}

.profile .hobby {
  line-height: 2;
}

.profile .float_img {
  position: absolute;
  right: 0;
}

.works_list {
  display: flex;
  justify-content: space-between;
  gap: 0 90px;
}

.works_item {
  width: calc(100% / 2 - 85px);
}

.works_img {
  margin-bottom: 50px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.works .more {
  text-align: right;
  /* margin-top: 150px; */
  width: 100%;
}

.footer {
  padding-top: 150px;
}

.footer > .container {
  display: flex;
  gap: 0 65px;
  margin-bottom: 60px;
  align-items: center;
}

.footer_item a {
  line-height: 2;
  font-size: 20px;
}

.footer .company_info {
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer .footer_nav_box {
  display: flex;
  gap: 60px;
}

.address_text {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.sns {
  display: flex;
  justify-content: center;
  gap: 0 40px;
  margin-bottom: 30px;
}

.copylight {
  font-size: 16px;
  text-align: center;
  padding-bottom: 80px;
}

.contact {
  background-image: url("../img/bg.png");
  background-size: cover;
}

.contact .label {
  display: flex;
  margin-bottom: 45px;
}

.contact .label > p {
  display: flex;
}

.contact .label_name {
  display: block;
  width: 180px;
  margin-right: 30px;
}

.contact .label .wpcf7-form-control-wrap {
  width: calc(100% - 180px);
}

.contact .label .wpcf7-form-control-wrap input,
.contact .label .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #009a92;
}

.contact .label .wpcf7-checkbox label {
  display: flex;
  align-items: center;
}

.contact .label .wpcf7-list-item {
  margin: 0;
  width: 50%;
}

.contact .label .wpcf7-list-item label {
  width: 80%;
  margin-bottom: 30px;
}

.contact .label .wpcf7-list-item label input {
  width: 30%;
}

.contact .label .wpcf7-list-item span.wpcf7-list-item-label {
  width: 70%;
}

.contact .label.photo {
  margin-bottom: 60px;
}

.contact .checkbox-cl01 input {
  display: none;
  position: relative;
}

.contact .checkbox-cl01 input + span {
  padding-left: 50px;
  display: inline-block;
  position: relative;
  font-weight: 600;
}

.contact .checkbox-cl01 input + span::after,
.contact .checkbox-cl01 input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.contact .checkbox-cl01 input + span::before {
  border: 2px solid #009a92;
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px;
}

.contact .checkbox-cl01 input + span::after {
  border: none;
  position: absolute;
  top: 6px;
  left: 11px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #009a92;
  border-bottom: 2px solid #009a92;
  content: "";
  display: none;
}

.contact .checkbox-cl01 input:checked + span::after {
  display: block;
}

.contact .file {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact .file__label {
  display: block;
  line-height: 1.5;
  text-align: center;
  width: 180px;
  max-width: 100%;
  padding: 10px;
  margin-inline: auto;
  color: #fff;
  background-color: #009a92;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 40px;
}

.contact .file__label:hover {
  opacity: 0.7;
}

.contact input[type="file"] {
  display: none;
}

.contact .file__none {
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  margin-left: 30px;
  font-weight: 600;
}

/* プライバシーポリシー */
.privacy_sec h2{
  padding-bottom: 30px;
}
body .privacy_sec {
  padding: 30px 0;
}

/* ウエヨシの想い */
.thought_list {
  display: flex;
}
.thought_item {
  padding: 0 20px;
}
.thought_title {
  margin-bottom: 50px;
}
.thought_img_wrapper {
  padding-bottom: 20px;
}
.thought_box {
  margin-bottom: 130px;
}

/* 料金 */
.price_item_link {
    display: block;
    line-height: 1.5;
    text-align: center;
    width: 430px;
    max-width: 100%;
    padding: 10px;
    color: #fff;
    background-color: #009a92;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 40px;
}

.comming_soon_text {
  text-align: center;
}

/* post */
.single_wrap .sngle_content {
  padding-bottom: 30px;
}
.single_wrap .date {
  padding-bottom: 30px;
}
.single_wrap .pagetitle {
  padding-bottom: 60px;
}
.prev_next_box .post_link_title {
  padding-bottom: 30px;
}

/* archive */
.card {
  display: flex;
  flex-wrap: wrap;
}
.card_item {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
}
.card_item img{
  width: 100%;
  height: auto;
  
  margin-bottom: 15px;
  border-radius: 10px;
}
.archive_container {
  display: flex;
}
.archive_content {
  width: 75%;
}
.sidebar_wrapper {
  width: 25%;
  padding-left: 20px;
}
.card__category_wrapper {
  display: flex;
}
.card__category {
  padding-right: 1rem;
}
.card__title {
  padding-bottom: 10px;
}
.sns_share_img {
  width: 25px;
}
.share_item_wrapper {
  margin-right: 10px;
}
.sidebar_item ul li{
  padding-bottom: 10px;
}
.sidebar_title {
  padding-bottom: 20px;
}
.prev_next_box {
  margin-bottom: 30px;
}


.sns__container {
  display: flex;
}

.sngle_content img {
  width: 50%;
  border-radius: 10px;
  height: auto;
}

.file_wrap {
  width: 100% !important;
}

.file_wrap .codedropz-btn-wrap .cd-upload-btn {
  color: #ffffff;
  position: relative;
  font-weight: 600;
  display: inline-block;
  background: #009a92;
  border-radius: 35px;
  padding-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

html, body .contact {
  scroll-behavior: auto !important;
}

.dnd-upload-area:focus {
  outline: none;
}

/* ページネーション */
.single_contents .prev_next_box {
  display: flex;
  justify-content: space-between;
}

.archive_content .pagination {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .single_contents .prev_next_box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

}
.archive_content .pagination .nav-links .page-numbers{
  margin-bottom: 30px;
  padding: 2%;
  font-size: 20px;
}

/* INQUIRY */
.inquiry_right {
  margin: auto;
}


/* 2025summerfix */
.box_text_right {
text-align: right;
}

@media (max-width: 1200px) {
  .kv .box_right img {
    height: auto;
  }
  .logo img {
    width: 250px;
  }
  .header {
    padding: 15px 0 0;
    margin-bottom: 30px;
  }
  .box:nth-child(even) .box_right {
    margin-right: 60px;
  }
  .section_head {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .thought_title {
    margin-bottom: 30px;
  }
  .thought_box .thought_text {
    font-size: 16px;
  }
  .thought_box {
    margin-bottom: 80px;
  }
  .section_text {
    font-size: 18px;
  }
  section {
    padding: 80px 0;
    overflow-x: clip;
  }
  .box_left {
    margin-right: 60px;
  }
  .kv .box.even .box_text {
    margin: 80px 0 0;
    margin-right: 0;
  }
  .float_img {
    width: 200px;
  }
  .kv .box_text {
    font-size: 24px;
  }
  .kv .float_img.right {
    position: absolute;
    transition: 2s ease-out;
  }
  .box {
    margin-bottom: 80px;
  }
  .box.last {
    margin-bottom: 0;
  }
  .service_list {
    gap: 60px;
  }
  .service_item {
    width: calc(100% / 3 - 40px);
  }
  .area_list {
    width: 100%;
  }
  .flow .sub_head {
    margin: 0;
    font-size: 22px;
  }
  .flow_item {
    padding: 30px;
  }
  .works_list {
    gap: 0px 60px;
  }
  .works_item {
    width: calc(100% / 2);
  }
  .footer > .container {
    gap: 0 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_nav {
    margin-top: 30px;
  }
  .copylight {
    padding-bottom: 30px;
  }
  .kv {
    overflow-x: clip;
  }
  .flow > .container {
    background: #e9f4f0;
  }
}

@media (max-width: 1023px) {
  .contact .label .wpcf7-list-item {
    width: 50%;
  }
  .contact .label .wpcf7-list-item span.wpcf7-list-item-label {
    width: 100%;
  }
  .contact .checkbox-cl01 input + span {
    padding-left: 38px;
  }
  .contact .label .wpcf7-form-control-wrap {
    width: 100%;
  }
  .check_wrap {
    padding: 0 0 0 15px;
  }
  .contact .label .file .wpcf7-form-control-wrap {
    width: auto;
  }
}

@media (max-width: 767px) {
  .card_item .card__category_wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  section {
    padding: 60px 0;
  }
  .section_text {
    font-size: 16px;
  }
  .container {
    width: 414px;
    padding: 0 10px;
  }
  .logo img {
    width: 200px;
  }
  .header .humburger span:nth-of-type(1) {
    top: 16px;
    width: 40px;
  }
  .header .humburger span:nth-child(2) {
    top: 28px;
    width: 27px;
  }
  .kv .box_text {
    font-size: 16px;
  }
  .kv .box_right img {
    height: auto;
  }
  .kv .box.even {
    margin-top: 80px;
  }
  .kv .box_left {
    margin-right: 0;
    width: 51%;
  }
  .kv .box_right {
    width: 45%;
  }
  .kv .float_img.left {
    top: 33%;
    left: 0%;
  }
  .float_img {
    width: 120px;
  }
  .kv .box:nth-child(even) .box_right {
    margin-right: 10px;
  }
  .kv .box.even .box_text {
    margin: 30px 0 0;
    margin-right: 0;
  }
  .kv {
    padding-bottom: 30px;
  }
  .kv .float_img.right {
    right: 0;
    bottom: -10%;
  }
  .box {
    flex-wrap: wrap;
  }
  .box_left {
    width: 100%;
    margin-right: 0;
  }
  .box_right {
    width: 100%;
  }
  .section_head.en {
    font-size: 16px;
  }
  .section_head {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .sub_head {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
  }
  .box_right {
    margin-top: 30px;
  }
  .box {
    margin-bottom: 30px;
  }
  .thought_box {
    margin-bottom: 30px;
  }
  .box:nth-child(even) .box_right {
    margin-right: 0;
  }
  .area_item {
    font-size: 16px;
  }
  .about {
    position: relative;
  }
  .about .float_img {
    position: absolute;
    left: 0;
    bottom: -40px;
  }
  .service .section_head {
    margin-bottom: 35px;
  }
  .service_list {
    gap: 30px;
  }
  .service_item {
    width: calc(100% / 2 - 15px);
  }
  .service_img {
    width: 120px;
  }
  .service .section_head.en {
    margin-bottom: 0;
  }
  .service .sub_head {
    font-size: 18px;
    margin-top: 15px;
  }
  .flow_item {
    flex-wrap: wrap;
  }
  .flow_item_left {
    width: 100%;
    margin-bottom: 15px;
  }
  .flow_item_right {
    width: 100%;
  }
  .flow .sub_head .num {
    margin-right: 15px;
  }
  .profile .box_left {
    width: 100%;
    margin-right: 0;
  }
  .works_list {
    gap: 60px 0;
    flex-wrap: wrap;
  }
  .works_item {
    width: 100%;
  }
  .works .more {
    margin-top: 60px;
  }
  .footer_logo {
    margin-bottom: 30px;
  }
  .footer_logo img {
    width: 250px;
  }
  .footer_item a {
    font-size: 16px;
  }
  .footer > .container {
    gap: 0 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .copylight {
    font-size: 12px;
    padding-bottom: 10px;
  }
  .btn {
    font-size: 18px;
  }
  .works .more {
    margin-top: 60px;
    font-size: 18px;
  }
  .more {
    padding-right: 15px;
  }
  .more:after {
    width: 10px;
    height: 10px;
  }
  .nav_img {
    display: none;
  }
  .header .humburger.active span:nth-child(2) {
    width: 40px;
    top: 39px;
  }
  .footer .company_info {
    gap: 0 60px;
    flex-direction: column;
    width: 100%;
  }
  .footer_item {
    margin-bottom: 15px;
  }
  .footer_item a {
    font-size: 14px;
  }
  .flow {
    background-size: contain;
    background-position: top;
  }
  .flow > .container {
    position: relative;
    background: #e9f4f0;
  }
  .flow > .container:after {
    content: "";
    background-color: #e9f4f0;
    width: 100vw;
    height: 100%;
    display: block;
  }
  .contact .label {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .contact .label_name {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contact .label .wpcf7-form-control-wrap {
    width: 100%;
  }
  .contact .label {
    display: flex;
    margin-bottom: 30px;
  }
  .contact .checkbox-cl01 input + span {
    font-size: 14px;
  }
  .contact .file__none {
    margin-left: 13px;
    font-size: 14px;
  }
  .contact .file__label {
    margin-inline: 0;
  }
  .contact .label.photo {
    margin-bottom: 30px;
  }
  .btn.wpcf7-submit {
    width: 100%;
  }
  .footer {
    padding-top: 30px;
  }
  .thought_list {
    flex-direction: column;
  }
  .thought_item {
    padding: 20px 0;
  }
  .single_wrap  {
    margin-bottom: 60px;
  }

  .sngle_content img{
    width: 100%;
  }

  .archive_container {
    flex-direction: column;
  }
  .archive_content {
    width: 100%;
  }
  .sidebar_wrapper {
    width: 100%;
    padding-left: 10px;
  }

}
