@charset "UTF-8";
/* リキッドレイアウト対応 */
.color-blue {
  color: #45c4f2;
}

/* 
    @include flex();
    */
/* 
    @include flex-center();
*/
.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

.u-small {
  display: none;
}
@media screen and (max-width: 400px) {
  .u-small {
    display: block;
  }
}

.u-mbs__120 {
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
}
@media screen and (max-width: 768px) {
  .u-mbs__120 {
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
  }
}

.u-mbs__100 {
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 768px) {
  .u-mbs__100 {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.u-mbs__35 {
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .u-mbs__35 {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.u-mbs__20 {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.u-mbe__50 {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media screen and (max-width: 768px) {
  .u-mbe__50 {
    -webkit-margin-after: 1.5625rem;
            margin-block-end: 1.5625rem;
  }
}

.u-mbe__35 {
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .u-mbe__35 {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}

.u-mbe__20 {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}

.u-mbe__10 {
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
}

.u-pis__32 {
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
}
@media screen and (max-width: 768px) {
  .u-pis__32 {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

.u-orange {
  color: #ff8400;
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  color: inherit;
  cursor: pointer;
}

/* ホバー 
a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  &:hover {
    opacity: 0.8;
  }
}
*/
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #333333;
  overflow-x: clip;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/* ハンバーガーボタン
------------------------------------------------ */
@media screen and (max-width: 768px) {
  .c-hamburger {
    display: block;
    width: 1.5625rem;
    height: 1.5625rem;
    border-radius: 50%;
    z-index: 120;
    padding: 0 0;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.0625rem;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #333333;
  transition: 0.3s ease-in-out;
}
.c-hamburger.open span {
  pointer-events: auto;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  display: none;
}

.c-hamburger span:nth-child(3) {
  top: 0.3125rem;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: 0.375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/***************************************
front
****************************************/
.l-inner {
  width: min(100% - 5rem, 93.8125rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}

.l-inner__inner {
  width: min(100% - 5rem, 92.5rem);
  margin-inline: auto;
  display: flex;
  gap: 2.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner__inner {
    width: calc(100% - 40px);
    flex-direction: column;
  }
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.drawer {
  display: none;
}

.drawer.open {
  display: block;
  pointer-events: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: 80;
  transition: all 0.3s;
  background-color: rgba(33, 33, 33, .7);
  backdrofilter: blur(10px);
  color: #ffffff;
  -webkit-animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1);
          animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.drawer__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drawer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem;
}

.drawer__nav-link {
  font-size: 1.25rem;
  position: relative;
}
.drawer__nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .drawer__nav-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.drawer__sns {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.drawer__sns-link {
  display: block;
  width: 1.25rem;
}
.drawer__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .drawer__sns-link:hover {
    opacity: 0.5;
  }
}

.footer {
  width: 100%;
  padding: 3.125rem 1.25rem 0.625rem;
}
.footer__message {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__message {
    font-size: 1.25rem;
  }
}
.footer__sns {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    justify-content: center;
  }
}
.footer__sns-link {
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
}
.footer__sns-link:last-child {
  width: 3.125rem;
}
.footer__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.5;
  }
}
.footer .footer__copyright {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-family: "Cinzel", serif;
  font-size: 0.9375rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .footer__copyright {
    font-size: 0.75rem;
  }
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5rem;
  }
}
.header__inner {
  width: 100%;
  padding-inline: 2.5rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    display: none;
  }
}
.header__logo {
  display: block;
  width: 12.5rem;
  height: 3.75rem;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.5;
  }
}
.header__title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Cinzel", serif;
}
.header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cinzel", serif;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #333333;
}
.header__nav-item {
  position: relative;
}
.header__nav-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #333333;
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .header__nav-item:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@media only screen and (min-width: 768px) {
  .header__sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__sp {
    width: calc(100% - 2.5rem);
    height: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3125rem;
  }
}

.header__slogo-link {
  display: block;
  width: 12.5rem;
}
@media (any-hover: hover) {
  .header__slogo-link:hover {
    opacity: 0.5;
  }
}

.header__slogo-title {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Cinzel", serif;
}

/* -----------------------------------------------------------------
    フロントページ
----------------------------------------------------------------- */
.bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
  background-image: url(../images/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fv {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.fv__inner {
  position: relative;
  overflow-x: hidden;
}
.fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.fv__heading {
  position: absolute;
  top: 55%;
  left: 74.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .fv__heading {
    top: 63%;
    left: 70%;
    font-size: 1.875rem;
  }
}
.fv__heading > * {
  display: block;
  white-space: nowrap;
}
.fv__description {
  position: absolute;
  bottom: 0;
  right: 2.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  font-weight: bold;
  color: #333333;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__description {
    bottom: 1.25rem;
    left: 1.25rem;
    font-size: 0.9375rem;
    color: #ffffff;
  }
}
.fv__scroll {
  position: absolute;
  bottom: 10%;
  left: 0.625rem;
}
.fv__scroll-text {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  white-space: nowrap;
  gap: 0.625rem;
}
.fv__scroll-text::before, .fv__scroll-text::after {
  content: "";
  width: 0.125rem;
  height: 5.625rem;
  display: block;
}
@media screen and (max-width: 400px) {
  .fv__scroll-text::before, .fv__scroll-text::after {
    height: 3.125rem;
  }
}
.fv__scroll-text::after {
  background-color: #ffffff;
  -webkit-animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
          animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.skill {
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 1023px) {
  .skill {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .skill {
    height: 90vh;
  }
}
.skill__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  height: 100%;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .skill__inner {
    -webkit-margin-before: 6.25rem;
            margin-block-start: 6.25rem;
    width: 100%;
    max-width: 100%;
  }
}
.skill__title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.skill__title {
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .skill__title {
    font-size: 1.875rem;
  }
}
.skill__text {
  font-family: "Cinzel", serif;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .skill__text {
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}
.skill__item {
  width: 100%;
}
.skill__item-img {
  width: 12.5rem;
  height: 18.75rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .skill__item-img {
    width: 6.25rem;
    height: 12.5rem;
  }
}
.skill__item-img--html {
  top: 50%;
  left: 70%;
}
@media screen and (max-width: 768px) {
  .skill__item-img--html {
    top: 75%;
    left: 60%;
  }
}
.skill__item-img--css {
  top: 5%;
  left: 2%;
}
@media screen and (max-width: 400px) {
  .skill__item-img--css {
    top: 20%;
    left: 2%;
  }
}
.skill__item-img--js {
  top: 3%;
  left: 65%;
}
@media screen and (max-width: 400px) {
  .skill__item-img--js {
    top: 7%;
    left: 65%;
  }
}
.skill__item-img--php {
  top: 20%;
  right: 3%;
}
@media screen and (max-width: 768px) {
  .skill__item-img--php {
    top: 25%;
    right: 3%;
  }
}
.skill__item-img--wp {
  top: 25%;
  left: 15%;
}
@media screen and (max-width: 768px) {
  .skill__item-img--wp {
    top: 15%;
    left: 15%;
  }
}
@media only screen and (max-width: 500px) {
  .skill__item-img--wp {
    top: 20%;
  }
}
@media screen and (max-width: 400px) {
  .skill__item-img--wp {
    top: 30%;
    left: 18%;
  }
}
.skill__item-img--github {
  top: 0;
  left: 40%;
}
@media screen and (max-width: 400px) {
  .skill__item-img--github {
    top: -5%;
    left: 35%;
  }
}
.skill__item-img--figma {
  top: 60%;
  left: 40%;
}
@media screen and (max-width: 400px) {
  .skill__item-img--figma {
    top: 60%;
    left: 50%;
  }
}
.skill__item-img--adobe {
  top: 55%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .skill__item-img--adobe {
    top: 70%;
    left: 10%;
  }
}
.skill__item-img img {
  display: block;
  width: 100%;
  height: 12.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .skill__item-img img {
    height: 9.375rem;
  }
}

/* -----------------------------------------------------------------
    ワーク
----------------------------------------------------------------- */
.works {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-block: 6.25rem;
}
@media only screen and (max-width: 1023px) {
  .works {
    padding-block: 9.375rem;
  }
}
@media screen and (max-width: 768px) {
  .works {
    padding-block: 3.125rem;
  }
}
.works::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #333333;
  top: 0;
  z-index: -1;
}

.works__title-wrapper {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}

.works__title {
  width: -webkit-fit-content;
  width: fit-content;
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .works__title {
    font-size: 1.5625rem;
    white-space: nowrap;
  }
}

.works__text {
  width: -webkit-fit-content;
  width: fit-content;
  font-family: "Cinzel", serif;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #ffffff;
}

.works__inner {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: flex;
  width: 500vw;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .works__inner {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    gap: 3.125rem;
  }
}

.works__item {
  width: 0 0 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
  white-space: nowrap;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .works__item {
    width: 0 0 100vw;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.625rem;
  }
}
@media (any-hover: hover) {
  .works__item:hover .works__item-img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.works__item-img {
  flex: 0 0 50%;
  overflow: hidden;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .works__item-img {
    flex: 0 0 auto;
    width: 100%;
    height: 9.375rem;
  }
}
@media screen and (max-width: 400px) {
  .works__item-img {
    height: 7.5rem;
  }
}
.works__item-img img {
  display: block;
  width: 100%;
  height: 31.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .works__item-img img {
    height: 9.375rem;
  }
}
@media screen and (max-width: 400px) {
  .works__item-img img {
    height: 7.5rem;
  }
}

.works__item-content {
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
}

.works__item-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works__item-title {
    font-size: 1.25rem;
  }
}

.works__item-text {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
.works__item-text > * {
  display: inline-block;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .works__item-text {
    font-size: 0.9375rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.works__item-list {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .works__item-list {
    font-size: 0.875rem;
  }
}

.works__item-list-item {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .works__item-list-item {
    font-size: 0.875rem;
  }
}
.works__item-list-item::before {
  content: "・";
  margin-right: 0.3125rem;
}

/***************************************
フロー
****************************************/
.flow {
  width: 100%;
  height: 100%;
  padding-block: 6.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 3.125rem;
  }
}
.flow__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding-inline: 1.875rem;
}
.flow__title-wrapper {
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}
.flow__title {
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
}

.flow__list {
  max-width: 55rem;
  margin: 0 auto;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.flow__item {
  border-bottom: 0.0625rem solid #444;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .flow__item {
    font-size: 0.875rem;
  }
}

.flow__step {
  cursor: pointer;
  padding: 1.5rem;
  color: #333333;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 400px) {
  .flow__step {
    padding: 1rem;
  }
}
.flow__step::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.0625rem;
  background-color: #333333;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.flow__step::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #333333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.flow__step.is-open::after {
  display: none;
}
.flow__step.is-open::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #333333;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.flow__detail {
  display: none;
  padding: 1.5rem;
  background: #333;
  color: #ddd;
}
@media screen and (max-width: 400px) {
  .flow__detail {
    padding: 1rem;
  }
}
.flow__detail.is-open {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
/* -----------------------------------------------------------------
    料金
----------------------------------------------------------------- */
.price {
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
  width: 100%;
  background-color: #333333;
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .price {
    padding-block: 3.125rem;
  }
}

.price__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding-inline: 1.875rem;
}

.price__title-wrapper {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}

.price__title {
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
}

.price__text {
  font-family: "Noto Serif JP", serif;
}

.price__item {
  width: min(100% - 3.125rem, 70.9375rem);
  margin-inline: auto;
  background-color: #ffffff;
  color: #333333;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  padding: 2.5rem 3.125rem 4.375rem;
}
@media screen and (max-width: 768px) {
  .price__item {
    width: 100%;
    padding: 5rem 1.875rem;
  }
}
@media screen and (max-width: 400px) {
  .price__item {
    padding: 3.125rem 1.25rem;
  }
}

.price__item-title-wrapper {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.price__item-wrapper {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 5rem;
}
@media screen and (max-width: 768px) {
  .price__item-wrapper {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.price__item-title {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
.price__item-title > span {
  display: inline-block;
}
.price__item-title .dot-line {
  flex-grow: 1;
  height: 0.1875rem;
  background-image: radial-gradient(circle, #333333 1.5px, transparent 1.5px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: center;
  margin: 0 0.6875rem 0.1875rem;
}
@media screen and (max-width: 768px) {
  .price__item-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    border-bottom: 0.0625rem solid #333333;
    padding-bottom: 1.25rem;
  }
  .price__item-title > span:first-child {
    color: #1a667d;
  }
}

/* -----------------------------------------------------------------
    プロフィール
----------------------------------------------------------------- */
.profile {
  width: 100%;
  position: relative;
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .profile {
    padding-block: 3.125rem;
  }
}
.profile__title {
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
}
.profile__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding-inline: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .profile__inner {
    flex-direction: column;
  }
}
.profile__item-img {
  flex: 1 1 50%;
  height: 34.375rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .profile__item-img {
    flex: 1 1 auto;
    height: 18.75rem;
  }
}
.profile__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile__item-content {
  flex: 1 1 50%;
}
.profile__item-title {
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile__item-title {
    font-size: 1.875rem;
  }
}
.profile__item-body {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
}
.profile__item-body-title {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .profile__item-body-title {
    font-size: 1.125rem;
  }
}
.profile__item-text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #333333;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .profile__item-text {
    font-size: 0.875rem;
  }
}
.profile__item-text > * {
  display: block;
}

/* -----------------------------------------------------------------
コンタクト
----------------------------------------------------------------- */
.contact {
  width: 100%;
  position: relative;
  padding-block: 6.25rem;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-block: 3.125rem;
  }
}
.contact__title {
  font-family: "Cinzel", serif;
  font-size: 2.8125rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 1.875rem;
  }
}
.contact__text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 0.8125rem;
  }
}
.contact__inner {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  padding: 3.125rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    width: calc(100% - 2.5rem);
    padding: 3.125rem 1.25rem;
  }
}
.contact__item {
  font-family: "Noto Serif JP", serif;
}
.contact__form-item {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
.contact__form-item:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.contact__form-label {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: inline-block;
  margin-block: 0.625rem;
}
.contact__form-input {
  width: 100%;
  height: 3.125rem;
  border: 1px solid #ddd;
  border-radius: 0.3125rem;
}
.contact__form-textarea {
  width: 100%;
  height: 6.25rem;
  border: 1px solid #ddd;
  border-radius: 0.3125rem;
}
.contact__form-label-required {
  display: inline-block;
  font-size: 0.75rem;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
  color: #ff0000;
}
.contact__form-submit {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.contact__form-button {
  width: 15.625rem;
  height: 3.125rem;
  border: 1px solid #333333;
  box-shadow: 3.5px 5px 0 #333333;
  border-radius: 0.3125rem;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .contact__form-button {
    width: 12.5rem;
    height: 2.5rem;
  }
}
@media (any-hover: hover) {
  .contact__form-button:hover {
    box-shadow: 0 0 0 #333333;
  }
}

.wpcf7-form-control.wpcf7-text.contact__form-input {
  border-radius: 0.3125rem;
}

.wpcf7-list-item-label {
  position: relative;
}
.wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 50%;
}
.wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #333333;
  border-radius: 50%;
  margin-right: 0.625rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact__form-radio label {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.625rem;
  font-weight: bold;
}

.contact__form-radio label input[type=radio] + span {
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.wpcf7-response-output {
  padding: 1.25rem;
}

.wpcf7-spinner {
  display: none !important;
}
/*# sourceMappingURL=style.css.map */
