@charset "UTF-8";
/* -------------------------------------------*/ /* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1152px;
  --content-both_space: 15px;
  --header_height:90px;
  --waves_height: 60px;
}
@media screen and (max-width: 1023px) {
  :root {
    --content-both_space: 15px;
    --header_height:65px;
    --waves_height: 20px;
  }
}
/* -------------------------------------------*/
/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
  body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  scroll-padding-top: 80px;
  font-size: 62.5%;
}
@media screen and (max-width: 1140px) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 52%;
  }
}

body {
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  color: #0F0B14;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

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

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  border: none;
  border: none;
  margin: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

@media not all and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* -------------------------------------------*/
/* -------------------------------------------*/
.btn._primary {
  /* スタイル用 */
  display: block;
  width: 191px;
  height: 63px;
  margin: 70px 0 auto auto;
  position: relative;
  background-color: #00028B;
  transition: 0.3s;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
@media screen and (max-width: 480px) {
  .btn._primary {
    margin: 30px 0 auto auto;
    width: 160px;
    height: 50px;
  }
}
.btn._primary::before, .btn._primary::after {
  position: absolute;
  top: 70%;
  right: 22px;
  height: 2px;
  background: #FFFCEC;
  content: "";
}
.btn._primary::before {
  width: 40px;
  transform: translateY(-50%);
}
.btn._primary::after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.btn._primary:hover::before {
  right: 12px;
  transition: right 0.4s ease;
}
.btn._primary:hover::after {
  right: 12px;
  transition: right 0.4s ease;
}
.btn._page-link a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 225px;
  padding: 10px 0px 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .btn._page-link a {
    max-width: 200px;
    padding-left: 0;
  }
}
.btn._page-link a._to-graphic {
  max-width: 235px;
  padding: 10px 0px 10px 45px;
}
.btn._page-link a:before, .btn._page-link a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.btn._page-link a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
  .btn._page-link a:before {
    left: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .btn._page-link a:before {
    left: 0.95rem;
  }
}
.btn._page-link a:after {
  left: 0;
  background: #D81E5B;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .btn._page-link a:after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.btn._page-link a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}
.btn._page-link a:hover span {
  color: #fff;
}
.btn._page-link a:hover:before {
  left: 2rem;
}
.btn._page-link a:hover:after {
  right: 0;
  width: 100%;
}

.back-to-top {
  position: absolute;
  height: 60px;
  width: 60px;
  bottom: 0.5%;
  right: 2%;
  background-color: #D81E5B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .back-to-top {
    height: 50px;
    width: 50px;
  }
}
.back-to-top-text {
  font-size: 0.7rem;
}
@media screen and (max-width: 767px) {
  .back-to-top-text {
    font-size: 0.5rem;
  }
}

.back-to-top-arrow {
  height: 14px;
  width: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(10%) rotate(-45deg);
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .back-to-top-arrow {
    height: 10px;
    width: 10px;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
@media screen and (max-width: 361px) {
  html {
    font-size: 90%;
  }
}

body {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

a {
  transition: all 0.3s;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.content {
  position: relative;
  font-family: "Poppins", sans-serif;
}

.wrapper {
  padding-top: 73px;
}

.section {
  padding: 88px 0;
}
@media screen and (max-width: 1023px) {
  .section {
    padding: 72px 0;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}

.section:nth-of-type(odd) {
  background-color: #E8EBF1;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  font-family: "Poppins", sans-serif;
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
.header-logo {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 20px;
  letter-spacing: 0.05em;
}
.header-logo a {
  color: #0F0B14;
}
.header .gnav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.header .gnav-item:not(:last-child) {
  margin-right: 20px;
}
.header .gnav-item a {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: 0.3s;
  letter-spacing: 0.05em;
  color: #0F0B14;
}
.header .gnav-item a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  transition: 0.3s;
  transform: translateX(-50%);
  background-color: #A7AABD;
}
.header .gnav-item a:hover:after {
  width: 100%;
}
.header .gnav-item a:hover {
  color: #D81E5B;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  padding: 30px;
  background-color: #2A324B;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px;
  }
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/* -------------------------------------------*/
#subnav {
  display: none;
  position: fixed;
  position: -webkit-fixed;
  width: 100%;
  max-width: 6vw;
  top: 100px;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 1023px) {
  #subnav .subnav-list {
    display: none;
  }
}
#subnav .subnav-list li {
  margin-bottom: 25px;
}
#subnav .subnav-list li:last-child {
  margin-bottom: 0;
}
#subnav .subnav-list li a {
  font-size: 0.8rem;
  color: #0F0B14;
}
#subnav .subnav-list li a:hover {
  color: #A7AABD;
}

/*--------------------------------
 見出し
---------------------------------*/
.title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 64px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #0F0B14;
}
@media screen and (max-width: 1023px) {
  .title {
    font-size: 1.5rem;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  .lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 0.9rem;
  }
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 98vh;
  text-align: center;
  background: url(/img/img-fv.jpg) no-repeat center/contain;
  margin-top: -30px;
  margin-bottom: -22px;
}
@media screen and (max-width: 1023px) {
  .fv {
    height: 50vh;
    margin-top: -10px;
    margin-bottom: -22px;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 40vh;
    margin-top: -10px;
  }
}
.fv-container {
  padding: 0 40px;
  /*スクロールダウン全体の場所*/
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
}
@media screen and (max-width: 767px) {
  .fv-container {
    padding: 0 20px;
  }
}
.fv-container .scroll-down {
  /*描画位置*/
  position: absolute;
  top: 80%;
  left: 50%;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .fv-container .scroll-down {
    padding: 0 20px;
    top: 84%;
  }
}
@media screen and (max-width: 767px) {
  .fv-container .scroll-down {
    padding: 0 20px;
    top: 95%;
  }
}
.fv-container .scroll-down span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #1A1423;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}
.fv-container .scroll-down:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1A1423;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 767px) {
  .fv-container .scroll-down:before {
    left: -2px;
    width: 6px;
    height: 6px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.fv-container .scroll-down:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #1A1423;
}
.fv-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .fv-title {
    font-size: 30px;
  }
}
.fv-subtitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .fv-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.fv-text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .fv-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/*--------------------------------
 Works
---------------------------------*/
.works-container {
  display: flex;
  justify-content: center;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .works-container {
    display: block;
    margin-bottom: 0;
  }
}
.works-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  height: 250px;
  margin-bottom: 40px;
  color: #333;
  padding: 1rem;
}
@media screen and (max-width: 1023px) {
  .works-item {
    max-width: 350px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .works-item {
    height: 130px;
    margin: 0 auto;
    margin-bottom: 0;
  }
}
.works-item._web {
  color: #fff;
  background-color: #2A324B;
}
.works-item._web:hover {
  color: #0F0B14;
  background-color: #A7AABD;
}
.works-item._graphic {
  background-color: #F5C3C2;
}
.works-item._graphic:hover {
  color: #fff;
  background-color: #D81E5B;
}
.works-title {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .works-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .works-title {
    font-size: 1.1rem;
  }
}
.works-info {
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .works-info {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .works-info {
    font-size: 0.7rem;
  }
}
.works-img img {
  max-width: 100%;
  vertical-align: top;
}

.hover-action:hover {
  transition: all 0.3s;
  transform: translate(0, -4px);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px;
}
.hover-action._opacity:hover {
  opacity: 0.7;
}

/*--------------------------------
 Skill
---------------------------------*/
.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}
@media screen and (max-width: 767px) {
  .skill-list {
    display: block;
    margin-bottom: 0;
  }
}
.skill-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 45%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: solid gray 1px;
}
@media screen and (max-width: 767px) {
  .skill-item {
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .skill-item :last-child {
    margin-bottom: 0;
  }
}
.skill-img {
  width: 80px;
  height: 80px;
  margin-right: 25px;
}
@media screen and (max-width: 1023px) {
  .skill-img {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .skill-img {
    width: 56px;
    height: 56px;
  }
}
.skill-img._chord {
  background-image: url(../../img/icon-program.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-img._wp {
  background-image: url(../../img/icon-wp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-img._js {
  background-image: url(../../img/icon-js.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-img._mouse {
  background-image: url(../../img/icon-mouse2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-img._brush {
  background-image: url(../../img/icon-brush.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-img._art {
  background-image: url(../../img/icon-palette.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-img._pc {
  background-image: url(../../img/icon-pc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.skill-body {
  flex: 1;
}
.skill-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .skill-name {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}
.skill-text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .skill-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

/*--------------------------------
 About
---------------------------------*/
.profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .profile {
    display: block;
  }
}
.profile-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .profile-title {
    text-align: center;
  }
}
.profile .name-small {
  font-size: 1rem;
  font-weight: 400;
}
.profile-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center; /* 垂直中心 */
}
@media screen and (max-width: 767px) {
  .profile-subtitle {
    font-size: 1.1rem;
  }
}
.profile-subtitle:after {
  border-top: 1px solid;
  content: "";
  width: 12em; /* 線の長さ */
}
@media screen and (max-width: 767px) {
  .profile-subtitle:after {
    width: 9em; /* 線の長さ */
  }
}
.profile-subtitle:after {
  margin-left: 1em; /* 文字の右隣 */
}
@media screen and (max-width: 767px) {
  .profile-subtitle:after {
    margin-left: 1.2em; /* 文字の右隣 */
  }
}
.profile-text {
  font-size: 0.9rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .profile-text {
    font-size: 0.85rem;
    line-height: 1.8;
  }
}
.profile-text:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .profile-text:not(:last-child) {
    margin-bottom: 25px;
  }
}
.profile-img {
  width: 30%;
  margin-right: 70px;
}
@media screen and (max-width: 767px) {
  .profile-img {
    width: 150px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
.profile-body {
  flex: 1;
}

/*--------------------------------
 Contact
---------------------------------*/
.contact {
  text-align: center;
}
.contact-item {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact-item {
    font-size: 0.9rem;
  }
}
.contact-item:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .contact-item:not(:last-child) {
    margin-right: 0;
  }
}
.contact-text {
  margin-top: 10px;
}

/*--------------------------------
 Works
---------------------------------*/
.works-list-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .works-list-title {
    font-size: 1.6rem;
  }
}
.works-list-title._second-title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 45px;
  color: #fff;
  /*文字色*/
  padding: 0.5em 1.2em 0.5em 0.5em;
  /*文字周りの余白*/
  display: inline-block;
  /*おまじない*/
  line-height: 1.3;
  /*行高*/
  background: #1A1423;
  /*背景色*/
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;
  /*左側の角を丸く*/
}
@media screen and (max-width: 1023px) {
  .works-list-title._second-title {
    font-size: 0.9rem;
  }
}
.works-list-title._second-title:before {
  content: "●";
  color: white;
  margin-right: 8px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .works-list-title._second-title:before {
    font-size: 0.7rem;
  }
}
.works-list-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .works-list-subtitle {
    font-size: 0.8rem;
    margin-bottom: 64px;
  }
}
.works-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 56px 3%;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .works-list-container {
    gap: 48px 0;
  }
}
.works-list-container._graphic {
  gap: 56px 1.333%;
}
@media screen and (max-width: 1023px) {
  .works-list-container._graphic {
    gap: 24px 32px;
  }
}
@media screen and (max-width: 767px) {
  .works-list-container._graphic {
    display: block;
  }
}
.works-list-item {
  width: 31.33%;
  color: #0F0B14;
}
@media screen and (max-width: 767px) {
  .works-list-item {
    width: 100%;
  }
}
.works-list-item:nth-child(3n+1):last-child {
  margin-right: 65%;
}
@media screen and (max-width: 1023px) {
  .works-list-item:nth-child(3n+1):last-child {
    margin-right: 0;
  }
}
.works-list-item._graphic {
  width: 24%;
}
@media screen and (max-width: 1023px) {
  .works-list-item._graphic {
    width: 47.666%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .works-list-item._graphic {
    width: 100%;
    display: block;
    margin-bottom: 40px;
  }
}
.works-list-item._graphic:hover {
  opacity: 1;
}
.works-list-item._graphic:nth-of-type(3n) {
  margin-right: 0;
}
.works-list-item._graphic:nth-child(4n+2):last-child {
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .works-list-item._graphic:nth-child(4n+2):last-child {
    margin-right: 0;
  }
}
.works-list-item._graphic:nth-child(4n+1):last-child {
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .works-list-item._graphic:nth-child(4n+1):last-child {
    margin-right: 0;
  }
}
.works-list-img img {
  margin-bottom: 3px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid #e0e0e0;
}
.works-list-name {
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .works-list-name {
    margin-bottom: 0.5rem;
  }
}
.works-list-info {
  font-size: 0.6rem;
  margin-top: 5px;
}

.article {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .article {
    padding: 50px 0;
  }
}
.article-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.article-title {
  margin-bottom: 30px;
  text-align: center;
}
.article-img {
  margin-right: 20px;
}
.article-img:last-child {
  margin-right: 0;
}
.article-img._graphic {
  width: 30%;
}
.article-img-box {
  display: flex;
  justify-content: center;
}
.article-img-box._graphic {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.article-img-box._graphic img {
  border: solid 1px #efefef;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.article-body h3 {
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .article-body h3 {
    font-size: 16px;
    padding-left: 0.8em;
  }
}
.article-body h3:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .article-body h3:not(:first-child) {
    margin-top: 30px;
  }
}
.article-body h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  border-radius: 3px;
  background-color: #1A1423;
}
.article-body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .article-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
.article .home-link {
  text-align: center;
}

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