@charset "UTF-8";

/* CSS Document */
/*Reset =============================================*/
* {
  box-sizing: border-box;
  background-repeat: no-repeat;
}
html,body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,figure,figcaption{
  margin: 0;
  padding: 0;
  /* font-family: 'Prompt','Noto Sans JP', sans-serif; */
}
/* h1,h2,h3,h4,h5,h6{
	font-family: "Roboto Slab",serif;
} */
ul,li{
list-style: none;
}
a{
text-decoration: none;
color: inherit;
}

a[href^="tel:"] {
  pointer-events: all;
}
img{
vertical-align: bottom;
border: none;
width: 100%;
max-width:100%;
height:auto;
}
svg{
  fill: currentColor;
  vertical-align: bottom;
}
table {
  border-collapse: collapse;
}


/*ふわっと*/
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.navnai{
    padding-top: 4rem;	
}


/* font-size =============================================*/

html{
  /* font-size: 10px; */
  /* font-size: clamp(10px,3.125vw,16px) !important; */
  font-size: 3.125vw;
}
@media (min-width: 769px) {
  html{
    font-size: 11px;
  }
  body ,.header {
    min-width: 960px;
  }
}/*  */
@media (min-width: 960px) {
  /* html{
    font-size: 1.1628vw;
  } */
  html{
    /* W1024:12 ~ 15px */
    font-size: clamp(11px,1.1458333vw,16px);
  }
  
}/*  */


/* lazyload ================================= */
.lazyload{opacity: 0;}
.lazyloaded, .lazyloading  {opacity: 1; transition: opacity 1000ms;}

/* Module =============================================*/
:root {
  --c-black: #333333;
  --c-black2: #212121;
  --c-black3: #666666;
  --c-black4: #444444;
  --c-red: #D83646;
  --c-pink: #ef7d83;
  --c-grey: #e4e1e1;
  --c-grey2: #f2f1ea;
  --c-grey3: #cacaca;
  --c-grey-txt: #a0a0a0;
  --c-gold: #a99f7f;
  --c-gold-l: #e1ded7;
  --c-green: #293a35;
  --c-yellow: #ffd900;
  --c-yellow2: #f0c800;
  /* --c-white: #fbfbfb; */
  --c-white: #fff;
  --c-white2: #f9f9f7;
  --c-bg: #f1f1f1;
  --font-comp: "Roboto Slab",'Noto Sans JP', sans-serif;
  --font-ja: "YakuHanJP","Noto Sans JP",sans-serif;
  --font-en: "Roboto Slab", sans-serif;
  --font-num: "Lobster", sans-serif;
  /* --filter-w: invert(99%) sepia(1%) saturate(1685%) hue-rotate(354deg) brightness(115%) contrast(95%); */
  --filter-w: invert(100%) sepia(19%) saturate(377%) hue-rotate(316deg) brightness(100%) contrast(91%);
  --filter-wg: invert(96%) sepia(8%) saturate(14%) hue-rotate(314deg) brightness(86%) contrast(111%);
  --filter-red: invert(44%) sepia(77%) saturate(5497%) hue-rotate(335deg) brightness(88%) contrast(92%);

  ;
  --inn-w: 2rem;
  --inn-wm: -2rem;

  --kv-fill-color: #fff;
}
.pc,.pc960{display: none;}

.center{ text-align: center;}
.left-center{ text-align: left;}
.center-left{ text-align: center;}
.left{ text-align: left;}

