@charset "UTF-8";
/*共通*/
html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-size: 1.5rem;
  color: #28211e;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media only screen and (max-width: 426px) {
  body {
    font-size: 1.3rem;
  }
}

h2, h3 {
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

.flex_box {
  display: flex;
}

.sp_only {
  display: none;
}
@media only screen and (max-width: 426px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media only screen and (max-width: 980px) {
  .tb_only {
    display: block;
  }
}

.sp_none {
  display: block;
}
@media only screen and (max-width: 426px) {
  .sp_none {
    display: none;
  }
}

.max_container {
  max-width: 2560px;
  margin: 0 auto;
}

.containerL {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
}

.containerM {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 60px;
}
@media only screen and (max-width: 980px) {
  .containerM {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 426px) {
  .containerM {
    padding: 0;
  }
}

.containerS {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 60px;
}
@media only screen and (max-width: 980px) {
  .containerS {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.common-heading {
  padding-left: 50px;
  position: relative;
  font-size: 1.7rem;
}
@media only screen and (max-width: 426px) {
  .common-heading {
    font-size: 1.3rem;
    padding-left: 32px;
  }
}

.common-heading::before {
  content: "";
  width: 36px;
  height: 0.5px;
  background: #28211e;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 426px) {
  .common-heading::before {
    width: 20px;
  }
}

.common-whiteheading::before {
  background: #ffffff;
}

.common-heading__sub {
  font-size: 3rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 426px) {
  .common-heading__sub {
    line-height: 1.4;
  }
}

.third-heading {
  font-size: 2.2rem;
  padding-left: 68px;
  margin-bottom: 86px;
  position: relative;
}
@media only screen and (max-width: 426px) {
  .third-heading {
    font-size: 2rem;
    padding-left: 0;
    margin-bottom: 64px;
  }
}

.third-heading::before {
  content: "";
  width: 38px;
  height: 0.5px;
  background: #28211e;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 426px) {
  .third-heading::before {
    top: auto;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

/* 本文fadein */
.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s;
}

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

/* タイトルfadein */
.ttl_slide-in {
  overflow: hidden;
  display: inline-block;
}

.ttl_slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* ロゴアニメーション */
#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #28211e;
}

.fade_logo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}

.fade_logo img {
  width: 260px;
}
@media only screen and (max-width: 426px) {
  .fade_logo img {
    width: 160px;
  }
}

.open_slide {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 0.8s;
}
@keyframes slideOut {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-200%);
  }
}
/*ヘッダー*/
.header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 980px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    padding-top: 0;
    padding: 0 20px;
    display: flex;
    height: 72px;
    background: #ffffff;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 426px) {
  .header {
    height: 60px;
  }
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 40px;
}
@media only screen and (max-width: 980px) {
  .header_nav {
    margin: 0;
  }
}

.site_logo {
  margin: 0;
}
.site_logo svg {
  width: 128px;
  fill: #ffffff;
}
@media only screen and (max-width: 980px) {
  .site_logo svg {
    width: 110px;
  }
}
@media only screen and (max-width: 426px) {
  .site_logo svg {
    width: 80px;
    fill: #28211e;
    margin-top: 8px;
  }
}

@media only screen and (max-width: 980px) {
  .globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #ffffff;
    background: #28211e;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    text-align: left;
  }
}

.globalMenuSp.active {
  visibility: visible;
  opacity: 1;
}

