@charset "UTF-8";
/* ------------------------------------------------

* Style Index
	#. Cores
	#. Layouts    :prefix[l-]
	#. Components :prefix[c-]
	#. Units
	#. Utilities  :prefix[u-]
	// #. Functions :prefix[js-]

------------------------------------------------ */
/* ------------------------------------------------
# Cores
------------------------------------------------ */
/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: inherit;
}

svg {
  width: auto;
  height: auto;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

ul {
  list-style: none;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  color: #343434;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  display: inline-block;
  opacity: 1;
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  background-color: initial;
}

/*-------------------------- SP/PC表示非表示 ------------------------------*/
.image-sp {
  display: none;
}

.content-sp {
  display: none;
}

.br-sp {
  display: none;
}

/* --------------------------------
 * smart phone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  .image-pc {
    display: none;
  }
  .content-pc {
    display: none;
  }
  .br-pc {
    display: none;
  }
  .image-sp {
    display: inline-block;
  }
  .content-sp {
    display: inline-block;
  }
  .br-sp {
    display: inline-block;
  }
}
/* -------------------------------------------------------------------- 

   #ヘッダー

-------------------------------------------------------------------- */
#d__header {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(238, 234, 233, 0.72);
  width: 100%;
}

#d__header .d__header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 75px;
  height: 100px;
  width: 100%;
}
#d__header .d__header__wrapper .logo {
  display: inline-block;
  width: 75px;
  transition: all 0.4s;
}
#d__header .d__header__wrapper .logo:hover {
  opacity: 0.6;
}

#d__menu {
  position: relative;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
#d__menu img {
  width: 25px;
  height: auto;
  position: absolute;
  top: -15px;
  left: 0;
}
#d__menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #918c84;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
#d__menu span:nth-of-type(1) {
  top: 0;
}
#d__menu span:nth-of-type(2) {
  top: 10px;
}
#d__menu span:nth-of-type(3) {
  bottom: 0;
}

#d__menu span:nth-of-type(1) {
  animation: btn07-bar01 0.75s forwards;
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(9px) rotate(25deg);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#d__menu span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#d__menu span:nth-of-type(3) {
  animation: btn07-bar03 0.75s forwards;
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-10px) rotate(-25deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#d__menu.active span:nth-of-type(1) {
  animation: active-btn07-bar01 0.75s forwards;
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(25deg);
  }
}
#d__menu.active span:nth-of-type(2) {
  opacity: 0;
}

#d__menu.active span:nth-of-type(3) {
  animation: active-btn07-bar03 0.75s forwards;
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-25deg);
  }
}
#gnav {
  position: fixed;
  top: 100px;
  right: 0;
  width: 520px;
  height: calc(100vh - 100px);
  background-color: rgba(214, 206, 191, 0.58);
  border-radius: 50px 0 0 0;
  overflow: hidden;
  transition: 1s;
  transform: translateX(520px);
  transition: all 0.3s linear;
  z-index: 10000;
}
#gnav .gnav__wrapper {
  padding: 65px 36px 46px 34px;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}
#gnav .sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
#gnav .sns .sns__item a {
  display: inline-block;
  height: 25px;
  transition: all 0.4s;
}
#gnav .sns .sns__item a:hover {
  opacity: 0.6;
}
#gnav .sns .sns__item img {
  width: auto;
  height: 100%;
}

#gnav.active {
  transform: translateX(0);
}

#d__search {
  width: calc(100% - 50px);
  margin: 0 auto 25px auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#d__search input {
  font-size: 16px;
  padding: 6px 0 6px 7px;
  border-radius: 0;
  background-color: initial;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #000;
  width: calc(100% - 33px);
}
#d__search input::-moz-placeholder {
  font-size: 16px;
  font-size: #000;
  opacity: 0;
}
#d__search input::placeholder {
  font-size: 16px;
  font-size: #000;
  opacity: 0;
}
#d__search a.search-btn {
  font-size: 0;
  width: 32px;
  height: 32px;
  background-image: url("../image/header/search.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px auto;
  border: none;
  background-color: initial;
  border-bottom: 1px solid #000;
}

.accordion {
  margin-bottom: 15px;
}

.accordion__head,
.d__link__item {
  font-size: 16px;
  line-height: 1.5em;
  padding: 12px 23px;
  background-color: #bdb9b5;
  color: #000000;
  text-align: left;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.1em;
  position: relative;
  transition: all 0.6s;
  cursor: pointer;
}
.accordion__head p,
.d__link__item p {
  transition: all 0.4s;
}
.accordion__head::before,
.d__link__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 23px;
  height: 100%;
  width: 15px;
  background-image: url("../image/header/arrow_down.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.accordion__head:hover p,
.d__link__item:hover p {
  opacity: 0.6;
}

.accordion__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
  font-size: 20px;
  padding: 0 20px;
  background-color: #bdb9b5;
}

