@charset "UTF-8";
/** @format */
/** @format */
/*-------------------------------------------
共通クラス
-------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  letter-spacing: 0.1em;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a:hover {
  opacity: 0.85;
  transition: 0.3s;
}

.side-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background-color: #9CA3AF;
  z-index: 100;
}

/*-------------------------------------------
共通パーツの指定
-------------------------------------------*/
.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 26px 48px;
}
@media screen and (max-width: 900px) {
  .wrapper {
    padding: 0px 15px;
  }
}

.c-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 80px 100px 115px;
}
@media screen and (max-width: 900px) {
  .c-wrapper {
    padding: 0px 15px;
  }
}

/* headerとfooterメニュー */
nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: #1a1a1a;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  opacity: 0.6;
}

/* セクションタイトル */
.section-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}

.title-line {
  width: 300px;
  flex-shrink: 0;
  height: 2px;
  background-color: #000;
}

/* font */
.font {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}

/** @format */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/** @format */
/*-------------------------------------------
about
-------------------------------------------*/
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

/* 左 */
.about-text-block {
  max-width: 480px;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.about-text {
  font-size: 16px;
  line-height: 2;
  color: #6B7280;
  margin: 0;
}

/* 右 */
.about-visual {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.me {
  width: 200px;
  height: auto;
}

.me2 {
  width: 260px;
  height: auto;
}

/* スキルのところ */
.skill-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  font-size: 20px;
  font-weight: 500;
}

/* アイコンのところ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-icon {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.service-number {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}

.service-label {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .c-wrapper {
    padding: 60px 15px;
  }
  .about-content {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .about-text-block {
    max-width: 100%;
  }
  .about-visual {
    align-self: center;
  }
  .me {
    width: 150px;
  }
  .me2 {
    width: 150px;
  }
  .title-line {
    width: 140px;
  }
  .skill-list {
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 15px;
    margin-bottom: 40px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
  .service-icon {
    width: 90px;
    height: 90px;
  }
  .service-number,
  .service-label {
    font-size: 15px;
  }
}
/** @format */
/*-------------------------------------------
contact
-------------------------------------------*/
.contact {
  background-color: #fff;
  padding: 100px 80px 100px 115px;
}

/* 上 */
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info {
  width: 480px;
  max-width: 480px;
  flex-shrink: 0;
  padding-top: 40px;
}

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

.contact-text {
  font-size: 16px;
  line-height: 1.8;
  color: #6B7280;
  margin: 0;
}

.contact-image {
  flex: 1;
  min-width: 0;
}

.contact-image img {
  display: block;
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* フォーム */
.contact-form {
  max-width: 780px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: none;
  border-radius: 4px;
  background-color: #F0F0F0;
  font-size: 14px;
  color: #000;
  font-family: inherit;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #9CA3AF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

/* 送信ボタン */
.submit-btn {
  display: block;
  width: 350px;
  margin: 0 auto;
  padding: 16px;
  border: none;
  border-radius: 4px;
  background-color: #F0F0F0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
  background-color: #fff;
  color: #9CA3AF;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.08);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #6B7280;
  margin: 12px 0 0;
}

@media screen and (max-width: 900px) {
  .contact {
    padding: 60px 15px;
  }
  .contact-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .contact-info {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  .contact-image img {
    height: 170px;
  }
  .contact-form {
    max-width: 100%;
  }
  .form-group label {
    font-size: 16px;
  }
  .submit-btn {
    width: 100%;
  }
}
/* Contact Form 7 */
/* 入力欄のエラー表示 */
.wpcf7-form-control.wpcf7-not-valid {
  background-color: #fff;
  outline: 1px solid #000;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

/* 送信完了・エラーメッセージ */
.wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #9CA3AF;
  background-color: #F0F0F0;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  background-color: #fff;
  border: 2px solid #000;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #F0F0F0;
  border: 1px solid #9CA3AF;
}

/* 送信中はボタンを操作不可＆薄く */
.wpcf7 form.submitting .submit-btn {
  opacity: 0.5;
  pointer-events: none;
}

/* デフォルトのローディングスピナー位置調整（中央揃えの送信ボタンの下に表示） */
.wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

/** @format */
/** @format */
/*-------------------------------------------
firstview
-------------------------------------------*/
.first-view {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fv-image {
  display: block;
  width: 80%;
  height: auto;
  margin-left: auto;
}

.fv-logo {
  position: absolute;
  left: 5%;
  bottom: 6%;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  margin: 0;
  padding-left: 115px;
  z-index: 4;
}

@media screen and (max-width: 900px) {
  .fv-image {
    width: 100%;
  }
  .fv-logo {
    display: none;
  }
}
/*-------------------------------------------
後ろのやつ
-------------------------------------------*/
.fixedBg {
  height: 365px;
  background-image: url(../img/common/bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 900px) {
  .fixedBg {
    height: 180px;
    background-attachment: scroll;
  }
}
/*-------------------------------------------
works（トップページのスライダー）
-------------------------------------------*/
.works {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 100px 0 100px 115px;
}

/* 左*/
.works-info {
  max-width: 480px;
  flex-shrink: 0;
  padding-right: 20px;
  padding-top: 30px;
}

.works-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.works-text {
  font-size: 16px;
  line-height: 1.8;
  color: #6B7280;
  margin: 0;
}

/* スライドするところ */
.works-slider-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-end;
}

.works-slider {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.works-slider.dragging {
  cursor: grabbing;
}

.works-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}

/* カード */
.work-card {
  flex: 0 0 auto;
  width: 300px;
  height: 430px;
  border: 1px solid #D9D9D9;
}

.work-image {
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  background-color: #ddd;
}

.work-meta {
  padding: 20px 20px 0;
}

.work-title-tag {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.work-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}

.work-tag {
  display: inline-block;
  width: 100px;
  height: 16px;
  background-color: #D9D9D9;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 20px 6px 20px;
  border-radius: 20px;
  margin-right: 12px;
  text-align: right;
}

.work-duration {
  font-size: 13px;
  color: #6B7280;
  text-align: right;
  margin: 0 14px 0;
}

/* 矢印ボタン */
.slider-btn {
  position: absolute;
  bottom: 5px;
  left: 0;
  transform: translateX(-45%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}

.slider-btn:disabled {
  opacity: 0.2;
  cursor: default;
}

.view-more {
  width: 100%;
  text-align: right;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* works-controls */
.works-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 24px;
  flex-basis: 100%;
}
.works-controls .slider-btn {
  position: static;
  bottom: auto;
  left: auto;
  transform: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.works-controls .slider-btn:disabled {
  opacity: 0.2;
  cursor: default;
}
.works-controls .slider-btn.prev {
  display: none;
}
.works-controls .slider-btn.next-sp {
  display: none;
}
.works-controls .view-more {
  width: auto;
  margin-top: 0;
}

@media screen and (max-width: 900px) {
  .works-controls {
    justify-content: center;
    gap: 26px;
  }
  .works-controls .slider-btn.prev {
    display: inline-block;
  }
  .works-controls .slider-btn.next-sp {
    display: inline-block;
  }
  .works-controls .slider-btn.next-sp img {
    transform: rotate(180deg);
  }
  .works-controls .view-more {
    text-align: center;
  }
  .slider-btn.next-pc {
    display: none;
  }
  .works {
    flex-direction: column;
    align-items: stretch;
    padding: 60px 15px;
  }
  .works-slider-wrap {
    width: 100%;
  }
  .works-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .works-info {
    max-width: 100%;
    padding: 0 0 24px;
  }
  .work-card {
    width: 220px;
    height: auto;
  }
  .work-image {
    height: 260px;
  }
  .work-title-tag {
    align-items: flex-start;
  }
  .work-tag {
    margin-right: 0;
    padding-right: 0;
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
  .work-duration {
    margin-right: 0;
  }
  .work-meta {
    padding-right: 20px;
  }
  .work-title {
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}/*# sourceMappingURL=front-page.css.map */