@charset "UTF-8";
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #707070;
  display: block;
  width: 100%;
}

a {
  color: #777777;
}

p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.c_main_width {
  max-width: 1096px;
  margin: 0 auto;
}

.c_flex {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

h2 {
  font-size: 2.6rem;
  text-align: center;
}

h3 {
  font-size: 2.2rem;
  text-align: center;
  margin: 54px 0;
}

/* header */
header {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
}
header .c_flex {
  justify-content: flex-end;
}
header .c_nav {
  z-index: 2;
  padding-top: 15px;
  position: fixed;
  top: 0;
  right: calc((100vw - 1096px) / 2);
}
header ul li {
  margin-right: 26px;
  font-size: 1.1rem;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
}
header ul li:hover {
  opacity: 0.6;
}
header ul li:last-child {
  margin-right: 0;
}
header .c_burger {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 50;
  cursor: pointer;
  display: none;
}
header .c_burger .burger_area {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header .c_burger .burger_area span {
  height: 1px;
  background: #737373;
  margin-bottom: 4px;
}
header .c_burger .burger_area span.burger_line_top {
  width: 100%;
}
header .c_burger .burger_area span.burger_line_middle {
  width: 75%;
}
header .c_burger .burger_area span.burger_line_bottom {
  width: 50%;
}
header .c_round {
  opacity: 0;
  position: absolute;
  animation-name: fadeInAnime;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .c_round.c_round_b {
  width: 34%;
  top: -16vh;
  left: -15vw;
  animation-delay: 0.5s;
}
header .c_round.c_round_g {
  bottom: -19vh;
  left: -19vw;
  width: 39%;
  animation-delay: 1s;
}
header .c_round.c_round_r {
  top: -14vh;
  right: -17vw;
  width: 33%;
  animation-delay: 1.5s;
}
header .c_round.c_round_y {
  bottom: -22vh;
  right: -17vw;
  width: 39%;
  animation-delay: 2s;
}

/* バーガーアイコン */
.burger_menu {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
}
.burger_menu .burger_menu_area {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
  padding: 42% 10%;
  background: #333;
  opacity: 0.8;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.burger_menu .burger_menu_con {
  width: 100%;
  height: 100%;
  position: relative;
}
.burger_menu .burger_menu_con .burger_menu_close {
  width: 22px;
  height: 22px;
  font-size: 2.2rem;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
}
.burger_menu .burger_menu_con .burger_menu_box {
  height: 100%;
}
.burger_menu .burger_menu_con ul.c_flex {
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.burger_menu .burger_menu_con ul.c_flex li a {
  font-size: 1.6rem;
  color: #fff;
}
.burger_menu.active {
  display: block;
}

/* KV */
.c_kv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c_kv .under_bar_y {
  padding: 0 0 7px;
  position: relative;
}
.c_kv .under_bar_y::before {
  width: 36%;
}
.c_kv .under_bar_r {
  padding: 0 0 7px;
  position: relative;
}
.c_kv .under_bar_r::before {
  width: 24%;
}
.c_kv .under_bar_g {
  padding: 0 0 7px;
  position: relative;
}
.c_kv .under_bar_g::before {
  width: 12%;
}
.c_kv h1 {
  font-size: 3.4rem;
  padding: 0 0 7px;
  position: relative;
}
.c_kv h1::before, .c_kv .under_bar_g::before, .c_kv .under_bar_r::before, .c_kv .under_bar_y::before {
  content: "";
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: -2px;
  right: 0;
  transform: scale(0, 1);
  /*アニメーションの指定*/
  animation-name: lineAnime;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes lineAnime {
  0% {
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: right top; /*右上基点*/
  }
  100% {
    transform: scale(1, 1); /*X方向0、Y方向1*/
    transform-origin: right top; /*右上基点*/
  }
}
.c_kv h1::before {
  width: 100%;
  height: 2px;
  background: #D3EAF6;
  animation-delay: 0.5s;
}
.c_kv .under_bar_g::before {
  width: 80%;
  height: 2px;
  background: #D7F6D3;
  animation-delay: 0.7s;
}
.c_kv .under_bar_r::before {
  width: 60%;
  height: 2px;
  background: #F6D3D3;
  animation-delay: 0.9s;
}
.c_kv .under_bar_y::before {
  width: 40%;
  height: 2px;
  background: #F6F1D3;
  animation-delay: 1.1s;
}

/* work */
#work {
  background: #FDFDFA;
  padding-top: 56px;
  padding-bottom: 56px;
}
#work .w_con_wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3%;
  margin-top: 56px;
}
#work .w_con_box {
  width: 212px;
  margin-bottom: 42px;
  padding-right: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#work .w_con_box:hover img {
  transition: all 0.5s;
  transform: scale(1.1, 1.1);
  opacity: 0.7;
}
#work .w_con_box .w_year {
  transform: rotate(90deg);
  display: inline-block;
  position: absolute;
  right: -5px;
  top: 12px;
  color: #A2A2A2;
  font-size: 1.2rem;
}
#work .w_con_box .w_years {
  top: 28px;
  right: -25px;
}
#work .w_con_box .w_img {
  overflow: hidden;
}
#work .w_con_box .w_title {
  font-size: 1.2rem;
  margin: 12px 0 6px;
  line-height: 1.3rem;
}
#work .w_con_box .w_pic {
  font-size: 1.1rem;
}

.modal_wrap {
  z-index: 100;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: url("../img/modal_bk.png");
  background-repeat: repeat;
  display: none;
}
.modal_wrap.active {
  display: block;
}
.modal_wrap .modal_area {
  margin: 42px;
  height: 100%;
  box-sizing: border-box;
}
.modal_wrap .modal_con {
  padding: 32px;
  background: #F9F9F9;
  height: 90%;
  overflow-y: scroll;
  box-sizing: border-box;
}
.modal_wrap .modal_con .modal_text_area {
  margin-left: 28px;
}
.modal_wrap .modal_con h2 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 12px;
  color: #000;
}
.modal_wrap .modal_con .m_txt {
  margin-bottom: 8px;
  display: block;
}
.modal_wrap .modal_con .m_txt.none {
  display: none;
}
.modal_wrap .modal_con .m_txt p {
  color: #000;
}
.modal_wrap .modal_con .m_txt span {
  color: #A2A2A2;
}
.modal_wrap .modal_con .c_flex.m_flex_text {
  justify-content: flex-start;
}
.modal_wrap .modal_con .c_flex.m_flex_text .client {
  margin-right: 18px;
}
.modal_wrap .modal_con .m_img {
  padding: 28px;
  justify-content: space-between;
}
.modal_wrap .modal_con .m_img.other_box {
  flex-wrap: wrap;
}
.modal_wrap .modal_con .m_img_item {
  margin-right: 30px;
}
.modal_wrap .modal_con .m_img .m_item_row1 {
  flex: 1;
}
.modal_wrap .modal_con .m_img .m_item_row2 {
  flex: 2;
}
.modal_wrap .modal_con .m_img .m_item_row2.other_item {
  flex: none;
  width: 28%;
}
.modal_wrap .modal_con .m_img .m_item_row2.other_item:nth-child(3) {
  margin-right: 0;
}
.modal_wrap .modal_con .m_img .m_item_row2.other_item:nth-child(n+4) {
  margin-top: 28px;
}
.modal_wrap .modal_con .m_img .m_item_last {
  margin-right: 0;
}
.modal_wrap .modal_con .m_img .other_text {
  font-size: 1.2rem;
  margin-top: 8px;
}
.modal_wrap .modal_con .m_img .other_url {
  font-size: 1.4rem;
  margin-top: 10px;
}
.modal_wrap .modal_con .modal_close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 62px;
  right: 62px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #000;
  cursor: pointer;
}
.modal_wrap .modal_con .modal_close:hover {
  color: #9e9e9e;
}

/* about */
#about {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #FAFAFA;
}
#about .c_flex {
  justify-content: center;
  align-items: stretch;
  gap: 56px;
  margin-top: 62px;
}
#about .a_con_box {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
#about .a_con_img {
  width: 22%;
  flex-flow: column;
}
#about .a_con_img .a_con_img_name {
  margin-top: 8px;
  text-align: center;
}
#about .a_con_img .a_con_img_name p {
  font-size: 1.3rem;
}
#about .a_con_img .a_con_img_name p span {
  font-size: 1rem;
}
#about .a_con_text {
  width: 52%;
  padding: 24px;
  border: 3px solid #F5BDBB;
  border-radius: 12px;
}
#about .a_con_skill_set .a_con_box {
  align-items: flex-start;
  flex: 1;
  flex-flow: column;
  background: url("../img/skill_01.png");
}
#about .a_con_skill_set .a_con_box h5 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  margin-left: -7px;
}
#about .a_con_skill_set .a_con_box.a_con_box_business, #about .a_con_skill_set .a_con_box.a_con_box_skill, #about .a_con_skill_set .a_con_box.a_con_box_tool {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 -2px;
  padding: 0px 0 0 30px;
}
#about .a_con_skill_set ul li {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* message */
#message {
  padding-top: 56px;
  padding-bottom: 56px;
}
#message h2 {
  margin: 46px auto 56px;
  background: #fff;
  z-index: 10;
  position: relative;
  padding: 10px 0;
}
#message .scroll_line1, #message .scroll_line2 {
  height: 160px;
  padding-bottom: 66px;
}
#message .scroll_line2 {
  padding-top: 66px;
}
#message .scroll_line_box1, #message .scroll_line_box2 {
  position: relative;
  height: 10px;
}
#message .scroll_line_box1 .scroll_line_con, #message .scroll_line_box2 .scroll_line_con {
  content: "";
  height: 0px;
  width: 1px;
  background-color: #D6D6D6;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#message .scroll_line_box1 .scroll_line_con, #message .scroll_line_box2 .scroll_line_con {
  top: 6px;
}
#message .scroll_line_con.active {
  height: 160px;
  animation: gray_circle 1.5s forwards linear;
}
@keyframes gray_circle {
  0% {
    height: 0px;
  }
  100% {
    height: 160px;
  }
}
#message .scroll_dot {
  width: 5px;
  margin: 0 auto;
}
#message .m_con_box {
  width: 60%;
  max-width: 660px;
  margin: 46px auto;
  padding: 46px;
  box-sizing: border-box;
  position: relative;
}
#message .m_con_box .kagikakko_lt, #message .m_con_box .kagikakko_rb {
  width: 8px;
  height: 8px;
  position: absolute;
}
#message .m_con_box .kagikakko_lt {
  top: 0;
  left: 0;
  border-top: 1px solid #A8A8A8;
  border-left: 1px solid #A8A8A8;
}
#message .m_con_box .kagikakko_rb {
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #A8A8A8;
  border-right: 1px solid #A8A8A8;
}

footer .copyright {
  text-align: center;
  padding: 20px 0;
  box-sizing: border-box;
}
footer .copyright p {
  color: #a9a9a9;
}

/* contact */
#contact {
  padding-top: 56px;
  padding-bottom: 56px;
}
#contact h2 {
  margin: 46px auto 56px;
  background: #fff;
  z-index: 10;
  position: relative;
  padding: 10px 0;
}
#contact header {
  height: 40vh;
}
#contact header .contact_round {
  position: absolute;
}
#contact header .contact_round.c_round_b {
  width: 210px;
  top: -90px;
  left: -110px;
}
#contact header .contact_round.c_round_g {
  width: 210px;
  bottom: -90px;
  left: -113px;
}
#contact header .contact_round.c_round_r {
  width: 220px;
  top: -100px;
  right: -170px;
}
#contact header .contact_round.c_round_y {
  width: 230px;
  bottom: -120px;
  right: -140px;
}
#contact header .c_kv h1::before, #contact header .c_kv .under_bar_g::before, #contact header .c_kv .under_bar_r::before, #contact header .c_kv .under_bar_y::before {
  animation-name: none;
  transform: scale(1, 1);
}
#contact .contact_wrap {
  position: relative;
  height: 600px;
  margin: 20px auto 50px auto;
}
#contact .content_block {
  width: 600px;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#contact .message_area {
  width: 100%;
  border: 1px solid #9e9e9e;
}
#contact .content_box {
  width: 600px;
  height: 600px;
  position: relative;
}
#contact .content_box .contact_title {
  letter-spacing: 0.12em;
}
#contact .content_box .input_area {
  height: 42px;
  margin-top: 8px;
  margin-bottom: 26px;
}
#contact input {
  height: 41px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #9e9e9e;
}
#contact .error_msg {
  margin-top: 9px;
  display: inline-block;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  color: #ff0000;
  margin-top: 5px;
}
#contact .error_msg:nth-of-type(3) {
  margin-top: 0;
}
#contact .button_area {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: initial;
  margin: 0;
}
#contact .send_button {
  background: #E8F4F2;
  border: 0;
  font-size: 1.4em;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: block;
  height: 44px;
  width: 120px;
  border-radius: 25px;
  color: #707070;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
}
#contact .send_button:hover {
  opacity: 0.6;
}
#contact .wpcf7 {
  max-width: 680px;
  margin: 0 auto;
}
#contact .wpcf7-not-valid-tip {
  margin-top: 3px;
}
#contact .wpcf7-response-output {
  width: 600px !important;
  margin: 0 auto !important;
  padding: 20px 10px !important;
  font-size: 1.2rem !important;
  box-sizing: border-box !important;
}
#contact .wpcf7-form-control-wrap textarea {
  width: 100%;
}
#contact .wpcf7 button {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  background: #E8F4F2;
  border: none;
  width: 16%;
  width: auto;
  padding: 16px 48px;
  margin: 46px auto 0;
  border-radius: 51px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
}
#contact .wpcf7 button p {
  display: inline-block;
}
#contact .wpcf7 button:hover {
  background: #f0f9f7;
}
#contact .wpcf7 .confirm-btn-area {
  display: flex;
  gap: 16px;
  margin-top: 46px;
}
#contact .wpcf7 .confirm-btn-area button {
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1094px) {
  header .c_nav {
    right: 0;
    padding-right: 60px;
  }
  .c_main_width {
    max-width: 796px;
    padding: 0 1rem;
  }
  #work .w_con_wrap {
    justify-content: flex-start;
  }
  #work .w_con_box {
    width: 28%;
  }
}
@media screen and (max-width: 769px) {
  .c_main_width {
    max-width: 90%;
  }
  header .c_nav {
    display: none;
  }
  header .c_burger {
    display: block;
  }
  header .c_round.c_round_b {
    top: -5vh;
  }
  header .c_round.c_round_g {
    bottom: -6vh;
  }
  header .c_round.c_round_r {
    top: -4vh;
  }
  header .c_round.c_round_y {
    bottom: -7vh;
  }
  .c_kv h1 {
    font-size: 2.8rem;
  }
  .c_kv h1, .c_kv .under_bar_g, .c_kv .under_bar_r, .c_kv .under_bar_y {
    padding: 0 0 6px;
  }
  .c_kv h1::before, .c_kv .under_bar_g::before, .c_kv .under_bar_r::before, .c_kv .under_bar_y::before {
    bottom: -3px;
  }
  #work .w_con_box {
    width: 45%;
    margin-right: 0;
    padding-right: 0;
  }
  #work .w_con_box .w_year {
    transform: rotate(0);
    position: static;
    margin-bottom: 4px;
  }
  #about .c_flex {
    display: block;
  }
  #about .a_con_img {
    width: 66%;
    margin: 0 auto;
  }
  #about .a_con_text {
    width: 100%;
    margin-top: 26px;
  }
  #about .a_sns_con {
    width: 24%;
    box-sizing: border-box;
  }
  #about .a_sns_con:last-child {
    margin-top: 0;
  }
  #about .a_con_skill_set {
    display: flex;
    flex-wrap: wrap;
  }
  #about .a_con_skill_set .a_con_box {
    width: 47%;
    flex: none;
  }
  #about .a_con_skill_set .a_con_box.a_con_box_tool {
    margin-top: 36px;
    width: 100%;
  }
  #message .m_con_box {
    width: 100%;
    padding: 16px;
  }
  #message .contact_btn {
    width: 54%;
  }
  .modal_wrap .modal_area {
    margin: 20px;
  }
  .modal_wrap .modal_con {
    padding: 20px;
  }
  .modal_wrap .modal_con .modal_close {
    top: 29px;
    right: 29px;
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
  .modal_wrap .modal_con .modal_text_area {
    margin-left: 0px;
  }
  .modal_wrap .modal_con .c_flex.m_flex_text {
    display: block;
  }
  .modal_wrap .modal_con .m_img {
    flex-wrap: wrap;
    padding: 10px 0;
    justify-content: center;
  }
  .modal_wrap .modal_con .m_img .m_item_row1, .modal_wrap .modal_con .m_img .m_item_row2 {
    flex: none;
    width: 92%;
    margin-right: 0;
  }
  .modal_wrap .modal_con .m_img .m_item_row2:nth-child(3) {
    margin-right: auto;
  }
  .modal_wrap .modal_con .m_img .m_item_row2:nth-child(n+4) {
    margin-top: 20px;
  }
  .modal_wrap .modal_con .m_img .m_item_row2.other_item {
    flex: none;
    width: 92%;
    margin: 0 auto 20px auto;
  }
  .modal_wrap .modal_con .m_img .other_url {
    font-size: 1.2rem;
    margin-top: 8px;
  }
  #contact .c_nav {
    display: block;
    right: 20px;
  }
  #contact .c_nav a {
    padding-left: 14px;
    position: relative;
  }
  #contact .pageback::before {
    content: "";
    background: #9d9d9d;
    height: 9.5262794416px;
    width: 8px;
    -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    position: absolute;
    top: 2px;
    left: 0;
  }
  #contact h2 {
    margin: 56px auto;
  }
  #contact .contact_wrap {
    height: 590px;
  }
  #contact .content_block {
    width: 100%;
  }
  #contact .content_block .content_box {
    width: 100%;
    height: 590px;
  }
  #contact .content_block .contact_title {
    float: none;
    text-align: left;
    margin-left: 5%;
    line-height: 1;
    margin-bottom: 8px;
  }
  #contact .content_block .contact_title:last-of-type {
    float: none;
    height: auto;
    padding-bottom: 0;
  }
  #contact .content_block .input_area {
    text-align: center;
    margin-bottom: 12px;
  }
  #contact .content_block .input_area:nth-of-type(n+2) {
    padding-top: 0;
  }
  #contact .content_block .input_area.button_area {
    bottom: 0;
    margin-bottom: 0;
  }
  #contact .content_block input {
    width: 90%;
  }
  #contact .content_block .message_area {
    width: 90%;
  }
  #contact .content_block .send_button {
    width: 140px;
  }
  #contact .button_area {
    right: 5%;
  }
  #contact .error_msg {
    text-align: left;
    display: block;
    margin-left: 5%;
    margin-top: 6px;
  }
  #contact .wpcf7-response-output {
    width: 90% !important;
  }
}
/* contact form 7 */
/* 入力欄を隠す用 */
.cf7-field .is-hidden {
  display: none;
}

/* 確認表示用のテキスト */
.cf7-field .confirm-text {
  margin-top: 4px;
  padding: 8px 10px;
  background: #f7f7f7;
  border-radius: 4px;
  font-size: 14px;
}

/* CF7 のエラーメッセージ */
.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* 送信後のメッセージ */
.wpcf7 form .wpcf7-response-output {
  margin-top: 16px;
}

.lp-contact dt {
  font-weight: 700;
  margin-top: 2em;
  font-size: 14px;
}

.lp-contact dd {
  margin: 0.8em 0 1em;
  font-size: 14px;
}

.lp-contact .btn-area {
  margin-top: 1.5em;
}

.lp-contact .cf7-global-error {
  color: #c00;
  font-weight: 700;
  margin-top: 0.5em;
}

.lp-contact .wpcf7-not-valid-tip {
  display: block;
  color: #c00;
  font-size: 12px;
  margin-top: 4px;
}

/*# sourceMappingURL=style.css.map */
