@charset "UTF-8";
/*↓↓共通↓↓*/
* {
  margin: 0;
  padding: 0; }

.ml24 {
  margin-left: 24px; }

html {
  scroll-padding-top: 8vh;
  scroll-behavior: smooth; }

a, label {
  text-decoration: none;
  transition: .2s; }
  a:hover, label:hover {
    letter-spacing: 0.1em;
    font-weight: bold; }

ul, li {
  list-style: none; }

h1, h2, h3 {
  text-align: center;
  font-weight: lighter; }

h1 {
  font-family: 'Ubuntu', sans-serif;
  margin: 0 0 100px;
  font-size: 60px; }

h2 {
  font-family: 'Ubuntu', sans-serif;
  margin: 0 0 20px;
  font-size: 40px; }

h3 {
  font-size: 25px; }

.container-area {
  display: flex;
  Justify-content: center;
  flex-wrap: wrap; }
  .container-area .container {
    margin: 10px;
    border-radius: 10px; }

.message {
  margin-top: 70px; }
  .message p {
    text-align: center;
    font-size: 25px; }

.button {
  width: 250px;
  height: 40px;
  margin: 50px auto;
  border-radius: 10px; }
  .button a, .button label {
    display: block;
    text-align: center;
    font-size: 25px;
    text-decoration: none; }

.button-small {
  width: 125px;
  height: 20px;
  margin: 20px auto;
  border-radius: 5px; }
  .button-small a {
    display: block;
    text-align: center;
    font-size: 10px;
    text-decoration: none; }

.slick-prev {
  left: 15px; }

.slick-next {
  right: 15px; }

.slick-prev,
.slick-next {
  z-index: 900; }

.slick-prev:before,
.slick-next:before {
  color: #000; }

.slick-dots {
  background-color: #3F3E3E; }

.pinterest::before {
  content: '\f0d2';
  font-family: "Font Awesome 5 Brands";
  font-wigth: 400;
  margin: 0 5px 0 0; }

.tiktok::before {
  content: '\e07b';
  font-family: "Font Awesome 5 Brands";
  font-wigth: 400;
  margin: 0 5px 0 0; }

.twitter::before {
  content: '\f099';
  font-family: "Font Awesome 5 Brands";
  font-wigth: 400;
  margin: 0 5px 0 0; }

.instagram::before {
  content: '\f16d';
  font-family: "Font Awesome 5 Brands";
  font-wigth: 400;
  margin: 0 5px 0 0; }

.amazon::before {
  content: '\f270';
  font-family: "Font Awesome 5 Brands";
  font-wigth: 400;
  margin: 0 5px 0 0; }

.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s; }

.fadein.active {
  opacity: 1;
  transform: translate(0, 0); }

.mod-h2 {
  font-family: 'Ubuntu', sans-serif;
  margin: 0 0 20px;
  font-size: 40px; }

.modal_wrap input {
  display: none; }

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.modal_content {
  align-self: center;
  width: 60%;
  max-width: 800px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #dcd3b2;
  line-height: 1.4em;
  transform: scale(0.5) rotateX(-270deg);
  transition: 0.5s; }

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer; }

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: scale(1) rotateX(0deg); }

.modal_content {
  color: black; }
  .modal_content h2 {
    font-family: "M PLUS Rounded 1c"; }
  .modal_content .mod-img {
    height: 250px; }

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden; }
  body.active .slick-prev:before, body.active .slick-next:before {
    display: none; }

/*PCでの表示*/
@media screen and (min-width: 1000px) {
  .wrapper {
    width: 1000px;
    margin: 0 auto; }

  .container-area {
    display: flex;
    Justify-content: space-between;
    flex-wrap: wrap; } }
