@charset "UTF-8";
/*
Theme Name: フォトスタジオフェスタ2022
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap");
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

html {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  color: #897c7c;
}

body {
  margin: 0;
  min-width: 1152px;
}
@media screen and (max-width: 750px) {
  body {
    min-width: auto;
  }
}

h2 {
  position: relative;
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
}
h2:after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  bottom: calc(-1.3rem - 10px);
  transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: 300;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a.link {
  text-decoration: underline;
  color: skyblue;
}
a:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.spacer {
  flex-grow: 1;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  background-color: #f9f4f4;
  padding: 12px 32px;
}
@media screen and (max-width: 750px) {
  header {
    padding: 1.6vw;
  }
}
header .logo img {
  width: 116px;
  height: 65px;
}
header nav {
  display: flex;
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  header nav {
    transition: 0.3s;
  }
}
header nav li {
  margin-left: 32px;
}
@media screen and (max-width: 750px) {
  header nav li {
    font-size: 1.7rem;
    margin: 0 32px;
    padding: 1.6rem 1.5rem;
    border-bottom: 2px dotted #897c7c;
  }
  header nav li a {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  header nav {
    display: block;
    position: absolute;
    width: 100%;
    top: -600px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0;
  }
}
header .btn {
  position: relative;
  width: 180px;
  font-size: 1.423rem;
  color: #fff;
  text-align: center;
  background-color: #715e5e;
  margin-left: 60px;
  padding: 10px 0;
  border-radius: 50px;
  position: relative;
}
header .btn:after {
  content: "";
  top: 50%;
  right: 13px;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  header .btn {
    margin-left: 0;
    width: 22vw;
  }
}
header .instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  margin-left: 45px;
  background-color: #715e5e;
}
@media screen and (max-width: 750px) {
  header .instagram {
    width: 10vw;
    height: 10vw;
    margin-left: 4vw;
  }
  header .instagram img {
    width: 50%;
  }
}
header .sp-menu {
  z-index: 999;
}
header .sp-menu input {
  display: none;
}
header .sp-menu input:checked + label {
  transform: rotate(360deg);
  background-color: rgba(0, 0, 0, 0);
}
header .sp-menu input:checked + label:before, header .sp-menu input:checked + label:after {
  top: 50%;
  background-color: #897c7c;
}
header .sp-menu input:checked + label:before {
  transform: translateY(-50%) rotate(45deg);
}
header .sp-menu input:checked + label:after {
  transform: translateY(-50%) rotate(-45deg);
}
header .sp-menu input:checked ~ nav {
  top: 115.8px;
}
header .sp-menu label {
  position: relative;
  display: block;
  width: 10vw;
  height: 1vw;
  margin-left: 45px;
  background-color: #897c7c;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  header .sp-menu label {
    margin-left: 4vw;
  }
}
header .sp-menu label:before, header .sp-menu label:after {
  content: "";
  display: block;
  position: absolute;
  width: 10vw;
  height: 1vw;
  background-color: inherit;
}
header .sp-menu label:before {
  top: -3.5vw;
}
header .sp-menu label:after {
  bottom: -3.5vw;
}

#sidemenu {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 999;
  top: 150px;
  right: 5px;
  width: 48px;
}
#sidemenu a {
  margin-bottom: 10px;
}
#sidemenu a img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #sidemenu {
    display: none;
  }
}

#bottommenu {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 900;
  width: 100%;
}
@media screen and (max-width: 750px) {
  #bottommenu {
    display: flex;
  }
}
#bottommenu a {
  width: 25%;
  background-color: #f6f1f1;
}
#bottommenu a img {
  width: 100%;
}

#pagetop {
  position: fixed;
  width: 5vw;
  right: 2vw;
  bottom: 2vw;
  z-index: 900;
}
@media screen and (max-width: 750px) {
  #pagetop {
    width: 15vw;
    bottom: 15vw;
    opacity: 0.8;
  }
}
#pagetop img {
  width: 100%;
}
#pagetop:hover {
  opacity: 0.8;
  transition: 0.3s;
}

#outline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  padding: 75px 0 90px;
}
@media screen and (max-width: 750px) {
  #outline {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
#outline .left {
  margin-left: 30px;
}
#outline .left h3 {
  font-size: 2.6rem;
  font-weight: 300;
  margin: 0 0 50px 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #outline .left h3 {
    width: 96%;
    margin: 0 2% 50px;
    text-align: center;
  }
}
#outline .left .text {
  font-size: 1.5rem;
  line-height: 28px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #outline .left .text {
    line-height: 2rem;
    width: 96%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  #outline .left {
    margin-bottom: 40px;
    margin-left: 0;
  }
}
#outline .right {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  grid-gap: 10px 10px;
}
#outline .right img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #outline .right {
    width: 90%;
    grid-template-columns: repeat(2, 50%);
    margin: 0 5% 50px;
  }
  #outline .right img {
    width: 100%;
  }
}

#furisode {
  text-align: center;
  background-color: #fef8e9;
  padding: 120px 0;
}
#furisode h2 {
  margin-bottom: 70px;
}
#furisode .collection {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100vw;
  min-width: 1152px;
}
@media screen and (max-width: 750px) {
  #furisode .collection {
    min-width: auto;
  }
}
#furisode .collection img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #furisode .collection.pc {
    display: none;
  }
}
#furisode .collection.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  #furisode .collection.sp {
    display: block;
    position: relative;
    margin-bottom: 7em;
  }
}
#furisode .collection.sp .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg) skew(10deg, 10deg);
  width: 1.5em;
  height: 1.5em;
  z-index: 10;
}
#furisode .collection.sp .slide-arrow.prev-arrow {
  left: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#furisode .collection.sp .slide-arrow.next-arrow {
  right: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
#furisode .collection.sp .slick-dots li button:before {
  font-size: 12px;
}
#furisode .btn {
  position: relative;
  width: 410px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #715e5e;
  color: #fff;
  text-align: center;
  margin: 60px auto 120px;
}
#furisode .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #furisode .btn {
    width: 70%;
    margin: 0 15%;
  }
}

#plan {
  text-align: center;
  background-color: #f9f4f4;
  padding: 120px 0;
}
@media screen and (max-width: 750px) {
  #plan {
    padding: 60px 0;
  }
}
#plan h2 {
  margin-bottom: 113px;
}
#plan .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 1152px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #plan .wrap {
    width: 100%;
    align-items: flex-start;
  }
}
#plan .wrap article {
  width: 510px;
  margin-bottom: 85px;
}
@media screen and (max-width: 750px) {
  #plan .wrap article {
    width: 46%;
    margin-bottom: 45px;
  }
}
#plan .wrap article img {
  width: 100%;
  margin-bottom: 20px;
}
#plan .wrap article:nth-child(2n) {
  margin-left: 130px;
}
@media screen and (max-width: 750px) {
  #plan .wrap article:nth-child(2n) {
    margin-left: 20px;
  }
}
#plan .wrap article .text {
  position: relative;
}
#plan .wrap article .text:after {
  content: "";
  top: 50%;
  right: 10px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #d4b9ba;
  border-right: 2px solid #d4b9ba;
  transform: translateY(-50%) rotate(45deg);
}
#plan .wrap article .text .title {
  color: #7e3034;
  font-size: 2.2rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
  #plan .wrap article .text .title {
    font-size: 1.6rem;
  }
}
#plan .wrap article .text .subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: #897c7c;
}

#news {
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  #news {
    height: auto;
  }
}
#news article.inner {
  padding-top: 50px;
  padding-bottom: 150px;
  border-bottom: 2px solid #f9f4f4;
}
@media screen and (max-width: 750px) {
  #news article.inner {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}
#news article.inner:last-child {
  border-bottom: none;
}
#news article.inner .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  text-align: left;
}
#news article.inner .text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
  color: #4a4a4a;
}
#news article.inner .innerbox {
  width: 1094px;
  margin: 90px auto 0;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #news article.inner .innerbox {
    width: 96%;
    flex-wrap: wrap;
  }
}
#news article.inner .innerbox article {
  width: 280px;
}
@media screen and (max-width: 750px) {
  #news article.inner .innerbox article {
    width: 100%;
    display: grid;
    grid-template-rows: 6rem 1fr 8rem;
    grid-template-columns: 32% 1fr;
    border: 1px solid #897c7c;
    border-radius: 4px;
    padding: 20px 20px;
    margin-bottom: 30px;
  }
}
#news article.inner .innerbox article .thumbnail {
  width: 280px;
  height: 280px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #news article.inner .innerbox article .thumbnail {
    grid-row: 2/3;
    grid-column: 1/2;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
}
#news article.inner .innerbox article .thumbnail img {
  width: 100%;
  height: auto;
}
#news article.inner .innerbox article .title {
  font-size: 1.8rem;
  color: #7e3034;
  margin-bottom: 25px;
}
@media screen and (max-width: 750px) {
  #news article.inner .innerbox article .title {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
#news article.inner .innerbox article .caption {
  font-size: 1.5rem;
  line-height: 2.8rem;
  margin-bottom: 46px;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #news article.inner .innerbox article .caption {
    grid-row: 2/3;
    grid-column: 2/3;
    width: 100%;
    line-height: 2.8rem;
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
}
#news article.inner .innerbox article .more {
  display: block;
  position: relative;
  width: 220px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #b8aeae;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin: 0 auto;
  padding: 15px;
}
#news article.inner .innerbox article .more:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #news article.inner .innerbox article .more {
    grid-row: 3/4;
    grid-column: 1/3;
    height: 2.4rem;
    align-self: end;
    width: 90%;
  }
}
#news article.inner .btn {
  position: relative;
  width: 410px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #715e5e;
  color: #fff;
  text-align: center;
  margin: 120px auto 0;
}
#news article.inner .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #news article.inner .btn {
    width: 96%;
    margin: 0 2%;
  }
}

#information {
  position: relative;
  text-align: center;
  background-image: url("./images/back_information.png");
  background-repeat: no-repeat;
  height: 875px;
}
@media screen and (max-width: 750px) {
  #information {
    height: auto;
  }
}
#information .wrap {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 1152px;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #fff;
  border-top: 5px solid #7e3034;
}
@media screen and (max-width: 750px) {
  #information .wrap {
    position: relative;
    width: 100%;
    padding: 40px 0;
  }
}
#information .wrap article.inner {
  padding-bottom: 50px;
  border-bottom: 2px solid #f9f4f4;
}
#information .wrap article.inner:last-child {
  border-bottom: none;
}
#information .wrap article.inner .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  text-align: left;
}
#information .wrap article.inner .text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
  color: #4a4a4a;
}
#information .wrap article.inner#shop h2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 750px) {
  #information .wrap article.inner#shop .left-img {
    position: relative;
    width: 100%;
    opacity: 0.4;
  }
}
#information .wrap article.inner#shop .text {
  margin-left: 60px;
}
@media screen and (max-width: 750px) {
  #information .wrap article.inner#shop .text {
    width: 96%;
    margin: 0 2%;
    position: absolute;
    text-align: center;
  }
}
#information .wrap article.inner#shop .text .btn {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #715e5e;
  color: #fff;
  text-align: center;
  margin-top: 75px;
}
#information .wrap article.inner#shop .text .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #information .wrap article.inner#shop .text .btn {
    width: 96%;
    margin-top: 10vw;
  }
}
#information .wrap article.inner#contact {
  padding: 50px 0 80px;
}
#information .wrap article.inner#contact h2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
  #information .wrap article.inner#contact .text {
    width: 96%;
    margin: 0 2%;
  }
}
#information .wrap article.inner#contact .flex {
  justify-content: space-between;
  width: 660px;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #information .wrap article.inner#contact .flex {
    width: 50vw;
    margin: 40px 25vw 0;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  #information .wrap article.inner#contact .flex a {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #information .wrap article.inner#contact .flex img {
    width: 100%;
    margin-bottom: 40px;
  }
}

#gallery {
  background-image: url("./images/back_gallery.png");
  background-repeat: repeat;
  text-align: center;
  padding: 250px 0 400px;
}
@media screen and (max-width: 750px) {
  #gallery {
    padding: 120px 0 100px;
  }
}
#gallery h2 {
  margin-bottom: 115px;
}
#gallery .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #gallery .inner {
    flex-wrap: wrap;
    width: 100%;
  }
}
#gallery .inner article {
  position: relative;
}
@media screen and (max-width: 750px) {
  #gallery .inner article {
    width: 90%;
    margin: 0 5% 70px;
  }
}
#gallery .inner article .img {
  width: 536px;
  height: 428px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #gallery .inner article .img {
    width: 100%;
    height: auto;
  }
  #gallery .inner article .img img {
    width: 100%;
  }
}
#gallery .inner article .box {
  position: absolute;
  width: 450px;
  height: 310px;
  padding: 35px 30px 50px;
  box-sizing: border-box;
  top: 393px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  #gallery .inner article .box {
    width: 100%;
    height: auto;
    position: relative;
    transform: none;
    top: 0;
    left: 0;
  }
}
#gallery .inner article .box .title {
  color: #8d693a;
}
#gallery .inner article .box .title .main {
  font-size: 2.4rem;
  font-weight: 500;
}
#gallery .inner article .box .title .sub {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
}
#gallery .inner article .box .text {
  margin-top: 35px;
  text-align: left;
  font-size: 1.5rem;
  color: #4a4a4a;
}
#gallery .inner article .box .btn {
  position: relative;
  width: 365px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #a68964;
  color: #fff;
  text-align: center;
  margin: 35px auto 0;
  padding: 15px 0;
}
#gallery .inner article .box .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #gallery .inner article .box .btn {
    width: 100%;
  }
}

#instagram {
  width: 1152px;
  text-align: center;
  margin: 130px auto 110px;
}
@media screen and (max-width: 750px) {
  #instagram {
    width: 96%;
    margin: 100px auto 100px;
  }
}

#fujimoto {
  border-top: 1px solid #d4d4d4;
  padding: 120px 0;
  text-align: center;
  background-color: #f9f9f9;
}
#fujimoto .heading {
  font-size: 1.6rem;
  color: #4a4a4a;
}
@media screen and (max-width: 750px) {
  #fujimoto .heading {
    width: 90%;
    margin: 0 5%;
  }
}
#fujimoto .logo {
  margin-top: 50px;
}
#fujimoto .btn {
  position: relative;
  width: 400px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #2e0085;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 50px auto 0;
}
#fujimoto .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #fujimoto .btn {
    width: 80%;
  }
}
#fujimoto #blog h2 {
  font-size: 3rem;
  font-weight: 400;
  color: #2e0085;
  margin: 115px 0 75px;
}
#fujimoto #blog .wrap {
  margin-bottom: 40px;
}
#fujimoto #blog .wrap article.item {
  display: grid;
  grid-template-rows: 4rem 1fr 2rem;
  grid-template-columns: 1fr 166.25px;
  width: 1020px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  padding: 35px 30px;
  margin: 0 auto 25px;
}
@media screen and (max-width: 750px) {
  #fujimoto #blog .wrap article.item {
    width: 96%;
    margin: 0 2% 30px;
    padding: 15px;
    grid-template-rows: 10rem 1fr 7rem;
    grid-template-columns: 1fr 30%;
  }
}
#fujimoto #blog .wrap article.item .title {
  color: #000;
  font-size: 1.92rem;
  grid-row: 1/2;
  grid-column: 1/3;
  text-align: left;
}
#fujimoto #blog .wrap article.item .excerpt {
  color: #333;
  font-size: 1.44rem;
  line-height: 1.5em;
  margin-top: 15.5px;
  padding: 0 1.44rem 0 0;
  grid-row: 2/3;
  grid-column: 1/2;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #fujimoto #blog .wrap article.item .excerpt {
    margin-top: 0;
  }
}
#fujimoto #blog .wrap article.item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  font-size: 1.28rem;
  color: #666;
  grid-row: 3/4;
  grid-column: 1/3;
}
#fujimoto #blog .wrap article.item .info .date {
  margin-right: 10px;
  font-style: italic;
}
#fujimoto #blog .wrap article.item .info .category {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
#fujimoto #blog .wrap article.item .info .category li {
  display: inline-block;
  padding: 0 8px;
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid #e5e5e5;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 750px) {
  #fujimoto #blog .wrap article.item .info .category {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 750px) {
  #fujimoto #blog .wrap article.item .info {
    margin-top: 2rem;
  }
}
#fujimoto #blog .wrap article.item img {
  width: 166.25px;
  height: 166.25px;
  overflow: hidden;
  grid-row: 1/4;
  grid-column: 2/3;
}
@media screen and (max-width: 750px) {
  #fujimoto #blog .wrap article.item img {
    grid-row: 2/3;
    grid-column: 2/3;
    width: 100%;
    height: auto;
  }
}
#fujimoto #blog .btn {
  position: relative;
  width: 400px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #2e0085;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  display: block;
}
#fujimoto #blog .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #fujimoto #blog .btn {
    width: 90%;
    margin: 0 5%;
  }
}
#fujimoto #recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 830px;
  height: 300px;
  margin: 140px auto 0;
  background-color: #dedbee;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #fujimoto #recruit {
    width: 90%;
    height: auto;
    margin: 140px auto 0;
    flex-wrap: wrap;
  }
}
#fujimoto #recruit .left,
#fujimoto #recruit .right {
  width: 50%;
}
@media screen and (max-width: 750px) {
  #fujimoto #recruit .left,
#fujimoto #recruit .right {
    width: 100%;
  }
}
#fujimoto #recruit .left img {
  width: 100%;
}
#fujimoto #recruit .right {
  box-sizing: border-box;
  padding: 25px 30px;
}
#fujimoto #recruit .right .type {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: right;
  color: #000;
}
#fujimoto #recruit .right .title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2e0085;
  margin-top: 20px;
}
#fujimoto #recruit .right .description {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.8rem;
  margin-top: 25px;
  color: #2e0085;
  text-align: left;
}
#fujimoto #recruit .right .more {
  display: block;
  font-size: 1.6rem;
  margin-top: 15px;
  color: #2e0085;
  text-align: right;
}
#fujimoto #recruit .right .more a {
  position: relative;
  display: inline-block;
  z-index: 10;
}
#fujimoto #recruit .right .more a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-block;
  width: 60px;
  height: 8px;
  background-color: #c2b8dd;
  z-index: -1;
}

#about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
#about .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 576px;
  height: 85px;
  border-right: 1px solid #b7acac;
  margin: 20px 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 750px) {
  #about .item {
    flex-direction: column;
  }
}
#about .item:last-child {
  border: none;
}
#about .item img {
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  #about .item img {
    margin-right: 0;
  }
}

footer {
  text-align: center;
  background-color: #f9f4f4;
  padding: 55px 0 120px;
}
footer .logo img {
  width: 116px;
  height: 65px;
}
footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  footer nav {
    flex-wrap: wrap;
  }
}
footer nav li {
  color: #897c7c;
  padding: 0 22px;
  font-size: 1.5rem;
  border-right: 1px solid;
}
footer nav li:last-child {
  border: none;
}
@media screen and (max-width: 750px) {
  footer nav li {
    margin-bottom: 1.5rem;
  }
}
footer .addr {
  margin-top: 45px;
  font-size: 1.5rem;
}
footer .tel {
  margin-top: 15px;
  font-size: 3.4rem;
}
footer .copylight {
  margin-top: 80px;
  font-size: 1.3rem;
}

#archive .wrap {
  width: 1152px;
  margin: 50px auto;
}
@media screen and (max-width: 750px) {
  #archive .wrap {
    width: 94%;
    margin: 100px auto;
  }
}
#archive .wrap h2 {
  margin-bottom: 50px;
  text-align: center;
}
#archive .wrap a {
  display: block;
}
#archive .wrap article {
  display: grid;
  grid-template-rows: 4rem 1fr;
  grid-template-columns: 12% 1fr 40px;
  gap: 1em 2em;
  padding: 30px 0;
  border-bottom: 1px solid #897c7c;
}
@media screen and (max-width: 750px) {
  #archive .wrap article {
    grid-template-rows: 4rem 1fr;
    grid-template-columns: 30% 1fr;
    gap: 1em 2em;
  }
}
#archive .wrap article h3.title {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: 2rem;
  margin: 0;
  padding-left: 0.5em;
  border-left: 5px solid;
}
#archive .wrap article .thumbnail {
  grid-row: 2/3;
  grid-column: 1/2;
}
#archive .wrap article .thumbnail img {
  width: 100%;
  height: auto;
}
#archive .wrap article .caption {
  grid-row: 2/3;
  grid-column: 2/3;
  font-size: 1.6rem;
}
#archive .wrap article .arrow {
  grid-row: 1/3;
  grid-column: 3/4;
  width: 20px;
  height: 20px;
  border-top: 2px solid #897c7c;
  border-right: 2px solid #897c7c;
  align-self: center;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  #archive .wrap article .arrow {
    display: none;
  }
}
#archive .wrap .pagination {
  margin-top: 30px;
}
#archive .wrap .pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}
#archive .wrap .pagination a.page-numbers, #archive .wrap .pagination span.page-numbers {
  font-size: 1.8rem;
  margin: 8px;
  border: 1px solid #897c7c;
  padding: 5px 10px;
}
#archive .wrap .pagination a.page-numbers.current, #archive .wrap .pagination span.page-numbers.current {
  background-color: #897c7c;
  color: #fff;
}

#single .wrap {
  width: 1000px;
  margin: 80px auto;
}
@media screen and (max-width: 750px) {
  #single .wrap {
    width: 94%;
    margin: 100px 3%;
  }
}
#single .wrap .date {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
#single .wrap .title {
  border-bottom: 1px solid;
  margin-bottom: 1em;
}
#single .wrap .content {
  font-size: 1.6rem;
  line-height: 1.8em;
}
#single .wrap .btn {
  display: block;
  position: relative;
  width: 300px;
  font-size: 1.6rem;
  padding: 20px 0;
  background-color: #715e5e;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin: 100px auto 0;
}
#single .wrap .btn:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

section[id^=page-] h2 {
  text-align: center;
  margin: 80px 0;
}
section[id^=page-] section {
  padding: 30px 0;
  /* 配置 */
  /* 文字 */
  /* 隙間 */
}
section[id^=page-] section .wrap {
  width: 1152px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  section[id^=page-] section .wrap {
    width: 96vw;
    margin: 0 2vw;
  }
}
section[id^=page-] section h3 {
  font-size: 2.4rem;
}
section[id^=page-] section article {
  margin-bottom: 100px;
}
section[id^=page-] section img {
  display: block;
  width: 100%;
  margin: 0 auto 50px;
}
section[id^=page-] section .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  section[id^=page-] section .flex {
    flex-direction: column;
  }
}
section[id^=page-] section .flex-align-center {
  align-items: center;
}
section[id^=page-] section .flex-justify-start {
  justify-content: flex-start;
}
section[id^=page-] section .flex-wrap {
  flex-wrap: wrap;
}
section[id^=page-] section .subbox-right {
  width: 35%;
  text-align: left;
  margin-left: 65%;
}
@media screen and (max-width: 750px) {
  section[id^=page-] section .subbox-right {
    width: 60%;
    margin-left: 40%;
  }
}
section[id^=page-] section .text {
  font-size: 1.6rem;
  line-height: 3.2rem;
  /* 文字サイズ */
  /* 装飾　*/
}
section[id^=page-] section .text-small {
  font-size: 1.4rem;
}
section[id^=page-] section .text-large {
  font-size: 2.4rem;
  line-height: 3.6rem;
}
section[id^=page-] section .text-center {
  text-align: center;
}
section[id^=page-] section .text-left {
  text-align: left;
}
section[id^=page-] section .text-right {
  text-align: right;
}
section[id^=page-] section .text-bold {
  font-weight: bold;
}
section[id^=page-] section .text-title {
  border-left: 7px solid #715e5e;
  padding-left: 0.5em;
}
section[id^=page-] section .text-title-textcolor {
  border-left: 7px solid;
}
section[id^=page-] section .spacer-05x {
  margin-bottom: 0.5em;
}
section[id^=page-] section .spacer-1x {
  margin-bottom: 1em;
}
section[id^=page-] section .spacer-2x {
  margin-bottom: 2em;
}
section[id^=page-] section .spacer-3x {
  margin-bottom: 3em;
}
@media screen and (max-width: 750px) {
  section[id^=page-] section .no-margin-top-sp {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  section[id^=page-] section .no-margin-bottom-sp {
    margin-bottom: 0;
  }
}

#page-plan #plan-menu {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#page-plan #plan-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 5.8rem;
  margin: 0 10px 30px;
  font-size: 1.6rem;
  border: 1px solid #888;
  border-radius: 50px;
}
#page-plan #plan-menu a.active {
  background-color: #888;
  color: #fff;
}
@media screen and (max-width: 750px) {
  #page-plan #plan-menu a {
    width: 45vw;
    height: 5rem;
    margin: 0 1.2vw 20px;
  }
}
@media screen and (max-width: 750px) {
  #page-plan .plan_article {
    width: 90%;
    margin: 0 5% 5em;
  }
  #page-plan .plan_article .text-title {
    width: 100%;
    margin: 0 auto 1em;
  }
}
@media screen and (max-width: 750px) {
  #page-plan .text-title {
    width: 90%;
    margin: 0 5% 1em;
  }
}
#page-plan .plan_top_flex {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #page-plan .plan_top_flex {
    width: 100%;
  }
}
#page-plan .plan_top_flex .right, #page-plan .plan_top_flex img {
  width: 48%;
}
@media screen and (max-width: 750px) {
  #page-plan .plan_top_flex .right, #page-plan .plan_top_flex img {
    width: 100%;
  }
}
#page-plan .plan_top_flex .right {
  text-align: center;
}
#page-plan .plan_top_banner {
  width: 100%;
  position: relative;
}
#page-plan .plan_top_banner .img {
  height: 420px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #page-plan .plan_top_banner .img {
    height: auto;
  }
}
#page-plan .plan_top_banner .img img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #page-plan .plan_top_banner .img img {
    transform: translate(0, 0) !important;
  }
}
#page-plan .plan_top_banner .right {
  text-align: left;
  position: absolute;
  left: 52%;
  width: 48%;
  color: #fff;
}
#page-plan .plan_top_banner .right .text-large {
  font-size: 2.8rem;
}
@media screen and (max-width: 750px) {
  #page-plan .plan_top_banner .right .text-large {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 750px) {
  #page-plan .plan_top_banner .right {
    text-align: center;
    position: static;
    width: 100% !important;
    color: #897c7c !important;
    top: 0 !important;
  }
}
#page-plan .plan_flex .left {
  width: 25%;
  margin-right: 4%;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #page-plan .plan_flex .left {
    width: 90%;
    height: 80vw;
    margin: 0 5%;
  }
}
@media screen and (max-width: 750px) {
  #page-plan .plan_flex .right {
    width: 90%;
    margin: 0 5%;
  }
}
#page-plan .album_wrap article {
  width: 42%;
  margin: 0 4% 80px;
}
@media screen and (max-width: 750px) {
  #page-plan .album_wrap article {
    width: 90%;
    margin: 0 4% 100px;
  }
}
#page-plan .album_wrap article img {
  margin: 0 auto 20px;
}