.comp{ font-family: var(--font-comp);}
.en{ font-family: var(--font-en);}
.ja{ font-family: var(--font-ja);}
.num{ font-family: var(--font-num);}
.roboto{ font-family:"Roboto",sans-serif;}
.red{ color: var(--c-red);}
.gold{ color: var(--c-gold);}
.yellow{ color: var(--c-yellow);}
.bold{font-weight: bold !important;}
.w_600{font-weight: 600 !important;}
.w_500{font-weight: 500 !important;}
.w_400{font-weight: 400 !important;}
.small{font-size: .9em;}
.small2{font-size: .8em;}
.small3{font-size: .7em;}
.small4{font-size: .6em;}
.small5{font-size: .5em;}
.nowrap{white-space: nowrap;}
.hor {
  font-family: "Zen Old Mincho",serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.block{display: block;}
.none{display: none;}
.asterisk{
  position: relative;
  display: block;
  padding-left: 1.2em !important;
  margin-top: 0.2em;
}
.asterisk::before{
  content: "※";
  position: absolute;
  left: 0;
}
.hov a,.hover,.r-over,button{
  transition: opacity .5s;
}
.hov a:hover,.hover:hover,.r-over:hover,button:hover{
  opacity: .6;
}
[v-cloak] {
  display: none;
}
.youtube_box{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box iframe{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .sp{display: none;}
  .pc{display: block;}

  .left-center{ text-align: center;}
  .center-left{ text-align: left;}
}/*  */
@media (min-width: 960px) {  
  :root {
    --inn-w: 5rem;
    --inn-wm: -5rem;
  }
  .pc960{display: block;}
  .sp960{display: none;}
}/*  */


/* BODY  =============================================*/
 body{
  font-family: var(--font-ja);
  line-height:1.5;
  position: relative;
  color: var(--c-black);
} 
.bg_w{
  background-color: #fbfbfb;
}
.bg_grey{
  background-color: var(--c-bg);
}

._filter_w,._icon_w{filter: var(--filter-w);}
._filter_r,._icon_r{filter: var(--filter-red);}
._icon_b{filter: none;}

.header_w ._icon_b,
.bg_black ._icon_b,
.reverse .header ._icon_b{
  filter: var(--filter-w);
}  

.no_mv{
  padding-top: 10.5em;
}
@media (min-width: 769px) {
  .no_mv{
    padding-top: 12em;
  }
}/*  */


/* SECTION
========================================= */
html.smooth {
  scroll-behavior: smooth;
  scroll-padding-top: 7em;
}
.sec_bloc{
  padding: 3em 0;
}
._top0{ padding-top: 0 !important;}
._bottom0{ padding-bottom: 0 !important;}
._top_w{ padding-top: 6em;}
._bottom_w{ padding-bottom: 6em;}

.c_wide{
  max-width: 1400px;
  margin: 0 auto;
}
.c_wide_narrow{
  max-width: 960px;
  margin: 0 auto;
}
.c_inner{
  padding: 0 var(--inn-w);
}
.max600{ max-width: 600px; margin: 0 auto; }
.max800{ max-width: 60em; margin: 0 auto; }
.max900{ max-width: 66.25em; margin: 0 auto; }
.max1000{ max-width: 72.5em; margin: 0 auto; }
.max1100{ max-width: 78.75em; margin: 0 auto; }
.max1200{ max-width: 85em; margin: 0 auto; }
.max1300{ max-width: 91.25em; margin: 0 auto; }
.max1400{ max-width: 1400px; margin: 0 auto; }

.page_ttl,
.sec_ttl{
  font-size: 1rem;
  padding: 1em 0;
}
.page_ttl .en,
.sec_ttl .en{
  font-size: 4.2em;
  font-weight: 400;
  line-height: 1.1;
}
.page_ttl .en{
  font-size: 3.55em;
  font-weight: 300;
}
.page_ttl .ja,
.sec_ttl .ja{
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.8;
}
.sec_ttl .ja._line2{
  margin-top: .3em;
  line-height: 1.6;
}
.sec_ttl._small .en{
  font-size: 2.5em;
  line-height: 1.05;
}
.sec_ttl._small,
.sec_ttl._s{
  font-size: 1rem;
  padding: 1rem 0;
}
.sec_ttl._s .en{
  display: block;
  font-size: 3.8em;
  line-height: 1.2;
}
.sec_ttl._small .ja,
.sec_ttl._s .ja{
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  margin-top: 0.2em;
}
.sec_sub,
.sec_sub_txt{
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.sec_sub{
  padding: 1em 0;
}
.sec_sub_txt{
  padding: .5em 0;
}
.sec_copy {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.7;
  padding: .5em 0;
}
.sec_desc,.sec_desc_txt{
  font-size: 1.1rem;
  line-height: 1.8;
}
.sec_desc{
  padding: .5em 0;
}
.sec_desc_txt{
  padding: .5em 0;
}
.sec_txt{
  padding: .5em 0;
  line-height: 1.7;
}
.sec_desc p,.sec_desc_txt p,.sec_txt p{
  padding: .2em 0;
}
.sec_text {
  font-size: .95em;
  color: var(--c-black3);
  padding: 0 0 2em;
}
.sec_text p {
  line-height: 1.8;
  padding: .2em 0;
}
.block_wrap{
  padding: 1.5rem 0;
}
.txt_wrap{
  padding: 2rem 0;
}
._bright{
  background-color: var(--c-white);
  color: var(--c-black);
}

.img_box{
  width: 100%;
  aspect-ratio: 4/3;
}
.img_box img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {

  html.smooth {
    scroll-padding-top: 10em;
  }
  .c_inner_pc{
    padding: 0 var(--inn-w);
  }
  .sec_bloc{
    padding: 4em 0;
  }
  ._top_w{ padding-top: 6em;}
  ._bottom_w{ padding-bottom: 6em;}
  .sec_ttl{
    font-size: 1.1rem;
  }
  .sec_ttl .ja{
    font-size: 1em;
  }
  .sec_ttl._small .en{
    font-size: 2.8em;
  }
  .page_ttl .en {
    font-size: 5em;
    font-weight: 300;
  }
  .sec_ttl_s{
    font-size: 3.4rem;
  }
  .sec_sub{
    font-size: 1.5em;
  }
  /* .sec_desc{
    font-size: 1.05rem;
  } */
  .pc_flex{
    display: flex;
    justify-content: space-between;
  }

}/* 769 */


/* link_btn ========== */
.link_btn{
  position: relative;
  display: block;
  width: fit-content;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-black);
  text-align: center;
  padding: 1.1em 0 1em;
}
.link_btn.right,
._right{
  margin-left: auto;
}
.link_btn.center,
._center{
  margin: 0 auto;
}
._arrow{
  position: relative;
  width: fit-content;
  padding-right: 1em;
}
._arrow::after{
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  right: 0.2em;
  top: 0.15em;
  bottom: 0;
  margin: auto;
  border-top: 0.1em solid;
  border-right: 0.1em solid;
  transform: rotateZ(45deg);
}
.link_btn._border::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: .5;
  position: absolute;
  bottom: .7em;
  left: 0;
  right: 0;
  margin: auto;
  /* transform: scaleX(0); */
  transform-origin: right center;
  transition: transform .2s;
}
.link_btn._border:hover::before{
  animation: border_move forwards .4s ease normal;
}
@keyframes border_move {
  0%   { transform: scaleX(100%); transform-origin: right;}
  50%  { transform: scaleX(0); transform-origin: right;}
  51%  { transform: scaleX(0);   transform-origin: left;}
  100% { transform: scaleX(100%); transform-origin: left;} 
}
.link_btn.square {
  width: 100%;
  border: 1px solid;
  margin: 1em auto;
  max-width: 14em;
}
.link_btn:hover{
  transition: transform .2s;
}
.link_btn:hover{
  transform: translateX(.2em);
}


/* padding top and bottom */
.ptb05{ padding-top: .5em; padding-bottom: .5em;}
.ptb1{ padding-top: 1em; padding-bottom: 1em;}
.ptb2{ padding-top: 2em; padding-bottom: 2em;}
.ptb3{ padding-top: 3em; padding-bottom: 3em;}
.ptb4{ padding-top: 4em; padding-bottom: 4em;}
.ptb5{ padding-top: 5em; padding-bottom: 5em;}
.ptb6{ padding-top: 6em; padding-bottom: 6em;}
.ptb7{ padding-top: 7em; padding-bottom: 7em;}
.ptb8{ padding-top: 8em; padding-bottom: 8em;}
.ptb9{ padding-top: 9em; padding-bottom: 9em;}

/* padding left and right */
.plr05{ padding-left: .5em; padding-right: .5em;}
.plr1{ padding-left: 1em; padding-right: 1em;}
.plr2{ padding-left: 2em; padding-right: 2em;}
.plr3{ padding-left: 3em; padding-right: 3em;}
.plr4{ padding-left: 4em; padding-right: 4em;}
.plr5{ padding-left: 5em; padding-right: 5em;}
.plr6{ padding-left: 6em; padding-right: 6em;}
.plr7{ padding-left: 7em; padding-right: 7em;}
.plr8{ padding-left: 8em; padding-right: 8em;}
.plr9{ padding-left: 9em; padding-right: 9em;}

/* mt */
.mt05{ margin-top: .5em;}
.mt1{ margin-top: 1em;}
.mt2{ margin-top: 2em;}
.mt3{ margin-top: 3em;}
.mt4{ margin-top: 4em;}
.mt5{ margin-top: 5em;}
.mt6{ margin-top: 6em;}
.mt7{ margin-top: 7em;}
.mt8{ margin-top: 8em;}
.mt9{ margin-top: 9em;}

/* mb */
.mb05{ margin-bottom: .5em;}
.mb1{ margin-bottom: 1em;}
.mb2{ margin-bottom: 2em;}
.mb3{ margin-bottom: 3em;}
.mb4{ margin-bottom: 4em;}
.mb5{ margin-bottom: 5em;}
.mb6{ margin-bottom: 6em;}
.mb7{ margin-bottom: 7em;}
.mb8{ margin-bottom: 8em;}
.mb9{ margin-bottom: 9em;}

/* font-size */
.fz1{font-size:1em;}
.fz11{font-size:1.1em;}
.fz12{font-size:1.2em;}
.fz13{font-size:1.3em;}
.fz14{font-size:1.4em;}
.fz15{font-size:1.5em;}
.fz16{font-size:1.6em;}
.fz17{font-size:1.7em;}
.fz18{font-size:1.8em;}
.fz19{font-size:1.9em;}
.fz20{font-size:2em;}




/*nav ========================= */


.pc_nav{
  display: none;
}

.header{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}
.head_logo, .sp-logo {
  width: 8em;
  margin: .9em .8em;
  transition: opacity .5s;
}
.head_logo_img {
  filter: var(--filter-red);
}

#overlay-button.active {
background: none;
}
#overlay-button {
  position: absolute;
  right: 0;
  top: 2%;
  width: 4.2em;
  padding: 2em 0;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  background: #D83646;
  position: fixed;
}