/*↑↑共通↑↑*/
/*↓↓ヘッダ↓↓*/
header {
  height: 8vh;
  width: 100vw;
  background-color: #316745;
  display: flow-root;
  position: fixed;
  top: 0;
  z-index: 999; }
  header .header-inner {
    padding: 0 20px;
    /*左右の余白確保*/
    display: flex;
    /*ロゴとハンバーガーメニューを横に並べる*/
    align-items: center;
    justify-content: space-between;
    height: inherit;
    /*親要素の高さを継承*/
    position: relative;
    /* ハンバーガーメニュー */ }
    header .header-inner h1 {
      font-family: "M PLUS Rounded 1c";
      font-size: 3vw;
      color: #FFF;
      position: relative;
      left: 40px;
      top: 45px; }
    header .header-inner nav {
      position: absolute;
      right: 0;
      left: 0;
      top: 0;
      width: 100%;
      height: 100vh;
      transform: translateX(100%);
      background-color: rgba(255, 255, 255, 0.9);
      /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
      transition: ease .4s;
      /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/ }
      header .header-inner nav ul {
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        header .header-inner nav ul li a {
          color: black;
          width: 100%;
          display: block;
          text-align: center;
          font-size: 20px;
          margin-bottom: 24px; }
    header .header-inner button {
      width: 48px;
      background-color: transparent;
      /*buttonタグデフォルトスタイルを打ち消し*/
      border-color: transparent;
      /*buttonタグデフォルトスタイルを打ち消し*/
      z-index: 9999;
      height: 100%;
      /* ハンバーガーメニューの線 */ }
      header .header-inner button span {
        width: 100%;
        height: 1px;
        background-color: #FFF;
        position: relative;
        transition: ease .4s;
        /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
        display: block; }
      header .header-inner button span:nth-child(1) {
        top: 0; }
      header .header-inner button span:nth-child(2) {
        margin: 8px 0; }
      header .header-inner button span:nth-child(3) {
        top: 0; }

/*PCでの表示*/
@media screen and (min-width: 1000px) {
  header .header-inner {
    /*PC時非表示にする*/ }
    header .header-inner nav {
      height: 8vh;
      background-color: inherit;
      width: 65%;
      /*PC時のナビゲーションメニュー、横並びにする*/ }
      header .header-inner nav ul {
        height: 8vh;
        float: right;
        display: flex;
        margin-bottom: 5px;
        bottom: 0;
        left: 0;
        transform: translate(0, 0); }
        header .header-inner nav ul li a {
          padding: 0 11px;
          text-decoration: none;
          color: #FFF;
          font: 13px/1.2 'Ubuntu', sans-serif; }
    header .header-inner button {
      display: none; } }
@media screen and (min-width: 1600px) {
  #header-nav ul li a {
    font-size: 20px; } }
/* ハンバーガーメニュークリック後のスタイル */
#header-nav.active {
  transform: translateX(0); }

#header-hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
  background-color: #000; }
#header-hamburger.active span:nth-child(2) {
  opacity: 0;
  background-color: #000; }
#header-hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
  background-color: #000; }

.color-change.active {
  background-color: #222; }

/*↑↑ヘッダ↑↑*/
/*↓↓Loading↓↓*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #333;
  text-align: center;
  color: #fff;
  /* Loading画像中央配置　*/ }
  #splash #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    #splash #splash_logo h1 {
      font-family: "M PLUS Rounded 1c";
      animation-name: fadeUpAnime;
      animation-duration: 0.8s;
      animation-fill-mode: forwards;
      opacity: 0; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/*↑↑Loading↑↑*/
/*↓↓main↓↓*/
article {
  position: relative;
  padding: 60px 0 150px; }

/*article「movie」*/
#movie {
  padding: 0; }
  #movie .slider img {
    overflow: hidden;
    width: 100vw; }

/*article「profile」*/
#profile {
  background-color: #316745;
  color: #dcd3b2; }
  #profile h1 {
    color: #316745; }
  #profile section .fadein.active:nth-of-type(1) {
    transition-delay: 0.3s; }
  #profile section .fadein.active:nth-of-type(2) {
    transition-delay: 0.6s; }
  #profile section .fadein.active:nth-of-type(3) {
    transition-delay: 0.9s; }
  #profile section .fadein.active:nth-of-type(4) {
    transition-delay: 1.2s; }
  #profile section .circle-area1 .circle-4 {
    width: 350px;
    height: 300px;
    border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
    overflow: hidden; }
    #profile section .circle-area1 .circle-4 img {
      width: 350px;
      height: 300px; }
  #profile section .circle-area2 {
    height: 350px;
    width: 250px;
    position: relative; }
    #profile section .circle-area2 p, #profile section .circle-area2 div {
      position: absolute; }
    #profile section .circle-area2 p, #profile section .circle-area2 a {
      font-size: 18px;
      color: #fff;
      text-align: center;
      top: 100px;
      left: 5%;
      z-index: 1; }
    #profile section .circle-area2 div {
      width: 280px;
      height: 300px;
      mix-blend-mode: multiply; }
    #profile section .circle-area2 .circle-1 {
      background: #f66;
      border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
      animation: border-animation 6s infinite linear; }
    #profile section .circle-area2 .circle-2 {
      background: #f92;
      border-radius: 80% 30% 50% 50%/50%;
      animation: border-animation 4s infinite linear; }
    #profile section .circle-area2 .circle-3 {
      background: #fc2;
      border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
      animation: border-animation 3s infinite linear; }
@keyframes border-animation {
  to {
    transform: rotate(360deg); } }
  #profile section .circle-area3 {
    height: 350px;
    width: 250px;
    position: relative; }
    #profile section .circle-area3 p, #profile section .circle-area3 div {
      position: absolute; }
    #profile section .circle-area3 p, #profile section .circle-area3 a {
      font-size: 18px;
      color: #fff;
      text-align: center;
      top: 100px;
      left: 5%;
      z-index: 1; }
    #profile section .circle-area3 div {
      width: 280px;
      height: 300px;
      mix-blend-mode: multiply; }
    #profile section .circle-area3 .circle-5 {
      background: #f66;
      border-radius: 50% 50% 50% 70%/50% 50% 70% 60%; }
  #profile a {
    color: #FFF; }
  #profile.active {
    background-color: #dcd3b2;
    transition: all 2s; }
  #profile #content_01 {
    display: none; }
  #profile .image {
    width: 1000px; }
  #profile .button {
    background-color: #316745;
    color: #dcd3b2; }
    #profile .button a {
      color: #FFF;
      font-size: 25px; }

/*article「skill」*/
#skill {
  background-color: #dcd3b2; }
  #skill h1 {
    color: #fff; }
  #skill a {
    color: #316745; }
  #skill .container, #skill .button {
    background-color: #dcd3b2;
    color: #316745; }
    #skill .container .button-small, #skill .button .button-small {
      background-color: #316745; }
      #skill .container .button-small a, #skill .button .button-small a {
        color: #dcd3b2; }
  #skill .skillsection .fadein.active:nth-of-type(1) {
    transition-delay: 0.3s; }
  #skill .skillsection .fadein.active:nth-of-type(2) {
    transition-delay: 0.6s; }
  #skill .skillsection .fadein.active:nth-of-type(3) {
    transition-delay: 0.9s; }
  #skill .skillsection .fadein.active:nth-of-type(4) {
    transition-delay: 1.2s; }
  #skill .skillsection .container {
    height: 350px;
    width: 250px;
    border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px; }
    #skill .skillsection .container img, #skill .skillsection .container h3 {
      display: block;
      width: 90%;
      margin: 10px auto; }
    #skill .skillsection .container p {
      font-size: 15px;
      display: block;
      width: 85%;
      margin: 10px auto; }
  #skill.active {
    background-color: #316745;
    transition: all 2s; }

/*article「works」*/
#work {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dcd3b2; }
  #work h1 {
    color: #316745;
    margin: 0 0 80px;
    position: relative; }
  #work .circle-area2 {
    height: 175px;
    width: 125px;
    position: absolute;
    top: 50px;
    right: 20vw; }
    #work .circle-area2 p, #work .circle-area2 div {
      position: absolute; }
    #work .circle-area2 p, #work .circle-area2 a {
      font-size: 16px;
      color: #fff;
      text-align: center;
      top: 50px;
      left: 15%;
      z-index: 1; }
    #work .circle-area2 div {
      width: 140px;
      height: 150px;
      mix-blend-mode: multiply; }
    #work .circle-area2 .circle-1 {
      background: #f66;
      border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
      animation: border-animation 6s infinite linear; }
    #work .circle-area2 .circle-2 {
      background: #f92;
      border-radius: 80% 30% 50% 50%/50%;
      animation: border-animation 4s infinite linear; }
    #work .circle-area2 .circle-3 {
      background: #fc2;
      border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
      animation: border-animation 3s infinite linear; }
