@charset "UTF-8";

@keyframes opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #FAF6F9;
  color: #131313;
  line-height: 1.5;
  font-family: 'futura-pt', 'Yu Gothic', 'YuGothic', sans-serif;
}

body h1 {
  font-size: 20px;
  font-weight: bold;
}

body h2 {
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 526px) {
  body h1 {
    font-size: 18px;
  }

  body h2 {
    font-size: 28px;
  }

  body .pc.tablet {
    display: none;
  }

  .sp {
    display: auto;
  }
}

@media screen and (max-width: 980px) {
  body .pc {
    display: none;
  }
}

body .section-wrapper {
  width: 1280px;
}

@media screen and (max-width: 1280px) {
  body .section-wrapper {
    width: calc(100% - 80px);
  }

  .sp {
    display: none;
  }
}

body .section-wrapper .sec-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

body .section-wrapper .sec-title_art {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e383a4;
}

body .section-wrapper .sec-title_text {
  margin-left: 12px;
}

body .transition-btn {
  display: block;
  width: 160px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #131313;
  color: #FAF6F9;
  font-weight: bold;
  position: relative;
  animation: opacity 1s 1s ease;
}

body .transition-btn_arrow {
  height: 16px;
  margin: 12px 6px;
  position: absolute;
  right: 0;
}

body .transition-btn:hover {
  filter: opacity(0.6);
  /* カスタマイズしてください */
}

.c-header {
  align-items: center;
  background-color: #FAF6F9;
  /* カスタマイズしてください */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  /* カスタマイズしてください */
  width: 100%;
}

.c-header__logo img {
  /* カスタマイズしてください */
  width: 200px;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link,
.c-header__list-link__contact {
  color: #131313;
  font-weight: bold;
  /* カスタマイズしてください */
  display: block;
  margin-right: 20px;
  /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 30px;
  /* カスタマイズしてください */
}

.c-header__list-link__contact {
  background-color: #e383a4;
  color: #FAF6F9;
}

.c-header__list-link__item,
.c-header__list-link__item__ja {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.c-header__list-link__item__ja {
  font-size: 12px;
}

.c-header__list-link:hover,
.c-header__list-link__contact:hover {
  filter: opacity(0.6);
  /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 980px) {
  .c-hamburger-menu__list {
    background-color: #FAF6F9;
    /* カスタマイズしてください */
    align-items: center;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    margin-right: 0 !important;
    /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.5s;
    /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  .c-header__list-item {
    margin-bottom: 40px;
  }

  #hamburger:checked~.c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #131313;
  /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
}

#hamburger:checked~.c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 980px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* カスタマイズしてください */
    height: 32px;
    /* カスタマイズしてください */
    justify-content: center;
    width: 32px;
    /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #131313;
  /* カスタマイズしてください */
  display: block;
  height: 2px;
  /* カスタマイズしてください */
  transition: 0.3s;
  /* カスタマイズしてください */
  width: 20px;
  /* カスタマイズしてください */
}

@media screen and (max-width: 980px) {
  #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    /* カスタマイズしてください */
    transform-origin: 0%;
    /* カスタマイズしてください */
  }

  #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    /* カスタマイズしてください */
    transform-origin: 0%;
    /* カスタマイズしてください */
  }
}

