@charset "utf-8";
/* Dear SD _ 10th Anniversary CSS */
:root {
  --c-brw01: #694A44;/*overwrite*/
  --bs-cmn: 0 0 0.5rem 1px rgb(50 50 50 / 20%);
  --c-red-1: #a20005;
  --c-red-2: #a01f28;
  --c-red-3: #b03335;
  --c-brw-1: #957d71;
  --c-brw-2: #8a7569;
  --c-brw-3: #5e433a;
  --c-brw-4: #43201a;
  --c-brw-5: #573724;
  --c-gld-1: #e1be69;
  --c-gld-2: #ac8828;
  --c-ylw-1: #fff800;
  --c-ylw-2: #e9c864;
  --c-pnk-1: #F091A0;
  --c-pnk-2: #dd6164;
  --c-link-nml: #0095d9;
  --c-link-nml-hover: #19448e;
  /*color common*/
  --c-brw-00: #3b1609;
  --c-brw-01: #623329;
  --c-brw-02: #5f342b;
  --c-brw-03: #dccebd;
  --c-brw-04: #bcac94;
  --c-brw-05: #d8c5aa;
  /*font family*/
  --ff-mincho: "游明朝体", YuMincho, "游明朝 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", serif;
  --ff-notoserif: 'Noto Serif JP', cursive, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  --ff-metal: 'Metal', cursive, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  --ff-NtSns:  "Noto Sans", sans-serif;
  --ff-NtSnsJP: YakuHanJP, "Noto Sans JP", sans-serif;
  --ff-NtSrfJP: "Noto Serif JP", serif;
  --ff-YuMc: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ff-YuGtc: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --ff-SwMc: 'Sawarabi Mincho', sans-serif;
  --ff-zenmaruG: "Zen Maru Gothic", "Noto Sans JP", "sans-serif";
  --ff-kaiseiHarunoUmi: "Kaisei HarunoUmi", serif;
  --ff-m-plus-rounded: "M PLUS Rounded 1c", sans-serif;
  /*font-size*/
  --fs: min(2.114vw,1rem);
  --rs: clamp(0.5rem, 1.042vw, 1rem);
  /*higth*/
  --h-header: calc(var(--rs) * 11);
  /*overwrite*/
  --bs-cmn: 0 0 calc(var(--fs) * 1) 1px rgb(50 50 50 / 40%);
}
/* 全ての要素 _ box sizing = border-box 指定 */
*, *::before, *::after { /* box-sizing all */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}/*-------------------------------
 base
---------------------------------*/
html { font-size: 62.5%; }
body {
  background: 
    linear-gradient(0deg, rgb(255 245 195 / 20%) 0%, rgb(255 245 195 / 20%) 100%),
    url("/sd/special/dearsd/10th/image/dsd10th-bg-ptn.jpg") 50% 0% / calc(var(--rs) * 128) repeat
    ;
  color: var(--c-brw-00);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica,sans-serif;
  font-size: calc(var(--fs) * 1.6);
  line-height: 1.5;
}
/*-------------------------------
 Base _ link
---------------------------------*/
a {
  color: #1e90ff;
  text-decoration: none; 
}
a:hover {
  color: #4169e1;
  text-decoration: underline; 
}
a[id]:not([href]) {
  height: calc(var(--h-header) * 0.5);
  margin-top: calc(var(--h-header) * -0.5);
  display: block;
}
  /*
  a:hover > img[src$=".jpg"]	{
    background: #fff;
    filter: alpha(opacity=50); -moz-opacity: 0.5; opacity: 0.5;
    transition : all .2s; 
    }
  Animation Effect */

/* Return to Page Top */		
p.lnkPtop {
  width: min(100%, 94rem);
  height: 1em;
  padding: 0 0 1.5rem;
  margin: 0 auto 2rem;
  color: #fff;
  font-size: 75%;
  font-style: italic;
  text-align: right;
  position: relative;
  clear: both;
  }
p.lnkPtop > a {
  height: 1em;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  background: #fff;
  color: #705A52;
  border-radius: 0.5rem;
  text-decoration: none;

  }
p.lnkPtop > a:hover {
  background: #705A52;
  color: #fff;
  text-decoration: none;
}

/*-------------------------------
 Base _ img
---------------------------------*/
img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: middle;
}
figure {
  margin: 0;
}
/*-------------------------------
 Base _ text
---------------------------------*/
/* Text */
.txtl	{ text-align: left;}
.txtc	{ text-align: center;}
.txtr	{ text-align:right;}

