@charset "UTF-8";
/*
Theme Name:　Clark DEsign
Author:  Ethan Clark
Description: Portfolio site
Version: 1.0
*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  background-color: #fafafa;
  color: #333;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  box-sizing: border-box;
}
body * {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* フェード（下から） */
.fadeup {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translateY(30px);
}

.fadedown {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translateY(-30px);
}

.fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fadedown.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* スライド（左右から） */
.fadein-left {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translate(-10%, 0);
}

.fadein-right {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translate(10%, 0);
}

.fadein-left.is-show,
.fadein-right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.lora {
  font-family: "Lora", serif;
  font-weight: normal;
}

.lora-m {
  font-family: "Lora", serif;
  font-weight: 500;
}

.unna {
  font-family: "Unna", serif;
  font-weight: 400;
}

.YuMincho {
  font-family: "YuMincho";
}

.YuMincho-m {
  font-family: "YuMincho";
  font-weight: 500;
}

.jost {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

/*-----------------------
*　基本幅
*-----------------------*/
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/*-----------------------
*　カード
*-----------------------*/
.cards {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .cards {
    display: block;
  }
}

.cards_col3 {
  padding-left: 0;
}
.cards_col3 .cards__item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .cards_col3 .cards__item {
    width: 100%;
    margin-right: 0;
  }
}
.cards_col3 .cards__item:nth-child(3) {
  margin-right: 0;
}

.card {
  list-style: none;
}
.card__link {
  display: block;
}
.card__link:hover .card__title {
  text-decoration: underline;
}
.card__imgwrapper {
  margin-bottom: 10px;
}
.card__img {
  width: 100%;
}
.card__title {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.card__description {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
}

/*-----------------------
*　ボタン
*-----------------------*/
.btn {
  padding: 20px 43px;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 12px;
  }
}

/*-----------------------
*　セクションタイトル
*-----------------------*/
.sec-title {
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 30px;
    padding: 14px 0x;
  }
}

/*-----------------------
*　ヘッダー
*-----------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  background-color: #fafafa;
  color: #333;
  line-height: 1.8;
  font-family: "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  box-sizing: border-box;
}

body * {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* フェード（下から） */
.fadeup {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translateY(30px);
}

.fadedown {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translateY(-30px);
}

.fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fadedown.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* スライド（左右から） */
.fadein-left {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translate(-10%, 0);
}

.fadein-right {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translate(10%, 0);
}

.fadein-left.is-show,
.fadein-right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.lora {
  font-family: "Lora", serif;
  font-weight: normal;
}

.lora-m {
  font-family: "Lora", serif;
  font-weight: 500;
}

.unna {
  font-family: "Unna", serif;
  font-weight: 400;
}

.YuMincho {
  font-family: "YuMincho";
}

.YuMincho-m {
  font-family: "YuMincho";
  font-weight: 500;
}

.jost {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

/*-----------------------
*　基本幅
*-----------------------*/
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/*-----------------------
*　カード
*-----------------------*/
.cards {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .cards {
    display: block;
  }
}
.cards_col3 {
  padding-left: 0;
}

.cards_col3 .cards__item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .cards_col3 .cards__item {
    width: 100%;
    margin-right: 0;
  }
}
.cards_col3 .cards__item:nth-child(3) {
  margin-right: 0;
}

.card {
  list-style: none;
}

.card__link {
  display: block;
}

.card__link:hover .card__title {
  text-decoration: underline;
}

.card__imgwrapper {
  margin-bottom: 10px;
}

.card__img {
  width: 100%;
}

.card__title {
  font-weight: bold;
  margin-bottom: 0.3em;
}

