@charset "UTF-8";
/*ブレイクポイントmixin



---------------------------------------*/
/* リセットCSS 

--------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

/* 基本フォントサイズとテキスト補正 

--------------------------------------- */
html {
  font-size: 2.6666666667vw;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) and (max-width: 1439px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}

/* 基本テキストスタイル 

  --------------------------------------- */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  color: #333;
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* box-sizingの初期化 

  --------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* aタグ・画像タグの基本スタイル 

  --------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

/* strong・emタグの初期化 

  --------------------------------------- */
strong,
em {
  font-weight: inherit;
  font-style: normal;
}

/* リストの初期スタイル 

  --------------------------------------- */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 見出し・段落のリセット 

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

p {
  margin: 0;
}

/* 表の初期スタイル 

  --------------------------------------- */
table {
  border-collapse: collapse;
  width: 100%;
}

/* aタグ内のimg回り込み対策 

--------------------------------------- */
a img {
  vertical-align: bottom;
}

/* フォーム要素の初期スタイル（必要最低限） 

  --------------------------------------- */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

button {
  cursor: pointer;
}

/* その他の要素のリセット 

  --------------------------------------- */
dl,
dt,
dd {
  margin: 0;
}

figure {
  margin: 0;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* addressタグのスタイル初期化 

--------------------------------------- */
address {
  font-style: normal;
  line-height: inherit;
  color: inherit;
}

/*スマホのみ電話番号にリンクmax-width: pxは案件により変更する

---------------------------------------*/
.tellink {
  pointer-events: none;
}

@media screen and (max-width: 640px) {
  .tellink {
    pointer-events: auto;
  }
}
/*すべて大文字にする

---------------------------------------*/
.uppercase {
  text-transform: uppercase;
}

/* Header
--------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  height: 6rem;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1rem 2rem;
}
@media (min-width: 768px) {
  .header__container {
    max-width: 1440px;
    height: 12rem;
    margin-inline: auto;
    padding-inline: 3rem;
  }
}

.header__branding {
  width: 11rem;
  height: 100%;
}
@media (min-width: 768px) {
  .header__branding {
    width: 20rem;
  }
}

.header__logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 1rem;
}

.header__logo {
  width: 100%;
}

.header__nav {
  position: relative;
}

.header__menu-toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0;
}
@media (min-width: 768px) {
  .header__menu-toggle {
    display: none;
  }
}

.header__menu-toggle-line {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #333;
  transition: all 0.3s ease;
}

.header__menu-toggle[aria-expanded=true] .header__menu-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(0.7rem, 0.7rem);
}

.header__menu-toggle[aria-expanded=true] .header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle[aria-expanded=true] .header__menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.7rem, -0.7rem);
}

.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  padding: 8rem 2rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media (min-width: 768px) {
  .header__menu {
    position: unset;
    display: flex;
    gap: 2rem;
    width: 100%;
    height: auto;
    padding: 0;
    box-shadow: none;
    transform: none;
    transition: transform 0.3s ease;
    overflow-y: visible;
  }
}

.header__menu.active {
  transform: translateX(0);
}

.header__menu-item {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .header__menu-item {
    margin-bottom: 0;
  }
}

.header__menu-link {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  color: #333;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
@media (min-width: 768px) {
  .header__menu-link {
    padding: 3.4rem 1rem;
    font-size: 3.2rem;
  }
}
.header__menu-link::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #333, #666);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
@media (min-width: 768px) {
  .header__menu-link::before {
    bottom: 2.5rem;
    height: 3px;
  }
}
@media (any-hover: hover) {
  .header__menu-link:hover {
    color: #000;
    transform: translateY(-3px);
    opacity: 1;
  }
  .header__menu-link:hover::before {
    width: calc(100% - 2rem);
  }
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 共通パーツ
--------------------------------------- */
.section {
  margin-bottom: 6rem;
  scroll-margin-top: 8rem;
}
@media (min-width: 768px) {
  .section {
    margin-bottom: 15rem;
    scroll-margin-top: 14rem;
  }
}

.container {
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 12rem;
  }
}