/* Font */
.fntSrf	{ font-family:"Times New Roman", Times, serif;}
@font-face {
  font-family: "wf-tegaki";
  src: url("/font/HuiFontP29.eot");/*For IE*/
  src: url("/font/HuiFontP29.woff") format("woff"),/*For Modern browser*/
    url("/font/HuiFontP29.ttf") format("truetype");/*For iOS Android*/
}
.wf-sawarabi { font-family: "Sawarabi Mincho"; } /* @Google Fonts */
.font-mincho {
  font-family: var(--ff-mincho);
}
.font-notoserif {
  font-family: var(--ff-notoserif);
}
.wf-sawarabi { /*@Google Fonts*/
  font-family: "Sawarabi Mincho";
}
.wf-tegaki {
  font-family:"wf-tegaki";
}
.wf-tegaki sup {
  font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica,sans-serif;
}
/*-------------------------------
 Base _ element
---------------------------------*/
hr {
  width: 94%;
  height: 0;
  padding: 0;
  margin: calc(var(--rs) * 5) auto;
  background: none;
  border-color: transparent;
  border-top: 1px solid #d6d5d6;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}
/*-------------------------------
 Base _ note
---------------------------------*/
/*Note*/
.list_text {}
.list_text li{
  padding:0.1em 0 0.1em 1em;
  margin: 0.5em auto;
  line-height: 1.3;
  text-indent:-1em;
}

.note_list,
.note-list {
  padding: 0.35em 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 87.5%;
}
.note_list > li,
.note-list > li {
  padding-top: 0.15em;
  padding-bottom: 0.15em;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
.note-list > li > i {
  margin-right: 0;
  padding: 0;
  text-indent: 0;
}
.note-list > li > i.fa-circle-s {
  transform: scale(0.7);
}
.note_list > li > *,
.note-list > li > * {
  text-indent: 0;
}
.note-list-flex	{
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
}
.note-list-flex > li 	{
  text-align: left;
  padding-top: .2em;
  padding-bottom: .2em;
  padding-right: 1.3em;
  width: auto;
}
li.note-list--markbull::before,
.note-list--markbull > li::before {
  content: "\25CF";
  opacity: 0.4;
  font-size: 0.5em;
  margin-right: 0.5em;
  width: 1.5em;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  text-indent: 0;
}
li.note-list--markkome::before,
.note-list--markkome > li::before {
  content: "\203B";/*※*/
  opacity: 0.6;
  font-size: 0.9em;
  margin-right: 0.1em;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  text-indent: 0;
}
li.note-list--lsttitle {
  padding-top: 0.5em;
  margin-top: 0.5em;
}
li.note-list--lsttitle::before {
  content: none !important;
}
.note_line-marker {
  opacity: .7;
  background: rgba(255,255,0,0.3);
  margin-bottom: .7em;
}
/*-------------------------------
 Header
---------------------------------*/
header {
  width: 100%;
  background: none;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all 1s;
}
header:is(.open, .navi-on) {
  background: linear-gradient(180deg, rgb(240 228 182 / 100%) 0%, rgb(240 228 182 / 80%) calc(var(--fs) * 4.0), transparent calc(var(--fs) * 6));
}
#headerInner {
  width: min(100%, 128rem);
  height: var(--h-header);
  margin: 0 auto;
  background: none;
  position: relative;
}
/*header inner*/
.logo-dsd {
  width: min(20%, calc(var(--rs) * 23));
  display: block;
  position: relative;
  left: -1%;
}
.logo-dsd10th {
  width: min(20%, calc(var(--fs) * 5));
  position: relative;
  left: 2%;
  display: none;
}
header:is(.open, .navi-on) .logo-dsd{
  display: none;
}
header:is(.open, .navi-on) .logo-dsd10th {
  display: block;
}
/*--------------------------------------
 Header Navi - Toggle Button
-----------------------------------------*/
.navi-toggle {
  display:block;
  width: calc(var(--fs) * 4);
  height: calc(var(--fs) * 4);
  background: rgb(240 228 182 / 20%);
  box-shadow: 0 0 calc(var(--rs) * 1) 10px rgb(240 228 182 / 20%);
  cursor: pointer;
  filter: drop-shadow(0 0 calc(var(--fs) * 0.4) rgb(240 228 182 / 60%));
  position: absolute;
  right: min(3%,calc(var(--fs) * 1));
  top: calc(var(--rs) * 0.2);
  z-index: 20;
}
.navi-toggle.on .one {
  transform :rotate(45deg) translate(calc(var(--fs) * 0.8), calc(var(--fs) * 0.7));
}
.navi-toggle.on .two {
  opacity: 0;
}
.navi-toggle.on .three {
  transform :rotate(-45deg) translate(calc(var(--fs) * 0.7), calc(var(--fs) * -0.7));
}
.one,
.two,
.three {
  width: 75%;
  height: 3px;
  margin: calc(var(--fs) * 0.7) auto;
  background-color: var(--c-brw-01);
  backface-visibility: hidden;
  filter: drop-shadow(0 0 calc(var(--fs) * 0.2) rgb(240 228 182 / 60%));
  transition-duration: 0.3s;
}
.navi-toggle::after {
  content: "MENU";
  width: 100%;
  color: var(--c-brw-01);
  font-size: calc(var(--fs) * 1);
  filter: drop-shadow(0 0 calc(var(--fs) * 0.2) rgb(240 228 182 / 60%));
  text-align: center;
  display: block;
  position: absolute;
  bottom: -1em;
  left: 0;
}
/*-------------------------------
 Header Navi - Global Menu
---------------------------------*/
nav#NaviMenu {
  width: 100%;
  height: 100vh;
  padding: var(--h-header) 0;
  background: linear-gradient(180deg, rgb(240 228 182 / 90%) 0%, rgb(237 217 191 / 90%) 100%);
  /*font-family: var(--ff-zenmaruG);*/
  overflow-y: scroll;
  scrollbar-width: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  transform: translateY(-100%);
  transition-duration: 0.3s;
}
/*navi menu open*/
nav#NaviMenu.open {
  transform: translateY(0%);
}
/*navi menu  inner*/
#naviInner {
  width: min(100%, 128rem);
  padding: 0 3%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#naviInner a {
  color: var(--c-brw-00);
}
#naviInner a:hover {
  filter: brightness(1.1);
}
/*menu local*/
.menu-local {
  width: min(100%, 72rem);
  margin: calc(var(--fs) * 2) auto calc(var(--fs) * 6);
}
.menu-local li {
  width: min(90%, 72rem);
  margin: 1.5em auto;
  margin-left: 2%;
  filter: drop-shadow(2px 5px 5px rgb(156 151 146 / 60%));
  position: relative;
}
.menu-local li a {
  padding: 1em;
  padding-left: 2.5em;
  background: linear-gradient(85deg, transparent 0%, #ede8e5 20%, #ede8e5 40%,#fff 75%, #fff 80%, #ede8e5 100%);
  display: block;
  position: relative;
}
.menu-local li a::before {
  content: "";
  width: calc(var(--fs) * 3 + var(--rs) * 4);
  height: calc(var(--fs) * 3 + var(--rs) * 4);
  background: url(/sd/special/dearsd/10th/image/dsd-ic-DSD10th.png) 50% 50% / contain no-repeat;
  position: absolute;
  left: -1%;
  top: -0.75em;
}
#naviInner .menu-local li a:hover {
  background: 
    linear-gradient(90deg, transparent 0%, rgb(225 190 105 / 40%) 20%, rgb(225 190 105 / 40%) 80%, transparent 100%),
    linear-gradient(85deg, transparent 0%, #ede8e5 20%, #ede8e5 40%,#fff 75%, #fff 80%, #ede8e5 100%)
  ;
  text-decoration: none;
}
/*menu banner*/
.link-bnr {
  width: min(90%, 64rem);
  margin: calc(var(--rs) * 4) auto;
  background: #fff;
  box-shadow: var(--bs-cmn);
}
.link-bnr figcaption {
  padding: 0.5em;
}
a.menu-bnr:hover {
  filter: brightness(1.1) opacity(0.9);
  text-decoration: none;
}
/*menu logo link*/
a:is(.menu-dsd, .menu-sd) {
  width: min(50%, 30rem);
  margin: calc(var(--fs) * 2) auto calc(var(--fs) * 4);
  display: block;
}
/* SNS Link Icon*/
.icbtn_snslnk {
  width: min(94%, 72rem);
  padding: calc(var(--rs) * 4) 0;
  margin: calc(var(--fs) * 4) auto;
  background: linear-gradient(90deg, transparent 0%, rgb(255 255 255 / 60%) 20%,rgb(255 255 255 / 60%) 80%, transparent 100%);
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: center;
}
.icbtn_snslnk .icbtn_cap {
  width: 100%;
  margin: 0 auto 1em;
  font-size: calc(var(--fs) * 1.4);
  text-align: center;
}
.icbtn_snslnk > *:not(.icbtn_cap) {
  max-width: calc(100% / 5 - 4%);
  margin: 1% 2%;
  font-size: calc(var(--fs) * 3);
}
a.ic_link-sns {
  display: block;
}
#naviInner a.ic_link-sns:hover {
  filter: brightness(1.1) opacity(0.9);
}
/*-------------------------------
 Main
---------------------------------*/
main {
  overflow: hidden;
}
#wrapperMain {
  width: min(100%, 128rem);
  margin: 0 auto;
  position: relative;
}
/*contents section*/
.contentsSctn {
  padding: 0;
}
.contentsSctn + .contentsSctn {
  margin-top: calc(var(--rs) * 8);
}
/*-------------------------------
 DSD 10th
---------------------------------*/
#contDsd10th {
  padding-bottom: calc(var(--rs) * 1);
  background: url("/sd/special/dearsd/10th/image/dsd10th-bg-ptn.jpg") 50% 0% / calc(var(--rs) * 128) repeat;
  box-shadow: var(--bs-cmn);
  position: relative;
}
/*-------------------------------
 DSD 10th _ read contents
---------------------------------*/
.dsd10th-title {
  padding: 0 2%;
  text-align: center;
}
.dsd10th-text {
  width: min(96%, 118rem);
  padding: 0 1em;
  margin: 1em auto;
  font-family: var(--ff-mincho);
  font-size: calc(var(--fs) * 0.4 + var(--rs) * 1.6);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.dsd10th-text-read {
  text-align: center;
}
/*-------------------------------
 DSD 10th _ massage
---------------------------------*/
#dsd10Message {
  width: min(96%, 118rem);
  padding: calc(var(--rs) * 4);
  margin: 1em auto;
  background: 
    url("/sd/special/dearsd/10th/image/frame_10th_top.jpg") 50% 0% / contain no-repeat,
    url("/sd/special/dearsd/10th/image/frame_10th_bottom.jpg") 50% 100% / contain no-repeat,
    url("/sd/special/dearsd/10th/image/frame_10th_middle.jpg") 50% 50% / contain repeat-y,
    #f7ebe1
    ;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.dsd10Message-text {
  color: #4c4647;
  font-family: var(--ff-mincho);
  font-size: calc(var(--fs) * 0.4 + var(--rs) * 1.6);
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 0 0 1px #f6f6ee, 0 1px 5px #f6f6ee;
  filter: drop-shadow(0 0 10px #f6f6ee);
}
.dsd10Message-text > p + p {
  margin-top: 1em;
}
.dsd10Message-photo {
  width: min(35%, 41rem);
  align-self: flex-end;
  flex: 0 1 auto;
}
@media screen and (max-width:959px) {
  #dsd10Message {
    flex-direction: column;
  }
   .dsd10Message-text > p:last-of-type {
     padding-right: 40%;
     margin-bottom: calc(var(--rs) * -10);
  }
}
/*-------------------------------
 DSD 10th _ models
---------------------------------*/
.dsd10th-heading {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
#heading10thAnniv {
  width: min(74%, 60rem);
  margin-bottom: -9.375%;
}
#headingMDGmwver {
  width: 100%;
  background: url("/sd/special/dearsd/10th/image/dsd10th-head-mdgmwver-bg.png") left top / contain no-repeat;
  text-align: left;
}
#headingMDGmwver::after {
  content: "";
  width: min(28.9%,37rem);
  height: min(152%,38rem);
  background: url("/sd/special/dearsd/10th/image/head-mdgmwver-deco.png") 0 0 / contain no-repeat;
  position: absolute;
  right: 0%;
  top: -17.6%;
  z-index: -1;
}
/*models photo*/
.dsd10thModels {
  position: relative;
}
.dsd10thModels::after {
  content: "";
  width: 38.28125%;
  height: 30.7%;
  background: url("/sd/special/dearsd/10th/image/dsd10th-models-deco.png") right bottom / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: -14.2%;
}
/*-------------------------------
 DSD 10th _ dress
---------------------------------*/
#headingMDGkomame {
  padding-left: 5%;
  margin-top: -5%;
  text-align: right;
  position: relative;
  z-index: 1;
}
#headingMDGkomame::before {
  content: "";
  width: 14.0625%;
  height: 323%;
  background: url("/sd/special/dearsd/10th/image/dsd10th-head-mdgkmver-bg.png") right top / contain no-repeat;
  position: absolute;
  right: 0;
  top: -73.846%;
  z-index: -1;
}
.flexBox-komamemoring {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.flexBox-komamemoring .dsd10th-text {
  width: min(94%, 38rem);
  padding: 0 5% calc(var(--rs) * 20);
  background: url("/sd/special/dearsd/10th/image/dsd10th-text-mdgkmver-bg.png") right bottom / contain no-repeat;
  flex: 1 1 auto;
}
#dsd10thDress-komamemorning {
  width: min(100%, 40rem);
  max-width: 71rem;
  margin-top: -10%;
  flex: 1 1 auto;
  position: relative;
}
#dsd10thDress-komamemorning::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/sd/special/dearsd/10th/image/dsd10th-dress-komamemorning-deco.png") 0 0 / cover no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.dressImg-komamebrooch {
  position: absolute;
  left: 0;
  top: 0;
}
/*-------------------------------
  DSD 10th _ spec
---------------------------------*/
.dsd10th-column-spec {
  width: 100%;
  padding: 0 2% calc(var(--fs) * 3);
  margin-inline: auto;
  font-family: var(--ff-NtSnsJP);
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
}
/*spec _ set photo*/
.dsd10th-dress-dtl {
  width: min(100%, 40rem);
  margin: 0 auto;
  text-align: center;
  flex: 1 1 auto;
}
.dress-include {
  padding: 0.5em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.dress-include dt {
  padding: 0.25em 0.5em;
  background: #595757;
  border-radius: 5px;
  color: #fff;
  font-size: calc(var(--fs) * 1.4);
  text-align: center;
  flex: 0 0 auto;
}
.dress-include dd {
  padding: 0.25em 1em;
font-size: calc(var(--fs) * 1.5);
  text-align: left;
}
.dsd10th-dress-dtl figcaption {
  
}
/*spec _ data table*/
.dsd10th-column-specData {
  width: min(80%, 40rem);
  padding: calc(var(--fs) * 1);
  margin: 0 1% 1%;
  background: rgb(255 255 255 / 70%);
  box-shadow: 0 1px 8px 0 rgb(0 0 0 / 18%);
  flex: 1 1 auto;
}
.dsd10th-specTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  font-size: calc(var(--fs) * 1.6);
  line-height: 1.4;
}
.dsd10th-specTable caption {
  padding: 0 0 0.5em;
  margin-bottom: calc(var(--fs) * 1);
  border-bottom: 1px solid;
}
.dsd10th-specTable caption b {
  font-size: 112.5%;
}
.dsd10th-specTable caption small {
  font-size: 75%;
}
.dsd10th-specHead {
  padding: 0 calc(var(--rs) * 1.0);
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}
.dsd10th-specHead dt {
  margin: 0 1em 0 0;
  font-size: calc(var(--fs) * 1.2 + var(--rs) * 0.8);
}
.dsd10th-specHead dd {
  margin: 0 1em 0 0;
  letter-spacing: 0.05em;
  font-size: calc(var(--fs) * 2.0 + var(--rs) * 0.4);
  display: inline-block;
  position: relative;
}
.dsd10th-specHead dd::after {
  content: "/";
  font-size: 75%;
  position: absolute;
  right: -1em;
  top: 12.5%;
}
.dsd10th-specHead dd:last-child::after {
  content: "";
  margin-left: 0;
}
.dsd10th-specTable tr {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.dsd10th-specTable tr:not(:nth-last-of-type(1)) {
  margin-bottom: calc(var(--rs) * 0.6);
}
.dsd10th-specTable th {
  width: min(30%, 13rem);
  padding: 0.5em 0.25em;
  background: #595757;
  border-radius: 5px;
  color: #fff;
  font-size: 87.5%;
  font-weight: normal;
  text-align: center;
  flex-shrink: 0;
}
.dsd10th-specTable td {
  padding: 0.4em 0.75em;
  padding-right: 0;
  text-align: left;
}
.dsd10th-specTable td[colspan] {
  padding-left: 0;
  padding-right: 0;
}
.dsd10th-specTable td.price,
.dsd10th-specTable td.dsd10th-spec-price {
  padding-top: 0.2em;
  font-size: 125%;
  font-weight: bold;
}

.dsd10th-specTable ul.note-list > li {
  padding-left: 1em;
  margin-top: 0.2em;
  margin-bottom: 0;
  text-indent: -1em;
  line-height: 1.6;
}
.dsd10th-specTable ul.note-list > li ~ li {
   margin-top: .2rem; 
}
.dsd10th-specNote {
  width: 94%;
  padding: 1em;
  margin: 1em auto;
  color: #444;
  font-size: calc(var(--fs) * 1.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*-------------------------------
 DSD 10th _ release information
---------------------------------*/
#dsd10-releaseInfo {
  width: min(96%, 96rem);
  padding: 0.5em 1em 0.5em calc(var(--rs) * 13);
  margin: calc(var(--fs) * 1) auto calc(var(--fs) * 4);
  background: linear-gradient(85deg, transparent 0%, #ede8e5 15%, #ede8e5 40%,#fff 75%, #fff 80%, #ede8e5 100%);
  font-family: var(--ff-YuMc);
  font-size: calc(var(--fs) * 1.2 + var(--rs) * 0.6);
  filter: drop-shadow(2px 5px 5px rgb(156 151 146 / 60%) );
  position: relative;
}
#dsd10-releaseInfo::before {
  content: "";
  width: calc(var(--rs) * 11);
  height: calc(var(--rs) * 11);
  background: url("/sd/special/dearsd/10th/image/dsd-ic-DSD10th.png") 50% 50% / contain no-repeat;
  position: absolute;
  left: 0;
  top: calc(var(--rs) * -2.5);
}
/*-------------------------------
 DSD 10th _ event link
---------------------------------*/
.dsd-eventlink {
  --c-l-pc-red-hsl: 353deg 87% 41%;
  --c-l-pc-red-dark-hsl: 353deg 100% 28%;
  width: 98%;
  padding: 3%;
  margin: calc(var(--fs) * 4) auto 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 3%;
}
.dsd-eventlink > dt {
  text-align: center;
}
.dsd-eventlink > dt ruby {
  ruby-position: under;
}
  .dsd-eventlink > dt rt {
  font-size: 65%;
  filter: drop-shadow(0 0 2px rgb(0 0 0 / 40%));
  text-align: center;
}
/*event link _ title*/
.dsd-eventlink-title {
  width: min(90%, 108rem);
  margin: 0 auto calc(var(--rs) * 4);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 1;
  /* シルバー帯ver.
  padding: calc(var(--rs) * 2.4) calc(var(--fs) * 1);
  background:  
    linear-gradient(180deg, rgba(0 0 0 / 0%) 5%, #fff 5%, rgba(0 0 0 / 0%) 7%, rgba(0 0 0 / 0%) 93%, #fff 95%, rgba(0 0 0 / 0%) 95%),
    linear-gradient(90deg, hsl(0deg 0% 83%) 0%, hsl(0deg 0% 100%) 40%, hsl(0deg 0% 92%) 70%, hsl(0deg 0% 85%) 100%)
  ;
  box-shadow: var(--bs-cmn);
  color: #000;
  */
  /*DSD10thリボンver.*/
  padding: 0.5em 0em 1.0em calc(var(--rs) * 10 + var(--rs) * 4);
  background: linear-gradient(85deg, transparent 0%, #ede8e5 10%, #ede8e5 40%,#fff 75%, #fff 80%, #ede8e5 100%);
  filter: drop-shadow(2px 5px 5px rgb(156 151 146 / 60%) );
  left: -5%;
}
.dsd-eventlink-title::before {
    content: "";
    width: calc(var(--rs) * 14);
    height: calc(var(--rs) * 14);
    background: url(/sd/special/dearsd/10th/image/dsd-ic-DSD10th.png) 50% 50% / contain no-repeat;
    position: absolute;
    left: -2%;;
    top: calc(var(--rs) * -3.5);
}
/*.dsd-eventlink-title--deco {
  padding: calc(var(--rs) * 1.8) 0;
  background-image: 
    linear-gradient(180deg, rgba(0 0 0 / 0%) 5%, #fff 5%, rgba(0 0 0 / 0%) 7%, rgba(0 0 0 / 0%) 93%, #fff 95%, rgba(0 0 0 / 0%) 95%)
    ;
  color: #000;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}*/
.dsd-eventlink-title > b {
  font-size: calc(var(--rs) * 0.8 + var(--fs) * 1.2);
  font-weight: normal;
  filter: drop-shadow(0 0 2px #fff);
}
/*event link _ link banner*/
.dsd-eventlink::before,
.dsd-eventlink::after {
  content: "";
  order: 10;
}
.dsd-eventlink::before,
.dsd-eventlink::after,
.dsd-eventlink > dd:not(.dsd-eventlink-full) {
  width: min(48.5%, 38rem);
  max-width: calc(96rem + var(--rs) * 1);
  margin: calc(var(--rs) * 2) auto 0;
  flex: 1 1 auto;
}
.dsd-eventlink > dd:not(.dsd-eventlink-full) {
  padding: calc(var(--rs) * 0.5);
  background: #fff;
  box-shadow: var(--bs-cmn);
  order: 1;
}

.dsd-eventlink > dd.dsd-eventlink-full {
  flex-basis: 100%;
}
.dsd-eventlink > dd.dsd-eventlink-full .card > li {
  background: #fff;
  margin-top: calc(var(--rs) * 2);
  padding-bottom: 0;
}
.dsd-eventlink > dd.dsd-eventlink-full .card > li:first-child {
  width: calc(var(--col1) - 2rem);
}
.dsd-eventlink .heading-category-shoulder {
  margin-top: auto;
}
.dsd-eventlink figcaption {
  padding: 0.5em;
  font-size: calc(var(--fs) * 1.5);
  line-height: 1.3;
  text-align: center;
}
.dsd-eventlink figcaption small {
  margin-bottom: 0.5em;
  /*color: #87683f;*/
  font-size: calc(var(--fs) * 1.2);
  display: inline-block;
}
.dsd-eventlink a {
  color: #674c37;
}
.dsd-eventlink a.not-link {
  color: #999;
  pointer-events: none;
}
.dsd-eventlink a:hover {
  filter: brightness(1.1);
  text-decoration: none;
}
.dsd-eventlink-end  {
  max-width: 96%;
  margin: 0.5em auto;
  color: #DC5474;
  font-size: calc(var(--fs) * 1.2);
  text-align: center;
}
/*-------------------------------
 Campaign
---------------------------------*/
#wrapCampaign {
  width: min(96%, 108rem);
  margin: 0 auto;
  font-family: var(--ff-YuMc);
}
#contCampaign {
  width: 100%;
  padding: 2em;
  margin: calc(var(--fs) * 4) auto calc(var(--rs) * 8);
  background: 
    url("/sd/special/dearsd/10th/image/frame_10th_top.jpg") 50% 0% / contain no-repeat,
    url("/sd/special/dearsd/10th/image/frame_10th_bottom.jpg") 50% 100% / contain no-repeat,
    url("/sd/special/dearsd/10th/image/frame_10th_middle.jpg") 50% 50% / contain repeat-y,
    #f7ebe1
    ;
  box-shadow: var(--bs-cmn);
  position: relative;
  z-index: 1;
}
/*campaign header*/
#campHeader {
  text-align: center;
  position: relative;
}
#campTitle {
  width: min(94%, 90rem);
  padding: 0.5em 1.5em 0.5em calc(var(--fs) * 4 + var(--rs) * 4);
  margin: calc(var(--fs) * 1) auto calc(var(--rs) * 6);
  background: linear-gradient(85deg, transparent 0%, #ede8e5 15%, #ede8e5 40%, #fff 75%, #fff 80%, #eae7e5 100%);
  font-family: var(--ff-YuMc);
  font-size: calc(var(--fs) * 1.2 + var(--rs) * 1.2);
  filter: drop-shadow(2px 5px 5px rgb(156 151 146 / 60%));
  position: relative;
}
#campTitle::before {
  content: "";
  width: calc(var(--fs) * 6 + var(--rs) * 4);
  height: calc(var(--fs) * 6 + var(--rs) * 4);
  background: url("/sd/special/dearsd/10th/image/dsd-ic-DSD10th.png") 50% 50% / contain no-repeat;
  position: absolute;
  left: -1%;
  top: calc(var(--rs) * -3);
}
.deco-ribbon::after {
  content: "";
  width: 27%;
  height: 143%;
  background: url("/sd/special/dearsd/10th/image/dsd10th-deco-ribbonEnd.png") 0 0 / contain no-repeat;
  position: absolute;
  right: -26%;
  bottom: 0;
}
#campPeriod {
  max-width: 94%;
  margin: calc(var(--rs) * 1) auto calc(var(--fs) * 4);
}
#campPeriod tr {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
}
#campPeriod th {
  width: 6em;
  padding: calc(var(--fs) * 0.4) calc(var(--fs) * 1);
  background: #604d38;
  color: #fff;
  font-size: calc(var(--fs) * 0 + var(--rs) * 2.6);
}
#campPeriod td {
  padding: calc(var(--fs) * 0.4) 0;
  padding-left: 1em;
  font-size: calc(var(--fs) * 0 + var(--rs) * 3);
  font-weight: bold;
  text-align: left;
}
/*campaign contents*/
.camp-contSctn {
  padding: 0 2%;
}
.camp-contSctn ~ .camp-contSctn {
  margin-top: calc(var(--fs) * 4);
}
.camp-contTitle {
  width: 104%;
  margin-left: -2%;
  font-size: calc(var(--fs) * 1.0 + var(--rs) * 2.4);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.camp-contTitle > small {
  font-size: 75%;
  display: inline-block;
}
.camp-contText {
  margin-top: 1em;
  font-size: calc(var(--fs) * 1.8);
}
/*campaign contents section*/
.camp-contSctnTitle {
  width: 104%;
  margin-left: -2%;
  margin-bottom: 1em;
  font-size: calc(var(--fs) * 2.0 + var(--rs) * 0.8);
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.camp-contSctnTitle > b {
  flex: 0 0 auto;
}
.camp-contSctnTitle::before,
.camp-contSctnTitle::after {
  content: "";
  width: 10%;
  height: 0.5px;
  background: var(--c-brw-00);
  flex: 1 1 auto;
}
.camp-contSctnCatch {
  margin-top: 1em;
  font-size: calc(var(--fs) * 2);
  font-weight: bold;
}
.camp-contSctnText {
  margin-top: 1em;
  font-size: calc(var(--fs) * 1.6);
  font-weight: bold;
}
/*campaign comame cheeky*/
.comamecheeky {
  margin: 2em 0;
  background: rgb(255 255 255 / 50%);
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  /*gap: 1em;*/
}
.comamecheeky-descrip {
  width: min(100%, 38rem);
  padding: 0.5em 1em;
  font-size: calc(var(--fs) * 1.0 + var(--rs) * 0.8);
  line-height: 1.8;
  flex: 1 1 auto;
}
.comamecheeky-descrip > b {
  margin-bottom: -1em;
  font-size: 125%;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  float: 0 0 auto;
}
.comamecheeky-descrip > b::before,
.comamecheeky-descrip > b::after {
  content: "";
  width: 10%;
  height: 0.5px;
  background: var(--c-brw-00);
  flex: 1 1 auto;
}
.logo-dollfiefriends {
  width: min(50%, 29rem);
  margin: 0.5em auto;
  display: block;
}
/*campaign eligibility*/
.camp-eligibility {
  margin: 1em 0;
  font-size: calc(var(--fs) * 2);
  font-weight: bold;
}
.camp-eligibility > li {
  padding-left: 1.5em;
  margin: 0.5em 0;
  text-indent: -1.5em;
  display: inline-block;
  clear: both;
  position: relative;
}
.camp-eligibility > li:has(.ic-members) {
  padding-right: calc(var(--fs) * 6);
}
.ic-members {
  width: calc(var(--fs) * 6);
  text-align: right;
  text-indent: 0;
  display: block;
  position: absolute;
  right: 0;
  top: calc(var(--rs) * -2);
  z-index: 1;
}
/*campaign list*/
.camp-contSctnList {
  margin: 1em 2% 1em calc(2% + 0.5em);
  font-size: calc(var(--fs) * 1.6);
  font-weight: bold;
  list-style: disc;
}
.camp-contSctnList li {
  margin-bottom: 0.5em;
}
/*campaign application file*/
.camp-application {
  width: 100%;
  margin: calc(var(--rs) * 4) auto;
  text-align: center;
}
a.camp-application-link {
  width: min(64rem, 90%);
  padding: calc(var(--rs) * 2) calc(var(--rs) * 3.4);
  margin: calc(var(--fs) * 1.5) auto;
  background: #1e90ff;
  border-radius: calc(var(--rs) * 0.5);
  box-shadow: 0 1px 4px 1px rgb(50 50 50 / 40%);
  color: #fff;
  font-family: var(--ff-NtSnsJP);
  text-align: center;
  display: block;
  position: relative;
}
a.camp-application-link:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.1);
}
a.link-pre {
  box-shadow: none;
  color: #ccc;
  pointer-events: none;
  filter: saturate(0);
}
a.link-pre::after {
  margin-bottom: -1em;
  content: "（準備中）";
  color: #fff;
  font-size: 87.5%;
  display: block;
}
a.link-pre >i {
  visibility: hidden;
}
/*campaign flow*/
.camp-flow {
  font-family: var(--ff-NtSnsJP);
  font-size: calc(var(--fs) * 1.6);
}
.camp-flow-step {
  padding: calc(0.25em + 1px) 0.5em;
  padding-left: 3px;
  background: #fff;
  border-radius: 3px;
  font-weight: bold;
  display: flex;
  flex-flow: row nowrap;
}
.camp-flow-step ~ .camp-flow-step {
  margin-top: 1em;
}
.step-tab {
  width: fit-content;
  padding: 0.25em 0.5em;
  margin-right: 0.5em;
  background: var(--c-brw-00);
  border-radius: 3px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}
.camp-flow-cont {
  padding: 0.5em;
  margin-top: 0.5em;
}
.camp-flow-ol {
  padding-left: 1em;
  margin: 0 auto 1em;
  list-style: decimal;
  font-weight: bold;
}
.camp-flow-ol > li > * {
  font-weight: normal;
}
.camp-flow-ol > li ~ li {
  margin-top: 2em;
}
.camp-dolpaList {
  width: fit-content;
  padding: 0.5em;
  padding-right: 1em;
  margin-top: 0.5em;
  border: 1px solid var(--c-brw-00);
  background: rgb(255 255 255 / 50%);
}
.camp-dolpaList dt {
  font-weight: bold;
}
.camp-dolpaList dd {
  margin: 0.25em 0;
}
.dolpaList-event {
  margin-left: 0.5em;
  display: inline-block;
}
/*campaign adress*/
.camp-address {
  width: fit-content;
  padding: 0.5em;
  padding-right: 1em;
  margin-top: 0.5em;
  border: 1px solid var(--c-brw-00);
  background: rgb(255 255 255 / 50%);
  font-style: normal;
}
.camp-address b {
  display: inline-block;
}
/*-------------------------------
 campaign terms
---------------------------------*/
#termsContsWrapper {
  width: min(100%, 120rem);
  padding: 1% calc(var(--fs) * 0.5);
  margin: 1em auto;
  border: 1px solid var(--c-brw-01);
  background: rgb(255 255 255 / 60%);
  border-radius: calc(var(--fs) * 1);
}
#termsConts {
  height: calc(var(--fs) * 34);
  padding: 0.5em;
  color: #333;
  font-family: var(--ff-NtSnsJP);
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #f00;  
}
#termsConts::-webkit-scrollbar {
  width: calc(var(--rs) * 1);
  height: calc(var(--rs) * 1);
}
#termsConts::-webkit-scrollbar-track {
  border-radius: 0.5rem;
  background: #fcfcfc;
  box-shadow: 0 0 0.3rem #aaa inset;
}
#termsConts::-webkit-scrollbar-thumb {
  background: #f00;
  border-radius: 0.5rem;
}
/*terms contents section*/
.termsConts-sctn + .termsConts-sctn {
  margin-top: 1em;
}
.termsConts-title {
  margin-bottom: calc(var(--fs) * 0.5);
  color: var(--c-brw-01);
  font-size: calc(var(--fs) * 1.7);
}
.termsConts-title::before {
  content: "\0025cf";
  margin-right: 0.25em;
}
.termsConts-sctn > p {
  margin-left: 0.25em;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-size: calc(var(--fs) * 1.4);
  text-align: justify;
}
.termsConts-sctn > p.notice {
  padding-left: 1em;
  text-indent: -1em;
}
.termsConts-sctn a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.termsConts-sctn > ul {
  padding-left: 1em;
  margin-left: 0.5em;
  font-size: calc(var(--fs) * 1.4);
  list-style: disc;
}
.termsConts-sctn > ul li {
  margin-bottom: 0.5em;
}
.termsConts-sctn > p + ul {
  margin-top: 1em;
}
/*-------------------------------
 campaign contactus
---------------------------------*/
.camp-contactus {
  padding: 1em;
  margin-bottom: calc(var(--rs) * 4);
  background: rgb(255 245 195 / 10%);
  border: 3px double var(--c-brw-04);
  font-family: var(--ff-NtSnsJP);
  font-size: calc(var(--fs) * 1.6);
  outline: 2px solid var(--c-brw-04);
}
.contctMail {
  display: inline-block;
}
/*-------------------------------
 Footer
---------------------------------*/
#footer	{
  width: 100%;
  padding: calc(var(--fs) * 1) 0 calc(var(--fs) * 2);
  background: #2e130c;
  position: relative;
}
#footer :is(.menu-dsd, .menu-sd) {
  width: min(30%, 18rem);
  margin: calc(var(--rs) * 1) auto;
  filter: invert(1) brightness(2);
  display: block;
}
.icbtn_snslnk#snslnkFooter {
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  border-top-color: rgb(255 255 255 / 20%);
  border-bottom-color: rgb(255 255 255 / 20%);
  color: #fcfcfc;
}
.icbtn_snslnk#snslnkFooter a {
  color: #fcfcfc;
}
/* link button SD.net */
#footer	a.lnkSDnet	{
  width: 14rem; height: 3rem;
  padding: 1rem 1rem .5rem;
  border-radius: .5rem;
  position: absolute; top: -1.5rem; left: .5rem;
  background: #2e130c;
  z-index: 100;
}

/* Footer innner*/
#ftrInner {
  width: min(100%, 96rem);
  padding: calc(var(--fs) * 2) 0;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
#ftrInner a.logoVs {
  width: calc(var(--fs) * 14);
  margin: calc(var(--fs) * 1) auto calc(var(--fs) * 2);
  display: block;
}
#ftrInner ul {
  width: fit-content;
  max-width: 90%;
  margin: 1em auto;
  color: #fcfcfc;
  font-size: calc(var(--fs) * 1.2);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
#ftrInner ul + ul {
  margin-top: 2em;
}
#ftrInner ul li {
  margin: 0.25em 0;
}
#ftrInner ul.footer__note {
  text-align: left;
}
#ftrInner ul.footer__note li {
  padding-left: 1em;
  text-indent: -1em;
}
