@charset "UTF-8";
body {
  background-color: #FFFBCC;
  font-family: sans-serif; }

a {
  cursor: pointer; }

/*背景*/
.bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1; }
  .bg .bg-wrap {
    position: relative;
    width: 100%;
    height: 100%; }
    .bg .bg-wrap .circle-wrap {
      transform: rotate(-45deg);
      position: absolute;
      top: 8%;
      right: 15%; }
      @media screen and (min-width: 768px) {
        .bg .bg-wrap .circle-wrap {
          top: 212px;
          right: 50%;
          transform: translateX(80%) rotate(-45deg); } }
      .bg .bg-wrap .circle-wrap .circle1 {
        width: min(551px, 50vw);
        height: min(551px, 50vw);
        border-radius: 50%;
        background-color: #FFFDE2; }
        .bg .bg-wrap .circle-wrap .circle1:before {
          content: "";
          display: block;
          height: min(551px, 50vw);
          border-radius: 300px;
          position: absolute;
          background-color: #FFF68B;
          transform-origin: 25% 50% 0;
          z-index: -1;
          animation-duration: 3s;
          animation-name: bgAnime;
          animation-fill-mode: forwards;
          animation-delay: 1s; }
    .bg .bg-wrap .circle-wrap2 {
      transform: rotate(135deg);
      position: absolute;
      top: 50%;
      left: 0; }
      @media screen and (min-width: 768px) {
        .bg .bg-wrap .circle-wrap2 {
          right: 50%;
          transform: translateX(-30%) rotate(135deg); } }
      .bg .bg-wrap .circle-wrap2 .circle2 {
        width: min(551px, 50vw);
        height: min(551px, 50vw);
        border-radius: 50%;
        background-color: #FFF68B; }
        .bg .bg-wrap .circle-wrap2 .circle2:before {
          content: "";
          display: block;
          height: min(551px, 50vw);
          border-radius: 300px;
          position: absolute;
          background-color: #FFF68B;
          transform-origin: 25% 50% 0;
          z-index: -1;
          animation-duration: 3s;
          animation-name: bgAnime;
          animation-fill-mode: forwards;
          animation-delay: 1.5s; }

@keyframes bgAnime {
  from {
    width: min(551px, 50vw); }
  to {
    width: 2000px; } }
/*ヘッダー*/
header {
  padding-left: 1rem;
  padding-right: 1rem;
  height: 61px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100vw;
  z-index: 100; }
  @media screen and (min-width: 768px) {
    header {
      height: 90px;
      padding-left: 2rem;
      padding-right: 2rem; } }
  header.change-color {
    background-color: rgba(255, 251, 204, 0.8);
    transition: 0.1s; }

h1 {
  font-size: 2rem; }
  h1 img {
    max-width: 50vw; }
  @media screen and (min-width: 768px) {
    h1 {
      font-weight: 3.5rem;
      width: 270px; }
      h1 img {
        width: 100%;
        height: auto; } }

nav {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4rem 2rem;
  height: 100vh;
  transition: ease .4s;
  z-index: 2; }
  @media screen and (min-width: 768px) {
    nav {
      transform: inherit;
      background-color: transparent;
      height: 100%;
      position: static;
      padding: 19px 0 0; } }
  @media screen and (min-width: 768px) {
    nav ul {
      display: flex;
      align-items: center; } }
  nav ul li {
    margin: 1rem 0;
    font-weight: bold; }
    @media screen and (min-width: 768px) {
      nav ul li {
        margin-left: 1.5rem;
        font-size: 1.2rem; } }
  nav.active {
    transform: translateX(0); }

/* ハンバーガーメニュー */
.hamburger {
  width: 22px;
  position: relative;
  z-index: 101; }
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block; }
    .hamburger span:nth-child(1) {
      top: 0; }
    .hamburger span:nth-child(2) {
      margin: 5px 0; }
    .hamburger span:nth-child(3) {
      top: 0; }
  @media screen and (min-width: 768px) {
    .hamburger {
      display: none; } }

.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  display: none;
  width: 100vw;
  z-index: 1; }

/* ハンバーガーメニュークリック後のスタイル */
.header__hamburger.active {
  transform: translateX(0); }
  .header__hamburger.active span:nth-child(1) {
    top: 3px;
    transform: rotate(45deg); }
  .header__hamburger.active span:nth-child(2) {
    opacity: 0; }
  .header__hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg); }

.overlay.active {
  display: block; }

/* コンテンツ */
.title {
  padding: 120px 0 40px;
  display: flex;
  justify-content: center; }
  @media screen and (min-width: 768px) {
    .title {
      padding: 276px 0 133px; } }
  .title h2 {
    font-size: 2rem;
    border: solid 6px #000;
    text-align: center;
    display: flex;
    padding: .5rem .8rem;
    width: 230px; }
    .title h2 img {
      width: 100%;
      height: auto; }
    @media screen and (min-width: 768px) {
      .title h2 {
        font-size: 3.5rem;
        width: 372px;
        padding: 1rem; }
        .title h2 img {
          width: 100%;
          height: auto; } }

/*works*/
.works {
  width: min(1200px, 90%);
  margin: auto; }
  .works ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    @media screen and (min-width: 768px) {
      .works ul {
        margin-bottom: 60px; } }
    .works ul li {
      position: relative;
      /*width: calc((100% - .5rem) / 2);*/
      width: 100%;
      margin-bottom: .5rem;
      overflow: hidden;
      cursor: pointer; }
      .works ul li img:hover {
        transform: scale(1.05, 1.05);
        transition: .4s all; }
      @media screen and (min-width: 768px) {
        .works ul li {
          width: calc((100% - 1rem) / 3); } }
      .works ul li .works-cat {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        padding: .2rem .5rem;
        font-size: .8rem;
        color: #fff;
        background-color: #000;
        z-index: 10; }

/*モーダルウィンドウ*/
.modal-block {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); }
  .modal-block .img-section {
    width: 90vw;
    height: 90vw;
    position: relative;
    margin: 0 auto; }
    @media screen and (min-width: 980px) {
      .modal-block .img-section {
        width: 80vh;
        height: 80vh; } }
    .modal-block .img-section span {
      position: absolute;
      transform: translate(50%, -50%);
      top: 0;
      right: 0;
      cursor: pointer; }
      .modal-block .img-section span::before {
        content: "×";
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center; }
        @media screen and (min-width: 980px) {
          .modal-block .img-section span::before {
            width: 60px;
            height: 60px;
            font-size: 2rem; } }
    .modal-block .img-section img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .modal-block .caption {
    font-size: 20px;
    letter-spacing: .09em;
    color: #fff;
    margin-top: 10px;
    text-align: center; }

/*view moreボタン*/
.more-btn {
  background-color: #FFD381;
  width: 245px;
  height: 66px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
  font-weight: bold; }
  @media screen and (min-width: 768px) {
    .more-btn {
      width: 339px;
      height: 92px;
      font-size: 1.5rem; } }
  .more-btn .txt {
    margin-right: 2em; }
  .more-btn .arrow {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (min-width: 768px) {
      .more-btn .arrow {
        width: 92px;
        height: 92px; } }

/*price*/
.price {
  width: min(1200px, 90%);
  margin: 5rem auto 0;
  background-color: #fff;
  padding: 10% 5%;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media screen and (min-width: 768px) {
    .price {
      margin-top: 131px;
      font-size: 1.2rem; } }
  @media screen and (min-width: 980px) {
    .price {
      padding-top: 84px; } }
  .price h3 {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 6px solid #000;
    display: inline-block; }
    @media screen and (min-width: 768px) {
      .price h3 {
        font-size: 2rem; } }
  .price table {
    width: min(900px, 100%);
    margin-bottom: 2rem; }
    @media screen and (min-width: 980px) {
      .price table {
        margin-bottom: 6rem; } }
    .price table th {
      padding: 2rem 0.5rem 0.1rem;
      border-bottom: 2px solid #000;
      font-weight: bold; }
      @media screen and (min-width: 768px) {
        .price table th {
          padding-top: 3.5rem;
          padding-left: 1.5rem; } }
    .price table td {
      padding: .5rem;
      vertical-align: middle; }
      @media screen and (min-width: 768px) {
        .price table td {
          padding: 1.5rem; }
          .price table td br {
            display: none; } }
      .price table td.yen {
        text-align: right; }
    .price table .price-list {
      border-bottom: dotted 1px #000; }
  .price .more-btn {
    margin-top: 1rem; }
    @media screen and (min-width: 980px) {
      .price .more-btn {
        margin-top: 1.5rem; } }

/*profile*/
.profile {
  margin: 5rem auto 0;
  width: min(1200px, 90%);
  display: flex;
  flex-direction: column;
  align-items: center; }
  .profile h3 {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 6px solid #000;
    display: inline-block; }
    @media screen and (min-width: 768px) {
      .profile h3 {
        font-size: 2rem; } }
  .profile .txt {
    background-color: #fff;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    padding: 10rem 10% 10%;
    margin-top: 70px;
    position: relative; }
    @media screen and (min-width: 768px) {
      .profile .txt {
        border-radius: 46px; } }
    .profile .txt .image {
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%); }
    .profile .txt .name {
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 1rem; }
      @media screen and (min-width: 768px) {
        .profile .txt .name {
          font-size: 1.5rem; } }
    .profile .txt .twitter {
      display: flex;
      justify-content: center;
      margin-top: 2rem; }

/*flow*/
.flow {
  margin: 5rem auto 0;
  width: min(900px, 90%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  @media screen and (min-width: 768px) {
    .flow {
      margin-top: 131px; } }
  .flow h3 {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 6px solid #000;
    display: inline-block; }
    @media screen and (min-width: 768px) {
      .flow h3 {
        font-size: 2rem; } }
  .flow ol {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10% auto; }
    @media screen and (min-width: 768px) {
      .flow ol {
        margin-top: 5%; } }
    .flow ol li {
      width: 100%;
      background-color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      border: #FFD381 solid 3px;
      border-radius: 20px;
      font-size: 1.2rem;
      font-weight: bold;
      box-shadow: 3px 3px 0 0 #FFD381;
      margin-bottom: 41px;
      position: relative;
      padding: 1rem; }
      @media screen and (min-width: 768px) {
        .flow ol li {
          padding: 2rem; } }
      .flow ol li h4 {
        border-bottom: 3px dotted #FFD381;
        margin-bottom: .5rem; }
        @media screen and (min-width: 768px) {
          .flow ol li h4 {
            margin-bottom: 1rem; } }
      .flow ol li p {
        font-size: 1rem;
        font-weight: normal; }
        .flow ol li p a {
          color: #C99300;
          text-decoration: underline; }
        @media screen and (min-width: 768px) {
          .flow ol li p {
            text-align: center; } }
      .flow ol li:after {
        content: url("img/flow_arrow.svg");
        display: block;
        position: absolute;
        bottom: -50px; }
      .flow ol li:last-child:after {
        display: none; }

/*contact*/
.contact {
  margin: auto;
  width: min(900px, 90%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .contact h3 {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 6px solid #000;
    display: inline-block; }
    @media screen and (min-width: 768px) {
      .contact h3 {
        font-size: 2rem; } }
  .contact form {
    width: 100%;
    margin: 10% auto; }
    @media screen and (min-width: 768px) {
      .contact form {
        margin-top: 5%;
        font-size: 1.2rem; } }
    .contact form .form-wrap {
      display: flex;
      flex-direction: column; }
      .contact form .form-wrap .form-item {
        padding-left: 1rem;
        border-radius: 10px; }
      .contact form .form-wrap label {
        background-color: #FFD381;
        margin-bottom: 9px;
        font-weight: bold;
        line-height: 48px; }
        .contact form .form-wrap label span {
          margin-left: 1rem;
          font-size: .8rem;
          color: #C10003; }
      .contact form .form-wrap input {
        background-color: #fff;
        border: #FFD381 solid 3px;
        margin-bottom: 23px;
        height: 48px; }
      .contact form .form-wrap textarea {
        resize: none;
        min-height: 10rem;
        background-color: #fff;
        border: #FFD381 solid 3px;
        line-height: 1.3;
        padding: 0.5rem 0; }
    .contact form .more-btn {
      background-color: #FFD381;
      margin-top: 2rem;
      cursor: pointer; }

/*インスタ*/
.insta {
  width: min(900px, 90%);
  background-color: #fff;
  padding: 5%;
  margin: auto;
  margin-bottom: 130px; }
  @media screen and (min-width: 768px) {
    .insta {
      padding: 2rem; } }

.insta-title {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .insta-title .logo {
    width: max(5%, 30px);
    display: flex;
    align-items: center; }
    .insta-title .logo img {
      width: 100%; }
    .insta-title .logo span {
      margin-left: 1rem;
      font-size: 1.2rem;
      font-weight: bold; }

.insta_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .insta_list li {
    position: relative;
    width: calc((100% - .5rem) / 3);
    margin-top: .5rem; }
    .insta_list li:before {
      content: "";
      display: block;
      padding-top: 100%; }

.insta_list a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }

.insta_list img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.insta_btn {
  background-color: #000;
  padding: .3em .5em;
  width: fit-content;
  cursor: pointer; }
  .insta_btn a {
    color: #fff;
    text-decoration: none; }

/*フッター*/
footer {
  background-color: #FFD381;
  text-align: center;
  padding: 1rem 0;
  font-size: 10px; }
  @media screen and (min-width: 768px) {
    footer {
      font-size: 1rem; } }

/*worksページ*/
.works-title {
  display: flex;
  justify-content: center; }
  .works-title h2 {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 6px solid #000;
    display: inline-block;
    margin: 90px auto 5%; }
    @media screen and (min-width: 768px) {
      .works-title h2 {
        font-size: 2rem; } }

.works-select {
  display: flex;
  justify-content: center;
  margin: 30px auto 50px;
  width: min(1200px, 90%); }
  @media screen and (min-width: 768px) {
    .works-select {
      margin-top: 0;
      margin-bottom: 100px; } }
  .works-select li {
    width: 25%;
    margin: 0 .5rem;
    height: 2rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: #FFD381 2px solid; }
    @media screen and (min-width: 768px) {
      .works-select li {
        height: 4rem;
        font-size: 1.3rem; } }
    .works-select li:after {
      content: "";
      display: inline-block;
      width: .5rem;
      height: .5rem;
      border-bottom: 1px solid #000;
      border-right: 1px solid #000;
      transform: rotate(45deg);
      margin-left: .5rem; }

.works-contents {
  margin-top: 50px; }
  @media screen and (min-width: 768px) {
    .works-contents {
      margin-top: 100px; } }
  .works-contents h3 {
    border-bottom: 1px solid #000;
    text-align: center;
    margin-bottom: 1rem; }
    @media screen and (min-width: 768px) {
      .works-contents h3 {
        font-weight: bold;
        font-size: 1.5rem;
        border-bottom: 2px solid #000; } }

.back-btn {
  margin: 10% 0; }
  .back-btn .more-btn .txt {
    margin: 0; }

/*Works詳細ページ*/
.works-detail {
  width: min(1000px, 90%);
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  flex-direction: column; }

/*サンクスページ*/
.thanks-txt {
  display: flex;
  justify-content: center;
  padding-top: 130px; }
  @media screen and (min-width: 768px) {
    .thanks-txt {
      font-size: 1.2rem; } }