.category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
}
.category__list .category__item {
  width: 50%;
}
.category__list .category__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000000;
  font-size: 14px;
  text-align: left;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.1em;
  transition: all 0.6s;
}
.category__list .category__item a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.category__list .category__item a figure {
  width: 70px;
  margin-right: 10px;
}

.accordion.active .accordion__body {
  height: auto;
  padding: 11px 20px 50px 20px;
}

.accordion.active .accordion__head::before {
  background-image: url("../image/header/arrow_up.png");
}

.d__link__item {
  width: 100%;
  margin-bottom: 15px;
}
.d__link__item span {
  transition: all 0.6s;
}
.d__link__item::before {
  display: none;
}
.d__link__item:hover span {
  opacity: 0.6;
}

.service__list {
  padding: 11px 20px 0px 20px;
  text-align: left;
}
.service__list .service__item {
  width: 100%;
}
.service__list .service__item a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  padding: 15px;
  transition: all 0.6s;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #000;
  letter-spacing: 0.1em;
}
.service__list .service__item a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* --------------------------------
 * smart phone
 * -------------------------------- */
@media screen and (max-width: 520px) {
  #d__header .d__header__wrapper {
    justify-content: flex-end;
    padding: 0 15px;
    height: 55px;
    position: relative;
  }
  #d__header .d__header__wrapper .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 70px;
  }
  #d__menu {
    margin-top: 0;
  }
  #d__menu img {
    display: none;
  }
  #gnav {
    top: 55px;
    width: 100vw;
    height: calc(100vh - 55px);
    transform: translateX(100vw);
  }
  #gnav .gnav__wrapper {
    padding: 50px 20px 30px 20px;
  }
}
/* -------------------------------------------------------------------- 

   #キービジュアル

-------------------------------------------------------------------- */

.sample {
    position: fixed;
    z-index: -1;
	  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  position: relative;
}



.sample li {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    -webkit-animation: anime 15s linear 0s infinite ;
    animation: anime 15s linear 0s infinite ;
}

.sample li:nth-child(1) { 
    background-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual.jpg)   /* 背景画像を入力して下さい */
}
.sample li:nth-child(2) {
    background-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual-2.jpg);
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.sample li:nth-child(3) {
    background-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual-4.jpg);
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}
.sample li:nth-child(4) {
    backgro: ;und-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual-3.jpg);
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}


@-webkit-keyframes anime { 
    0% {
        -webkit-animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(1.1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
            -webkit-animation-timing-function: ease-out;
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(1.1);
        opacity: 0;
    }
    100% { opacity: 0 }
}
@keyframes anime { 
    0% {
        animation-timing-function: ease-in;/* ゆっくりと始まり、一定速度で終わります。 */
        opacity: 0;
    }
    10% {
        transform: scale(1.1);/* 拡大・縮小させる */
        opacity: 1;/* 完全に不透明 */
    }
    50% {
        transform: scale(1.2);
            animation-timing-function: ease-out;/*  一定速度で始まり、ゆっくりと終わります。 */
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
        opacity: 0;/* 完全に透明 */
    }
    100% { opacity: 0 }
}




#keyvisual {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  position: relative;
}


#keyvisual .scroll__down {
  position: absolute;
  bottom: 0;
  right: 30px;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
}
#keyvisual .scroll__down p {
  display: inline-block;
  transform: rotate(90deg);
  line-height: 1em;
  text-align: left;
}
#keyvisual .scroll__down .scroll__bar {
  position: relative;
  height: 220px;
  width: 1px;
  margin-top: 50px;
}
#keyvisual .scroll__down .scroll__bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.8) 100%);
  transition: 0.4s;
  overflow: hidden;
}
#keyvisual .scroll__down .scroll__bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 220px;
  background: #fff;
  animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* --------------------------------
 * smart phone
 * -------------------------------- */