.section__title {
  border-left: 5px solid #004576;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.section__title-en {
  display: inline-block;
  font-size: 1.6rem;
  border-bottom: 1px solid #004576;
}
@media (min-width: 768px) {
  .section__title-en {
    font-size: 2rem;
  }
}

.section__title-ja {
  display: block;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .section__title-ja {
    font-size: 3rem;
  }
}
.section__title-ja > span {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .section__title-ja > span {
    font-size: 1.6rem;
  }
}

.section__content-title {
  display: inline-block;
  font-size: 2rem;
  border-bottom: 1px solid #004576;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section__content-title {
    font-size: 2.5rem;
  }
}

.section__content-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .section__content-text {
    font-size: 1.8rem;
  }
}
.section__content-text:last-child {
  margin-bottom: 0;
}

.footer {
  padding-bottom: 5rem;
  text-align: center;
}

/* ヒーローセクション
--------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 37.5rem;
  overflow: hidden;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hero {
    margin-bottom: 8rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url("../images/hero_01.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  will-change: transform;
  animation: parallax 10s ease-in-out infinite alternate;
  -webkit-animation: parallax 10s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 2px 2px, 0 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
  z-index: 1;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero__title {
  font-size: 3rem;
  font-weight: 100;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 10px rgb(0, 0, 0);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.6rem;
  font-weight: 100;
  opacity: 0;
  text-shadow: 0 0 10px rgb(0, 0, 0);
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes parallax {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10%);
  }
}
/* Aboutセクション
--------------------------------------- */
.about__content-block:not(:last-child) {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .about__content-block {
    display: flex;
    gap: 3rem;
  }
  .about__content-block:last-child {
    flex-direction: row-reverse;
  }
}

.about__image-wrapper {
  position: relative;
  width: 17rem;
  height: 100%;
  display: block;
  margin-top: 2rem;
  border-radius: 34% 61% 56% 37%/41% 54% 50% 64%;
}
@media (min-width: 768px) {
  .about__image-wrapper {
    width: 27rem;
  }
}
.about__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 1;
  border-radius: inherit;
}
.about__image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 2px 2px, 0 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
  z-index: 1;
  border-radius: inherit;
}

.about__image-wrapper--right {
  margin-left: auto;
}
@media (min-width: 768px) {
  .about__image-wrapper--right {
    margin-left: unset;
  }
}

.about__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* Profileセクション
--------------------------------------- */
.profile__content {
  position: relative;
}

.profile__image-wrapper {
  position: absolute;
  width: 4.1rem;
  top: -0.6rem;
  left: 0.3rem;
}
@media (min-width: 768px) {
  .profile__image-wrapper {
    width: 6.9rem;
    top: 1.7rem;
    left: -0.8rem;
  }
}

@media (min-width: 768px) {
  .profile__content-intro {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 6rem;
  }
}

.profile__content-intro-image-wrapper {
  border-radius: 350%;
}
.profile__content-intro-image-wrapper img {
  display: block;
  width: 14.5rem;
  height: auto;
  border-radius: inherit;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .profile__content-intro-image-wrapper img {
    width: 18.5rem;
  }
}

.profile__content-item {
  font-size: 1.6rem;
  font-weight: bold;
  margin-block: 0.5rem;
  margin-left: 1.8rem;
}
@media (min-width: 768px) {
  .profile__content-item {
    font-size: 1.8rem;
    margin-left: 2rem;
  }
}
.profile__content-item > span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .profile__content-item > span {
    font-size: 1.4rem;
    margin-right: 0.8rem;
  }
}

.profile__content-text {
  width: 29.5rem;
  margin-inline: auto;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .profile__content-text {
    width: 102.2rem;
    font-size: 1.8rem;
    margin-left: 2rem;
  }
}
.profile__content-text:not(:last-child) {
  margin-bottom: 1.2rem;
}

.profile__content-group {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 9.4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .profile__content-group {
    flex-direction: row;
    gap: 3rem;
  }
}

