@charset "UTF-8";

/* =======================================================
ナビゲーション／ハンバーガー
======================================================= */
#hamburger .btn-gNav {
  position: fixed;
  top: 20px;
  right: 88px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
  background-color: var(--thema-color-sub-1);
  width: 60px;
  height: 60px;
  border-radius: 60px;
  box-shadow: 0px 0px 30px #ffffffba;
}

#hamburger .btn-gNav span {
  position: absolute;
  width: 65%;
  height: 4px;
  background: white;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  margin-top: 17px;
  margin-left: -19px;
}

#hamburger .btn-gNav span:nth-child(1) {
  top: 23px;
}

#hamburger .btn-gNav span:nth-child(2) {
  top: -2px;
}

#hamburger .btn-gNav span:nth-child(3) {
  top: 11px;
}

#hamburger .btn-gNav.open span:nth-child(1) {
  background: white;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger .btn-gNav.open span:nth-child(2),
#hamburger .btn-gNav.open span:nth-child(3) {
  top: 10px;
  background: white;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

#gNav {
  position: fixed;
  top: 0;
  right: -100%;
  background: var(--thema-color-sub-1);
  font-size: 16px;
  box-sizing: border-box;
  z-index: 2;
  padding-top: 113px;
  transition: .3s;
}

#gNav.open {
  right: 0px;
}

#gNav .gNav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

#gNav .gNav-menu li {
  display: block;
  padding: 20px 30px;
  border-top: dotted 1px white;
}

#gNav .gNav-menu li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  text-shadow: 0px 0px 5px #000000ba;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  #hamburger .btn-gNav {
    top: 3px;
    right: 11px;
  }

  #gNav {
    padding-top: 68px;
    font-size: 14px;
  }

  #gNav .gNav-menu li {
    padding: 13px;
  }
}

/* =======================================================
文字の下半分に線
======================================================= */

.under1 {
  background: linear-gradient(#ffffff00 50%, white 50%);
  padding: 0px 10px;
}

.under2 {
  background: linear-gradient(#ffffff00 50%, #fdf4f3 50%);
  padding: 0px 10px;
}

/* =======================================================
ボタン
======================================================= */
.simple_square_btn-thankyou {
  font-size: 1.3em;
  color: #ffffff;
  background: #bb777d;
  display: block;
  border-radius: 30px;
  transition: all 0.5s;
  border: 1px solid #a9827b;
  margin: auto;
  padding: 7px 20px;
  width: 40%;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .simple_square_btn-thankyou {
    width: 80%;
  }
}

/*モーダルの閉じる*/
.btn-modaal-close {
  position: fixed;
  width: 24%;
  top: 86vh;
  right: 20%;
  left: 20%;
  font-size: 16px;
  display: block;
  padding: 0.5em;
  text-align: center;
  color: #757575;
  background: #f1f3f4;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 40px;
  font-weight: 700;
  border-width: 1px;
  border-style: solid;
  border-color: #dadce0;
  box-shadow: -3px 3px 5px rgb(187 119 125 / 34%), 3px -3px 5px rgb(255 224 0 / 20%);
}

@media screen and (max-width: 600px) {
  .btn-modaal-close {
    width: auto
  }
}

.btn-modaal-close:hover {
  background: #58585882;
  color: #fff;
  cursor: pointer;
}

/* =======================================================
デザインのボタン
======================================================= */

/*演目のアイコン*/
.btn {
  display: block;
  position: relative;
  width: 85%;
  padding: 0.5em;
  margin: auto;
  margin-top: 12px;
  margin-bottom: 16px;
  top: 5px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .btn {
    font-size: clamp(5px, 3vw, 14px);
    margin-top: 4px;
    margin-bottom: 8px;
  }
}

.btn:hover {
  opacity: 0.5;
}

/*素材*/
.btn-sozai {
  display: block;
  position: relative;
  width: 85%;
  padding: 0.5em;
  margin-top: 10px;
  text-align: center;
  background: #f1f3f4;
  margin: auto;
  top: 5px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  border-width: 1px;
  border-style: solid;
  border-color: #dadce0;
  color: #706f6f;
}

@media screen and (max-width: 600px) {
  .btn-sozai {
    font-size: clamp(12px, 3vw, 14px);
  }
}

.btn-product:hover {
  background: #58585882;
  color: #fff;
  cursor: pointer;
}


/* =======================================================
デザイン選択
======================================================= */
.btn-product {
  display: block;
  position: relative;
  margin: 16px;
  padding-bottom: 16px;
  border-radius: 12px;
  box-shadow: -3px 3px 5px rgb(187 119 125 / 34%), 3px -3px 5px rgb(255 224 0 / 20%);
}

@media screen and (max-width: 600px) {
  .btn-product {
    margin: 8px;
  }
}


/* =======================================================
見積金額をフッターに固定
======================================================= */
form#mailformpro dl dt.fixed_dt {
  z-index: 2;
  border-top: none;
  background: #bb777d;
  color: #fff;
  font-size: 18px;
  padding-bottom: 8px;
  padding-left: 30px;
}

form#mailformpro dl dt.fixed_dt span {
  color: #fff !important;
}

form#mailformpro dl dd.fixed_dd {
  z-index: 1;
  border-bottom: none;
  background: #bb777d;
  color: #fff;
}

form#mailformpro dl dd.fixed_dd #mfp_price {
  color: #fff !important;
}

form#mailformpro dl dd.fixed_dd #mfp_price span {
  color: #fff !important;
}

@media screen and (min-width: 569px) {
  form#mailformpro dl dt.fixed_dt {
    position: fixed;
    bottom: -20px;
    left: 240px;
    padding: 0;
    height: 80px;
    line-height: 20px;
    text-align: center;
  }

  form#mailformpro dl dt.fixed_dt::after {
    content: "";
    position: fixed;
    bottom: 13px;
    left: 400px;
    height: 54px;
    width: 1px;
    background: #fff;
  }

  form#mailformpro dl dd.fixed_dd {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    height: 80px;
    line-height: 80px;
    padding-left: 300px;
    font-size: 32px;
    font-weight: bold;
  }

  form#mailformpro dl dd.fixed_dd #mfp_price {
    padding: 0;
    padding-left: 150px;
  }
}

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

  form#mailformpro dl dt.fixed_dt {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 100% !important;
    padding-top: 8px;
    font-size: 16px;
  }

  form#mailformpro dl dt.fixed_dt::after {
    content: "";
    position: fixed;
    bottom: 54px;
    left: 3%;
    height: 1px;
    width: 94%;
    background: #fff;
  }

  form#mailformpro dl dt.fixed_dt span {
    display: block;
    padding: 5px 15px;
  }

  form#mailformpro dl dd.fixed_dd {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 32px;
    font-weight: bold;
  }

  form#mailformpro dl dd.fixed_dd #mfp_price {
    padding-right: 30px;
    text-align: right;
    padding-top: 0px;
    margin-top: -5px;
  }
}

/* =======================================================
グリッド
======================================================= */
.grid-1 {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media screen and (max-width: 600px) {
  .grid-1 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.grid-2 {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media screen and (max-width: 600px) {
  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  }
}

.grid-3 {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media screen and (max-width: 600px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  }
}

.grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(568px, 1fr));
}

@media screen and (max-width: 600px) {
  .grid-4 {
    grid-template-columns: none;
  }
}

.grid-banner {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(49%, 1fr));
}

.grid-waribiki {
  display: grid;
  gap: 32px;
  padding: 24px;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
}

@media screen and (max-width: 600px) {
  .grid-waribiki {
    padding: 24px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.grid-t-shirt {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}

@media screen and (max-width: 600px) {
  .grid-t-shirt {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

/* =======================================================
グリッドの子要素
======================================================= */

.item-1 {
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  .item-1 {
    margin: 10px;
    display: block;
  }
}

.item-2 {
  margin: 10px;
  background: #f8f1f2;
  padding: 20px 10px;
}

@media screen and (max-width: 600px) {
  .item-2 {
    margin: 5px 3px;
    padding: 10px 2px;
    display: block;
  }
}

.item-3 {
  padding: 30px;
}

@media screen and (max-width: 600px) {
  .item-3 {
    padding: 20px;
  }
}

.item-banner {
  width: 100%;
}


.item-waribiki {
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: -3px 3px 5px rgb(187 119 125 / 34%), 3px -3px 5px rgb(255 224 0 / 20%);
}

@media screen and (max-width: 600px) {
  .item-waribiki {
    padding: 8px;
  }

}

/* =======================================================
  PCのみ表示
  ======================================================= */
.pc {
  display: inline-block !important;
}

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

/* =======================================================
  スマホのみ表示
  ======================================================= */
.sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .sp {
    display: inline-block !important;
  }
}

/* =======================================================
  ボックス内の例文
  ======================================================= */
::placeholder {
  font-size: 16px;
  line-height: 25px;
}

/* =======================================================
  ボックス
  ======================================================= */
.box-1 {
  padding: 0.7em 0.7em 2em 0.7em;
  margin-top: -15px;
  margin-bottom: 30px;
  border-radius: 20px;
  border-width: 2px;
  border-style: solid;
  border-color: #e0c1bd;
  background-color: #fffbf7
}

.box-2 {
  padding: 2em 0.7em;
  margin: 30px 0px;
  border-radius: 20px;
  border-width: 2px;
  border-style: solid;
  border-color: #e0c1bd;
  background-color: #fffbf7;
}


/* =======================================================
  商品のアコーディオン
  ======================================================= */

.product .accordion_one {
  max-width: 900px;
  margin: 0 auto;
}

.product .accordion_one .accordion_header {
  background: #d76b7c;
  color: white;
  margin: 70px 0% 60px 23%;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  position: relative;
  padding-right: 27px;
  z-index: 0;
  cursor: pointer;
  transition-duration: 0.1s;
  border-radius: 30px;
  width: 50%;
}

@media screen and (max-width: 600px) {
  .product .accordion_one .accordion_header {
    font-size: 14px;
    margin: 45px 0px 10px 0px;
    width: auto;
    line-height: 35px;
  }
}

.product .accordion_one .accordion_header:hover {
  opacity: .8;
}

.product .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.1s;
}

.product .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.1s;
  position: relative;
}

.product .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.product .accordion_one .accordion_header .i_box .one_i:before,
.product .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: white;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

.product .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.product .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.product .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.product .accordion_one .accordion_inner {
  display: none;
  padding: 20px 0px 0px 0px;
  box-sizing: border-box;
}

.product .accordion_one .accordion_inner .box_one {
  height: auto;
  padding-bottom: 30px;
  font-size: 14px;
}

.product .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}


/* =======================================================
ol
======================================================= */

ol {
  padding: 0.5em 0.5em 0.5em 2em;
}

ol li {
  line-height: 1.5;
  padding: 0.5em 0;
  text-align: left;
}

/* =======================================================
モーダル画面
======================================================= */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*以下はコンテンツ内のレイアウト*/
.info-list dl,
.gallery-list {
  display: flex;
}

.info-list dt {
  margin: 0 10px 0 0;
}

.gallery-list li {
  margin: 0 10px 0 0;
}


/* =======================================================
注意事項
======================================================= */
.flow-box {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 2px #e7e4e4;
  top: 20px;
  border-radius: 0px 15px 15px 15px;
}

.flow-box .flow-box-title {
  position: absolute;
  display: inline-block;
  top: -26px;
  left: -2px;
  padding: 0 9px;
  height: 25px;
  line-height: 24px;
  font-size: 12px;
  background: #e7e4e4;
  color: #484545;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.flow-box p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-align: left;
}