@media screen and (max-width: 520px) {
 
	
.sample {
    position: fixed;
    z-index: -1;
	  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  position: relative;
}



.sample li {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    -webkit-animation: anime 15s linear 0s infinite ;
    animation: anime 15s linear 0s infinite ;
}

.sample li:nth-child(1) { 
    background-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual_sp.jpg)   /* 背景画像を入力して下さい */
}
.sample li:nth-child(2) {
    background-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual_sp-2.jpg);
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.sample li:nth-child(3) {
    background-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual_sp-4.jpg);
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}
.sample li:nth-child(4) {
    backgro: ;und-image: url(https://gigaplus.makeshop.jp/devas/assets/image/top/keyvisual_sp-3.jpg);
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}


@-webkit-keyframes anime { 
    0% {
        -webkit-animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(1.1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
            -webkit-animation-timing-function: ease-out;
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(1.1);
        opacity: 0;
    }
    100% { opacity: 0 }
}
@keyframes anime { 
    0% {
        animation-timing-function: ease-in;/* ゆっくりと始まり、一定速度で終わります。 */
        opacity: 0;
    }
    10% {
        transform: scale(1.1);/* 拡大・縮小させる */
        opacity: 1;/* 完全に不透明 */
    }
    50% {
        transform: scale(1.2);
            animation-timing-function: ease-out;/*  一定速度で始まり、ゆっくりと終わります。 */
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
        opacity: 0;/* 完全に透明 */
    }
    100% { opacity: 0 }
}
	
	

	
  #keyvisual .scroll__down {
    right: auto;
    left: 0;
    font-size: 14px;
    flex-flow: column-reverse;
  }
  #keyvisual .scroll__down p {
    width: auto;
    margin-bottom: 50px;
  }
  #keyvisual .scroll__down .scroll__bar {
    height: 65px;
    margin-top: 0;
    margin-bottom: 50px;
  }
  #keyvisual .scroll__down .scroll__bar:after {
    height: 65px;
  }
}
/* -------------------------------------------------------------------- 

   #キャッチフレーズ

-------------------------------------------------------------------- */
#catch {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: #000;
  padding: 200px 0 200px 0;
}
#catch h1 {
  text-align: center;
  font-size: 38px;
  line-height: 2em;
  margin-bottom: 130px;
}
#catch p {
  font-size: 21px;
  line-height: 2em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  text-align: center;
}

/* --------------------------------
 * smart phone
 * -------------------------------- */
@media screen and (max-width: 520px) {
  #catch {
    padding: 100px 15px 100px 15px;
  }
  #catch h1 {
    font-size: 18px;
    margin-bottom: 45px;
  }
  #catch p {
    font-size: 14px;
  }
}
/* -------------------------------------------------------------------- 

   #下からふわっとアニメーション

-------------------------------------------------------------------- */
.fadeIn {
  display: inline-block;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(40px);
}
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeInAnime1s {
  animation-name: fadeIn1s;
}

.fadeIn1s {
  animation-delay: 0.4s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(40px);
  opacity: 0;
}

@keyframes fadeIn1s {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadeInAnime2s {
  animation-name: fadeIn1s;
}

.fadeIn2s {
  animation-delay: 0.8s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(40px);
  opacity: 0;
}

@keyframes fadeIn1s {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  .fadeIn1s {
    animation-delay: 0s;
  }
  .fadeIn2s {
    animation-delay: 0.4s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(40px);
    opacity: 0;
  }
}
/* -------------------------------------------------------------------- 

   #アバウト

-------------------------------------------------------------------- */
#about {
  position: relative;
}
#about .scroll__down {
  position: absolute;
  top: -100px;
  right: calc(50vw - 460px);
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  z-index: 500;
}
#about .scroll__down p {
  display: inline-block;
  transform: rotate(90deg);
  line-height: 1em;
  text-align: left;
}
#about .scroll__down .scroll__bar {
  position: relative;
  height: 220px;
  width: 1px;
  margin-top: 50px;
}
#about .scroll__down .scroll__bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.8) 100%);
  transition: 0.4s;
  overflow: hidden;
}
#about .scroll__down .scroll__bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 220px;
  background: #000;
  animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
#about .swiper {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
#about .swiper-slide-active .swiper-img,
#about .swiper-slide-duplicate-active .swiper-img,
#about .swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
#about .swiper-slide img {
  height: auto;
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* --------------------------------
 * smart phone
 * -------------------------------- */
@media screen and (max-width: 1000px) {
  #about .scroll__down {
    top: -5px;
    right: 20px;
    font-size: 14px;
  }
  #about .scroll__down .scroll__bar {
    height: 65px;
    margin-top: 30px;
  }
  #about .scroll__down .scroll__bar:after {
    height: 65px;
  }
}
/* -------------------------------------------------------------------- 

   #独自のサービス

-------------------------------------------------------------------- */
#original {
  display: flex;
  flex-wrap: wrap;
  padding: 200px 0 200px 0;
  justify-content: space-around;
  align-items: center;
}
#original .swiper-wrapper {
  transition-timing-function: linear;
}
#original .original__title__wrapper {
  width: 270px;
}
#original .original__title__wrapper .original__title {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  text-align: center;
  line-height: 1.5em;
}
#original .original__title__wrapper .original__title span {
  font-size: 18px;
}
#original .original__slide__wrapper {
  width: 800px;
  max-width: calc(100% - 10px);
}
#original .original__slide__wrapper p {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}
#original .original__button__wrapper {
  width: 270px;
}
#original .original__button__wrapper button {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  padding-right: 180px;
  position: relative;
  transition: all 0.4s;
  animation: blinkOpacity 1.2s ease-in-out infinite alternate;
}
#original .original__button__wrapper button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 168px;
  height: 0.8px;
  background-color: #000;
}
#original .original__button__wrapper button::after {
  content: "";
  position: absolute;
  bottom: 2.5px;
  right: -1.5px;
  width: 7px;
  height: 1px;
  background-color: #000;
  transform: rotate(54deg);
}
#original .original__button__wrapper button :hover {
  opacity: 0.6;
}

