@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Oleo+Script:wght@400;700&display=swap');
/************************/
/************************/
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  /* 1rem = 1px */
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #FFFFFF;
  color: #3E3E3B;
}
body.menu_active {
  overflow-y: hidden;
}
a {
  color: #FFFFFF;
  text-decoration: none;
}
h1, h2, h3, h4, h5 {
  font-family: 'Oleo Script', 'Noto Sans JP', sans-serif, cursive;
}
.pl-1 {
  padding-left: 1rem;
}
.address::before {
  content: "〒" attr(data-zipcode) "\a";
  white-space: pre;
}
header {
  font-family: 'Oleo Script', 'Noto Sans JP', sans-serif, cursive;
  height: 7rem;
  position: relative;
}
header h1 {
  background: #FFFFFF;
  color: #4C586F;
  font-size: 3rem;
  margin: 0;
  padding: 2rem 3rem;
  position: fixed;
  width: 18rem;
  z-index: 999;
}
@media screen and (min-width: 576px) {
  header h1 {
    background: #FFFFFF;
  }
}
header h1:after {
  content: "\a" attr(data-subtext) "";
  display: block;
  font-size: 1.2rem;
  line-height: 0.5;
  text-align: right;
  white-space: pre;
}
header h1 a {
  color: #4C586F;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  header h1 {
    transition: 0.7s ease-out;
    visibility: visible;
    opacity: 1;
  }
  header h1.d_none {
    background: initial;
    visibility: hidden;
    opacity: 0;
  }
  header h1.active {
    background: initial;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
header nav.main_nav {
  background: #A2AAB0;
  color: #FFFFFF;
  display: block;
  height: 100%;
  position: fixed;
  top: 0;
  left: -120%;
  transition: all 300ms 0s ease;
  width: 100%;
  z-index: 200;
}
header nav.main_nav.active {
  top: 0;
  right: 0;
  botton: 0;
  left: 0;
}
@media screen and (min-width: 576px) {
  header nav.main_nav {
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    left: 0;
    top: 0;
    width: 18rem;
  }
}
header nav.main_nav ul {
  list-style: none;
  margin-top: 14rem;
  padding-left: 2.5rem;
  width: 90%;
}
@media screen and (min-width: 576px) {
  header nav.main_nav ul {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
header nav.main_nav ul li {
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (min-width: 576px) {
  header nav.main_nav ul li {
    margin-bottom: 3rem;
  }
}
header nav.main_nav ul li::after {
  visibility: hidden;
  content: "\f56b";
  color: #4C586F;
  font-family: "Font Awesome 5 Free";
  font-size: 1.2rem;
  font-weight: 900;
  opacity: 0;
  padding-left: 1rem;
}
header nav.main_nav ul li.active::after {
  opacity: 1;
  visibility: visible;
  transition: all 500ms 0s ease;
}
header nav.main_nav ul li > a {
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (min-width: 576px) {
  header nav.main_nav ul li > a {
    color: #4C586F;
  }
}
header nav.main_nav ul li > a:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1rem;
  border: 1px solid #A2AAB0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  opacity: 1;
  animation: 1s circleanime2 forwards;
  /*アニメーションの設定*/
}
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
header nav.main_nav .contact_to {
  font-size: 1.8rem;
  bottom: 2.5rem;
  padding-right: 2.5rem;
  position: absolute;
  right: 0;
  text-align: right;
}
header nav.main_nav .contact_to:before {
  content: "CONTACT:";
  display: block;
  font-size: 1.2rem;
}
@media screen and (min-width: 576px) {
  header nav.main_nav .contact_to {
    display: none;
  }
}
header .menu_btn {
  background: #FFFFFF;
  padding: 2rem 2rem 3rem;
  position: fixed;
  right: 2.5rem;
  top: 0;
  text-align: center;
  transition: all 300ms 0s ease;
  z-index: 200;
}
header .menu_btn:before {
  content: "MENU";
}
header .menu_btn:after {
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 900;
  content: "\A\f141";
  line-height: 1;
  white-space: pre;
}
header .menu_btn.active {
  color: #FFFFFF;
  background: initial;
}
header .menu_btn.active:before {
  content: "CLOSE";
}
@media screen and (min-width: 576px) {
  header .menu_btn {
    display: none;
  }
}
header .mini_logo {
  background-color: #4C586F;
  color: #FFFFFF;
  font-size: 5rem;
  height: 7rem;
  right: 0;
  text-align: center;
  top: 0;
  width: 7rem;
  position: absolute;
}
footer {
  background: #4C586F;
  color: #FFFFFF;
  padding: 2rem 2rem 1rem;
}
@media screen and (min-width: 576px) {
  footer .content {
    margin-left: 18rem;
    width: calc(100% - 18rem);
  }
}
footer p {
  font-size: 1.2rem;
}
footer h1 {
  text-align: center;
}
@media screen and (min-width: 576px) {
  footer h1 {
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
  footer h1::before {
    content: "-";
    padding-right: 1rem;
  }
  footer h1::after {
    content: "-";
    padding-left: 1rem;
  }
}
footer h3 {
  font-size: 1.4rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-align: center;
}
footer .email {
  text-align: center;
}
footer .studio_list {
  display: flex;
  flex-wrap: wrap;
}
footer .studio_list dt, footer .studio_list dd {
  margin: 0;
}
footer .studio_list dt {
  font-size: 1.4rem;
}
footer .studio_list > div {
  width: calc(50% - 3rem);
}
footer .studio_list .l_box {
  text-align: right;
  margin-right: 3rem;
}
footer .studio_list .r_box {
  text-align: left;
  margin-left: 3rem;
}
footer .info {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 576px) {
  footer .info {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 0.12rem);
  }
}
footer .info > p {
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}
footer .info .address::before {
  padding-right: 1rem;
}
footer nav {
  font-family: 'Oleo Script', 'Noto Sans JP', sans-serif, cursive;
}
@media screen and (min-width: 576px) {
  footer nav {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  list-style: none;
  max-width: 42.5rem;
  padding: 0;
}
@media screen and (min-width: 576px) {
  footer nav ul {
    margin: auto;
  }
}
footer nav ul li {
  margin-bottom: 2rem;
  text-align: center;
  width: calc(100% / 3);
}
footer nav ul li a {
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
}
footer nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer nav ul li a:hover::after {
  transform: scale(1, 1);
}
footer small {
  display: block;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 576px) {
  footer small {
    text-align: right;
  }
}
main {
  min-height: calc(100vh - 23rem);
}
.scroll_arrow {
  color: #4C586F;
  display: inline-flex;
  position: absolute;
  transform: rotate(90deg);
  left: -4.1rem;
  bottom: 2rem;
}
.scroll_arrow::after {
  content: '';
  border-bottom: solid 1px;
  border-right: solid 1px;
  height: 0.7rem;
  margin-top: 0;
  transform: skew(45deg);
  width: 6rem;
}
@media screen and (min-width: 576px) {
  .scroll_arrow {
    left: -4.5rem;
  }
}
.scroll_arrow::before {
  content: "scroll";
  position: absolute;
  top: -0.5rem;
  left: 0.4rem;
}
.top {
  display: block;
  height: calc(100vh - 7rem);
  margin-bottom: 0.5rem;
  width: 100%;
  padding-right: 0;
}
@media screen and (min-width: 576px) {
  .top {
    margin-bottom: 7rem;
  }
}
.top .bg {
  background-image: linear-gradient(to top, #4C586F 0%, rgba(162, 170, 176, 0.1) 100%), url("/wp-content/themes/portfolio/scss/../img/sample_003.jpg");
  background-position: center;
  background-size: cover;
  height: 100%;
  position: relative;
  width: 100%;
}
.top .bg .top_title {
  background: #FFFFFF;
  background: rgba(255, 255, 255, 0.4);
  font-size: 3rem;
  left: 50%;
  padding: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.top .bg .top_title h2 {
  background-image: url("/wp-content/themes/portfolio/scss/../img/sample_003.jpg");
  -webkit-background-clip: text;
  background-position: center;
  color: transparent;
  border-image: url("/wp-content/themes/portfolio/scss/../img/sample_003.jpg") 30;
  border-style: solid;
  border-width: 0.3rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 4rem 3rem;
  text-align: center;
}
.top .bg .top_title h2 span {
  font-size: 50%;
}
.top .bg .top_title h2 span:before {
  content: "\A";
  white-space: pre;
}
.top img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(0);
  width: 90%;
}
@media screen and (min-width: 576px) {
  .top img {
    width: 65%;
  }
}
.more_link {
  text-align: right;
  color: #3E3E3B;
}
.more_link > a {
  color: #3E3E3B;
  font-size: 1.4rem;
  font-style: italic;
  text-decoration: none;
  color: #3E3E3B;
  display: inline-flex;
}
.more_link > a::after {
  content: '';
  border-bottom: solid 1px;
  border-right: solid 1px;
  height: 0.7rem;
  margin-top: 0.3rem;
  transform: skew(45deg);
  width: 3rem;
}
section {
  margin-bottom: 3rem;
  padding: 2rem;
}
@media screen and (min-width: 576px) {
  section {
    padding-left: 20rem;
  }
}
section .content .content_title h2 {
  border: 1px solid #A2AAB0;
  color: #3E3E3B;
  display: inline-block;
  padding: 2rem;
  position: relative;
}
section .content .content_title h2:after {
  border: 1px solid #A2AAB0;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transition: all 0.5s 0.5s ease;
}
section .content .content_title h2.execAnim:after {
  top: 0.4rem;
  right: 0.4rem;
}
section.bk_photo {
  background: linear-gradient(to top, #4c586f 0%, rgba(162, 170, 176, 0.2) 100%), url(/wp-content/themes/portfolio/scss/../img/sample_003.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  margin-bottom: 7rem;
  margin-top: 7rem;
}
section.bk_photo .content_title h2 {
  border: 1px solid #A2AAB0;
  color: #FFFFFF;
  display: inline-block;
  padding: 2rem;
  position: relative;
}
section.bk_photo .content_title h2:after {
  border: 1px solid #A2AAB0;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transition: all 0.5s 0.5s ease;
}
section.bk_photo .content_title h2.execAnim:after {
  top: 0.4rem;
  right: 0.4rem;
}
section.bk_photo .more_link {
  text-align: right;
  color: #FFFFFF;
}
section.bk_photo .more_link > a {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-style: italic;
  text-decoration: none;
  color: #FFFFFF;
  display: inline-flex;
}
section.bk_photo .more_link > a::after {
  content: '';
  border-bottom: solid 1px;
  border-right: solid 1px;
  height: 0.7rem;
  margin-top: 0.3rem;
  transform: skew(45deg);
  width: 3rem;
}
.block_btn_box {
  display: table;
  margin: 7rem auto;
}
.block_btn_box a {
  background: #4C586F;
  color: #FFFFFF;
  display: table-cell;
  font-size: 1.4rem;
  height: 12rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  vertical-align: middle;
  width: 20rem;
}
.block_btn_box a:hover {
  font-size: 1.6rem;
  opacity: 0.9;
}
.dl_box {
  border-top: 1px solid #A2AAB0;
  border-bottom: 1px solid #A2AAB0;
  font-size: 1.2rem;
  margin: 1rem auto;
  max-width: 65rem;
  padding: 2rem 2rem 0;
}
.dl_box dt {
  margin-bottom: 0.5rem;
}
.dl_box dd {
  margin-left: 0;
}
.dl_box dd:last-child {
  margin-bottom: 2.5rem;
}
/* form */
.contact_form {
  padding-top: 2rem;
}
.controls {
  text-align: left;
  position: relative;
}
.controls input[type="text"], .controls input[type="email"], .controls input[type="number"], .controls input[type="date"], .controls input[type="tel"], .controls textarea, .controls button, .controls select {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #CBC5C1;
  width: 100%;
  margin-bottom: 18px;
  color: #888;
  font-family: 'Lato', 'sans-serif';
  font-size: 16px;
  font-weight: 300;
  border-radius: 2px;
  transition: all 0.3s;
}
.controls input[type="text"]:focus, .controls input[type="email"]:focus, .controls input[type="number"]:focus, .controls input[type="date"]:focus, .controls input[type="tel"]:focus, .controls textarea:focus, .controls button:focus, .controls select:focus, .controls input[type="text"]:hover, .controls input[type="email"]:hover, .controls input[type="number"]:hover, .controls input[type="date"]:hover, .controls input[type="tel"]:hover, .controls textarea:hover, .controls button:hover, .controls select:hover {
  outline: none;
  border-color: #A2AAB0;
}
.controls input[type="text"]:focus + label, .controls input[type="email"]:focus + label, .controls input[type="number"]:focus + label, .controls input[type="date"]:focus + label, .controls input[type="tel"]:focus + label, .controls textarea:focus + label, .controls button:focus + label, .controls select:focus + label, .controls input[type="text"]:hover + label, .controls input[type="email"]:hover + label, .controls input[type="number"]:hover + label, .controls input[type="date"]:hover + label, .controls input[type="tel"]:hover + label, .controls textarea:hover + label, .controls button:hover + label, .controls select:hover + label {
  color: #4C586F;
  cursor: text;
}
.controls .fa-sort {
  position: absolute;
  right: 10px;
  top: 17px;
  color: #999;
}
.controls select {
  appearance: none;
  cursor: pointer;
}
.controls label {
  position: absolute;
  left: 8px;
  top: 12px;
  width: 60%;
  color: #999;
  font-size: 1.4rem;
  display: inline-block;
  padding: 4px 10px;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0);
  transition: color 0.3s, top 0.3s, background-color 0.8s;
  background-color: white;
}
.controls label.active {
  top: -11px;
  color: #555;
  background-color: white;
  width: auto;
}
.controls textarea {
  resize: none;
  height: 200px;
}
.animlbl.mw_name + label:before {
  content: "\f007";
}
.animlbl.mw_email + label:before {
  content: "\f0e0";
}
.animlbl.mw_text + label:before {
  content: "\f044";
}
.animlbl + label:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  padding-right: 0.7rem;
}
input[type="submit"], button {
  background-color: #4C586F;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  float: right;
  font-size: 1.4rem;
  padding: 1.2rem 2rem;
  margin-left: 1rem;
}
input[type="submit"]:hover, button:hover {
  background-color: #56647e;
}
.fadein_anim {
  opacity: 0;
  transform: translate(0, 4rem);
  transition: all 400ms;
}
.fadein_anim.effect_scroll {
  opacity: 1;
  transform: translate(0, 0);
}
/* PhotoGalleryプラグイン用　*/
.bwg-item {
  opacity: 0;
  transform: translate(-1rem, 4rem);
  transition: all 500ms;
}
.bwg-item:nth-of-type(0) {
  transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
}
.bwg-item:nth-of-type(1) {
  transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
.bwg-item:nth-of-type(2) {
  transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
.bwg-item:nth-of-type(3) {
  transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
.bwg-item:nth-of-type(4) {
  transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
.bwg-item:nth-of-type(5) {
  transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
.bwg-item:nth-of-type(6) {
  transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.bwg-item:nth-of-type(7) {
  transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
.bwg-item:nth-of-type(8) {
  transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}
.bwg-item:nth-of-type(9) {
  transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}
.bwg-item:nth-of-type(10) {
  transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}
.bwg-item:nth-of-type(11) {
  transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -webkit-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
}
.bwg-item:nth-of-type(12) {
  transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}
.bwg-item:nth-of-type(13) {
  transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -webkit-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
}
.bwg-item:nth-of-type(14) {
  transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -webkit-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
}
.bwg-item:nth-of-type(15) {
  transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}
.bwg-item:nth-of-type(16) {
  transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -webkit-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
}
.bwg-item:nth-of-type(17) {
  transition-delay: 1700ms;
  -moz-transition-delay: 1700ms;
  -webkit-transition-delay: 1700ms;
  -o-transition-delay: 1700ms;
  -ms-transition-delay: 1700ms;
}
.bwg-item:nth-of-type(18) {
  transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}
.bwg-item:nth-of-type(19) {
  transition-delay: 1900ms;
  -moz-transition-delay: 1900ms;
  -webkit-transition-delay: 1900ms;
  -o-transition-delay: 1900ms;
  -ms-transition-delay: 1900ms;
}
.bwg-item:nth-of-type(20) {
  transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
}
.bwg-item:nth-of-type(21) {
  transition-delay: 2100ms;
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}
.bwg-item:nth-of-type(22) {
  transition-delay: 2200ms;
  -moz-transition-delay: 2200ms;
  -webkit-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
}
.bwg-item:nth-of-type(23) {
  transition-delay: 2300ms;
  -moz-transition-delay: 2300ms;
  -webkit-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
}
.bwg-item:nth-of-type(24) {
  transition-delay: 2400ms;
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}
.bwg-item:nth-of-type(25) {
  transition-delay: 2500ms;
  -moz-transition-delay: 2500ms;
  -webkit-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
}
.bwg-item:nth-of-type(26) {
  transition-delay: 2600ms;
  -moz-transition-delay: 2600ms;
  -webkit-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
}
.bwg-item:nth-of-type(27) {
  transition-delay: 2700ms;
  -moz-transition-delay: 2700ms;
  -webkit-transition-delay: 2700ms;
  -o-transition-delay: 2700ms;
  -ms-transition-delay: 2700ms;
}
.bwg-item:nth-of-type(28) {
  transition-delay: 2800ms;
  -moz-transition-delay: 2800ms;
  -webkit-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
}
.bwg-item:nth-of-type(29) {
  transition-delay: 2900ms;
  -moz-transition-delay: 2900ms;
  -webkit-transition-delay: 2900ms;
  -o-transition-delay: 2900ms;
  -ms-transition-delay: 2900ms;
}
.bwg-item:nth-of-type(30) {
  transition-delay: 3000ms;
  -moz-transition-delay: 3000ms;
  -webkit-transition-delay: 3000ms;
  -o-transition-delay: 3000ms;
  -ms-transition-delay: 3000ms;
}
.bwg-item:nth-of-type(31) {
  transition-delay: 3100ms;
  -moz-transition-delay: 3100ms;
  -webkit-transition-delay: 3100ms;
  -o-transition-delay: 3100ms;
  -ms-transition-delay: 3100ms;
}
.bwg-item:nth-of-type(32) {
  transition-delay: 3200ms;
  -moz-transition-delay: 3200ms;
  -webkit-transition-delay: 3200ms;
  -o-transition-delay: 3200ms;
  -ms-transition-delay: 3200ms;
}
.bwg-item:nth-of-type(33) {
  transition-delay: 3300ms;
  -moz-transition-delay: 3300ms;
  -webkit-transition-delay: 3300ms;
  -o-transition-delay: 3300ms;
  -ms-transition-delay: 3300ms;
}
.bwg-item:nth-of-type(34) {
  transition-delay: 3400ms;
  -moz-transition-delay: 3400ms;
  -webkit-transition-delay: 3400ms;
  -o-transition-delay: 3400ms;
  -ms-transition-delay: 3400ms;
}
.bwg-item:nth-of-type(35) {
  transition-delay: 3500ms;
  -moz-transition-delay: 3500ms;
  -webkit-transition-delay: 3500ms;
  -o-transition-delay: 3500ms;
  -ms-transition-delay: 3500ms;
}
.bwg-item:nth-of-type(36) {
  transition-delay: 3600ms;
  -moz-transition-delay: 3600ms;
  -webkit-transition-delay: 3600ms;
  -o-transition-delay: 3600ms;
  -ms-transition-delay: 3600ms;
}
.bwg-item:nth-of-type(37) {
  transition-delay: 3700ms;
  -moz-transition-delay: 3700ms;
  -webkit-transition-delay: 3700ms;
  -o-transition-delay: 3700ms;
  -ms-transition-delay: 3700ms;
}
.bwg-item:nth-of-type(38) {
  transition-delay: 3800ms;
  -moz-transition-delay: 3800ms;
  -webkit-transition-delay: 3800ms;
  -o-transition-delay: 3800ms;
  -ms-transition-delay: 3800ms;
}
.bwg-item:nth-of-type(39) {
  transition-delay: 3900ms;
  -moz-transition-delay: 3900ms;
  -webkit-transition-delay: 3900ms;
  -o-transition-delay: 3900ms;
  -ms-transition-delay: 3900ms;
}
.bwg-item:nth-of-type(40) {
  transition-delay: 4000ms;
  -moz-transition-delay: 4000ms;
  -webkit-transition-delay: 4000ms;
  -o-transition-delay: 4000ms;
  -ms-transition-delay: 4000ms;
}
.bwg-item:nth-of-type(41) {
  transition-delay: 4100ms;
  -moz-transition-delay: 4100ms;
  -webkit-transition-delay: 4100ms;
  -o-transition-delay: 4100ms;
  -ms-transition-delay: 4100ms;
}
.bwg-item:nth-of-type(42) {
  transition-delay: 4200ms;
  -moz-transition-delay: 4200ms;
  -webkit-transition-delay: 4200ms;
  -o-transition-delay: 4200ms;
  -ms-transition-delay: 4200ms;
}
.bwg-item:nth-of-type(43) {
  transition-delay: 4300ms;
  -moz-transition-delay: 4300ms;
  -webkit-transition-delay: 4300ms;
  -o-transition-delay: 4300ms;
  -ms-transition-delay: 4300ms;
}
.bwg-item:nth-of-type(44) {
  transition-delay: 4400ms;
  -moz-transition-delay: 4400ms;
  -webkit-transition-delay: 4400ms;
  -o-transition-delay: 4400ms;
  -ms-transition-delay: 4400ms;
}
.bwg-item:nth-of-type(45) {
  transition-delay: 4500ms;
  -moz-transition-delay: 4500ms;
  -webkit-transition-delay: 4500ms;
  -o-transition-delay: 4500ms;
  -ms-transition-delay: 4500ms;
}
.bwg-item:nth-of-type(46) {
  transition-delay: 4600ms;
  -moz-transition-delay: 4600ms;
  -webkit-transition-delay: 4600ms;
  -o-transition-delay: 4600ms;
  -ms-transition-delay: 4600ms;
}
.bwg-item:nth-of-type(47) {
  transition-delay: 4700ms;
  -moz-transition-delay: 4700ms;
  -webkit-transition-delay: 4700ms;
  -o-transition-delay: 4700ms;
  -ms-transition-delay: 4700ms;
}
.bwg-item:nth-of-type(48) {
  transition-delay: 4800ms;
  -moz-transition-delay: 4800ms;
  -webkit-transition-delay: 4800ms;
  -o-transition-delay: 4800ms;
  -ms-transition-delay: 4800ms;
}
.bwg-item:nth-of-type(49) {
  transition-delay: 4900ms;
  -moz-transition-delay: 4900ms;
  -webkit-transition-delay: 4900ms;
  -o-transition-delay: 4900ms;
  -ms-transition-delay: 4900ms;
}
.bwg-item:nth-of-type(50) {
  transition-delay: 5000ms;
  -moz-transition-delay: 5000ms;
  -webkit-transition-delay: 5000ms;
  -o-transition-delay: 5000ms;
  -ms-transition-delay: 5000ms;
}
.bwg-item.effect_scroll {
  opacity: 1;
  transform: translate(0, 0);
}
/* opening */
section.top {
  animation: contentScale 2.6s forwards;
}
.opening {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4C586F;
  z-index: 9999;
  animation: byeShutter 2.6s forwards;
}
.opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFFFFF;
  width: 0;
  height: 1px;
  animation: shutterOpen 2.6s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
/* aboutus */
/* STAFF */
@media screen and (min-width: 768px) {
  .staff_content {
    display: flex;
    flex-wrap: wrap;
  }
}
.staff_content .staff {
  margin: 1rem 3rem 2rem 0;
}
@media screen and (min-width: 768px) {
  .staff_content .staff {
    width: calc(50% - 3rem);
  }
}
@media screen and (min-width: 992px) {
  .staff_content .staff {
    width: calc(33% - 3rem);
  }
}
.staff_content .staff .visual_img {
  position: relative;
  background-image: url("/wp-content/themes/portfolio/scss/../img/staff_img/staff_001.jpg");
  background-position: center;
  background-size: cover;
  filter: grayscale(90%);
  padding-right: 3rem;
  width: 31.5rem;
  padding-bottom: 100%;
}
.staff_content .staff .visual_img.vi_id01 {
  background-image: linear-gradient(to bottom, rgba(76, 88, 111, 0.5) 0%, rgba(162, 170, 176, 0.1) 100%), url("/wp-content/themes/portfolio/scss/../img/staff_img/staff_001.jpg");
}
.staff_content .staff .visual_img.vi_id02 {
  background-image: linear-gradient(to bottom, rgba(76, 88, 111, 0.7) 0%, rgba(162, 170, 176, 0.1) 100%), url("/wp-content/themes/portfolio/scss/../img/staff_img/staff_002.jpg");
}
.staff_content .staff .visual_img.vi_id03 {
  background-image: url("/wp-content/themes/portfolio/scss/../img/staff_img/staff_003.jpg");
}
@media screen and (min-width: 768px) {
  .staff_content .staff .visual_img {
    width: 100%;
  }
}
.staff_content .staff .visual_img .staff_no {
  font-family: 'Oleo Script', 'Noto Sans JP', sans-serif, cursive;
  font-size: 1.6rem;
  position: absolute;
  top: -1.3rem;
  right: -3rem;
  transform: rotate(-90deg);
}
.staff_content .staff .staff_jp, .staff_content .staff .staff_en {
  display: inline-block;
  margin-top: 0.7rem;
  vertical-align: top;
  width: 49%;
}
.staff_content .staff .staff_en {
  color: #A2AAB0;
  font-weight: 300;
  font-size: 2rem;
}
.staff_content .staff .staff_jp {
  text-align: right;
}
/* photo gallery プラグインに追加する */
div[class^="tablenav-pages_"] {
  margin-top: 5rem !important;
}
.pagination-links .pagination-links_col1 a, .pagination-links .pagination-links_col2 a, .pagination-links .pagination-links_col3 a {
  background: #4C586F !important;
  border: none !important;
  color: #FFFFFF !important;
  padding: 1.2rem 1.8rem !important;
}
.pagination-links .pagination-links_col1 span[class^="total-pages"], .pagination-links .pagination-links_col2 span[class^="total-pages"], .pagination-links .pagination-links_col3 span[class^="total-pages"] {
  padding: 1.4rem;
}
.pagination-links .pagination-links_col2 {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.pagination-links input[type="number"] {
  padding-bottom: 1.2rem !important;
  padding-top: 1.2rem !important;
  margin-right: 1.2rem !important;
}
/*# sourceMappingURL=http://gallery.plmin.us/wp-content/build/scss_library/0606c3ec4764c4519178d2f58b952529d7f03f1c.css.map */