@charset "UTF-8";
/*
Theme Name: EAnzyのポートフォリオサイト
Description: EAnzyのポートフォリオサイトテンプレートです
Version: 1.0
Author: EAnzy
*/
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

ul,
li {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}

font {
  color: red;
}

.subheading {
  text-align: center;
  font-size: 26px;
  margin: 0 auto;
  font-family: 'Kaisei Tokumin', serif;
  font-style: italic;
  width: 94%;
  margin: 0 3%;
}

.subheading:first-letter {
  font-size: 150%;
  color: #FF6B95;
}

.subheading-under {
  width: 94%;
  text-align: center;
  font-size: 19px;
  margin: 50px 2% 15px 2%;
}

.subheading-footer {
  width: 100%;
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  font-family: 'Kaisei Tokumin', serif;
  font-style: italic;
}

.subheading-under span {
  background: linear-gradient(transparent 80%, #E3CCAE 60%);
}

.text {
  width: 90%;
  margin: 0 auto;
  font-size: 13px;
}

.text-404 {
  width: 90%;
  margin: 5% auto;
  font-size: 13px;
}


.text-bottom {
  margin-bottom: 7%;
}

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

.fadein.fadein-bottom {
  transform: translate(0, 50px);
}

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

/*========= ヘッダー ===============*/

#header {
  position: relative;
  background: linear-gradient(135deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  width: auto;
  height: 100vh;
}

#header-under {
  position: relative;
  width: auto;
}

#header-ray {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 25px;
}

.top-img {
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: cover;
}

.top-img img {
  height: 40vh;
  width: auto;
}

.top-title {
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: 25%;
  transform: translateY(-75%);
  font-family: 'Kaisei Tokumin', serif;
  font-size: 30px;
  background: -webkit-linear-gradient(-45deg, #FFC796 0%, #FF6B95 100%);
  color: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box {
  opacity: 0;
}

.top-title {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100vh;
}

.circle-bg {
  position: fixed;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(-10deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  transform: scale(0);
  left: -50px;
  top: -50px;
  transition: all .6s;
}

.circle-bg.circleactive {
  transform: scale(50);
}

.border_btn03 {
  display: inline-block;
  width: 100px;
  border: 2px solid #FF6B95;
  border-radius: 10px;
  background: white;
  color: #FF6B95;
  /* 文字色 */
  padding: 1em 2em;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}

.border_btn03:hover {
  border-style: dashed;
}

#g-nav ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

#g-nav.panelactive ul {
  opacity: 1;
  visibility: visible;
}

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

  100% {
    opacity: 1;
  }
}

.flex-container {
  display: flex;
  flex-direction: column;
  width: auto;
}

.flex-item1 {
  margin-bottom: 20px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  z-index: 9999;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  /*left: 18px;*/
  height: 3px;
  border-radius: 2px;
  background-color: #FF6B95;
  width: 30px;
}

.openbtn span:nth-of-type(1) {
  top: 25px;
}

.openbtn span:nth-of-type(2) {
  top: 35px;
}

.openbtn span:nth-of-type(3) {
  top: 45px;
}

.openbtn.active span:nth-of-type(1) {
  top: 23px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 35px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}

/*========= 言語メニュー ===============*/

.header-nav {
  z-index: 10;
}

.header-nav-item {
  display: block;
  width: 80px;
  border: 1px solid #FF6B95;
  border-radius: 10px;
  padding: 2px;
  height: fit-content;
}

.header-nav-item>a {
  color: #FF6B95;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  display: block;
  width: 100%;
  height: 100%;
}

/*========= ドロップダウン見た目 ===============*/

.dropdown {
  position: relative;
}

.dropdown-child {
  display: none;
  position: absolute;
  top: 50px;
  width: 80px;
  border: solid 1px #FF6B95;
  border-radius: 0.5em;
  background: white;
}

.dropdown-child:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-bottom: 12px solid #FF6B95;
  z-index: 100;
}

.dropdown-child:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-bottom: 10px solid white;
  z-index: 200;
}

.dropdown-child li {
  margin: 0;
  padding: 0;
}

.dropdown-child a {
  color: #FF6B95;
  display: block;
}

.btm-border a {
  width: 60%;
  margin: 0 auto;
  padding: 5px;
  text-align: center;
  font-size: 10px;
}

.btm-border.under a {
  border-bottom: solid 0.1em #FF6B95;
}

.clear {
  margin: 0;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.no-scroll::before {
  content: "Language";
  font-size: 12px;
}

.no-scroll.open::before {
  content: "close";
  font-size: 12px;
}

/*====== スクロールを促す =======*/

.scrolldown1 {
  position: absolute;
  top: 80%;
  left: 12%;
  transform: translate(-88%, -20%);
  height: 50px;
}

.scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #FF6B95;
  font-size: 15px;
}

.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 40px;
  background: #FF6B95;
  animation: pathmove 1.8s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/*====== プロフィール =======*/

.page-id-93,.page-id-110,.page-id-112,.page-id-108{
  background-color: #FFFBEB;
}

.profile-container {
  background-color: #FFFBEB;
  padding: 3% 0 1% 0;
}

.profile {
  background: #F8EDE3;
  width: 90%;
  margin: 5% auto 10% auto;
  border: 1px solid #A9907E;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.profile-img {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
}

.profile-img img {
  border: 1px solid black;
  background-color: #a0eaec;
  width: 50%;
  margin: 0 25%;
}

.profile-img-name {
  position: absolute;
  top: 8%;
  left: 15%;
  font-size: 20px;
  background-color: #FF6B95;
  color: white;
  padding: 5px;
}

.profile-box {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 94%;
}

.profile-text {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.profile-more {
  border: solid 1px #A9907E;
  padding: 10px;
  position: relative;
  width: 60%;
  margin: 0 auto 5% auto;
  text-align: center;
  background-color: white;
  color: #A9907E;
}

.profile-more::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #A9907E;
  border-right: solid 1px #A9907E;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -5px;
  top: 50%;
  right: 20px;
}

/*====== 仕事 =======*/

.page-id-83,.page-id-142,.page-id-138,.page-id-140 {
  background-color: #FFF2F2;
}

.works-box {
  background-color: #FFF2F2;
  padding: 3% 0 1% 0;
  width: auto;
}

.works {
  display: flex;
  flex-direction: column;
  margin: 5% auto 10% auto;
}

.works-item1 {
  width: 76%;
  background-color: #E3CCAE;
  border: 1px solid #E3CCAE;
  border-radius: 0 20px 20px 0;
  margin-bottom: 5%;
  position: relative;
  display: block;
  text-align: center;
  transition: .3s;
}

.works-item2 {
  width: 76%;
  margin: 0 0 0 auto;
  border: 1px solid #F4EAD5;
  background-color: #F4EAD5;
  border-radius: 20px 0 0 20px;
  border-right: none;
  margin-bottom: 5%;
  position: relative;
  transition: .3s;
}

.works-item3 {
  width: 76%;
  background-color: #D8C4B6;
  border: 1px solid #D8C4B6;
  border-radius: 0 20px 20px 0;
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 5%;
  transition: .3s;
}

.works-item4 {
  width: 76%;
  margin: 0 0 0 auto;
  background-color: #F8EDE3;
  border: 1px solid #F8EDE3;
  border-radius: 20px 0 0 20px;
  border-right: none;
  margin-bottom: 5%;
  position: relative;
  transition: .3s;
}

.works-item1:hover,
.works-item3:hover {
  transform: rotate(-10deg);
}

.works-item2:hover,
.works-item4:hover {
  transform: rotate(10deg);
}

.works-item1::before,
.works-item3::before {
  content: "";
  position: absolute;
  border-right: dotted 8px white;
  height: 95%;
  top: 0.5em;
  left: 0.5em;
}

.works-item2::before,
.works-item4::before {
  content: "";
  position: absolute;
  border-right: dotted 8px white;
  height: 95%;
  top: 0.5em;
  right: 0.5em;
}

.works-item1 img,
.works-item2 img,
.works-item3 img,
.works-item4 img {
  width: 70%;
  padding: 5% 15% 0 15%;
}

.works-content {
  padding: 5%;
  position: relative;
  margin-top: 0;
  text-align: center;
}

.works-num1,
.works-num2 {
  border: solid 1px #A9907E;
  padding: 10px;
  position: relative;
  width: 60%;
  margin: 0 auto 5% auto;
  text-align: center;
  color: #A9907E;
  background-color: white;
}

.works-num1::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #A9907E;
  border-right: solid 1px #A9907E;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -5px;
  top: 50%;
  right: 20px;
}

.works-num2::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #A9907E;
  border-right: solid 1px #A9907E;
  transform: rotate(-135deg);
  position: absolute;
  margin-top: -5px;
  top: 50%;
  left: 20px;
}

/* 仕事ボタン */

.works-button-box {
  width: 80%;
  margin: 0 10%;
  display: flex;
  flex-direction: column;
}

.works-button {
  border: solid 2px #A9907E;
  padding: 20px 10px;
  position: relative;
  width: 80%;
  margin: 0 auto 5% auto;
  text-align: center;
  background-color: white;
  color: #A9907E;
}

.works-button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #A9907E;
  border-right: solid 2px #A9907E;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -5px;
  top: 50%;
  right: 20px;
}

/*====== ホームページ制作 =======*/

.create-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 7% auto 5% auto
}

.create-page-box {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.create-page-img {
  width: 100%;
  box-shadow: 5px 5px 5px rgba(85, 85, 85, 0.75);
  margin-bottom: 20px;
}

.create-page-img img {
  vertical-align: bottom;
  width: 100%;
}

.create-page-img video {
  vertical-align: bottom;
  width: 100%;
}

/*====== 404ページ =======*/

.top-404 {
  border: solid 1px #A9907E;
  padding: 10px;
  position: relative;
  width: 10em;
  margin: 0 auto 5% auto;
  text-align: center;
  color: #A9907E;
  background-color: white;
  font-size: 1em;
}

.top-404::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #A9907E;
  border-right: solid 1px #A9907E;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -5px;
  top: 50%;
  right: 20px;
}

/*====== 価格表 =======*/

.price-table {
  width: 90%;
  margin: 0 auto 10% auto;
  border-collapse: collapse;
}

.price-table th,
.price-table tr,
.price-table td {
  display: flex;
  flex-direction: column;
}

.price-table th {
  display: none;
}

.price-table td {
  padding: 8px 6px;
  background-color: white;
}

.price-table .price-name {
  background-color: #c5b2a4;
  color: white;
  font-weight: bold;
}

.price-table .price {
  font-weight: bold;
}

.price-table {
  border: 1px solid #c5b2a4;
}

/*====== お知らせー =======*/

.news-all {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto 5% auto;
}

.news02.all {
  margin: 5% 0 7% 0;
}

.news-archive {
  width: 100%;
  margin: 0 auto;
  color: white;
}

.news02 {
  width: 100%;
  box-sizing: border-box;
  background: #26896D;
  border: 8px solid #B99B6B;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #999, 1px 1px 2px #020 inset;
}

.archive-title {
  font-size: 15px;
}

.sidebar-list li a {
  color: white;
}

.item-archive {
  padding: 3% 10%;
}

.item-archive:first-child {
  border-bottom: 2px solid white;
}

.blog,.single-post,.archive.category,.archive.date {
  background-color: #F8EDE3;
}

.news-box {
  background-color: #F8EDE3;
  padding: 3% 0 1% 0;
  width: auto;
}

.news {
  width: 90%;
  margin: 5% auto 10% auto;
  box-sizing: border-box;
  background: #26896D;
  border: 8px solid #B99B6B;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #999, 1px 1px 2px #020 inset;
}

.news-title {
  margin-left: 30px;
  color: white;
}

.news-contents {
  padding: 30px;
  color: white;
}

.news-list {
  width: 96%;
  margin: 0 auto;
}

.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid white;
  padding: 10px 20px;
}

.news-list .item.single {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid white;
  padding: 20px 10px;
}

.news-list .item.single:last-child {
  border-bottom: none;
}

.news-list .item:last-child a {
  border-bottom: none;
}

.news-list .item .date {
  margin: 0;
  min-width: 100px;
  font-size: 16px;
  color: white;
  padding: 0 10px 0 0;
}

.news-list .item .category {
  margin: 0;
  min-width: 100px;
  padding: 0 10px 0 0;
}

.news-list .item .category span {
  background: white;
  color: black;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}

.news-list .item .title {
  margin-top: 10px;
  width: 100%;
}

.news-list .item a:hover .title {
  display: block;
  border-bottom: 1px solid white;
  width: auto;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin-top: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  box-sizing: border-box;
  background: #26896D;
  border: 8px solid #B99B6B;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #999, 1px 1px 2px #020 inset;
}

.page-nav > li {
  min-width: 5em;
}
.page-nav > li:first-of-type a::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.page-nav a {
  display: inline-block;
  min-width: 5em;
  padding: 5px 14px;
  position: relative;
  color: white;
}
.page-nav a.to-archive {
  font-weight: bold;
}
.page-nav a.to-archive::after {
  content: none;
}
.page-nav a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
}

.wp-pagenavi span, .wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #444444;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}

.wp-pagenavi span:not(:last-child), .wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}

.wp-pagenavi span:hover, .wp-pagenavi a:hover {
  background-color: #FF6B95;
  color: #FFFFFF;
}
.wp-pagenavi span.current {
  background: #26896D;
  border: 8px solid #B99B6B;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #999, 1px 1px 2px #020 inset;
  color: white;
}
.wp-pagenavi a {
  background: #26896D;
  border: 8px solid #B99B6B;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #999, 1px 1px 2px #020 inset;
  color: white;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 0 1.2em;
}

.eyecatch {
  height: 0;
  padding-top: 59%;
  position: relative;
  overflow: hidden;
}
.eyecatch img {
  width: 94%;
  margin: 0 3%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*========= お問い合わせ ===============*/

.form-container {
  width: 90%;
  margin: 0 auto 5% auto;
}

.form-2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-2 div {
  width: 45%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 94%;
  padding: 10px 2%;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  outline: none;
  font-size: 18px;
}

.required {
  display: inline-block;
}
.required::after {
  content: "※";
  display: inline-block;
  padding-left: 1em;
  color: #DA1725;
}

.form-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-box dt, .form-box dd {
  width: 100%;
  margin: 0;
}

.form-box dt {
  padding-bottom: 0.3em;
}

.btn-submit {
  display: block;
  width: 150px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(135deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  border: none;
  border-radius: 5px;
  color: #FF6B95;
  font-size: 18px;
  text-align: center;
}

.form-check input {
  display: none;
}

.form-check input + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}

.form-check input + span::after,
.form-check input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.form-check input + span::before {
  border: 1px solid #aaaaaa;
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form-check input + span::after {
  border: none;
  background-color: #FF3399;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.form-check input:checked + span::after {
  display: block;
}

/*====== フッター =======*/

#footer {
  position: relative;
  color: #FF6B95;
  background: linear-gradient(135deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  padding: 30px;
}

#footer a {
  text-decoration: none;
  color: #FF6B95;
}

.primary {
  padding: 20px 0px;
}

.primary .flex {
  display: block;
}

.primary .flex .left {
  width: 100%;
}

.primary .flex .right {
  display: block;
  width: 100%;

}

.navi-section {
  display: block;
  width: 100%;
  margin: 40px 0 0;
}

#footer .parent {
  font-size: 12px;
  margin: 0 0 10px;
}

#footer .navi {
  font-size: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FF6B95;
}

#footer .navi li {
  border-top: 1px solid #FF6B95;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 12px;
}

#footer .navi li:first-child {
  margin: 0;
}

.copyright {
  width: 96%;
  margin: 0 auto;
  text-align: center;
  font-size: 10px;
}

/*====== ページトップ =======*/

.pagetop {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 1;
}

.pagetop a {
  background: #FF6B95;
  color: #fff;
  width: 4em;
  height: 4em;
  margin: 0;
  display: block;
  transition: all .5s ease;
  border-radius: 50%;
  position: relative;
}

.pagetop a:hover {
  opacity: .5;
}

.top-span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: inline-block;
  color: white;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
}


@media screen and (max-width: 479px) {

  .top-title {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: 25%;
    transform: translateY(-75%);
    font-family: 'Kaisei Tokumin', serif;
    font-size: 18px;
    background: -webkit-linear-gradient(-45deg, #FFC796 0%, #FF6B95 100%);
    color: red;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .works-content,
  .profile-text,
  .item,
  .price td {
    font-size: 13px;
  }
	
/* 仕事ボタン */

.works-button-box {
  width: 90%;
  margin: 0 5%;
}

.works-button {
  width: 90%;
}

}

@media screen and (min-width: 480px) {
  /* ここに480px以上の範囲のスタイルを記述 */
  /* 480~767pxが適用範囲 */

  .br-sp {
	  display: none;
	}
  .top-title {
    top: 10%;
    font-size: 25px;
  }

  .top-img img {
    height: 100vh;
  }


  .subheading-footer {
    font-size: 20px;
  }

}

@media screen and (min-width: 768px) {
  /* ここに768px以上の範囲のスタイルを記述 */
  /* 768~1024pxが適用範囲 */

	.br-sp {
		display: none;
	}
  .subheading-under {
    font-size: 25px;
  }

  .text {
    text-align: center;
    font-size: 15px;
  }

  .top-img img {
    height: 50vh;
  }

  .top-title {
    top: 15%;
    font-size: 40px;
  }

  .flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 60%;
    justify-content: space-around;
    margin: 0 auto;
    text-align: center;
  }

  .border_btn03 {
    width: 150px;
    border: 2px solid #FF6B95;
    border-radius: 10px;
    background: white;
    color: #FF6B95;
    /* 文字色 */
    padding: .5em 1em;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    font-size: 25px;
  }

  .flex-item1 {
    margin-bottom: 80px;
  }

  /*========= 言語メニュー ===============*/

  .header-nav-item {
    width: 170px;
    padding: 10px;
  }

  .header-nav-item>a {
    font-size: 20px;
  }

  /*========= ドロップダウン見た目 ===============*/

  .dropdown-child {
    width: 170px;
    top: 60px;
    left: -2px;
    padding: 10px;
  }

  .dropdown-child:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    margin-left: -12px;
    border: 12px solid transparent;
    border-bottom: 12px solid #FF6B95;
    z-index: 100;
  }

  .dropdown-child:after {
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 200;
  }

  .btm-border a {
    font-size: 15px;
    padding: 10px;
    color: #FF6B95;
  }

  .no-scroll::before {
    font-size: 18px;
  }

  .no-scroll.open::before {
    font-size: 18px;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    z-index: 9999;
    cursor: pointer;
    width: 40px;
    height: 40px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background-color: #FF6B95;
    width: 40px;
  }

  .openbtn span:nth-of-type(1) {
    top: 30px;
  }

  .openbtn span:nth-of-type(2) {
    top: 45px;
  }

  .openbtn span:nth-of-type(3) {
    top: 60px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40px;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 40px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40px;
  }

  /*====== スクロールを促す =======*/

  .scrolldown1 {
    position: absolute;
    top: 80%;
    left: 20%;
    transform: translate(-80%, -20%);
    height: 50px;
  }

  .scrolldown1 span {
    font-size: 18px;
    left: -15px;
    top: -35px;
  }

  .scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 1px;
    height: 40px;
  }

  /*====== プロフィール =======*/

  .profile {
    background: #F8EDE3;
    width: 80%;
    margin: 5% auto 10% auto;
    border: 1px solid #A9907E;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }

  .profile-img {
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
  }

  .profile-img img {
    border: 1px solid black;
    background-color: #a0eaec;
    width: 50%;
    margin: 0 25%;
  }

  .profile-img-name {
    position: absolute;
    top: 3%;
    left: 20%;
    font-size: 30px;
    background-color: #FF6B95;
    color: white;
    padding: 5px;
  }

  .profile-box {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 94%;
  }

  .profile-line {
    font-size: 15px;
  }

  .profile-text {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }

  .profile-more {
    border: solid 1px #A9907E;
    padding: 10px;
    position: relative;
    width: 30%;
    margin: 0 auto 5% auto;
    text-align: center;
    background-color: white;
    color: #A9907E;
  }

  .profile-more::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 1px #A9907E;
    border-right: solid 1px #A9907E;
    transform: rotate(45deg);
    position: absolute;
    margin-top: -5px;
    top: 50%;
    right: 20px;
  }

  /*====== 404ページ =======*/

  .text-404 {
    width: 60%;
    margin: 20% auto;
    font-size: 20px;
  }

.top-404 {
  border: solid 1px #A9907E;
  padding: 30px 10px;
  position: relative;
  width: 15em;
  margin: 0 auto 20% auto;
  text-align: center;
  color: #A9907E;
  background-color: white;
  font-size: 1.2em;
}

.top-404::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #A9907E;
  border-right: solid 1px #A9907E;
  transform: rotate(45deg);
  position: absolute;
  margin-top: -5px;
  top: 50%;
  right: 20px;
}


  /*====== 仕事 =======*/

  .works {
    display: flex;
    flex-direction: column;
    margin: 5% auto 10% auto;
  }

  .works-item1 {
    width: 48%;
    border-radius: 0 20px 20px 0;
    margin-bottom: -10%;
    display: block;
    transition: .3s;
  }

  .works-item2 {
    width: 48%;
    margin: 0 0 0 auto;
    border-radius: 20px 0 0 20px;
    border-right: none;
    margin-bottom: -10%;
    transition: .3s;
  }

  .works-item3 {
    width: 48%;
    border-radius: 0 20px 20px 0;
    display: block;
    transition: .3s;
    margin-bottom: -10%;
  }

  .works-item4 {
    width: 48%;
    margin: 0 0 0 auto;
    border-radius: 20px 0 0 20px;
    border-right: none;
    transition: .3s;
    margin-bottom: 1%;
  }

  .works-item1:hover,
  .works-item3:hover {
    transform: rotate(-10deg);
  }

  .works-item2:hover,
  .works-item4:hover {
    transform: rotate(10deg);
  }

  .works-item1::before,
  .works-item3::before {
    content: "";
    position: absolute;
    border-right: dotted 8px white;
    height: 98%;
    top: 0.5em;
    left: 0.5em;
  }

  .works-item2::before,
  .works-item4::before {
    content: "";
    position: absolute;
    border-right: dotted 8px white;
    height: 98%;
    top: 0.5em;
    right: 0.5em;
  }

  .works-item1 img,
  .works-item2 img,
  .works-item3 img,
  .works-item4 img{
    width: 50%;
    padding: 5% 25% 0 25%;
  }

  .works-num1,
  .works-num2 {
    width: 35%;
  }
	
/* 仕事ボタン */

.works-button-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: left;
}

.works-button {
  width: 45%;
}

  /*====== ホームページ制作 =======*/

  .create-page {
    width: 80%;
    margin: 3% auto 7% auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .create-page-box {
    width: 50%;
    /* 未対応ブラウザ用フォールバック */
    width: -webkit-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
    margin: 15px;
    display: flex;
    flex-direction: column;
  }

  .create-page-img {
    transition-duration: 0.3s;
    /*変化の時間*/
    box-shadow: 0px 4px 15px -5px rgba(85, 85, 85, 0.75);
  }

  .create-page-img:hover {
    transform: translate(-6px, -6px);
    box-shadow: 8px 8px 8px -5px rgba(85, 85, 85, 0.75);
  }

  /*====== 価格表 =======*/

  .price-table {
    width: 80%;
    margin: 0 auto 10% auto;
  }

  .price-table th,
  .price-table tr,
  .price-table td {
    border: 1px solid #d3c2b6;
    border-collapse: collapse;
    padding: 10px 6px;
  }

  .price-table tr {
    display: table-row;
  }

  .price-table th,
  .price-table td {
    display: table-cell;
  }

  .price-table th {
    background-color: #A9907E;
    color: white;
  }

  .price-table {
    display: table;
    border-collapse: collapse;
  }

  .price,
  .price-name {
    width: 25%;
    text-align: center;
  }

  /*========= お問い合わせ ===============*/

.form-container {
  width: 70%;
  margin: 0 auto 10% auto;
}

.form-container.text p {
  text-align: left;
}

.form-2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-2 div {
  width: 45%;
}

.form-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-box dt, .form-box dd {
  width: 100%;
  margin: 0;
}

.form-box dt {
  padding-bottom: 0.3em;
}

.btn-submit {
  display: block;
  width: 150px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(135deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  border: none;
  border-radius: 5px;
  color: #FF6B95;
  font-size: 18px;
  text-align: center;
}

  /*====== フッター =======*/

  #footer .primary {
    padding: 0 0 50px 0;
  }

  #footer .primary .flex {
    display: flex;
  }

  #footer .primary .flex .left {
    width: 40%;
  }

  #footer .primary .flex .right {
    width: 60%;
    display: flex;
    justify-content: flex-end;
  }

  .navi-section {
    display: flex;
    flex-direction: column;
    width: 40%;
  }

  .navi-section:last-child {
    margin-left: 20px;
    padding: 0 0 0 20px;
    width: 20%;
  }

  #footer .parent {
    margin: 0 0 16px 0;
    padding: 0;
    font-weight: bold;
    font-size: 15px;
  }

  #footer .navi {
    margin: 0;
    padding: 0;
  }

  #footer .navi li {
    margin: 0px 0 0 0;
    padding: 10px;
    font-size: 13px;
  }

  .copyright {
    font-size: 13px;
  }

}

@media screen and (min-width: 1025px) {

  .br-sp {
    display: none;
  }

  .subheading {
    font-size: 50px;
  }

  .subheading-footer {
    font-size: 35px;
  }

  .text {
    text-align: center;
    font-size: 15px;
  }

  #header {
    background: linear-gradient(-225deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  }

  .top-img {
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
  }

  .top-img img {
    height: 100vh;
    width: auto;
    border-radius: 30% 0px 0% 0%;
  }

  .top-title {
    width: auto;
    position: absolute;
    top: 40%;
    left: 5%;
    transform: translate(-60%, -95%);
    font-size: 50px;
    line-height: 100px;
    background: -webkit-linear-gradient(-45deg, #FFC796 0%, #FF6B95 100%);
    color: red;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }

  .flex-item1 {
    margin-bottom: 0;
  }

  .border_btn03 {
    width: 100px;
    border: 2px solid #FF6B95;
    border-radius: 10px;
    background: white;
    color: #FF6B95;
    /* 文字色 */
    padding: 1em 1em;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    font-size: 18px;
  }

  /*========= 言語メニュー ===============*/

  .header-nav-item {
    width: 120px;
    padding: 5px;
  }

  .header-nav-item>a {
    font-size: 18px;
  }

  /*========= ドロップダウン見た目 ===============*/

  .dropdown-child {
    width: 115px;
    background: white;
    border: solid 1px #FF6B95;
    border-radius: 0.5em;
  }

  .dropdown-child:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    margin-left: -12px;
    border: 12px solid transparent;
    border-bottom: 12px solid #FF6B95;
    z-index: 100;
  }

  .dropdown-child:after {
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 200;
  }

  .btm-border a {
    font-size: 15px;
    padding: 10px;
    color: #FF6B95;
  }

  .no-scroll::before {
    font-size: 18px;
  }

  .no-scroll.open::before {
    font-size: 18px;
  }


  /*====== スクロールを促す =======*/

  .scrolldown1 {
    position: absolute;
    top: 80%;
    left: 30%;
    transform: translate(-70%, -20%);
    height: 50px;
  }

  .scrolldown1 span {
    font-size: 20px;
    left: -10px;
    top: -35px;
  }

  .scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 40px;
  }

    /*====== 404ページ =======*/

    .text-404 {
      width: 60%;
      margin: 15% auto 10% auto;
      font-size: 20px;
    }
  
  .top-404 {
    border: solid 1px #A9907E;
    padding: 20px 10px;
    position: relative;
    width: 15em;
    margin: 0 auto 20% auto;
    text-align: center;
    color: #A9907E;
    background-color: white;
    font-size: 1em;
  }
  
  .top-404::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 1px #A9907E;
    border-right: solid 1px #A9907E;
    transform: rotate(45deg);
    position: absolute;
    margin-top: -5px;
    top: 50%;
    right: 20px;
  }


  /*====== プロフィール =======*/

  .profile {
    width: 88%;
    flex-direction: row;
    padding: 50px 10px;
    position: relative;
  }

  .profile-img {
    width: 40%;
    margin: 0;
  }

  .profile-img img {
    width: 100%;
    margin: 0;
  }

  .profile-img-name {
    position: absolute;
    top: 1%;
    left: 1%;
    font-size: 30px;
    background-color: #FF6B95;
    color: white;
    padding: 5px;
  }

  .profile-box {
    position: relative;
    width: 50%;
  }

  .profile-line {
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100%;
  }

  .profile-text {
    width: 100%;
  }

  .profile-more {
    padding: 10px;
    width: 40%;
    margin: 0 auto 5% auto;
  }

  .profile-more::after {
    width: 10px;
    height: 10px;
    top: 50%;
    right: 20px;
  }

  /*====== 仕事 =======*/

  .works {
    display: flex;
    flex-direction: column;
    margin: 5% auto 10% auto;
  }

  .works-item1 {
    width: 48%;
    border-radius: 0 20px 20px 0;
    margin-bottom: -10%;
    display: block;
    transition: .3s;
  }

  .works-item2 {
    width: 48%;
    margin: 0 0 0 auto;
    border-radius: 20px 0 0 20px;
    border-right: none;
    margin-bottom: -10%;
    transition: .3s;
  }

  .works-item3 {
    width: 48%;
    border-radius: 0 20px 20px 0;
    display: block;
    transition: .3s;
    margin-bottom: -10%;
  }

  .works-item4 {
    width: 48%;
    margin: 0 0 0 auto;
    border-radius: 20px 0 0 20px;
    border-right: none;
    margin-bottom: 1%;
    transition: .3s;
  }

  .works-item1:hover,
  .works-item3:hover {
    transform: rotate(-10deg);
  }

  .works-item2:hover,
  .works-item4:hover {
    transform: rotate(10deg);
  }

  .works-item1::before,
  .works-item3::before {
    content: "";
    position: absolute;
    border-right: dotted 8px white;
    height: 98%;
    top: 0.5em;
    left: 0.5em;
  }

  .works-item2::before,
  .works-item4::before {
    content: "";
    position: absolute;
    border-right: dotted 8px white;
    height: 98%;
    top: 0.5em;
    right: 0.5em;
  }

  .works-item1 img,
  .works-item2 img,
  .works-item3 img,
  .works-item4 img{
    width: 50%;
    padding: 5% 25% 0 25%;
  }

  .works-num1,
  .works-num2 {
    width: 35%;
  }
	
/* 仕事ボタン */

.works-button-box {
  width: 80%;
  margin: 0 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.works-button {
  width: 25%;
}

  /*====== ホームページ制作 =======*/

  .create-page {
    width: 80%;
    margin: 3% auto 7% auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .create-page-box {
    width: 33.33333%;
    /* 未対応ブラウザ用フォールバック */
    width: -webkit-calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
    margin: 15px;
    display: flex;
    flex-direction: column;
  }

  .create-page-img {
    transition-duration: 0.3s;
    /*変化の時間*/
    box-shadow: 0px 4px 15px -5px rgba(85, 85, 85, 0.75);
  }

  .create-page-img:hover {
    transform: translate(-6px, -6px);
    box-shadow: 8px 8px 8px -5px rgba(85, 85, 85, 0.75);
  }

  /*====== 価格表 =======*/

  .price-table {
    width: 80%;
    margin: 0 auto 10% auto;
  }

  .price-table th,
  .price-table tr,
  .price-table td {
    border: 1px solid #d3c2b6;
    border-collapse: collapse;
    padding: 10px 6px;
  }

  .price-table tr {
    display: table-row;
  }

  .price-table th,
  .price-table td {
    display: table-cell;
  }

  .price-table th {
    background-color: #A9907E;
    color: white;
  }

  .price-table {
    display: table;
    border-collapse: collapse;
  }

  .price,
  .price-name {
    width: 25%;
    text-align: center;
  }

  /*====== お知らせー =======*/

  .news-all {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .news02.all {
    margin: 5% 0 7% 0;
  }

  .news-all-right {
    width: 80%;
    margin: 0 3%
  }

  .news-archive {
    width: 20%;
    margin: 2% 3%;
  }

  .news02 {
    width: 100%;
    margin: 5% auto 10% auto;
    box-sizing: border-box;
    border: 8px solid #B99B6B;
    box-shadow: 2px 2px 4px #999, 2px 2px 2px #020 inset;
  }

  .news {
    width: 70%;
    margin: 5% auto 10% auto;
    box-sizing: border-box;
    border: 8px solid #B99B6B;
    box-shadow: 2px 2px 4px #999, 2px 2px 2px #020 inset;
  }

  .news-list {
    width: 96%;
    margin: 0 auto;
  }

  .news-list .item a {
    flex-wrap: nowrap;
  }

  .news-list .item:last-child a {
    border-bottom: none;
  }

  .news-list .item .date {
    min-width: 140px;
  }

  .news-list .item .category {
    margin: 0;
    min-width: 100px;
    padding: 0 10px 0 0;
  }

  .news-list .item .category span {
    background: white;
    color: black;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1.5;
  }

  .news-list .item .title {
    margin: 0;
  }

  /*========= お問い合わせ ===============*/

.form-container {
  width: 50%;
  margin: 0 auto 7% auto;
}

.form-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-box dt, .form-box dd {
  width: 100%;
  margin: 0;
}

.form-box dt {
  padding-bottom: 0.3em;
}

.btn-submit {
  display: block;
  width: 150px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(135deg, #f0ebe5 0%, #a0eaec 65%, #a0d8ef 100%);
  border: none;
  border-radius: 5px;
  color: #FF6B95;
  font-size: 18px;
  text-align: center;
}

  /*====== フッター =======*/

  #footer .primary {
    padding: 0 0 50px 0;
  }

  #footer .primary .flex {
    display: flex;
  }

  #footer .primary .flex .left {
    width: 40%;
  }

  #footer .primary .flex .right {
    width: 60%;
    display: flex;
    justify-content: flex-end;
  }

  #footer .logo {
    font-size: 26px;
  }

  .navi-section {
    display: flex;
    flex-direction: column;
    width: 30%;
  }

  .navi-section:last-child {
    margin-left: 20px;
    padding: 0 0 0 20px;
    width: 20%;
  }

  #footer .parent {
    margin: 0 0 16px 0;
    padding: 0;
    font-weight: bold;
    font-size: 18px;
  }

  #footer .navi {
    margin: 0;
    padding: 0;
  }

  #footer .navi li {
    margin: 0px 0 0 0;
    padding: 10px;
    font-size: 13px;
  }

}

@media screen and (min-width: 1920px) {

  .text {
	  width: 90%;
	  margin 0 5%;
    font-size: 20px;
  }

  .text-404 {
    width: 30%;
    margin: 5% auto;
    font-size: 28px;
  }

  .subheading-under {
    font-size: 40px;
  }

    /*====== 404ページ =======*/

    .text-404 {
      width: 40%;
      margin: 5% auto;
      font-size: 30px;
    }
  
  .top-404 {
    border: solid 1px #A9907E;
    padding: 20px 10px;
    position: relative;
    width: 15em;
    margin: 0 auto 10% auto;
    text-align: center;
    color: #A9907E;
    background-color: white;
    font-size: 1em;
  }
  
  .top-404::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 1px #A9907E;
    border-right: solid 1px #A9907E;
    transform: rotate(45deg);
    position: absolute;
    margin-top: -5px;
    top: 50%;
    right: 20px;
  }

  /*====== プロフィール =======*/

  .profile-img-name {
    position: absolute;
    top: 1%;
    left: 1%;
    font-size: 45px;
    background-color: #FF6B95;
    color: white;
    padding: 5px;
  }

  .profile-text {
    width: 100%;
    font-size: 20px;
  }

  /*====== 仕事 =======*/

  .works-item1,
  .works-item2,
  .works-item3,
  .works-item4 {
    width: 43%;
  }

  .works-item1 img,
  .works-item2 img,
  .works-item3 img,
  .works-item4 img {
    width: 50%;
    padding: 5% 25% 0 25%;
  }

  .works-num1,
  .works-num2 {
    width: 20%;
  }

  .works-content {
    font-size: 25px;
  }
}