#page-gallery #gallery-menu {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#page-gallery #gallery-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 5rem;
  margin: 0 10px 30px;
  font-size: 1.6rem;
  border: 1px solid #888;
  border-radius: 50px;
}
@media screen and (max-width: 750px) {
  #page-gallery #gallery-menu a {
    width: 43vw;
    margin: 0 2vw 30px;
  }
}
#page-gallery #gallery-menu a.active {
  background-color: #888;
  color: #fff;
}
#page-gallery .content {
  display: flex;
  flex-wrap: wrap;
  width: 1152px;
  margin: 0 auto 200px;
}
@media screen and (max-width: 750px) {
  #page-gallery .content {
    width: 96vw;
    margin: 0 2vw;
  }
}
#page-gallery .content a {
  display: block;
  width: 360px;
  margin: 12px;
}
@media screen and (max-width: 750px) {
  #page-gallery .content a {
    width: 44vw;
    margin: 2vw;
  }
}
#page-gallery .content a img {
  width: 100%;
  margin: 0;
}
#page-gallery .content a.hide {
  display: none;
}

#page-qa #qa-menu {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#page-qa #qa-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 5.4rem;
  margin: 0 10px 20px;
  font-size: 1.6rem;
  border: 1px solid #888;
  border-radius: 50px;
}
#page-qa #qa-menu a.active {
  background-color: #888;
  color: #fff;
}
@media screen and (max-width: 750px) {
  #page-qa #qa-menu a {
    width: 100%;
    height: 4.5rem;
  }
}
#page-qa .content {
  width: 1152px;
  margin: 0 auto 200px;
}
@media screen and (max-width: 750px) {
  #page-qa .content {
    width: 96%;
    margin: 0 2%;
  }
}
#page-qa .content article {
  border: 1px solid #897c7c;
  margin-bottom: 30px;
  padding: 0 2em;
  border-radius: 4px;
}
#page-qa .content article.hide {
  display: none;
}
#page-qa .content article input[type=checkbox] {
  display: none;
}
#page-qa .content article input[type=checkbox]:checked ~ .question:after {
  top: 32%;
  transform: rotate(135deg) translateY(-50%);
}
#page-qa .content article input[type=checkbox]:checked ~ .answer {
  height: auto;
  padding: 0 0 1.2em;
  max-height: 10em;
}
@media screen and (max-width: 750px) {
  #page-qa .content article input[type=checkbox]:checked ~ .answer {
    max-height: 20em;
  }
}
#page-qa .content article .question {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.2em 0;
}
@media screen and (max-width: 750px) {
  #page-qa .content article .question {
    padding: 1.2em 1em 1.2em 0;
  }
}
#page-qa .content article .question:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  right: 1em;
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-top: 2px solid #897c7c;
  border-right: 2px solid #897c7c;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  #page-qa .content article .question:after {
    right: 0;
  }
}
#page-qa .content article .answer {
  font-size: 1.6rem;
  overflow: hidden;
  height: 10em;
  max-height: 0;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  #page-qa .content article .answer {
    height: 20em;
  }
}
#page-qa .topbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 6vw;
  height: 6vw;
  margin: 1vw;
  right: 0;
  bottom: 0;
  background-color: #897c7c;
  color: #fff;
}
@media screen and (max-width: 750px) {
  #page-qa .topbtn {
    width: 18vw;
    height: 18vw;
    margin: 2vw;
    bottom: 14vw;
  }
}
#page-qa .topbtn :hover {
  opacity: 0.8;
  transition: 0.3s;
}
#page-qa .topbtn .arrow {
  width: 1.7vw;
  height: 1.7vw;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg) translate(-7%, 10%);
}
@media screen and (max-width: 750px) {
  #page-qa .topbtn .arrow {
    transform: rotate(-45deg) translate(7%, 10%);
    width: 4.1vw;
    height: 4.1vw;
  }
}
#page-qa .topbtn .text {
  font-size: 1.1vw;
}
@media screen and (max-width: 750px) {
  #page-qa .topbtn .text {
    font-size: 3.3vw;
  }
}

#page-products article {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  #page-products article {
    margin-bottom: 100px;
  }
}
#page-products article .left {
  width: 40%;
  margin-right: 3%;
}
@media screen and (max-width: 750px) {
  #page-products article .left {
    width: 100%;
    margin: 0;
  }
  #page-products article .left img {
    margin: 0 auto 20px;
  }
}
#page-products article .right {
  width: 50%;
}
@media screen and (max-width: 750px) {
  #page-products article .right {
    width: 100%;
  }
}
#page-products article .right .products_title {
  border-bottom: 1px solid;
  padding: 0.2em 0;
  margin: 0 0 0.5em 0;
}

#page-contact h2 {
  margin-bottom: 30px;
}
#page-contact h3 {
  border-bottom: 1px solid #897c7c;
  padding: 1em 0;
}
#page-contact section a {
  text-decoration: underline;
}
#page-contact section article {
  margin: 0 0 50px 0;
}
#page-contact section article h3 {
  font-size: 2.2rem;
}
#page-contact section article .lineimg {
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #page-contact section article .lineimg {
    width: 60%;
  }
}
#page-contact section table {
  width: 800px;
  margin: 50px auto;
  border: 1px solid #897c7c;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  #page-contact section table {
    width: 94%;
    margin: 40px 2% 0px;
  }
}
@media screen and (max-width: 750px) {
  #page-contact section table tr {
    display: flex;
    flex-direction: column;
  }
}
#page-contact section table th, #page-contact section table td {
  border: 1px solid #897c7c;
}
#page-contact section table th {
  width: 33%;
  background-color: #897c7c;
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  #page-contact section table th {
    width: auto;
    border-bottom: 0;
  }
}
#page-contact section table td {
  padding: 20px 10px;
}
@media screen and (max-width: 750px) {
  #page-contact section table td {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 750px) {
  #page-contact section table td div {
    display: flex;
    flex-direction: column;
  }
}
#page-contact section table td input[type=text] {
  width: 96%;
  padding: 0.5em;
}
@media screen and (max-width: 750px) {
  #page-contact section table td input[type=text] {
    padding: 2em 0.5em;
  }
}
#page-contact section table td .name {
  margin-right: 1em;
  margin-bottom: 1em;
}
#page-contact section table td .name span:first-child {
  padding-right: 0.5em;
}
@media screen and (max-width: 750px) {
  #page-contact section table td .name {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#page-contact section table td .name input {
  width: 12em;
}
@media screen and (max-width: 750px) {
  #page-contact section table td .name input {
    width: 85%;
  }
}
#page-contact section table td .old span:first-child {
  padding-right: 0.5em;
}
#page-contact section table td .old input {
  width: 5em;
}
@media screen and (max-width: 750px) {
  #page-contact section table td .old input {
    width: 90%;
  }
}
#page-contact section table td textarea {
  width: 98%;
  height: 15em;
}
#page-contact section .req:after {
  content: "必須";
  display: inline-block;
  font-size: 1.4rem;
  padding: 0.2em 0.5em;
  margin: 0.5em 0 0.5em 0.5em;
  border-radius: 4px;
  background-color: #F44336;
  color: #fff;
}
#page-contact section .confirm input[type=submit] {
  width: 40%;
  margin: 0 30%;
  padding: 1em;
  background-color: #897c7c;
  color: #fff;
  border: none;
  border-radius: 8px;
}
#page-contact section .confirm input[type=submit]:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  #page-contact section .confirm input[type=submit] {
    width: 96%;
    margin: 50px 2%;
    font-size: 1.6rem;
    font-weight: bold;
  }
}

#page-shop-infomation img.map {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
}

#page-about .company_info #company_info_checkbox {
  display: none;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  #page-about .company_info #company_info_checkbox {
    pointer-events: auto;
  }
  #page-about .company_info #company_info_checkbox:checked ~ .inner {
    max-height: 1000px;
  }
  #page-about .company_info #company_info_checkbox:checked ~ label:after {
    transform: translateY(-25%) rotate(135deg);
  }
  #page-about .company_info label {
    display: block;
    position: relative;
  }
  #page-about .company_info label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 1.5em;
    display: block;
    width: 1em;
    height: 1em;
    border-top: 3px solid #897c7c;
    border-right: 3px solid #897c7c;
    transition: 0.3s;
  }
  #page-about .company_info .inner {
    height: 100%;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
}

.lb-prev {
  opacity: 1 !important;
}

.lb-next {
  opacity: 1 !important;
}