.card__description {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.btn {
  padding: 20px 43px;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 12px;
  }
}
.sec-title {
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 30px;
    padding: 14px 0x;
  }
}
/*-----------------------
*　ヘッダー
*-----------------------*/
.header {
  width: 100%;
  height: 800px;
  background-image: url(../../../img/main-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .header {
    height: 500px;
  }
}
.header .inner {
  max-width: 90%;
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 38px;
}

@media screen and (max-width: 768px) {
  .header .inner {
    padding-top: 13px;
  }
}
.header .inner .logo {
  font-size: 33px;
}

@media screen and (max-width: 768px) {
  .header .inner .logo {
    font-size: 20px;
    padding-top: 17px;
  }
}
.header .inner .logo a {
  color: #fff;
}

.header .inner .menu {
  width: 339px;
  display: flex;
  justify-content: space-between;
}

.header .inner .menu li {
  font-size: 18px;
}

.header .inner .menu a {
  color: #fff;
}

.main-text-area {
  max-width: 90%;
  width: 1100px;
  margin: 0 auto;
  color: #fff;
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  .main-text-area {
    padding-top: 62px;
  }
}
.main-text-area .title {
  font-size: 130px;
}

@media screen and (max-width: 768px) {
  .main-text-area .title {
    font-size: 66px;
    line-height: 63px;
    margin-bottom: 32px;
  }
}
.main-text-area .paragraph-ja {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 21px;
}

@media screen and (max-width: 768px) {
  .main-text-area .paragraph-ja {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.main-text-area .small {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .main-text-area .small {
    font-size: 13px;
  }
}
.main-text-area .paragraph-en {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2.2px;
  color: #929292;
  margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
  .main-text-area .paragraph-en {
    font-size: 10px;
    margin-bottom: 33px;
  }
}
#service {
  margin: 80px auto;
  max-width: 90%;
  width: 1100px;
}

@media screen and (max-width: 768px) {
  #service {
    margin: 50px auto;
  }
}
#service .text {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  #service .text {
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 19px;
  }
}
#service .main-area {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #service .main-area {
    flex-direction: column;
  }
}
#service .main-area .img-area {
  display: flex;
  margin-right: 70px;
}

@media screen and (max-width: 768px) {
  #service .main-area .img-area {
    width: 100%;
  }
}
#service .main-area .img-area .img-left {
  padding-top: 123px;
  margin-right: 24px;
}

@media screen and (max-width: 768px) {
  #service .main-area .img-area .img-left {
    margin-right: 15px;
    padding-top: 73px;
  }
}
#service .main-area .text-area {
  padding-top: 94px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #service .main-area .text-area {
    padding-top: 40px;
  }
}
#service .main-area .text-area .bg-text {
  font-size: 96px;
  font-weight: bold;
  line-height: 1.2;
  color: #f0f0f0;
  right: 0px;
}

@media screen and (max-width: 768px) {
  #service .main-area .text-area .bg-text {
    font-size: 70px;
    text-align: center;
  }
}
#service .main-area .text-area .front-text {
  position: absolute;
  top: 160px;
  right: 70px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #service .main-area .text-area .front-text {
    top: 80px;
    text-align: center;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
#service .main-area .text-area .front-text .title {
  max-width: 214px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 2.2px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #service .main-area .text-area .front-text .title {
    font-size: 11px;
    text-align: center;
    max-width: 180px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    margin-bottom: 15px;
  }
}
#service .main-area .text-area .front-text .web {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  #service .main-area .text-area .front-text .web {
    font-size: 34px;
    text-align: center;
  }
}
#service .main-area .text-area .front-text .web::after {
  content: "×";
  display: block;
}

#service .main-area .text-area .front-text .wordpress::after {
  display: none;
}

#service .info-area {
  padding-top: 165px;
}

@media screen and (max-width: 768px) {
  #service .info-area {
    padding-top: 150px;
    margin-bottom: 50px;
  }
}
#service .info-area .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 110px;
}

@media screen and (max-width: 768px) {
  #service .info-area .item {
    flex-direction: column;
    margin-bottom: 70px;
  }
}
#service .info-area .item:last-child {
  margin-bottom: 0;
}

#service .info-area .item img {
  width: 35%;
}

@media screen and (max-width: 768px) {
  #service .info-area .item img {
    width: 100%;
  }
}
#service .info-area .item .content {
  padding-top: 70px;
  width: 55%;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #service .info-area .item .content {
    width: 100%;
    padding-top: 30px;
  }
}
#service .info-area .item .content .title .number {
  font-size: 41px;
  margin-right: 14px;
}

@media screen and (max-width: 768px) {
  #service .info-area .item .content .title .number {
    font-size: 28px;
    margin-right: 9px;
  }
}
#service .info-area .item .content .title .text {
  font-size: 28px;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  #service .info-area .item .content .title .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #service .info-area .item .content .title .text .paragraph {
    font-size: 11px;
  }
}
#service .info-area .item-revers {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  #service .info-area .item-revers {
    flex-direction: column;
  }
}
#works {
  background-image: url(../../../img/works-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}