.section-main {
  margin: 0 auto;
  height: calc(100vh - 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 980px) {
  .section-main {
    display: block;
    height: auto;
    margin-bottom: 100px;
  }
}

.section-main_art {
  width: 360px;
  height: auto;
}

@media screen and (max-width: 980px) {
  .section-main_art {
    width: calc(100% - 100px);
    height: auto;
  }

}


.section-main .main-message_wrapper {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 120px;
}

@media screen and (max-width: 980px) {
  .section-main .main-message_wrapper {
    width: 100%;
  }
}

.section-main h2.main-message {
  padding: 4px 12px;
  display: block;
  margin-left: auto;
  text-align: right;
}

.section-main h2.main-message_pink {
  background-color: #e383a4;
  margin-bottom: 10px;
  width: 8em;
}

.section-main h2.main-message_black {
  color: #FAF6F9;
  background-color: #131313;
  margin-bottom: 16px;
  width: 5em;
}

.section-main .main-text {
  text-align: right;
  display: block;
  font-size: 20px;
  font-weight: bold;
}

.section-Portfolio {
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 200px;
}

.section-Portfolio .sec-title {
  width: fit-content;
  margin: 0 auto;
}

.section-Portfolio .portfolio_container {
  width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 980px) {
  .section-Portfolio .portfolio_container {
    width: 100%;
  }
}

@media screen and (max-width: 526px) {
  .section-Portfolio .portfolio_container {
    display: block;
  }
}

.section-Portfolio .portfolio_container .portfolio-content {
  margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
  .section-Portfolio .portfolio_container .portfolio-content {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 526px) {
  .section-Portfolio .portfolio_container .portfolio-content {
    width: 100%;
  }
}

.section-Portfolio .portfolio_container .portfolio-content_sumbnail {
  width: 400px;
  height: 225px;
  border-radius: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 980px) {
  .section-Portfolio .portfolio_container .portfolio-content_sumbnail {
    width: 100%;
    height: auto;
  }
}

.section-Portfolio .portfolio_container .portfolio-content_category {
  width: 400px;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .section-Portfolio .portfolio_container .portfolio-content_category {
    width: 100%;
  }
}

.section-Portfolio .transition-btn {
  margin: 0 auto;
}

.section-About {
  margin: 0 auto;
  margin-bottom: 200px;
}

.section-About .sec-title {
  margin-left: 200px;
  margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
  .section-About {
    margin-bottom: 100px;
  }

  .section-About .sec-title {
    margin-left: 100px;
  }
}

.section-About .about-content {
  margin: 0 200px 100px 200px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1280px) {
  .section-About .about-content {
    margin: 0 100px 100px 100px;
  }
}

@media screen and (max-width: 980px) {
  .section-About .about-content {
    display: block;
    margin: 0 auto;
  }
}

.section-About .about-content .about-photo {
  position: relative;
  height: fit-content;
}

.section-About .about-content .about-photo_img {
  width: 240px;
  height: 240px;
}

.section-About .about-content .about-photo .about-name_eng {
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  bottom: 12px;
  left: 40px;
  z-index: 10;
}

.section-About .about-content .about-photo .about-name_ja {
  font-size: 20px;
  position: absolute;
  bottom: -40px;
  left: 40px;
  z-index: 10;
}

@media screen and (max-width: 980px) {
  .section-About .about-content .about-photo .about-name_eng {
    font-size: 20px;
  }

  .section-About .about-content .about-photo .about-name_ja {
    font-size: 16px;
  }
}

.section-About .about-content .about-introduction {
  position: relative;
}

@media screen and (max-width: 980px) {
  .section-About .about-content .about-introduction {
    margin-bottom: 100px;
  }
}


.section-About .about-content .about-introduction_text {
  display: inline-block;
  margin-top: 120px;
  text-align: right;
  line-height: 2;
}

@media screen and (max-width: 980px) {
  .section-About .about-content .about-introduction_text {
    margin-top: 60px;
  }
}

.section-About .about-content .about-introduction_text__highlight {
  display: inline-block;
  background-color: #FAF6F9;
  font-weight: bold;
}

.section-About .about-content .about-introduction_img {
  width: 540px;
  position: absolute;
  bottom: -60px;
  right: -80px;
  z-index: -10;
}

@media screen and (max-width: 526px) {
  .section-About .about-content .about-introduction_img {
    width: 400px;
    right: 0px;
  }

}

.section-About .about-tips_container {
  width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 980px) {
  .section-About .about-tips_container {
    display: block;
    width: 100%;
  }
}

.section-About .about-tips_container .about-tips {
  border: 2px solid #131313;
  width: 360px;
  height: 200px;
  padding: 20px;
  padding-top: 30px;
  line-height: 2;
  position: relative;
}

@media screen and (max-width: 980px) {
  .section-About .about-tips_container .about-tips {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.section-About .about-tips_container .about-tips .skill_bold {
  font-weight: bold;
}

.section-About .about-tips_container .about-tips_title {
  display: block;
  width: 160px;
  height: 40px;
  border: 2px solid #131313;
  background-color: #FAF6F9;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  font-size: 20px;
  position: absolute;
  top: -20px;
  left: 20px;
}

.section-About .about-tips_container .about-tips_subtitle {
  font-size: 14px;
  position: absolute;
  top: 10px;
  right: 20px;
}

.section-About .about-tips_container .about-tips .transition-btn {
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.section-Blog {
  margin: 0 auto;
  margin-bottom: 100px;
}

.section-Blog .sec-title {
  width: fit-content;
  margin: 0 auto;
}

.section-Blog .blogcard {
  width: 100%;
  height: fit-content;
  border: 2px solid #131313;
}

.section-Blog .blogcard_thumbnail {
  width: 100%;
  border: 2px solid #131313;
}

.section-Blog .blogcard_text {
  width: calc(100% - 20px);
  margin: 10px;
  word-break: break-all;
}

.section-Blog .blogcard_date {
  font-weight: bold;
  color: #525252;
  font-size: 14px;
}

.section-Blog .blogcard_title {
  font-weight: bold;
  font-size: 20px;
}

.section-Blog .blogcard_tag {
  font-size: 14px;
  font-weight: bold;
  color: #525252;
  background-color: #D9D9D9;
  border-radius: 15px;
  padding: 4px 8px;
  width: fit-content;
}

.section-Contact {
  width: 100%;
  background-color: #e383a4;
}

.section-Contact__container {
  width: 800px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media screen and (max-width: 980px) {
  .section-Contact__container {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 526px) {
  .section-Contact__container {
    justify-content: center;
    flex-direction: column;
  }
}



.section-Contact .sec-title {
  display: flex;
  align-items: center;
}


.section-Contact .sec-title_art {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FAF6F9;
}

.section-Contact .sec-title_text {
  margin-left: 12px;
  color: #FAF6F9;
}

.section-Contact .contact_text {
  padding-left: 40px;
}

@media screen and (max-width: 526px) {
  .section-Contact .sec-title_wrapper {
    margin-bottom: 20px;
  }

}

.section-Contact .contactform-btn {
  width: 320px;
  height: 60px;
  padding: 14px 0;
  text-align: center;
  font-weight: bold;
  border: 2px solid #131313;
  animation: opacity 1s 1s ease;
}

.section-Contact .contactform-btn:hover {
  filter: opacity(0.6);
  /* カスタマイズしてください */
}

.copyright {
  width: 100%;
  line-height: 40px;
  background-color: #525252;
  color: #FAF6F9;
  font-size: 14px;
  text-align: center;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

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


.section-Sns {
  width: 100%;
  background-color: #F7DFE7;
  padding: 20px 0;
}

.snsbutton {
  width: fit-content;
  display: block;
  margin: 20px auto;
  line-height: 20px;
}

.snsbutton:hover {
  color: #e383a4;
}

.section-Sns .snslogo {
  height: 20px;
}

.snslogo:hover {
  opacity: 0.6;
}



/* 固定ページ */


.main_post_wrap {
  width: 100%;
  background-color: #FAF6F9;
}

.single_post_container {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  .single_post_container {
    width: 100%;
    padding: 0 20px;
  }
}



.single_ttl {
  width: 100%;
  text-align: center;
  color: #131313;
}

.wp-block-contact-form-7-contact-form-selector {
  color: #131313;
  font-weight: bold;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
}


@media screen and (max-width: 980px) {
  .wp-block-contact-form-7-contact-form-selector {
    width: 100%;
  }
}


.wp-block-contact-form-7-contact-form-selector p {
  width: 100%;
  margin-bottom: 20px;
}

.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #e383a4;
  border-radius: 4px;
}


.wpcf7-submit {
  display: block;
  text-align: center;
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 4px;
  background-color: #e383a4;
  color: #ffffff;
  margin: 0 auto;
}

.wpcf7-submit:hover {
  opacity: 0.6;
}

.main-message_pink {
  width: 8ch;
  /*文字の長さ*/
  border-right: 5px solid #131313;
  /*点滅バー*/
  overflow: hidden;
  /*必須*/
  white-space: nowrap;
  /*必須*/
  animation: typing 2s steps(8), blink .5s step-end infinite alternate;
  /*アニメーション関連*/
}

.main-message_black {
  display: none;
  width: 4ch;
  /*文字の長さ*/
  border-right: 5px solid #e383a4;
  /*点滅バー*/
  overflow: hidden;
  /*必須*/
  white-space: nowrap;
  /*必須*/
  animation: typing2 1s steps(4), blink .5s step-end infinite alternate;
  /*アニメーション関連*/
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes typing2 {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
    /*点滅風に見せる*/
  }
}