@keyframes border-animation {
  to {
    transform: rotate(360deg); } }
  #work .side-scroll-item, #work .button {
    background-color: #316745;
    color: #FFF; }
  #work .button-small {
    background-color: #dcd3b2;
    color: #316745; }
  #work .container {
    height: 90vh; }
    #work .container .side-scroll-list-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 100%; }
      #work .container .side-scroll-list-wrapper a:hover {
        letter-spacing: 0em;
        font-weight: normal; }
      #work .container .side-scroll-list-wrapper ul {
        position: absolute;
        top: 10px;
        left: 0;
        display: flex;
        gap: 0 6  0px;
        /*コンテンツの個要素*/ }
        #work .container .side-scroll-list-wrapper ul li {
          margin-right: 125px;
          background-color: #316745;
          height: 400px;
          width: 300px;
          border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
          overflow: hidden; }
          #work .container .side-scroll-list-wrapper ul li .image {
            position: relative;
            display: block;
            width: 100%;
            height: 200px;
            overflow: hidden; }
            #work .container .side-scroll-list-wrapper ul li .image img {
              width: 100%; }
            #work .container .side-scroll-list-wrapper ul li .image .button-small {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%); }
          #work .container .side-scroll-list-wrapper ul li h3 {
            display: block;
            width: 90%;
            margin: 10px auto;
            color: #FFF; }
          #work .container .side-scroll-list-wrapper ul li p {
            font-size: 15px;
            display: block;
            width: 85%;
            margin: 10px auto;
            color: #FFF; }
          #work .container .side-scroll-list-wrapper ul li a {
            color: #316745; }
        #work .container .side-scroll-list-wrapper ul .side-scroll-item + .side-scroll-item {
          margin-left: 30px; }
    #work .container .button {
      margin-top: 65vh; }
      #work .container .button a {
        color: #FFF; }
  #work #content_01, #work #content_02, #work #content_03, #work #content_04, #work #content_05, #work #content_06 {
    display: none; }

/*article「contact」*/
#contact {
  background-color: #dcd3b2; }
  #contact h1 {
    color: #fff; }
  #contact a {
    color: #316745; }
  #contact dl {
    display: flex;
    flex-wrap: wrap; }
    #contact dl dt, #contact dl dd {
      border-bottom: 1px solid #ccc;
      font-size: 18px;
      padding: 1em; }
    #contact dl dt {
      width: 30%;
      color: #848484;
      font-size: 14px;
      display: flex;
      align-items: center; }
      #contact dl dt small {
        margin-left: 1em;
        font-size: 11px;
        color: #EA2D30; }
    #contact dl dd {
      width: 70%;
      color: #000; }
      #contact dl dd input, #contact dl dd select, #contact dl dd textarea {
        border: 1px solid #000;
        border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
        font-size: 18px;
        padding: 0.5em 1em; }
      #contact dl dd select {
        width: 60%; }
      #contact dl dd [type=text], #contact dl dd [type=email] {
        width: 100%; }
      #contact dl dd textarea {
        width: 100%;
        height: 200px;
        resize: vertical; }
  #contact p {
    text-align: center;
    padding: 1em; }
    #contact p button {
      border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
      padding: 0.3em 2em;
      font-size: 20px; }
  #contact.active {
    background-color: #316745;
    transition: all 2s; }

.thanks {
  height: 100vh; }

.check_design {
  position: relative; }
  .check_design input[type=radio], .check_design input[type=checkbox] {
    display: none; }
    .check_design input[type=radio]:checked + span, .check_design input[type=checkbox]:checked + span {
      background: #808080;
      color: #FFF; }
  .check_design span {
    color: #CCC;
    display: inline-block;
    padding: 0 10px;
    border: 1px solid #CCC;
    margin-right: 5px;
    transition: 0.3s cube-bezier(1, 0, 0, 1);
    transition-timing-function: cube-bezier(1, 0, 0, 1); }

/*↑↑article↑↑*/
/*フッタ*/
footer {
  height: 100px;
  background-color: #3F3E3E; }
  footer h1 {
    font-size: 3vw;
    font-family: "M PLUS Rounded 1c";
    color: #FFF;
    display: block;
    margin: 0 auto; }