#works .sec-title {
  text-align: center;
  padding-top: 80px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #works .sec-title {
    padding-top: 60px;
    margin-bottom: 40px;
  }
}
#works .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 90%;
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #works .container {
    flex-direction: column;
  }
}
#works .container .item {
  width: 48%;
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  #works .container .item {
    width: 100%;
    margin-bottom: 32px;
  }
}
#works .container .item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#works .container .item .text-area {
  background-color: #fff;
  padding: 40px 0 40px 30px;
}

#works .container .item .text-area .coding {
  background-color: #80b3d3;
  color: #fff;
  display: inline-block;
  padding: 6px 22px;
  border-radius: 43px;
  margin-bottom: 15px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  #works .container .item .text-area .coding {
    font-size: 10px;
    padding: 4px 15px;
  }
}
#works .container .item .text-area .design {
  background-color: #d38080;
}

#works .container .item .text-area .title {
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #works .container .item .text-area .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#works .container .item .text-area .text {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #works .container .item .text-area .text {
    font-size: 12px;
  }
}
#works .container .btn {
  margin: auto;
  padding: 20px 90px;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #works .container .btn {
    margin-top: 30px;
    font-size: 20px;
    padding: 10px 64px;
  }
}
.navigation .screen-reader-text {
  display: none;
}

.nav-links {
  align-items: center;
  justify-content: center;
  padding-bottom: 74px;
  text-align: center;
}

.nav-links .next {
  display: none;
}

.nav-links .page-numbers {
  padding: 10px;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: solid 2px #000;
  margin-right: 15px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.nav-links .page-numbers:last-child {
  margin-right: 0;
}

.nav-links .page-numbers a {
  width: 100%;
  display: block;
  text-align: center;
}

.nav-links .current {
  background-color: #000;
  color: #fff;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: solid 2px #000;
  margin-right: 15px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

#contact {
  background-color: #fff;
  width: 100%;
  height: auto;
}

#contact .content {
  text-align: center;
  padding: 80px 0;
}

#contact .content .title {
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #contact .content .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
#contact .content .text {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  #contact .content .text {
    font-size: 13px;
    max-width: 190px;
    margin: auto;
    margin-bottom: 25px;
  }
}
#contact .content .btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #contact .content .btn {
    font-size: 15px;
    padding: 10px 23px;
  }
}
#footer {
  background-color: #000;
  width: 100%;
  height: auto;
}

#footer a {
  color: #fff;
}

#footer .content {
  text-align: center;
  padding: 70px 0 40px;
  max-width: 90%;
  width: 1100px;
  margin: 0 auto;
}

#footer .content .logo {
  font-size: 40px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #footer .content .logo {
    font-size: 37px;
    margin-bottom: 38px;
  }
}
#footer .content .footer-menu {
  display: flex;
  margin: 0 auto;
  max-width: 410px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #footer .content .footer-menu {
    max-width: 300px;
  }
}
#footer .content .footer-menu li {
  font-size: 22px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #footer .content .footer-menu li {
    font-size: 17px;
    margin-bottom: 38px;
  }
}
#footer .copyright {
  color: #fff;
  font-size: 16px;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  #footer .copyright {
    font-size: 11px;
  }
}
#page-top {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: solid 1px #121212;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  display: none;
}

@media screen and (max-width: 768px) {
  #page-top {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 20px;
  }
}
#page-top::before {
  content: "";
  width: 1.5px;
  height: 29px;
  background-color: #121212;
  position: fixed;
  right: 55px;
  bottom: 38px;
}

@media screen and (max-width: 768px) {
  #page-top::before {
    height: 30px;
    right: 34px;
    bottom: 28px;
  }
}
#page-top::after {
  content: "";
  width: 1.5px;
  height: 12px;
  background-color: #121212;
  transform: skew(45deg);
  position: fixed;
  right: 49px;
  bottom: 56px;
}

@media screen and (max-width: 768px) {
  #page-top::after {
    height: 10px;
    right: 29px;
    bottom: 47px;
  }
}
.errow {
  padding-bottom: 80px;
  text-align: center;
  font-size: 20px;
}

.sub-header .inner {
  max-width: 90%;
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .sub-header .inner {
    padding-top: 13px;
    z-index: 50;
    position: absolute;
  }
}
.sub-header .inner .logo {
  font-size: 33px;
}

@media screen and (max-width: 768px) {
  .sub-header .inner .logo {
    font-size: 20px;
    padding: 15px;
  }
}
.sub-header .inner .logo a {
  color: #000;
}

@media screen and (max-width: 768px) {
  .sub-header .inner .logo a {
    color: #fff;
  }
}
.sub-header .inner .menu {
  width: 339px;
  display: flex;
  justify-content: space-between;
}

.sub-header .inner .menu li {
  font-size: 18px;
}

.sub-header .inner .menu a {
  color: #000;
}

@media screen and (max-width: 768px) {
  .sub-header .inner .menu a {
    color: #fff;
  }
}
.sub-header .box {
  padding: 0 1%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .sub-header .box {
    padding: 0;
  }
}
.sub-header .box .text-area {
  position: absolute;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-header .box .text-area .main-title {
  font-size: 55px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 0px;
  line-height: 32px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .sub-header .box .text-area .main-title {
    font-size: 30px;
  }
}
.sub-header .box .text-area .text {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sub-header .box .text-area .text {
    font-size: 14px;
  }
}
.sub-header .box img {
  width: 100%;
}

.work-page {
  padding-top: 100px;
}

#contact-page {
  margin: 100px 0 160px;
}

@media screen and (max-width: 768px) {
  #contact-page {
    margin: 100px 0 100px;
  }
}
#contact-page .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #contact-page .inner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 768px) {
  #contact-page .inner .content .text {
    font-size: 11px;
    max-width: 220px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
#contact-page .inner .contact-form {
  max-width: 950px;
  padding: 0 3%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

#contact-page .inner .contact-form .check-box {
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .check-box {
    flex-direction: column;
  }
}
#contact-page .inner .contact-form .check-box .title {
  font-size: 16px;
  margin-right: 90px;
  width: 30%;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .check-box .title {
    width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#contact-page .inner .contact-form .check-box .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#contact-page .inner .contact-form .check-box .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  margin-right: 30px;
}

#contact-page .inner .contact-form .check-box .wpcf7-form-control-wrap .wpcf7-form-control .first {
  margin-right: 50px;
}

#contact-page .inner .contact-form .check-box .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item-label {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .check-box .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item-label {
    font-size: 10px;
  }
}
#contact-page .inner .contact-form .contact-info {
  max-width: 950px;
}

#contact-page .inner .contact-form .contact-info .item {
  display: flex;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .contact-info .item {
    flex-direction: column;
  }
}
#contact-page .inner .contact-form .contact-info .item .name {
  font-size: 16px;
  text-align: left;
  width: 30%;
}

@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .contact-info .item .name {
    width: 100%;
    margin-bottom: 8px;
    font-size: 12px;
  }
}
#contact-page .inner .contact-form .contact-info .item input {
  height: 40px;
}

@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .contact-info .item input {
    width: 100%;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  #contact-page .inner .contact-form .contact-info .item textarea {
    width: 100%;
    height: 120px;
  }
}
.btn-send {
  margin-bottom: 80px;
}

.btn-send input {
  font-size: 24px;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  padding: 23px 130px;
}

@media screen and (max-width: 768px) {
  .btn-send input {
    font-size: 15px;
    padding: 20px 100px;
  }
}
.btn-send span {
  display: none;
}

.contact-info .item .wpcf7-form-control-wrap {
  width: 70%;
  text-align: left;
}

.contact-info .item .wpcf7-form-control-wrap input {
  width: 70%;
  padding: 10px;
}

.contact-info .item .wpcf7-form-control-wrap textarea {
  width: 70%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  /* グローバルナビゲーション */
  #header #navi {
    width: 100%;
    height: 500px;
    display: block;
    position: fixed;
    background-color: #000;
    top: 0;
    left: -300px;
    padding: 40px 24px;
    transition: all 0.5s;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
  }
  #header #navi .menu {
    flex-direction: column;
    padding: 46px 0 0 51px;
  }
  #header #navi .menu li {
    margin-bottom: 20px;
    font-size: 18px;
  }
  #header #navi .menu li a {
    color: #fff;
  }
  #header.open #navi {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  #header .hamburger {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: all 0.5s;
    z-index: 20;
    background-color: #1d1d1d;
  }
  #header .hamburger span {
    width: 30px;
    height: 2px;
    display: block;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    left: 10px;
    transition: all 0.5s;
  }
  #header .hamburger span:nth-child(1) {
    top: 14px;
  }
  #header .hamburger span:nth-child(2) {
    top: 24px;
  }
  #header .hamburger span:nth-child(3) {
    top: 34px;
  }
  #header.open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  #header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #header.open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */