@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #333333;
}

body {
  font-family: "Shippori Mincho", serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
  padding: 0;
}

/* Set core html 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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* 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]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-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;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/** 共通項目 **/
html, body {
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
}

.anker-link {
  scroll-margin-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .anker-link {
    scroll-margin-top: 6.875rem;
  }
}

/* header
***************************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 5.625rem;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  -webkit-transition: background-color 0.5s 0s ease;
  transition: background-color 0.5s 0s ease;
  z-index: 9999;
}
@media screen and (min-width: 780px) {
  .header {
    height: 6.875rem;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  height: inherit;
}

.header__logo-item {
  height: inherit;
}

.header__logo-link {
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #333333;
  font-family: "Cardo", serif;
  font-size: 2.5rem;
  font-weight: 700;
  height: inherit;
  text-transform: capitalize;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 780px) {
  .header__logo-link {
    font-size: 3.75rem;
  }
}

.header__nav {
  height: inherit;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  position: relative;
  color: #333333;
  font-family: "Cardo", serif;
  font-size: 1.25rem;
  font-weight: 700;
  height: inherit;
  text-transform: capitalize;
  /*リンクの形状*/
  display: inline-block;
  text-decoration: none;
  color: #333;
  outline: none;
  padding-top: 3.125rem;
}

.header__nav-link:hover::after {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: 30%;
  top: 35%;
  /*波形の形状*/
  border: 1px solid #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*アニメーションの設定*/
  -webkit-animation: 1s circleanime2 forwards;
          animation: 1s circleanime2 forwards;
}

@-webkit-keyframes circleanime2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes circleanime2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
.header__nav-link img {
  width: 0.9375rem;
  height: 0.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 780px) {
  .header__nav-link img {
    height: 1.25rem;
    width: 1.25rem;
  }
}

.header__color {
  background-color: #FFF;
  border-bottom: 1px solid rgba(149, 133, 156, 0.3);
}

.header.header__color a {
  color: #333333;
}

/** hamburger **/
.hamburger {
  padding: 0;
  width: 1.875rem;
  z-index: 9999;
}

.hamburger span {
  position: relative;
  display: block;
  background-color: #333333;
  height: 2px;
  width: 1.875rem;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}

.hamburger span:nth-child(2) {
  margin-top: 0.4375rem;
  margin-bottom: 0.4375rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/** sp-menu **/
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(149, 133, 156, 0.9);
  height: 100svh;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
  z-index: 9990;
}

.sp-menu__inner {
  padding-top: 9.375rem;
  width: inherit;
}

.sp-menu__nav {
  width: inherit;
}

.sp-menu__nav-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  place-content: center;
  gap: 1.875rem;
  width: inherit;
}

.sp-menu__nav-item {
  width: inherit;
}

.sp-menu__nav-link {
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #333333;
  font-family: "Cardo", serif;
  font-size: 1.125rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  width: inherit;
  text-transform: capitalize;
}

.sp-menu__nav-link img {
  width: 1.25rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 780px) {
  .sp-menu__nav-link img {
    width: 1.875rem;
  }
}

.sp-menu.is-openSP {
  -webkit-transform: translate(0);
          transform: translate(0);
}

/* fv
***************************************************************/
.fv {
  margin-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .fv {
    margin-top: 6.875rem;
  }
}

.fv__image {
  height: 60svh;
}

.fv__image::before {
  content: "";
  display: block;
  position: fixed;
  background-image: url(../images/fv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  -webkit-filter: opacity(80%);
          filter: opacity(80%);
  z-index: -1;
}

/* 共通項目 section
***************************************************************/
.section {
  position: sticky;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 780px) {
  .section {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section__head.section__head-re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.section__heading {
  color: #95859C;
  font-family: "Cardo", serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: capitalize;
}
@media screen and (min-width: 780px) {
  .section__heading {
    font-size: 3.75rem;
  }
}

.section__heading-sub {
  font-size: 1rem;
}
@media screen and (min-width: 780px) {
  .section__heading-sub {
    font-size: 1.25rem;
  }
}

.section__body {
  margin-top: 2rem;
}
@media screen and (min-width: 780px) {
  .section__body {
    margin-top: 4rem;
  }
}

.section__btn {
  margin-top: 4rem;
}
@media screen and (min-width: 780px) {
  .section__btn {
    margin-top: 3.75rem;
  }
}

/* btn
***************************************************************/
.btn {
  background-color: #FFF;
  border: 1px solid #95859C;
  color: #95859C;
  font-size: 1rem;
  padding: 0.4375rem 2.625rem;
  text-transform: capitalize;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
@media screen and (min-width: 780px) {
  .btn {
    font-size: 1.25rem;
    padding: 0.625rem 4rem;
  }
}

.btn:hover {
  background-color: #95859C;
  color: #FFF;
}

/* skills
***************************************************************/
.skills {
  background-color: #FFF;
}

.skills__intro {
  padding-left: 1rem;
}
@media screen and (min-width: 780px) {
  .skills__intro {
    padding-left: 6.25rem;
  }
}

.skills__intro-text {
  font-size: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 780px) {
  .skills__intro-text {
    margin-top: 3.75rem;
  }
}

.skills__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 780px) {
  .skills__list {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
  }
}

.skills__item {
  background-color: #E9EAF5;
  padding: 1rem;
}

.skills__image {
  margin-inline: auto;
  width: 3.75rem;
}
@media screen and (min-width: 780px) {
  .skills__image {
    width: 6.25rem;
  }
}

.skills__text {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.skills__text-sub {
  font-size: 0.875rem;
  margin-top: 1rem;
}

.skills__tool {
  border: 1px solid #95859C;
  padding: 1rem;
}

/* works
***************************************************************/
.works {
  background-color: #FFF;
  margin-top: 7.5rem;
}

.works__inner {
  background-color: #FFF;
  padding-top: 2.625rem;
  padding-bottom: 2.625rem;
}
@media screen and (min-width: 780px) {
  .works__inner {
    border: 2px solid #95859C;
    padding-top: 3.875rem;
    padding-bottom: 3.875rem;
  }
}

.works__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 780px) {
  .works__list {
    -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.works__item {
  margin-inline: auto;
}

.works__image {
  aspect-ratio: 353/188;
  border: 1px solid #95859C;
  max-width: 25rem;
  width: 100%;
  height: 100%;
}

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

.works__btn {
  text-align: right;
}

/* about
***************************************************************/
.about {
  background-color: #FFF;
  margin-top: 7.5rem;
}

.about__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 780px) {
  .about__body {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.about__body-image {
  aspect-ratio: 960/640;
  max-width: 100%;
}

.about__body-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__text {
  font-size: 1rem;
}

/* contact
***************************************************************/
.contact {
  background-color: #E9EAF5;
}

.contact__text {
  font-size: 0.875rem;
  line-height: 1.8888888889;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .contact__text {
    margin-top: 2.25rem;
  }
}

@media screen and (min-width: 780px) {
  .contact__list {
    max-width: 56.25rem;
    margin-inline: auto;
  }
}

/* form*/
@media screen and (min-width: 780px) {
  .contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact__item:not(:first-child) {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 780px) {
  .contact__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.contact__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__form {
  margin-top: 2.9375rem;
}
@media screen and (min-width: 780px) {
  .contact__form {
    margin-top: 4.25rem;
  }
}

/* 共通項目 * ラベル*/
.contact__lavel-text {
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
}

.contact__text span,
.contact__lavel-text span {
  color: red;
  font-size: 0.625rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 780px) {
  .contact__text span,
  .contact__lavel-text span {
    font-size: 0.75rem;
  }
}

/* 共通項目 * 入力欄*/
.contact__input,
.contact__select {
  color: #333333;
  font-size: 0.875rem;
  padding: 0.5rem;
  border: 1px solid #333333;
  border-radius: 4px;
  background-color: #FFF;
  width: 100%;
  margin-top: 0.75rem;
}
@media screen and (min-width: 780px) {
  .contact__input,
  .contact__select {
    padding: 0.6875rem;
    width: 32.5rem;
  }
}

/* 共通項目 * placeholer*/
.contact__input::-webkit-input-placeholder, .contact__select::-webkit-input-placeholder, .contact__textarea::-webkit-input-placeholder {
  font-size: 0.875rem;
  color: #D5D5D5;
}
.contact__input::-moz-placeholder, .contact__select::-moz-placeholder, .contact__textarea::-moz-placeholder {
  font-size: 0.875rem;
  color: #D5D5D5;
}
.contact__input:-ms-input-placeholder, .contact__select:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #D5D5D5;
}
.contact__input::-ms-input-placeholder, .contact__select::-ms-input-placeholder, .contact__textarea::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #D5D5D5;
}
.contact__input::placeholder,
.contact__select::placeholder,
.contact__textarea::placeholder {
  font-size: 0.875rem;
  color: #D5D5D5;
}

/* 入力欄 * テキストエリア*/
.contact__textarea {
  color: #333333;
  font-size: 0.8125rem;
  padding: 0.5rem;
  border: 1px solid #333333;
  border-radius: 4px;
  background-color: #FFF;
  width: 100%;
  height: 9.125rem;
  margin-top: 0.75rem;
  resize: none;
}
@media screen and (min-width: 780px) {
  .contact__textarea {
    padding: 0.6875rem;
    width: 32.5rem;
    height: 13.75rem;
  }
}

.contact__btn {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .contact__btn {
    margin-top: 2.25rem;
  }
}

/* footer
***************************************************************/
.footer {
  position: sticky;
  background-color: #FFF;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 780px) {
  .footer {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.footer__logo-link {
  color: #333333;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .footer__logo-link {
    font-size: 1.25rem;
  }
}

.footer__text {
  font-size: 0.625rem;
  color: #FFF;
}

/* page-works
***************************************************************/
.page-works__fv {
  background: linear-gradient(333deg, rgb(233, 234, 245) 0%, rgb(255, 255, 255) 15%, rgb(149, 133, 156) 100%);
  width: 100%;
}

.page-works__fv-head {
  padding-top: 8.125rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 780px) {
  .page-works__fv-head {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}

.page-works__fv-heading {
  color: #555;
  font-size: clamp(1.25rem, 0.8099rem + 1.8779vw, 2.5rem);
  text-align: right;
}

.page-works__fv-heading--sub {
  color: #555;
}

/** works body **/
.page-works__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.875rem;
}
@media screen and (min-width: 780px) {
  .page-works__list {
    grid-template-columns: repeat(auto-fit, 21.875rem);
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
    row-gap: 1.875rem;
  }
}

.page-works__item {
  border-radius: 0.3125rem;
  background-color: #FFF;
  -webkit-filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.25));
}

.page-works__link {
  display: block;
}

.page-works__box {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-color: #E9EAF5;
  font-size: 1rem;
  text-transform: capitalize;
}

.page-works__box,
.page-works__image {
  aspect-ratio: 432/237;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 780px) {
  .page-works__box,
  .page-works__image {
    max-width: 21.875rem;
  }
}

.page-works__image img {
  border-radius: 15px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-works__container {
  padding: 0.625rem 2rem 3.125rem;
}

.page-works__heading {
  color: #333333;
  font-size: clamp(1.25rem, 0.8979rem + 1.5023vw, 2.25rem);
}

.page-works__heading span {
  background-color: #95859C;
  border-radius: 1.25rem;
  color: #FFF;
  font-size: 0.75rem;
  padding: 0.0625rem 1.25rem 0.125rem;
}

.page-works__heading.case span {
  background-color: rgb(216, 168, 189);
  font-weight: 700;
}

.page-works__text {
  color: #333333;
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
}

.page-works__text.test {
  font-size: 1rem;
}
/*# sourceMappingURL=styles.css.map */