.shopnav{
  display: none;

  top: 5.85em;
  right: 0;
  background: #D83646;
  color: #fff;
  padding: 1.2em .6em 1.2em 0;
  width: 4.2em;
  position: fixed;
  text-align: center;
  z-index: 3;
}
.shopnav2{
  display: none;

  top: 10.5em;
  right: 0;
  background: #D83646;
  color: #fff;
  padding: 1.2em .6em 1.2em 0;
  width: 4.2em;
  position: fixed;
  text-align: center;
  z-index: 3;
}
.shopnav::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 12%;
  margin-top: -4px;
  transform: rotate(45deg);
}
.shopnav2::after{
content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 12%;
    margin-top: -4px;
    transform: rotate(45deg);
}
input[type=checkbox]:checked ~ #overlay-button:before{
	    background: #D83646;
}
#overlay-button span {
  height: 1.5px;
  width: 2.5em;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
  margin: auto;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 1.5px;
  width: 2.5em;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {

}
/*
input[type=checkbox]:checked ~ #overlay-button:after {
    background: #fff;
}
input[type=checkbox]:checked ~ #overlay-button span:after {
    background: #D83646;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
    background: #D83646;
}
*/


#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #fff;
}
input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

.black{
/*	background: rgb(216, 54, 70,0.8);*/
/*	background: #D83646;*/
	    background: rgba(216, 54, 70,0.8);
}

#overlay {
  height: 100vh;
  padding-bottom: 7rem;
  width: 100vw;
  background: #FDF9F2;
  z-index: 2;
  visibility: hidden;
  position: fixed;
  top: 0;
  overflow: scroll;
}

.spnav{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-left: 0;
  list-style-type: none;
  padding-top: 5rem;
}
.spnav>li {
  padding: 1em;
  text-align: left;
}
.spnav>li>a {
  position: relative;
  display: block;
  width: fit-content;
  margin: auto;
  color: #D83646;
  text-decoration: none;
  font-size: 2em;
  font-weight: 500;
}
/* .spnav li a:hover {
    opacity: 0.5;
} */
.navslide{
	padding-top: 3rem;
}

.nav-spen{
  display: block;
  width: fit-content;
  font-family: "Roboto Slab", serif;
  font-size: 2.4rem;
  padding-bottom: 0;
  margin: auto;
}
.nav-spja{
  display: block;
  font-size: 1rem;
  text-align: center;
  opacity: .8;
}
/* .sp-logo{
	    position: absolute;
    width: 25%;
    top: 2%;
    left: 5%;
} */

.sp_nav_item_list{
  display: flex;
  flex-wrap: wrap;
  gap: 7%;
  /* padding: 2em 2em 0; */
}
.sp_nav_item_list li {
  width: 46.5%;
  margin-bottom: 6%;
}
.sp_nav_item_list li p{
  font-size: 1.1em;
  font-weight: 600;
  padding: .5em 0;
}


.cssacc{
  display: none;
}
/* .cssacc_label {
  display: block;
  position: relative;
} */
.cssacc_label {
  position: absolute;
  left: 110%;
  /* right: 0; */
  top: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  display: block;
  width: .9em;
  height: .9em;
  font-size: 1.6em;
  font-weight: 100;
  /* border: 1px solid #000; */
  border-radius: 50%;
  background-image: url(/imgs/icon_plus_circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: var(--filter-red);
  transition: transform .2s , border .5s;
}
.cssacc_label + a{
  display: block;
  width: fit-content;
  margin: auto;
}
.cssacc:checked + a .cssacc_label {
  transform: rotateZ(135deg);
}
.accshow{
  /* margin-bottom: 1em; */
  overflow: hidden;
  /* padding-left: 1.5rem; */
  height: 0;
  opacity: 0;
  transition: opacity 0.8s;
}
.cssacc:checked ~ .accshow {
  transform: translateY(0);
  height: auto;
  opacity: 1;
  /* padding-bottom: 1em; */
  padding: 2em 2em 0;
}
.accshow .en{
  display: none;
}
.accshow a{
  display: block;
  padding: .2em 0;
}

/* lang_btn ============ */
.lang_btn_wrap{
  display: block;
  width: fit-content;
  font-size: 1em;
  font-weight: 500;
  color: currentColor;
  padding: 1.1em 0 0;

  display: none;
}
.header .lang_btn_wrap{
  margin-right: .4em;
  margin-left: auto;
}
.lang_btn,.slash{
  opacity: .5;
  transition: opacity .5s;
}
.lang_btn.inactive{
  pointer-events: none;
  opacity: 1;
}
.lang_btn:hover{
  opacity: 1;
}

/* .lang_btn {
  position: relative;
}
.lang_btn.inactive::before {
  position: absolute;
  top: 120%;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
} */


/* REVERSE */
.reverse .head_logo_img{
  filter: var(--filter-w);
}
[data-page="top"].reverse .head_logo{
  opacity: 0;
}
[data-page="top"].reverse .head_logo_img{
  filter: var(--filter-red);
}
.reverse .header .lang_btn_wrap{
  color: #fff;
}


@media (min-width: 769px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-red);
  }
  .head_logo{
    margin: .9em 1.5em;
  }
  .pc_nav{
    display: block;
    padding-right: .5rem;
    margin-left: auto;
  }
  .nav-pc-1{
    position: relative;
  }	
  #nav-pc-2{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }	
  .top-logopc{
        display: block;
    width: 160px;
    padding-left: 3rem;
  }

  /*ナビゲーションを横並びに*/
  nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
  }
  /*2階層目以降は横並びにしない*/
  nav ul ul{
  display: block;
  }

  /*下の階層のulや矢印の基点にするためliにrelativeを指定*/
  nav ul li{
  position: relative;
  }

  /*ナビゲーションのリンク設定*/
  nav ul li a{
    display: block;
    text-decoration: none;
    color: rgba(216, 54, 70 ,1);
    padding: 1.3em 1.6em 1em;
    font-family: "Roboto Slab", serif;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.4;
    transition: all .3s;
  }

  nav ul li li a{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    padding: 1.3em;
    margin: .2em;
    background-color: #fff;
  }

  nav > ul > li > a:hover{
    opacity: 0.5;
  }

  /*==矢印の設定*/

  /*2階層目を持つliの矢印の設定*/
  /*
  nav ul li.has-child::before{
  content:'';
  position: absolute;
  left:15px;
  top:25px;
  width:6px;
  height:6px;
  border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
  }
  */

  .navja{
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .8em;
    font-weight: 500;
  }

  /*== 2・3階層目の共通設定 */

  /*下の階層を持っているulの指定*/
  nav li.has-child ul{
    position: absolute;
    left: 50%;
    top: 6.2em;
    z-index: 4;
    /* background: #fff; */
    color: #D83646;
    min-width: 14em;
    visibility: hidden;
    opacity: 0;
    font-weight: 600;
    transition: all .3s;
    transform: translate(-50%, 0);
  }

  /*hoverしたら表示*/
  nav li.has-child:hover > ul,
  nav li.has-child ul li:hover > ul,
  nav li.has-child:active > ul,
  nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
  }

  /*ナビゲーションaタグの形状*/
  nav li.has-child ul li a{
  color: #D83646;
  /*  border-bottom:solid 1px rgba(255,255,255,0.6);*/
  }

  nav li.has-child ul li:last-child a{
  border-bottom:none;
  }

  nav li.has-child ul li a:hover,
  nav li.has-child ul li a:active{
  background:#D83646;
  color: #fff;
  }

  .header .lang_btn_wrap {
    margin: .35em 1.5em 0 0.5em;
    border: 1px solid;
    padding: .55em .7em .6em;
  }

  .reverse nav ul li a{
    color: #fff;
  }

}/*  */

/*----------------reset   end*/
/*ranking*/
.w-1{
	width: 60%;
	    margin-top: 2rem;
}
.w-2{
	    width: 80%;
    margin-left: 5rem;
    margin-top: -4rem;
}
.w-3{
	    width: 50%;
    margin-top: 2rem;
}
.w-4{
	    width: 70%;
    margin-left: 8rem;
    margin-top: 3rem;
}
.w-5{
	width: 80%;
    margin-top: 3rem;
}


/*slider*/
.banner-wrapper-fixed {
	position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-image: none;
	z-index:-1;	
}	
.slider{position:relative;}	
.top-slick-img{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh; 
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}	
/*jl*/
.branch-photo-box{
	padding: 2px;
}
.onimg {
  position: relative;  /* 帯の表示位置の基準とする */
}
.onimg .item__text {
  color: #fff;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(216, 54, 70, .8);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding: 2rem;
  transition: opacity .3s;
}
.onimg .item__text .txt {
  display: block;
  width: 100%;
  height: fit-content;
}
.onimg:hover .item__text{
  opacity: 1;   
}
.branch-photo-list2 .onimg .item__text{
	    font-size: 1rem;
}



/*----------------slider  end*/

.wrapper{
  padding: 10em 0 3em;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background: #FDF9F2;
  animation: bgchange 20s ease infinite;/*変化の時間を変更したい場合は20sの部分を好きな時間に変更*/
}
[data-page="top"] .wrapper,
[data-page="recruit"] .wrapper{
  padding-top: 3em;
}

@keyframes bgchange{
  0%   {background:#FDF9F2;}/*変化させたい色*/
  25%  {background:#FFFCF9;}/*変化させたい色*/
  50%  {background:#FDF9F2;}/*変化させたい色*/
  90%  {background:#F2EDE4;}/*変化させたい色*/
  100% {background:#FDF9F2;}/*変化させたい色*/
}


/*header*/


.top_keyvis {
  position: relative;
}

.top-img-1 {
  background-image: url("https://www.dor.tokyo/2022_img/top-1sp-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  height: 100vh;
}
.top-img-2 {
  background-image: url("https://www.dor.tokyo/2022_img/top-2sp-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  height: 100vh;
}

.top-set{
	position: relative;
	    background: #FDF9F2;
/*	background: #fff;*/
}
.top-logo{
     width: 320px;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.top-htl{
position: absolute;
    bottom: 24%;
    color: #fff;
    width: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, 3%);
    -ms-transform: translate(-50%, -50%);
    font-size: 1px;
    text-align: right;
	
}
/*jl*/
.top-ttlwp{
    width: 90%;
    /* padding: 8% 0% 4%; */
    margin: auto;
    padding: 5rem 0 0;
}
.top-ttl{
    font-family: 'Prompt','Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
    font-weight: 500;
    line-height: 1.8;
    padding-top: 1.4rem;
}

.ttl .en{
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
  /* padding-right: 1rem; */
  font-weight: 400;
  font-size: 2.6em;
  line-height: 1.4;
}
.ttl .ja{
  display: block;
  font-family: 'Prompt', 'Noto Sans JP', sans-serif;
  font-size: 1em;
}
.tyl{
    font-weight: 800;
    color: #222;
    /* padding-bottom: 2rem; */
    font-size: 2.2rem;
	color: #D83646;
}
.jlwp {
     margin-top: 50px;
}

.ttl{
  font-size: 1.15em;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1.2em;
}

.ttl-wp{
  position: relative;
  width: fit-content;
  margin: auto;
}

.ttl-img {
  z-index: 1;
  position: absolute;
  top: 10%;
  width: 3.5em;
  transform: rotate(-20deg) !important;
  left: -5em;
}
.ttl-img4 {
  z-index: 1;
  position: absolute;
  top: 10%;
  width: 4.5em;
  transform: rotate(-20deg) !important;
  left: -5em;
}
.ttl-img2 {
  position: absolute;
  top: 13%;
  width: 4.5em;
  transform: rotate(-20deg) !important;
  left: -5em;
  z-index: 1;
}
.ttl-img3 {
  position: absolute;
  top: 10%;
  width: 4.5em;
  transform: rotate(-20deg) !important;
  left: -5em;
  /*	display: none;*/
}
.ttl-img5 {
  position: absolute;
  top: -10%;
  width: 4.5em;
  transform: rotate(-20deg) !important;
  left: -5em;
}

.jlttl{
	font-size: 1rem;
	padding: 1rem;
  font-weight: bold;
  font-family: 'Prompt','Noto Sans JP', sans-serif;
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/*//jl*/

.slider {
  height: auto;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
}
.slick-img img {
  width: 100%;
}
.slick-next,.slick-next:before{
    display: none!important;
}

.bar-item{
    background: #D83646;
    color: #fff;
    margin-top: -2rem;
    z-index: 7;
    display: block;
    mix-blend-mode: hard-light;
    width: 100%;
    /* bottom: 0; */
    display: block;
    margin-top: 0rem;
padding: 1rem 1.4rem;
    font-weight: 100;
    font-size: 2rem;
    /* padding-right: 33rem; */
    /* padding-left: 14%; */
    z-index: 1;
    display: block;
    margin-left: 0rem;
}
.about_img_box {
  width: 100%;
  aspect-ratio: 5/4;
}
.about_img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flrimgpc1 {
  width: 85%;
  margin-bottom: 2em;
}
.flrimgpc2{
  width: 85%;
  margin-left: auto;
}
.store-abs{
  bottom: -10%;
  width: 100%;
  margin-top: -3rem;
}
.bar-item2{
  background: #D83646;
  color: #fff;
  margin-top: -2rem;
  z-index: 7;
  display: block;
  mix-blend-mode: hard-light;
  display: block;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 1;
  display: block;
  margin-top: 0rem;
  padding: 1rem 1.4rem;
  margin-left: 0rem;
}
.store-abs2{
position: absolute;
    bottom: -10%;
    width: 100%;
    left: 35.1%;
}
.store-rela{
	    position: relative;
}
.curtain1 {
  position: relative;
  width: 266px;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 4px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.curtain1 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(0);
  background-color: #333;
}

.curtain1.is-loaded span {
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 20px 0;
  background-color: #333;
}




/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

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

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
  z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
  left: 0;
    transform: scaleX(0);
	    background: #FDF9F2;/*伸びる背景色の設定*/
  animation-name:PageAnime;
  animation-duration:1.2s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
}

@keyframes PageAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
  opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
  animation-name:PageAnimeAppear;
  animation-duration:1s;
  animation-delay: 0.8s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}


.btn{
  width: 14em;
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .001em;
  text-align: center;
  padding: 1.25em;
  margin: 2em auto 1em;
  background: #D83646;
  color: #fff;
  transition: background-color .5s , color .5s;
}
.btn:hover{
	background: #fff;
	color: #D83646;
}
/* .about,.news{
	padding-top: 100px;
} */

.abouttxt_wrap {
  width: fit-content;
  margin: 0 auto 1em;
}
.about .ttl-img{
	    left: 11%;
}
.about-item{
  display: block;
	width: 60%;
  margin: 0 auto 1em;
}
.about-txt-1 {
  width: 100%;
  text-align: left;
  line-height: 1.7;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0rem 3rem 3rem;
  margin: auto;
  font-family: 'Prompt', 'Noto Sans JP', sans-serif;
}
.about-txt-1 .txt{
  display: block;
  padding: .3em 0;
}
.about-en {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  /*	color: #D83646;*/
  /* width: 64%; */
  padding: 0rem 3rem ;
  text-align: left;
  line-height: 1.3;
  margin: 0rem auto 3rem;
  font-family: "Roboto Slab", serif;
}
.flrsecond {
overflow: hidden;
	    padding-top: 2rem;
}
.flr-1{
	   padding-top: 0rem;
}
.flr-2{
	    width: 90%;
}
.flr-3{
    width: 90%;
    margin-left: 10%;
    margin-top: 0rem;
}

.abouttxtgp{
	        padding-top: 0rem;
}


/*NEWS*/

.news-wp{
	display: flex;
	flex-wrap: wrap;
  gap: 4%;
  /* justify-content: center; */
}
.newsbox {
  width: 48%;
  margin-bottom: 3rem;
  position: relative;
}
.newsbox img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

#top_news {
  justify-content: center;
}
.news_tab{
  font-size: 1.6em;
  text-align: center;
  width: fit-content;
  min-width: 11rem;
  padding: 0.5rem 0;
  margin: auto;
  background-color: #D83646;
  color: #fff;
}

.newsbox dt{
	padding: 1rem 0 .5em;
  opacity: 0.5;
}

.newsbox dd{
  font-weight: bold;
  line-height: 1.4;
}

/* TOP ACCESS
=================================== */
.top_access_block {
  background-color: var(--c-red);
  color: #fff;
}

.tel{
	font-size: 2.2em;
  display: block;
  text-align: center;
  padding-top: .3em;
}

/*footer*/
footer{
  background: #D83646;
  color: #fff;
  padding: 5rem 0 5rem;
  margin-top: 100px;
}
.access-txt p{
  font-size: 1.05rem;
  text-align: center;
  color: #fff;
}
.access_sns_wrap{
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: .7em 0 0;
}
.access_sns_wrap a {
  width: 2.2em;
}

.contact_day{
	text-align: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1em;
}
.map1 {
    padding: 3rem 0 1rem;
}
.f-logo {
  width: 13em;
  padding-right: 2em;
  margin: auto;
}

.f-txt2{
  line-height: 1.7;
  width: 90%;
  margin: 3rem auto 2rem;
}  

  /* .pc{
    display: none;
  }.sp{
    display: block;
  } */

#splash {
  width: 230px;
  margin: auto;
  padding-top: 28rem;
}

.f-logo-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	padding-top: 2%;
    width: 75%;
    margin: auto;
    align-items: center;
}
.ft-logo {
display: block;
    padding: 5%;
    width: 32%;
}
.unei{
  font-size: 1.1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
.related{
font-size: 1.6em;
    padding-top: 5%;
    font-weight: 300;
    text-align: center;
    padding-bottom: 0rem;
}
.copyrights{
  padding-top: 0em;
  font-size: 1.1em;
  display: block;
  padding-top: 3rem;
  font-weight: 300;
  text-align: center;
  border-top: solid 1px;
  width: 90%;
  margin: 3rem auto 0;
}
.sjis {
    width: 10%;
    margin: 5% auto 0;
    display: block;
}


@media (min-width: 769px) {

  /*ranking*/
  .brd-flex{
        display: flex;
    width: 90%;
    margin: auto;
  }
  .w-1{
    width: 60%;
    margin-top: 6rem;
  }
  .w-2{
    width: 70%;
    margin-left: 4rem;
    margin-top: 18rem;
    padding: 3rem;
  }
  .w-3{
    width: 50%;
    margin-top: 10rem;
  }
  .w-4{
    width: 90%;
    margin-left: 8rem;
    margin-top: 3rem;
  }

  .ttl {
    font-size: 1.5em;
  }


  /*
  header{
    
  }
  header.white{
    background: #000;
  }

  */

  .cd-fixed-bg {
    background-size: cover;
    background-attachment: scroll;
  }
  .top-ttlwp{
    width: 380px;
  }
  .top-ttl{
        font-family: 'Prompt','Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    text-align: left;
    width: 100%;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 3.5;
    padding-top: 1.4rem;
  }
  .tyl{
    font-size: 2rem;
  }
  .top-img-1{
    background-image: url("https://www.dor.tokyo/2022_img/top-1-img.jpg");
  }
  .top-img-2{
    background-image: url("https://www.dor.tokyo/2022_img/top-2-img.jpg");
  }

  .amtxt{
    padding-top: 2rem!important;
  }
  .about{
    overflow: hidden;
    padding-bottom: 4rem;
    
  }
  .top-logo {
    width: 20rem;
    bottom: 30%;
  }
  /* .btn {
    width: 162px;
    height: 60px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 3.7em;
    letter-spacing: .001em;
    transition: background .3s ease-in-out;
  }	 */

  /* .about,.news{
    padding-top: 10rem;
  } */
  .jlwp{
    margin-top: 5rem;
  }

  /*.ttl-img2{
    left: 41%;
    top: 0;
  }	
    .ttl-img{
    left: 41.8%;
    top: -25%;
  }
  .ttl-img3	{
      left: 43.6%;
    top: -3%;
  }
    .ttl-img4	{
  left: 40%;
    top: -20%;
  }
      .ttl-img5	{
    left: 42.2%;
    top: -20%;
  } */

  /*about	*/
  .abbcwp{
    display: block;
    background: url("https://www.dor.tokyo/2022_img/aboutbacpc.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    color: #fff;
    height: 49vh;
    background-attachment: fixed;
    background-position: center;
  }
  .about-bx{
    margin: auto;
    justify-content: center;
    padding-top: 3rem!important;
  }
  .about-bx .en,.about-bx .ja{
    color: #fff;
    width: 50%;
  }
  .about-bx p{
    color: #fff;

    padding: 0 0rem 0rem 7rem;

  }
  .about-en {
    font-size: 1.6rem;
    text-align: center;
  }
  .about-txt-1 {
    font-size: 1.38rem;
    text-align: center;
  }
  .about-txt-2{
    width: 100%;
    text-align: left; opacity: 0;
        line-height: 0.5;
    display: block;
    /* color: #D83646; */
    font-weight: 500;
    font-size: 1rem;
    font-size: 1.18rem;
  /*    padding: 0rem 4rem 3rem 4rem;*/
    margin: auto;
    font-family: 'Prompt','Noto Sans JP', sans-serif;
  }

  .about-item {
    width: 20em;
    margin: auto;
    display: block;
  }

  .aboutjawp{
    text-align: center;
    width: 50%;
    margin: auto;
  }
    .about-bx h1,.about-bx h2{
  color: #fff;
    padding: 0 3rem 2rem 9rem;
    font-family: 'Prompt','Noto Sans JP', sans-serif;
    line-height: 1.7;
    font-size: 1.2rem;
    font-weight: 500;

  }
  .about-txt{
          width: 52%;
  }	.wht{
      width: 30%;
    padding-top: 1rem;
    padding-left: 12rem;
  }

  .flrimgp_wrap {
    display: flex;
    justify-content: center;
    gap: 4em;
  }
  .flrimgp {
    width: 40%;
    margin: 0;
  }
  .flrimgp.flrimgpc1 {
    margin-top: -3em;
  }
  .flrimgp.flrimgpc2 {
    margin-top: 5em;
  }
  .about_img_box {
    aspect-ratio: 4/3;
  }
  .abouttotal{
    position: relative;
  }
  .map1{
    width: 80%;
    margin: auto;
  }

  .f-txt2 {
    width: 40%;
  }
  .store-abs1{
        position: absolute;
    bottom: -10%;
    width: 100%;
    right: 0;
    left: -4%;
  }
  .store-abs2 {
  position: absolute;
    bottom: -10%;
    width: 100%;
    right: 0;
    left: 53%;
  }
  .f-logo-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 65%;
  }
  .ft-logo{
    width: 20%;
    text-align: center;
    padding: 3%;
  }
  .related{
        text-align: center;
    padding: 3rem 0 1rem;
    color: #fff;
    font-size: 1.6rem;
    font-family: "Roboto Slab",serif;
  }
  .unei{
        color: #fff;
    text-align: center;
    padding-top: 5rem;
  }
  .copyrights{
        text-align: center;
    padding-top: 2rem;
  width: 60%;
  }
  .shopnav {
    font-size: 0.5rem;
  }
  .sjis {
      width: 3%;
    margin: 2% auto 0%;
    display: block;
  }

}/* mq960 end */


@media (min-width: 1200px) {
  html{
    font-size: 14px;
  }
  /*
  section{
    max-width: 1200px;
  }
  */
  .np_container{
    padding-left: 3rem;
    padding-right: 3rem;
  }
} /* mq1200 end*/


@media (min-width: 1300px) {
  .top-logo {
    width: 320px;
    bottom: 0%;
  }	
}


.sec_other_brand {
  background-color:  transparent !important;
}