/* Skillセクション
--------------------------------------- */
.skill__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .skill__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
  }
}

.skill__item {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.skill__icon {
  font-size: 4rem;
  color: #004576;
}
@media (min-width: 768px) {
  .skill__icon {
    font-size: 5rem;
  }
}

.skill__text {
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .skill__text {
    font-size: 1.6rem;
  }
}

.skill__list-desc {
  margin-top: 3rem;
  background-color: rgba(240, 240, 240, 0.5);
  padding: 2rem 1.5rem 2rem 1.3rem;
  border-radius: 1rem;
  list-style: none;
}
@media (min-width: 768px) {
  .skill__list-desc {
    margin-top: 4rem;
    padding: 2.5rem;
    padding-left: 4rem;
  }
}

.skill__list-desc-item {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  padding-left: 3rem;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .skill__list-desc-item {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;
  }
}
.skill__list-desc-item:last-child {
  margin-bottom: 0;
}

.skill__list-desc-item i {
  position: absolute;
  top: 0.2rem;
  left: 0;
  color: #004576;
  font-size: 1.2em;
  line-height: 1;
}
@media (min-width: 768px) {
  .skill__list-desc-item i {
    font-size: 1.3em;
  }
}

/* Worksセクション
--------------------------------------- */
.works__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .works__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.works__item {
  list-style: none;
}

.works__card {
  display: block;
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.works__card-image {
  width: 100%;
}

.works__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
}

.works__card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.5rem;
}
@media (min-width: 768px) {
  .works__card-content {
    padding: 2rem;
    min-height: 8rem;
  }
}

.works__card-title {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .works__card-title {
    font-size: 2rem;
  }
}

.works__empty-message {
  font-size: 1.6rem;
  text-align: center;
  color: #666;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .works__empty-message {
    font-size: 1.8rem;
    padding: 4rem 0;
  }
}

.works__others {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .works__others {
    margin-top: 4rem;
  }
}

.works__others-list {
  list-style: none;
  margin-top: 1rem;
  background-color: rgba(240, 240, 240, 0.5);
  padding: 2rem 1.5rem 2rem 1.3rem;
  border-radius: 1rem;
}

.works__others-item {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  padding-left: 3rem;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .works__others-item {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;
  }
}
.works__others-item:last-child {
  margin-bottom: 0;
}

.works__others-item i {
  position: absolute;
  top: 0.2rem;
  left: 0;
  color: #004576;
  font-size: 1.2em;
  line-height: 1;
}
@media (min-width: 768px) {
  .works__others-item i {
    font-size: 1.3em;
  }
}

/* Contactセクション
--------------------------------------- */
.contact-form {
  max-width: 60rem;
}

.contact-form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000;
}
@media (min-width: 768px) {
  .contact-form__label {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}

.contact-form__field {
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-form__field {
    margin-bottom: 2.5rem;
  }
}
.contact-form__field:last-child {
  margin-bottom: 0;
}

.contact-form__input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  background-color: #fff;
  color: #000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .contact-form__input {
    padding: 1.2rem 1.8rem;
    font-size: 1.8rem;
  }
}
.contact-form__input:focus {
  outline: none;
  border-color: #004576;
  box-shadow: 0 0 0 3px rgba(0, 69, 118, 0.1);
}
.contact-form__input::-moz-placeholder {
  color: #999;
}
.contact-form__input::placeholder {
  color: #999;
}

.contact-form__textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  background-color: #fff;
  color: #000;
  resize: vertical;
  min-height: 12rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .contact-form__textarea {
    padding: 1.2rem 1.8rem;
    font-size: 1.8rem;
    min-height: 15rem;
  }
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #004576;
  box-shadow: 0 0 0 3px rgba(0, 69, 118, 0.1);
}
.contact-form__textarea::-moz-placeholder {
  color: #999;
}
.contact-form__textarea::placeholder {
  color: #999;
}

.contact-form__submit {
  display: block;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #004576;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .contact-form__submit {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    margin: 1.5rem auto 0;
  }
}
.contact-form__submit:hover {
  background-color: #003355;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 69, 118, 0.2);
}
.contact-form__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 69, 118, 0.2);
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ok,
.wpcf7-mail-sent-ng,
.wpcf7-spam {
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  border-radius: 0.4rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .wpcf7-validation-errors,
  .wpcf7-mail-sent-ok,
  .wpcf7-mail-sent-ng,
  .wpcf7-spam {
    font-size: 1.6rem;
    padding: 1.2rem 1.8rem;
  }
}

.wpcf7-validation-errors {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #28a745;
  color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-spam {
  background-color: #f8d7da;
  border: 1px solid #dc3545;
  color: #721c24;
}

/* Works Singleセクション
--------------------------------------- */
.works-single {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .works-single {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.works-single__article {
  max-width: 900px;
  margin: 0 auto;
}

.works-single__header {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .works-single__header {
    margin-bottom: 4rem;
  }
}

.works-single__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .works-single__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.works-single__date {
  font-size: 1.4rem;
  color: #666;
  display: block;
}
@media (min-width: 768px) {
  .works-single__date {
    font-size: 1.6rem;
  }
}

.works-single__image-wrapper {
  margin-bottom: 3rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .works-single__image-wrapper {
    margin-bottom: 4rem;
  }
}

.works-single__image {
  display: block;
  width: 100%;
  height: auto;
}

.works-single__content {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .works-single__content {
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }
}
.works-single__content p {
  margin-bottom: 1.5rem;
}
.works-single__content p:last-child {
  margin-bottom: 0;
}
.works-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.works-single__footer {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .works-single__footer {
    padding-top: 4rem;
  }
}

.works-single__custom-fields {
  margin-top: 4rem;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .works-single__custom-fields {
    margin-top: 5rem;
    padding-top: 5rem;
  }
}

.works-single__field {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .works-single__field {
    margin-bottom: 4rem;
  }
}
.works-single__field:last-child {
  margin-bottom: 0;
}

.works-single__field-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #004576;
}
@media (min-width: 768px) {
  .works-single__field-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.works-single__field-content {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .works-single__field-content {
    font-size: 1.8rem;
  }
}

.works-single__field-paragraph {
  margin-bottom: 1.5rem;
}
.works-single__field-paragraph:last-child {
  margin-bottom: 0;
}

.works-single__site-link {
  color: #004576;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
.works-single__site-link:hover {
  opacity: 0.7;
}
.works-single__site-link i {
  font-size: 1.2rem;
}

.works-single__basic-auth {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.works-single__basic-auth-title {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border-bottom: 1px solid #004576;
}
@media (min-width: 768px) {
  .works-single__basic-auth-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.works-single__basic-auth-content {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .works-single__basic-auth-content {
    font-size: 1.8rem;
  }
}
.works-single__basic-auth-content .works-single__field-paragraph {
  margin-bottom: 0;
}

.works-single__field-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.works-single__note-link {
  color: #004576;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
.works-single__note-link:hover {
  opacity: 0.7;
}
.works-single__note-link i {
  font-size: 1.2rem;
}

.works-single__back-link {
  display: inline-block;
  font-size: 1.4rem;
  color: #004576;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .works-single__back-link {
    font-size: 1.6rem;
  }
}
.works-single__back-link:hover {
  opacity: 0.7;
}

/* 404 Error Page
--------------------------------------- */
.error-404 {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 8rem 0;
    margin-bottom: 15rem;
  }
}

.error-404__title {
  font-size: 8rem;
  font-weight: 100;
  line-height: 1;
  color: #004576;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 12rem;
    margin-bottom: 3rem;
  }
}

.error-404__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .error-404__text {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.error-404__text:last-child {
  margin-bottom: 0;
}

.error-404__link {
  display: inline-block;
  font-size: 1.6rem;
  color: #004576;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: opacity 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .error-404__link {
    font-size: 1.8rem;
  }
}
@media (any-hover: hover) {
  .error-404__link:hover {
    opacity: 0.8;
    color: #003355;
  }
}/*# sourceMappingURL=main.css.map */