@keyframes blinkOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --------------------------------
* 1400px以下
* -------------------------------- */
@media screen and (max-width: 1400px) {
  #original {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }
}
/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #original {
    padding: 100px 0 100px 0;
    gap: 60px;
  }
  #original .original__title__wrapper {
    width: auto;
  }
  #original .original__title__wrapper .original__title {
    font-size: 18px;
  }
  #original .original__title__wrapper .original__title span {
    font-size: 12px;
  }
  #original .original__slide__wrapper {
    margin: 0 auto;
  }
  #original .original__slide__wrapper p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #original .original__button__wrapper {
    width: auto;
  }
}
/* -------------------------------------------------------------------- 

   #お知らせ/ポイント

-------------------------------------------------------------------- */
#news {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 190px;
  padding-top:200px;
  padding-bottom: 200px;
}
#news .blog {
  width: 380px;
}
#news .blog__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 0.1em;
}
#news .blog .woong:nth-child(1),
#news .blog .line {
  display: none;
}
#news .blog__content {
  background-image: url("../image/top/line-dod.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto 2px;
}
#news .blog a {
  display: inline-block;
  width: 100%;
  background-image: url("../image/top/line-dod.png"), url("../image/top/news-list-point.png");
  background-position: bottom left, top 20px left 45px;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 2px, 10px auto;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  padding: 15px 0 15px 70px;
  transition: all 0.4s;
  text-decoration: none;
  text-align: left;
}
#news .blog a:hover {
  opacity: 0.6;
}
#news .point {
  width: 400px;
}
#news .point .check {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: center;
  animation: blinkOpacity 1.2s ease-in-out infinite alternate;
}
#news .point .banner {
  display: inline-block;
  width: 100%;
  transition: all 0.4s;
}
#news .point .banner:hover {
  opacity: 0.6;
}

/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #news {
    flex-flow: column;
    gap: 50px;
	padding-top:150px;
    padding-bottom: 150px;
  }
  #news .blog {
    width: 300px;
    max-width: calc(100% - 20px);
    margin: 0 auto;
  }
  #news .blog__title {
    margin-bottom: 30px;
  }
  #news .blog__content {
    background-image: url("../image/top/line-dod.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto 2px;
  }
  #news .blog a {
    background-position: bottom left, top 20px left 35px;
    padding: 15px 0 15px 60px;
    display: inline-block;
    width: 100%;
  }
  #news .point {
    max-width: calc(100% - 40px);
  }
  #news .point .check {
    margin-bottom: 20px;
  }
}
/* -------------------------------------------------------------------- 

   #新作

-------------------------------------------------------------------- */
#new {
  position: relative;
}
#new::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("../image/top/new-bg.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(20px);
  background-color:#eeeae9
}
#new .new__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 200px 0;
  position: relative;
  transition: all 0.4s;
}
#new .new__wrapper::before, #new .new__wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #fff;
  left: 180px;
  top: 0;
  z-index: 1;
}
#new .new__wrapper::after {
  height: 1px;
  width: 100%;
  left: 0;
  top: 50%;
}
#new .new__wrapper .new__title {
  width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
#new .new__wrapper .new__title .new__title__wrapper {
  padding: 65px 15px 50px 15px;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #fff;
  opacity: 1;
}
#new .new__wrapper .new__title h1 {
  text-align: right;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 0.6em;
  color: #fff;
  animation: blinkOpacity 1.2s ease-in-out infinite alternate;
}
#new .new__wrapper .new__title h1 span {
  font-size: 53px;
}
#new .new__wrapper .new__title h1 small {
  font-size: 18px;
  font-weight: 100;
}
#new .new__wrapper .new__content {
  width: calc(100% - 410px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}
#new .new__wrapper .new__content a {
  display: inline-block;
  width: 100%;
}

#new.active::after {
  opacity: 1;
  transform: translateY(0);
}
#new.active .new__title .new__title__wrapper {
  background-color: #acb3b6;
}

/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #new::after {
    background-image: url("../image/top/new-bg-sp.png");
	background-color:#eeeae9
  }
  #new .new__wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 0 130px 0;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #new .new__wrapper::before, #new .new__wrapper::after {
    left: auto;
    right: 100px;
  }
  #new .new__wrapper::after {
    width: calc(100% + 40px);
    left: -20px;
    top: 105px;
  }
  #new .new__wrapper .new__title {
    width: auto;
    justify-content: flex-start;
  }
  #new .new__wrapper .new__title .new__title__wrapper {
    padding: 0 30px 0 20px;
  }
  #new .new__wrapper .new__title h1 {
    font-size: 26px;
  }
  #new .new__wrapper .new__title h1 span {
    font-size: 31px;
  }
  #new .new__wrapper .new__title h1 small {
    font-size: 18px;
    display: inline-block;
    margin-left: 8px;
  }
  #new .new__wrapper .new__title h1 br {
    display: none;
  }
  #new .new__wrapper .new__content {
    width: 100%;
    margin-top: 45px;
    flex-wrap: wrap;
    gap: 10px 8px;
  }
  #new .new__wrapper .new__content .new__item {
    width: 100%;
  }
  #new .new__wrapper .new__content .new__item:nth-child(2),
  #new .new__wrapper .new__content .new__item:nth-child(3) {
    width: calc(50% - 4px);
  }
}
/* -------------------------------------------------------------------- 

   #ブライダル/エンゲージリング

-------------------------------------------------------------------- */
#bridal {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 200px 0;
  background-color:#eeeae9
}
#bridal .bridal__wrapper .content__wrapper,
#bridal .engage__wrapper .content__wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}
#bridal .bridal__wrapper .title,
#bridal .engage__wrapper .title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1em;
  text-align: right;
  color: #464541;
}
#bridal .bridal__wrapper .swiper03,
#bridal .bridal__wrapper .swiper04,
#bridal .engage__wrapper .swiper03,
#bridal .engage__wrapper .swiper04 {
  width: 370px;
  text-align: center;
}
#bridal .bridal__wrapper .swiper03 a,
#bridal .bridal__wrapper .swiper04 a,
#bridal .engage__wrapper .swiper03 a,
#bridal .engage__wrapper .swiper04 a {
  display: inline-block;
  width: 100%;
  height: auto;
}
#bridal .bridal__wrapper .swiper03 .swiper-wrapper,
#bridal .bridal__wrapper .swiper04 .swiper-wrapper,
#bridal .engage__wrapper .swiper03 .swiper-wrapper,
#bridal .engage__wrapper .swiper04 .swiper-wrapper {
  transition-timing-function: linear;
}
#bridal .bridal__wrapper .swiper03 .swiper,
#bridal .bridal__wrapper .swiper04 .swiper,
#bridal .engage__wrapper .swiper03 .swiper,
#bridal .engage__wrapper .swiper04 .swiper {
  padding-bottom: 40px;
}
#bridal .bridal__wrapper .swiper03 .swiper-pagination-bullet-active,
#bridal .bridal__wrapper .swiper04 .swiper-pagination-bullet-active,
#bridal .engage__wrapper .swiper03 .swiper-pagination-bullet-active,
#bridal .engage__wrapper .swiper04 .swiper-pagination-bullet-active {
  background-color: #464541;
}
#bridal button {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  padding-right: 180px;
  position: relative;
  transition: all 0.4s;
  animation: blinkOpacity 1.2s ease-in-out infinite alternate;
}
#bridal button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 168px;
  height: 0.8px;
  background-color: #000;
}
#bridal button::after {
  content: "";
  position: absolute;
  bottom: 2.5px;
  right: -1.7px;
  width: 7px;
  height: 0.8px;
  background-color: #000;
  transform: rotate(54deg);
}
#bridal button :hover {
  opacity: 0.6;
}

/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #bridal {
    flex-flow: column;
    padding: 200px 0;
    gap: 80px;
    width: 100%;
  }
  #bridal .bridal__wrapper,
  #bridal .engage__wrapper {
    width: 100%;
  }
  #bridal .bridal__wrapper .content__wrapper,
  #bridal .engage__wrapper .content__wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  #bridal .bridal__wrapper .title,
  #bridal .engage__wrapper .title {
    font-size: 26px;
    margin-bottom: -5px;
    margin-left: 15px;
    position: relative;
    z-index: 5;
  }
  #bridal .bridal__wrapper .title br,
  #bridal .engage__wrapper .title br {
    display: none;
  }
  #bridal .bridal__wrapper .swiper03,
  #bridal .bridal__wrapper .swiper04,
  #bridal .engage__wrapper .swiper03,
  #bridal .engage__wrapper .swiper04 {
    width: calc(100% - 20px);
    margin: 0 0 0 20px;
  }
  #bridal .bridal__wrapper .swiper-horizontal > .swiper-pagination-bullets, #bridal .bridal__wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, #bridal .bridal__wrapper .swiper-pagination-custom, #bridal .bridal__wrapper .swiper-pagination-fraction,
  #bridal .engage__wrapper .swiper-horizontal > .swiper-pagination-bullets,
  #bridal .engage__wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
  #bridal .engage__wrapper .swiper-pagination-custom,
  #bridal .engage__wrapper .swiper-pagination-fraction {
    width: calc(100% - 20px);
  }
  #bridal button {
    margin: 0 20px 0 0;
  }
}
/* -------------------------------------------------------------------- 

   #lookbook

-------------------------------------------------------------------- */
#look {
  width: 100%;
}
#look .look__wrapper {
  background-color: #eceae9;
  text-align: center;
  padding: 100px 0;
  width: 800px;
  margin: 0 auto;
}
#look .look__wrapper .title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1em;
  text-align: center;
  margin-bottom: 50px;
}
#look .look__wrapper .more__items {
  width: 500px;
  margin: 0 auto;
}
#look .look__wrapper .more__items .banner__item {
  margin-bottom: 15px;
}
#look .look__wrapper .more__items .banner__item a {
  display: inline-block;
  width: 100%;
}
#look .look__wrapper .more__btn {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 30px 0;
  background-image: url("../image/top/arrow-bottom.png");
  background-repeat: no-repeat;
  background-size: 33px auto;
  background-position: bottom center;
  animation: blinkOpacity 1.2s ease-in-out infinite alternate;
　color: #FFFFFF;
}
#look .look__wrapper .more__btn:hover {
  cursor: pointer;
  color: #FFFFFF;
}

/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #look .look__wrapper {
    padding: 50px 0;
    width: 100%;
  }
  #look .look__wrapper .title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  #look .look__wrapper .more__items {
    width: calc(100% - 40px);
  }
  #look .look__wrapper .more__items .banner__item {
    margin-bottom: 10px;
  }
  #look .look__wrapper .more__btn {
    padding: 20px 0 30px 0;
  }
}
/* -------------------------------------------------------------------- 

   #インスタ

-------------------------------------------------------------------- */
#inst {
  padding: 200px 0;
  text-align: center;
  background-color:#eeeae9
}
#inst .inst__icon {
  text-align: center;
}
#inst .inst__icon p {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
#inst .inst__icon figure {
  width: 60px;
  margin: 0 auto 50px auto;
}
#inst .scroll-infinity {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 100px auto;
}
#inst .scroll-infinity__wrap {
  display: flex;
  gap: 25px;
  overflow: hidden;
}
#inst .scroll-infinity__list {
  display: flex;
  list-style: none;
  gap: 25px;
  padding: 0;
}
#inst .scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
#inst .scroll-infinity__item {
  width: 266.6666666667px;
}
#inst .scroll-infinity__item > img {
  width: 100%;
}
#inst h2 {
  font-size: 21px;
  line-height: 2em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}
#inst button {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  position: relative;
  transition: all 0.4s;
  animation: blinkOpacity 1.2s ease-in-out infinite alternate;
  padding-bottom: 10px;
}
#inst button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 168px;
  height: 0.8px;
  background-color: #000;
}
#inst button::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: -38px;
  width: 7px;
  height: 0.8px;
  background-color: #000;
  transform: rotate(54deg);
}
#inst button :hover {
  opacity: 0.6;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #inst {
    padding: 100px 0;
  }
  #inst .inst__icon {
    text-align: center;
  }
  #inst .scroll-infinity {
    margin: 0 auto 50px auto;
  }
  #inst .scroll-infinity__wrap {
    gap: 10px;
  }
  #inst .scroll-infinity__list {
    gap: 10px;
  }
  #inst .scroll-infinity__item {
    width: 66.6666666667vw;
  }
  #inst .scroll-infinity__item > img {
    width: 100%;
  }
  #inst h2 {
    font-size: 14px;
    margin-bottom: 25px;
    padding: 0 20px;
  }
}
/* -------------------------------------------------------------------- 

   #カテゴリー

-------------------------------------------------------------------- */
#type {
  padding: 0 0 200px;
}
#type .type__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 44px 38px;
  width: 800px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
#type .type__wrapper .type__item {
  width: 16%;
}
#type .type__wrapper .type__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
#type .type__wrapper .type__item a span {
  position: absolute;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
  bottom: 20px;
  left: 0;
  color: #ffffff;
}
#type .type__wrapper .type__item:nth-child(1) {
  margin-left: 10px;
}
#type .type__wrapper .type__item:nth-child(4) {
  margin-right: 10px;
}

.fadein05 {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(40px);
}

.fadein05.active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #type {
    padding: 0 0 100px;
  }
  #type .type__wrapper {
    gap: 10px 0;
    justify-content: space-between;
  }
  #type .type__wrapper .type__item {
    width: 32%;
  }
  #type .type__wrapper .type__item a span {
    position: absolute;
    font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    width: 100%;
    text-align: center;
    bottom: 20px;
    left: 0;
  }
  #type .type__wrapper .type__item:nth-child(1) {
    margin-left: 0;
  }
  #type .type__wrapper .type__item:nth-child(4) {
    margin-right: 0;
  }
}
/* -------------------------------------------------------------------- 

   #フッター

-------------------------------------------------------------------- */
#footer {
  background-color: #eeeae9;
  text-align: left;
  display: block;
  width: 100%;
}
#footer .footer__content {
  padding: 150px 0 200px 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
#footer .footer__content .footer__section {
  width: 23.8%;
  overflow: hidden;
}
#footer .footer__content .footer__section .footer__title {
  font-size: 21px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  line-height: 1em;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: #918c84;
}
#footer .footer__content .footer__section .footer__title span {
  background-color: #eeeae9;
  display: inline-block;
  padding-right: 20px;
}
#footer .footer__content .footer__section .footer__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #918c84;
  z-index: -1;
}
#footer .footer__content .footer__shop {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
#footer .footer__content .footer__shop .shop__item {
  height: 32px;
}
#footer .footer__content .footer__shop .shop__item a,
#footer .footer__content .footer__shop .shop__item img {
  display: inline-block;
  height: 100%;
  width: auto;
}
#footer .footer__content .footer__guide {
  display: inline-block;
  width: 49%;
}
#footer .footer__content p,
#footer .footer__content a {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.1em;
  color: #918c84;
}
#footer .copy__wrapper {
  padding: 30px 0;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 10px;
  line-height: 2em;
  letter-spacing: 0.1em;
  color: #918c84;
}

/* --------------------------------
* smart phone
* -------------------------------- */
@media screen and (max-width: 520px) {
  #footer .footer__content {
    padding: 50px 0 100px 0;
    flex-flow: column;
    gap: 50px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #footer .footer__content .footer__section {
    width: 100%;
  }
  #footer .footer__content .footer__section .footer__title {
    font-size: 21px;
  }
  #footer .copy__wrapper {
    padding: 15px 0;
  }
}
/* -------------------------------------------------------------------- 

   #商品詳細

-------------------------------------------------------------------- */
.main-contents {
  margin-top: 110px;
}

.item-detail {
  width: calc(100% - 600px);
}

#detail h2 {
  font-size: 35px;
  line-height: 1.3em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  margin-bottom: 40px;
}

.item-price-wrap .item-price {
  color: #293d45;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 21px;
  margin-bottom: 6px;
}

.item-detail-addtext {
  display: none;
}

.item-detail-text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 2em;
  color: #000;
  margin-bottom: 40px;
}
.item-detail-text .category {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-bottom: 15px;
}
.item-detail-text .category p {
  background-color: #293d45;
  color: #fff;
  line-height: 1em;
  padding: 8px 28px;
}
.item-detail-text .schedule {
  display: none;
}

/* アコーディオン */
.accordion-wrapper {
  margin-bottom: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.34);
}

.accordion-content {
  display: none;
}

.accordion-header {
  padding: 30px 65px;
  cursor: pointer;
  position: relative;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 21px;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 1px;
  margin: auto;
  background: #151E2F;
}

.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-content {
  padding: 30px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  text-align: left;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 18px;
}

.popbtn {
  text-align: center;
}

.popbtn p {
  display: inline-block;
  padding: 20px 0;
  width: 100%;
  background-color: #293d45;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 26px;
  line-height: 1.5em;
  text-align: center;
  margin: 0 auto 40px auto;
}

.popup {
  display: none;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000;
}
.popup .content {
  background: #fff;
  width: 50%;
  height: 80vh;
  margin: 110px auto 0 auto;
  position: relative;
}
.popup .content .content-wrapper {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.popup #close {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 50px;
  padding: 10px;
  line-height: 1em;
}

/* 営業日 */
.schedule-wrapper {
  margin-bottom: 40px;
}
.schedule-wrapper .category,
.schedule-wrapper p {
  display: none;
}
.schedule-wrapper .schedule {
  display: block;
}
.schedule-wrapper .schedule p {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 25px;
  line-height: 1.5em;
  text-align: center;
}
.schedule-wrapper .schedule p span {
  font-size: 16px;
  color: #626262;
  display: inline-block;
  margin-bottom: 10px;
}
.schedule-wrapper .schedule p small {
  font-size: 12px;
  color: #626262;
}

/* オプション */
.M_nameTxt {
  display: none;
}

.makeshop-option-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.makeshop-option-select {
  width: 100%;
}

.makeshop-option-select-wrap {
  width: 70%;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 16px;
}

.makeshop-option-label {
  font-size: 16px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
}

.makeshop-option-select-wrap select {
  padding: 10px;
  font-size: 16px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  width: 100%;
  height: auto;
}

.option-warpper {
  background-color: #dedcda;
  padding: 30px;
}

.carved {
  width: 80%;
  margin: 0 auto;
  padding: 30px 30px 10px 30px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 40px;
  margin-top: 40px;
}

.carved .nameprint-title-wrap {
  font-size: 18px;
  text-align: center;
}

.nameprint-text input {
  padding: 5px 10px;
  font-size: 18px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 5px;
}

.nameprint-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.nameprint-total,
.nameprint-character {
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}

.nameprint-character {
  margin-bottom: 20px;
}

.modal-open {
  display: block;
}
.modal-open .item-stock {
  font-size: 16px;
  line-height: 2em;
}

a.add-cart-btn,
.item-form-btn a {
  background-color: #293d45;
  color: #fff;
  padding: 25px 10px;
  width: 100%;
  border-radius: 0;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  line-height: 1em;
  margin-bottom: 30px;
  text-align: center;
}

.item-form-btn a {
  background-color: #798589;
}

.item-basket-btn {
  margin-bottom: 0;
}

.item-quantity input {
  font-size: 18px;
  padding: 10px;
  margin-bottom: 0;
}

p.cord {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 200;
  font-size: 18px;
  text-align: center;
}

.banner_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 100px;
  width: 100%;
}
.banner_bottom a {
  width: 40%;
}

.favorite {
  text-align: right;
  margin-bottom: 40px;
}
.favorite a:after {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .contents {
    margin-top: 60px;
  }
  .choice-btn {
    margin-bottom: 20px;
  }
  .item-detail {
    width: 100%;
  }
  #detail h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .item-price-wrap .item-price {
    font-size: 20px;
  }
  .item-detail-text {
    font-size: 16px;
    line-height: 1.5em;
  }
  .item-detail-text .category {
    gap: 15px 10px;
    margin-bottom: 20px;
  }
  .item-detail-text .category p {
    padding: 6px 22px;
    font-size: 13px;
  }
  .item-detail-text .schedule {
    display: none;
  }
  /* アコーディオン */
  .accordion-wrapper {
    margin-bottom: 30px;
  }
  .accordion-header {
    padding: 17px 30px;
    font-size: 16px;
  }
  .accordion-content {
    padding: 30px;
    font-size: 16px;
  }
  .popbtn {
    text-align: center;
  }
  .popbtn p {
    padding: 15px 0;
    width: 80%;
    font-size: 16px;
    margin: 0 auto 20px auto;
  }
  .popup .content {
    width: calc(100% - 40px);
    height: 90vh;
    margin: 5vh auto 0 auto;
  }
  .popup #close {
    font-size: 20px;
  }
  /* 営業日 */
  .schedule-wrapper {
    margin-bottom: 30px;
  }
  .schedule-wrapper .schedule p {
    font-size: 20px;
    line-height: 1.3em;
  }
  /* オプション */
  .option-warpper {
    padding: 30px 15px;
  }
  .makeshop-option-select-wrap select {
    margin-bottom: 0;
    background-color: #fff;
  }
  .makeshop-option-select-wrap::before {
    top: 17px;
  }
  .makeshop-option-select-wrap {
    background: initial;
  }
  .item-option {
    margin: 0;
  }
  .carved {
    width: calc(100% - 80px);
    padding: 40px 25px 20px 25px;
  }
  a.add-cart-btn,
  .item-form-btn a {
    margin-bottom: 15px;
  }
  .item-quantity {
    margin-bottom: 0;
  }
  .banner_bottom {
    margin-top: 90px;
  }
  .banner_bottom a {
    width: 100%;
  }
}
/* -------------------------------------------------------------------- 

   #カレンダー

-------------------------------------------------------------------- */
.calendar-wrap {
  background-color: #eeeae9;
  padding: 20px;
}
.calendar-wrap .calendar-left {
  width: 100%;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 0.75rem;
  font-size: 16px;
}
.calendar-wrap .calendar-left h4 {
  font-size: 32px;
  font-weight: bold;
}
.calendar-wrap .calendar-right table {
  margin: 0 auto 10px auto;
  font-size: 14px;
  border-collapse: collapse;
  border-spacing: 0;
}
.calendar-wrap .calendar-right table tr {
  font-size: 14px;
}
.calendar-wrap .sunday, .calendar-wrap .calendar .holiday {
  color: #f65372;
}
.calendar-wrap .calendar-attention {
  text-align: left;
  min-width: 120px;
  width: 30%;
  margin-left: auto;
  margin-top: 8px;
  font-size: 0.75rem;
}

.makeshop-calendar1 td.today {
  background: linear-gradient(transparent 60%, #f3d631 40%);
}

@media screen and (max-width: 768px) {
  .calendar-wrap {
    display: flex;
    padding: 32px;
    width: 100%;
  }
  .calendar-wrap .calendar-left {
    width: 28%;
    display: block;
    margin-bottom: 0;
    min-width: 50px;
  }
  .calendar-wrap .calendar-left h4 {
    font-size: 32px;
    font-weight: bold;
    line-height: 2em;
  }
  .calendar-wrap .calendar-right {
    width: 72%;
  }
  .calendar-wrap table {
    margin: 0 auto 10px auto;
  }
}