.gnav-list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 980px) {
  .gnav-list {
    display: block;
    margin: 80px auto 0;
    max-width: 400px;
  }
}
@media only screen and (max-width: 426px) {
  .gnav-list {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 980px) {
  .gnav-list li {
    margin: 0 0 20px;
  }
}
.gnav-list li a {
  font-size: 1.8rem;
  padding: 0 20px;
  color: #ffffff;
  position: relative;
  font-family: "Cormorant Garamond", serif;
  transition: all 0.4s;
}
.gnav-list li a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.gnav-list li a::before {
  content: "";
  width: 0.5px;
  height: 16px;
  background: #ffffff;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
}
@media only screen and (max-width: 980px) {
  .gnav-list li a::before {
    display: none;
  }
}
@media only screen and (max-width: 980px) {
  .gnav-list li a {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 426px) {
  .gnav-list li a {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 980px) {
  .gnav-list li a span {
    font-size: 1.2rem;
    padding-left: 8px;
  }
}
.gnav-list .contact a::before {
  display: none;
}
.gnav-list .insta {
  width: 20px;
  display: none;
}
@media only screen and (max-width: 426px) {
  .gnav-list .insta {
    display: block;
    margin-bottom: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 426px) {
  .gnav-list .insta a {
    padding: 0;
  }
}

.header .order {
  display: none;
}
@media only screen and (max-width: 426px) {
  .header .order {
    display: none;
  }
}

.header.fixed {
  background: #ffffff;
  transition: all 0.5s ease;
}
.header.fixed .site_logo svg {
  fill: #28211e;
}
.header.fixed .globalMenuSp ul li a {
  color: #28211e;
}
.header.fixed .globalMenuSp ul li a::before {
  background: #28211e;
}
.header.fixed .globalMenuSp ul .gnav_qa a::before {
  display: none;
}
.header.fixed .globalMenuSp ul .contact {
  display: none;
}
.header.fixed .globalMenuSp ul .order {
  display: block;
  background: #28211e;
  margin-left: 20px;
}
.header.fixed .globalMenuSp ul .order a {
  color: #ffffff;
  padding: 4px 24px;
  display: inline-block;
}
.header.fixed .globalMenuSp ul .order a::before {
  display: none;
}
@media only screen and (max-width: 426px) {
  .header.fixed .globalMenuSp ul .order {
    display: none;
  }
}

.hamburger {
  display: none;
}
@media only screen and (max-width: 980px) {
  .hamburger {
    display: block;
    z-index: 5;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-align: center;
    position: relative;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  left: 0px;
  background: #28211e;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 2px;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span {
  background: #ffffff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 15px;
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg);
  top: 15px;
}

/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
  opacity: 1;
  visibility: visible;
}

.globalMenuSp.active ul {
  display: block;
}

/*FV*/
.fv {
  height: 80vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 426px) {
  .fv {
    height: 51vh;
    margin-top: 60px;
  }
}
.fv .inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.fv .fv_movie {
  border: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
@media only screen and (max-width: 426px) {
  .fv .fv_movie {
    width: 90vh;
  }
}

/*FV以下*/
.about {
  margin-top: 60px;
  position: relative;
}
@media only screen and (max-width: 426px) {
  .about {
    margin-top: 0px;
    padding-top: 60px;
  }
}
.about::before {
  content: "";
  background: #28211e;
  width: 42%;
  height: 56%;
  max-height: 640px;
  position: absolute;
  left: 0px;
  top: 40px;
  display: inline-block;
  z-index: -1;
}
@media only screen and (max-width: 1180px) {
  .about::before {
    height: 39%;
  }
}
@media only screen and (max-width: 980px) {
  .about::before {
    height: 33%;
  }
}
@media only screen and (max-width: 426px) {
  .about::before {
    display: none;
  }
}
.about::after {
  content: "";
  background-image: url("../img/about_02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 40%;
  height: 548px;
  position: absolute;
  right: 0px;
  bottom: -80px;
  display: inline-block;
}
@media only screen and (max-width: 1180px) {
  .about::after {
    width: 36%;
    height: 400px;
  }
}
@media only screen and (max-width: 426px) {
  .about::after {
    display: none;
  }
}
.about .inner .flex_box {
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
}
@media only screen and (max-width: 426px) {
  .about .inner .flex_box {
    display: block;
    padding: 0 20px;
  }
}
.about .inner .item {
  width: 50%;
}
@media only screen and (max-width: 426px) {
  .about .inner .item {
    width: 100%;
  }
}
.about .inner .item:nth-child(1) {
  margin-left: 120px;
}
@media only screen and (max-width: 1180px) {
  .about .inner .item:nth-child(1) {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 426px) {
  .about .inner .item:nth-child(1) {
    margin-left: 0px;
  }
}
.about .inner .item:nth-child(2) {
  aspect-ratio: 1.05/1;
}
@media only screen and (max-width: 426px) {
  .about .inner .item:nth-child(2) {
    aspect-ratio: 1.4/1;
    margin-top: 80px;
  }
}

.about_bottom {
  padding-top: 100px;
  max-width: 700px;
  margin-top: 160px;
  margin-left: 12%;
}
@media only screen and (max-width: 1180px) {
  .about_bottom {
    margin-left: 6%;
  }
}
@media only screen and (max-width: 980px) {
  .about_bottom {
    padding-top: 0;
    width: 60%;
    margin-left: 3%;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 426px) {
  .about_bottom {
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }
}

.about_txt {
  line-height: 3.5;
  margin-top: 40px;
}
@media only screen and (max-width: 426px) {
  .about_txt {
    line-height: 2;
  }
}

.link_list {
  margin: 200px auto;
  padding: 0 40px;
}
@media only screen and (max-width: 980px) {
  .link_list {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 426px) {
  .link_list {
    width: 100%;
    margin: 80px auto;
  }
}
.link_list .link_item {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media only screen and (max-width: 980px) {
  .link_list .link_item {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media only screen and (max-width: 426px) {
  .link_list .link_item {
    display: block;
  }
}
.link_list .flex_box {
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 426px) {
  .link_list .flex_box {
    justify-content: space-between;
  }
}
.link_list .flex_box .item {
  max-width: 530px;
  width: 100%;
  align-items: center;
  border-bottom: 0.5px solid #666666;
}
@media only screen and (max-width: 426px) {
  .link_list .flex_box .item {
    margin-bottom: 20px;
  }
}
.link_list .flex_box .item a {
  transition: all 0.4s;
}
.link_list .flex_box .item a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.link_list .flex_box .item .item_img {
  width: 42%;
  height: 136px;
}
@media only screen and (max-width: 980px) {
  .link_list .flex_box .item .item_img {
    width: 35%;
  }
}
@media only screen and (max-width: 426px) {
  .link_list .flex_box .item .item_img {
    height: 68px;
  }
}
.link_list .flex_box .item .item_txt {
  width: 58%;
  text-align: center;
}
@media only screen and (max-width: 980px) {
  .link_list .flex_box .item .item_txt {
    width: 60%;
    text-align: left;
  }
}
.link_list .flex_box .item .item_txt p {
  padding-right: 36px;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 980px) {
  .link_list .flex_box .item .item_txt p {
    width: 100%;
    padding-right: 30px;
  }
}
.link_list .flex_box .item .item_txt p:before {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 6px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
}

.ordermade_intro {
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 980px) {
  .ordermade_intro {
    padding-top: 80px;
  }
}
.ordermade_intro::before {
  background: #28211e;
  content: "";
  width: 96.06%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 4.8%;
  z-index: -1;
}
@media only screen and (max-width: 1180px) {
  .ordermade_intro::before {
    left: 3.2%;
  }
}
@media only screen and (max-width: 980px) {
  .ordermade_intro::before {
    height: 92%;
  }
}
@media only screen and (max-width: 426px) {
  .ordermade_intro::before {
    width: calc(100% - 20px);
    left: 0;
  }
}
.ordermade_intro .inner {
  max-width: 1300px;
  width: 100%;
  padding: 0 8%;
  margin: 0 auto;
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner {
    padding: 0;
  }
}
.ordermade_intro .inner .ordermade_introtop {
  color: #fff;
  margin-bottom: 120px;
}
@media only screen and (max-width: 980px) {
  .ordermade_intro .inner .ordermade_introtop {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner .ordermade_introtop {
    padding: 0 40px 0 20px;
  }
}
.ordermade_intro .inner .ordermade_introtop .ordermade_introtxt {
  line-height: 2.3;
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner .ordermade_introtop .ordermade_introtxt {
    margin-top: 56px;
    padding-bottom: 48px;
    border-bottom: 0.25px solid #ffffff;
  }
}
.ordermade_intro .inner .flex_box {
  -moz-column-gap: 100px;
       column-gap: 100px;
  color: #ffffff;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: left;
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner .flex_box {
    display: block;
  }
}
.ordermade_intro .inner .flex_box .ordermade_introimg {
  width: 60%;
  aspect-ratio: 1.5/1;
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner .flex_box .ordermade_introimg {
    width: calc(100% - 20px);
    margin-left: auto;
  }
}
.ordermade_intro .inner .flex_box ul {
  margin-bottom: 48px;
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner .flex_box ul {
    padding: 0 40px 0 20px;
  }
}
.ordermade_intro .inner .flex_box ul li {
  margin-bottom: 20px;
}
@media only screen and (max-width: 426px) {
  .ordermade_intro .inner .flex_box ul li {
    margin-bottom: 14px;
  }
}
.ordermade_intro .inner .flex_box ul li:last-child {
  margin-bottom: 0px;
}
.ordermade_intro .inner .flex_box ul li a {
  width: 168px;
  display: inline-block;
  position: relative;
  transition: all 0.4s;
}
.ordermade_intro .inner .flex_box ul li a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.ordermade_intro .inner .flex_box ul li a:before {
  content: "";
  background-image: url("../img/white_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 6px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
}

.price .inner {
  padding-top: 110px;
  padding-bottom: 120px;
  border-bottom: 0.5px solid #28211e;
}
@media only screen and (max-width: 426px) {
  .price .inner {
    border-bottom: none;
    padding: 80px 0;
  }
}
.price .price_txt {
  line-height: 2.3;
}
.price .price_txt span {
  padding: 0 8px 4px;
  border-bottom: 0.5px solid #4d4d4d;
}
@media only screen and (max-width: 426px) {
  .price .price_txt span {
    border: 0.25px solid #666666;
    padding: 6px 12px;
    margin-right: 4px;
  }
}
.price .price_txt a {
  transition: all 0.4s;
}
.price .price_txt a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.price .price_box {
  margin-top: 110px;
  -moz-column-gap: 80px;
       column-gap: 80px;
  justify-content: space-between;
}
@media only screen and (max-width: 426px) {
  .price .price_box {
    display: block;
  }
}
.price .price_box .price_item {
  background: #d5d5d5;
  max-width: 300px;
  width: 33%;
  padding: 10px 0;
  text-align: center;
  display: grid;
  place-items: center;
  position: relative;
}
@media only screen and (max-width: 426px) {
  .price .price_box .price_item {
    width: 100%;
    max-width: 500px;
    padding: 16px 0;
  }
}
@media only screen and (max-width: 426px) {
  .price .price_box .price_item:not(:last-child) {
    margin: 0 auto 40px;
  }
}
.price .price_box .price_item:not(:last-child)::after {
  content: "";
  background: #28211e;
  width: 18px;
  height: 0.5px;
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 426px) {
  .price .price_box .price_item:not(:last-child)::after {
    top: auto;
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.price .price_box .price_item:not(:last-child)::before {
  content: "";
  background: #28211e;
  width: 0.5px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -17%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 426px) {
  .price .price_box .price_item:not(:last-child)::before {
    top: auto;
    bottom: -28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.price .price_box .price_item .price_ttl {
  font-size: 2.4rem;
  line-height: 1.2;
}
@media only screen and (max-width: 426px) {
  .price .price_box .price_item .price_ttl {
    font-size: 1.6rem;
  }
}
.price .price_box .price_item .price_ttl span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 426px) {
  .price .price_box .price_item .price_ttl span {
    font-size: 1.4rem;
    padding-left: 8px;
  }
}
.price .price_other {
  padding-top: 8px;
  font-size: 1.4rem;
  text-align: right;
}

@media only screen and (max-width: 426px) {
  .price_head, .guide_head {
    text-align: center;
  }
}

@media only screen and (max-width: 426px) {
  .guideline {
    background: #f2f2f2;
    padding: 0 20px;
  }
}
.guideline .inner {
  padding-top: 110px;
  padding-bottom: 120px;
  border-bottom: 0.5px solid #28211e;
}
@media only screen and (max-width: 426px) {
  .guideline .inner {
    border-bottom: none;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.guideline .inner .flex_box {
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 80px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 426px) {
  .guideline .inner .flex_box {
    display: block;
  }
}
.guideline .inner .flex_box .price_info {
  flex-basis: calc(50% - 40px);
  max-width: 500px;
}
@media only screen and (max-width: 426px) {
  .guideline .inner .flex_box .price_info {
    margin-bottom: 40px;
  }
}

.aboutbody {
  padding-top: 110px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 980px) {
  .aboutbody {
    padding: 80px 20px 0;
  }
}
@media only screen and (max-width: 426px) {
  .aboutbody {
    width: 100%;
    margin: 0px auto 80px;
    display: block;
    padding-right: 0;
    padding-top: 80px;
  }
}
.aboutbody .aboutbody_top {
  padding-right: 80px;
}
@media only screen and (max-width: 426px) {
  .aboutbody .aboutbody_top {
    padding-right: 0;
  }
}
.aboutbody .aboutbody_top p {
  line-height: 2;
}
@media only screen and (max-width: 426px) {
  .aboutbody .aboutbody_top p {
    line-height: 2.8;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 426px) {
  .aboutbody .aboutbody_top p:last-child {
    padding-top: 32px;
    line-height: 2;
  }
}
@media only screen and (max-width: 426px) {
  .aboutbody .third-heading::before {
    left: 0;
    -webkit-transform: translateX(0);
  }
}
@media only screen and (max-width: 426px) {
  .aboutbody .aboutbody_img {
    margin-top: 64px;
  }
}

.flow_wrap {
  background: #d5d5d5;
  padding: 200px 20px;
  text-align: center;
}
@media only screen and (max-width: 426px) {
  .flow_wrap {
    padding: 80px 20px;
    background: #f2f2f2;
  }
}
.flow_wrap h3 {
  padding-bottom: 16px;
  position: relative;
  font-size: 2.2rem;
}
@media only screen and (max-width: 426px) {
  .flow_wrap h3 {
    font-size: 2rem;
  }
}
.flow_wrap h3::before {
  content: "";
  height: 0.5px;
  width: 38px;
  background: #28211e;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.flow_wrap .flow_box {
  padding-top: 110px;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_box {
    padding-top: 60px;
  }
}
.flow_wrap .flow_box .flow_item {
  max-width: 720px;
  background: #ffffff;
  padding: 48px 60px;
  margin: 0 auto 20px;
  align-items: center;
  position: relative;
}
.flow_wrap .flow_box .flow_item::before {
  content: "";
  background-image: url("../img/downarrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 52px;
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  z-index: 5;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_box .flow_item::before {
    height: 46px;
    bottom: -36px;
  }
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_box .flow_item {
    display: block;
    padding: 40px 32px;
  }
}
.flow_wrap .flow_box .flow_item p {
  text-align: left;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_box .flow_item p {
    text-align: center;
  }
}
.flow_wrap .flow_box .flow_item:last-child {
  margin-bottom: 140px;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_box .flow_item:last-child {
    margin-bottom: 64px;
  }
}
.flow_wrap .flow_box .flow_item:first-child::before {
  display: none;
}
.flow_wrap .flow_ttl {
  font-size: 2.4rem;
  padding-bottom: 12px;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_ttl {
    font-size: 2rem;
  }
}
.flow_wrap .flow_ttl span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_ttl span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 426px) {
  .flow_wrap .flow_txt {
    text-align: left !important;
  }
}
.flow_wrap .sub {
  font-size: 1.3rem;
  padding-top: 8px;
}
.flow_wrap .sub a {
  padding-bottom: 1px;
  border-bottom: 1px solid #666666;
}
.flow_wrap .number {
  width: 64px;
  padding-right: 32px;
}
.flow_wrap .number img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .number {
    padding-right: 0;
    width: 20px;
    margin: 0 auto;
  }
}
.flow_wrap .bottom_btn {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  border: 0.5px solid #28211e;
  border-radius: 16px;
}
.flow_wrap .bottom_btn a {
  width: 100%;
  display: inline-block;
  padding: 80px 0;
  font-size: 2.8rem;
  transition: all 0.4s;
  position: relative;
}
@media only screen and (max-width: 426px) {
  .flow_wrap .bottom_btn a {
    font-size: 2.2rem;
    padding: 56px 0;
  }
}
.flow_wrap .bottom_btn a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.flow_wrap .bottom_btn a:before {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 6px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: inline-block;
}

.onlineshop {
  background: #28211e;
  padding: 110px 0;
}
@media only screen and (max-width: 426px) {
  .onlineshop {
    padding: 80px 0;
  }
}
.onlineshop .inner {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  max-width: 1950px;
  margin: 0 auto;
  align-items: flex-end;
}
@media only screen and (max-width: 980px) {
  .onlineshop .inner {
    display: block;
  }
}
.onlineshop .inner .onlineshop_img {
  width: 54%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 980px) {
  .onlineshop .inner .onlineshop_img {
    width: calc(100% - 40px);
  }
}
.onlineshop .inner .onlineshop_txt {
  width: 42%;
  color: #ffffff;
  margin-left: auto;
  position: relative;
}
.onlineshop .inner .onlineshop_txt::before {
  position: absolute;
  top: 0;
  right: 10%;
  content: "";
  width: 73px;
  height: 124px;
  background-size: contain;
  background-image: url("../img/online_illust.png");
}
@media only screen and (max-width: 980px) {
  .onlineshop .inner .onlineshop_txt::before {
    right: auto;
    left: 280px;
    width: 60px;
    height: 120px;
  }
}
@media only screen and (max-width: 426px) {
  .onlineshop .inner .onlineshop_txt::before {
    height: 92px;
    width: 52px;
    left: auto;
    right: 40px;
  }
}
@media only screen and (max-width: 1180px) {
  .onlineshop .inner .onlineshop_txt {
    margin: 0 auto;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 980px) {
  .onlineshop .inner .onlineshop_txt {
    width: 100%;
    padding: 0 20px;
    margin-top: 48px;
  }
}
.onlineshop .onlineshop_btnintro {
  padding-top: 48px;
  padding-bottom: 62px;
}
.onlineshop .onlineshop_btn a {
  display: inline-block;
  background: #ffffff;
  color: #28211e;
  max-width: 435px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.onlineshop .onlineshop_btn a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
@media only screen and (max-width: 426px) {
  .onlineshop .onlineshop_btn a {
    height: 56px;
    line-height: 56px;
  }
}
.onlineshop .onlineshop_btn a:before {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.client {
  padding-top: 240px;
  padding-bottom: 240px;
  /*==================================================
  スライダーのためのcss
  ===================================*/
  /*　背景画像設定　*/
  /*矢印の設定*/
  /*ドットナビゲーションの設定*/
}
@media only screen and (max-width: 980px) {
  .client {
    padding: 80px 20px;
  }
}
.client .flex_box {
  -moz-column-gap: 80px;
       column-gap: 80px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 426px) {
  .client .flex_box {
    display: block;
    padding-top: 20px;
  }
}
.client .client_txt {
  padding-top: 100px;
  line-height: 3.5;
}
@media only screen and (max-width: 980px) {
  .client .client_txt {
    padding-top: 40px;
  }
}
.client .client_img {
  width: 48%;
  max-width: 500px;
  max-height: 380px;
}
@media only screen and (max-width: 426px) {
  .client .client_img {
    width: 100%;
    height: 256px;
  }
}
.client .slider {
  max-height: 380px;
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
@media only screen and (max-width: 426px) {
  .client .slider {
    width: 100%;
    height: 256px;
  }
}
.client .slider-item01 {
  background: url(../img/works-1.jpg);
}
.client .slider-item02 {
  background: url(../img/works-2.jpg);
}
.client .slider-item03 {
  background: url(../img/works-3.jpg);
}
.client .slider-item04 {
  background: url(../img/works-4.jpg);
}
.client .slider-item05 {
  background: url(../img/works-5.jpg);
}
.client .slider-item06 {
  background: url(../img/works-6.jpg);
}
.client .slider-item {
  max-height: 380px;
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
@media only screen and (max-width: 426px) {
  .client .slider-item {
    width: 100%;
    height: 256px;
  }
}
.client .slick-prev,
.client .slick-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 15px;
  width: 15px;
}
@media only screen and (max-width: 426px) {
  .client .slick-prev,
  .client .slick-next {
    height: 15px;
    width: 15px;
  }
}
.client .slick-prev { /*戻る矢印の位置と形状*/
  left: 3.5%;
  transform: rotate(-135deg);
}
.client .slick-next { /*次へ矢印の位置と形状*/
  right: 3.5%;
  transform: rotate(45deg);
}
.client .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -20px 0 0 0; /*ドットの位置*/
}
.client .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.client .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff; /*ドットボタンの色*/
}
@media only screen and (max-width: 426px) {
  .client .slick-dots button {
    width: 6px; /*ドットボタンのサイズ*/
    height: 6px; /*ドットボタンのサイズ*/
  }
}
.client .slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.qa {
  position: relative;
}
.qa::before {
  content: "";
  background-image: url("../img/qa.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 38%;
  height: 480px;
  position: absolute;
  left: 0;
  top: 220px;
  display: inline-block;
}
@media only screen and (max-width: 1180px) {
  .qa::before {
    width: 34%;
    height: 360px;
  }
}
@media only screen and (max-width: 980px) {
  .qa::before {
    top: 120px;
    height: 240px;
  }
}
@media only screen and (max-width: 426px) {
  .qa::before {
    width: 54%;
    height: 160px;
    top: 40px;
  }
}
.qa .inner {
  padding-top: 220px;
  padding-bottom: 170px;
  padding-right: 80px;
  background: #cec7b7;
}
@media only screen and (max-width: 980px) {
  .qa .inner {
    padding-right: 20px;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 426px) {
  .qa .inner {
    padding-left: 20px;
    margin-left: 20px;
  }
}
.qa .qa_wrap {
  width: 57%;
  margin-left: auto;
}
@media only screen and (max-width: 980px) {
  .qa .qa_wrap {
    width: 60%;
  }
}
@media only screen and (max-width: 426px) {
  .qa .qa_wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 426px) {
  .qa .qa_wrap dl {
    padding-left: 60%;
  }
}
.qa .qa_wrap .qa_box ul li {
  margin-top: 64px;
  padding-bottom: 60px;
  border-bottom: 0.5px solid #28211e;
}
.qa .qa_wrap .qa_box ul li .qa_ttl {
  font-size: 2.3rem;
  padding-bottom: 26px;
  padding-left: 32px;
  position: relative;
}
.qa .qa_wrap .qa_box ul li .qa_ttl::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  color: #28211e;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media only screen and (max-width: 1180px) {
  .qa .qa_wrap .qa_box ul li .qa_ttl::before {
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 426px) {
  .qa .qa_wrap .qa_box ul li .qa_ttl::before {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1180px) {
  .qa .qa_wrap .qa_box ul li .qa_ttl {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 426px) {
  .qa .qa_wrap .qa_box ul li .qa_ttl {
    font-size: 1.6rem;
    padding-left: 24px;
  }
}
.qa .qa_wrap .qa_box ul li .qa_answer {
  font-size: 1.6rem;
}
@media only screen and (max-width: 426px) {
  .qa .qa_wrap .qa_box ul li .qa_answer {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1180px) {
  .qa .qa_wrap .qa_box ul li .qa_flow {
    margin-top: 20px;
  }
}
.qa .qa_wrap .qa_box ul li .qa_flow a {
  display: inline-block;
  background: #ffffff;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  padding: 0 40px 0 32px;
  position: relative;
  font-size: 1.6rem;
  transition: all 0.4s;
}
.qa .qa_wrap .qa_box ul li .qa_flow a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.qa .qa_wrap .qa_box ul li .qa_flow a::after {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
}
.qa .qa_wrap .qa_box ul li .qa_onlineshop {
  margin-top: 48px;
}
.qa .qa_wrap .qa_box ul li .qa_onlineshop a {
  display: inline-block;
  background: #ffffff;
  height: 46px;
  line-height: 46px;
  border-radius: 24px;
  width: 100%;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
  transition: all 0.4s;
}
.qa .qa_wrap .qa_box ul li .qa_onlineshop a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
.qa .qa_wrap .qa_box ul li .qa_onlineshop a::after {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 4px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
}
.qa .qa_wrap .qa_box .qa_other li {
  border-bottom: none;
  padding-bottom: 0;
}
.qa .qa_wrap .qa_cat {
  display: inline-block;
  margin-top: 60px;
  padding: 0 40px;
  background: #28211e;
  color: #ffffff;
  height: 48px;
  line-height: 48px;
}
@media only screen and (max-width: 426px) {
  .qa .qa_wrap .qa_cat {
    height: 36px;
    line-height: 36px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1180px) {
  .qa .flex_box {
    display: block;
  }
}

.bottom_cta {
  margin: 180px auto;
  max-width: 1420px;
  padding: 0 60px;
}
@media only screen and (max-width: 1180px) {
  .bottom_cta {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 426px) {
  .bottom_cta {
    margin: 80px auto;
  }
}
.bottom_cta .inner {
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner {
    display: block;
  }
}
.bottom_cta .inner .bottom_ctaimg {
  width: 70%;
  height: 463px;
}
@media only screen and (max-width: 1180px) {
  .bottom_cta .inner .bottom_ctaimg {
    height: 400px;
  }
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctaimg {
    width: 100%;
    height: 180px;
  }
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctaimg img {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.bottom_cta .inner .bottom_ctatxt {
  border: 0.5px solid #28211e;
  text-align: center;
  background: #ffffff;
  width: 48%;
  margin-left: -18%;
  position: relative;
}
.bottom_cta .inner .bottom_ctatxt a {
  transition: all 0.4s;
}
.bottom_cta .inner .bottom_ctatxt a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctatxt {
    margin: -40px auto 0;
    width: calc(100% - 40px);
  }
}
.bottom_cta .inner .bottom_ctatxt::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-right: 26px solid #28211e;
  border-bottom: 26px solid transparent;
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctatxt::before {
    width: 20px;
    height: 20px;
    border-right: 20px solid #28211e;
    border-bottom: 20px solid transparent;
  }
}
.bottom_cta .inner .bottom_ctatxt::after {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 6px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: inline-block;
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctatxt::after {
    bottom: 20px;
    right: 20px;
  }
}
.bottom_cta .inner .bottom_ctatxt h2 {
  padding-top: 60px;
  font-size: 2rem;
  padding-bottom: 20px;
  margin-bottom: 28px;
  position: relative;
}
@media only screen and (max-width: 980px) {
  .bottom_cta .inner .bottom_ctatxt h2 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctatxt h2 {
    font-size: 1.4rem;
    margin-bottom: 0;
    padding-top: 48px;
    padding-bottom: 12px;
  }
}
.bottom_cta .inner .bottom_ctatxt h2::before {
  content: "";
  height: 0.5px;
  width: 38px;
  background: #28211e;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctatxt h2::before {
    display: none;
  }
}
.bottom_cta .inner .bottom_ctatxt p {
  padding-bottom: 60px;
  font-size: 4rem;
  font-family: "Cormorant Garamond", serif;
}
@media only screen and (max-width: 980px) {
  .bottom_cta .inner .bottom_ctatxt p {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 426px) {
  .bottom_cta .inner .bottom_ctatxt p {
    font-size: 2.6rem;
    padding-bottom: 48px;
  }
}

footer {
  background: #28211e;
  padding: 200px 0 0;
  color: #ffffff;
}
@media only screen and (max-width: 1180px) {
  footer {
    padding: 110px 0 0;
  }
}
@media only screen and (max-width: 426px) {
  footer {
    padding: 68px 0 0;
  }
}
footer a {
  transition: all 0.4s;
}
footer a:hover {
  transition: all 0.4s;
  opacity: 0.6;
}
footer .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media only screen and (max-width: 426px) {
  footer .inner {
    width: 100%;
    padding: 0 20px;
  }
}
footer .inner .footer_item {
  -moz-column-gap: 72px;
       column-gap: 72px;
  justify-content: space-between;
  padding-bottom: 80px;
  align-items: flex-start;
}
@media only screen and (max-width: 980px) {
  footer .inner .footer_item {
    display: block;
  }
}
footer .inner .footer_item .footer_linkittl {
  padding-left: 20px;
  position: relative;
}
footer .inner .footer_item .footer_linkittl::before {
  content: "＞";
  color: #ffffff;
  font-size: 1.3rem;
  position: absolute;
  top: 4px;
  left: 0;
}
@media only screen and (max-width: 426px) {
  footer .inner .footer_item .footer_linkittl::before {
    font-size: 1.2rem;
  }
}
footer .logo {
  max-width: 280px;
}
@media only screen and (max-width: 1180px) {
  footer .logo {
    width: 240px;
  }
}
@media only screen and (max-width: 980px) {
  footer .logo {
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 426px) {
  footer .logo {
    max-width: 164px;
    width: 45%;
  }
}
footer .logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer_linkitem {
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media only screen and (max-width: 980px) {
  footer .footer_linkitem {
    justify-content: center;
  }
}
@media only screen and (max-width: 426px) {
  footer .footer_linkitem {
    display: block;
  }
}
footer .footer_linkitem ul .footer_linkittl {
  margin-bottom: 10px;
}
@media only screen and (max-width: 426px) {
  footer .footer_linkitem ul a {
    font-size: 1.3rem;
  }
}
footer .inner_link {
  margin-top: 10px;
}
footer .inner_link li {
  margin-right: 10px;
  padding-right: 10px;
  margin-bottom: 0;
  font-size: 1.6rem;
  position: relative;
}
footer .inner_link li:last-child::before {
  content: none;
}
footer .inner_link li::before {
  content: "";
  width: 0.5px;
  height: 60%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
footer .footer_sns {
  width: 22px;
  height: auto;
}
@media only screen and (max-width: 980px) {
  footer .footer_sns {
    margin: 48px auto 0;
  }
}
@media only screen and (max-width: 426px) {
  footer .footer_sns {
    margin-left: 0;
  }
}
footer .footer_sns img {
  -o-object-fit: contain;
     object-fit: contain;
}

.footer_copyright {
  padding: 22px 20px;
  color: #ffffff;
  text-align: center;
}
.footer_copyright p {
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1px;
}
@media only screen and (max-width: 426px) {
  .footer_copyright p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */