@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* denial */
.ftTop{
  margin-top: 0 !important;
}
#breadcrumb{
  position: relative;
  z-index: 1;
}

/**/
body{
  
}
#wrapper {
  font-family:"游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic",'Noto Sans JP',sans-serif;
  -webkit-text-size-adjust: 100%;
}
:root{
  --pc-width:1366;
  --orange:#f26738;
  --green:#2eb395;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.u-text-orange{
  color: var(--orange);
}
.u-text-white{
  color: #fff;
}
.u-text-green{
  color: var(--green);
}
.u-bg-orange{
  background-color: var(--orange);
}
.u-bg-green{
  background-color: var(--green);
}
.u-text-left{
  text-align: left !important;
}
.u-vertical-base{
  vertical-align: baseline;
}

.u-font-bold{
  font-weight: bold;
}
.u-br::before {
  content: "\A" ;
  white-space: pre ;
}
@media screen and (min-width:1024px) {
  .u-br-pc::before {
    content: "\A" ;
    white-space: pre ;
  }
}
@media screen and (max-width:1023px) and (min-width:801px) {
  .u-br-tab::after{
    content: "\A" ;
    white-space: pre ;
  }
}
@media screen and (max-width:800px) {
  .u-br-sp::after{
    content: "\A" ;
    white-space: pre ;
  }
}

.c-button{
  border-radius: 9999px;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.c-button:hover{
  opacity: 0.7;
}
.c-button a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* main */
.l-wrapper{
  background: url(../img/common/bg.png) top center repeat ;
  padding-top: 33px;
  overflow-x: hidden;
}

.l-main{
  padding: 0 calc((35 / var(--pc-width)) * 100 * 1vw);
  max-width: calc(1366 / 1300 *100vw);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:800px){
  .l-wrapper{
    background: url(../img/common/bg_sp.png) top center repeat ;
    background-size: contain;
    padding-top: calc(45 / 750 * 100vw);
  }
  .l-main{
    padding: 0 calc(20 / 750 * 100vw);
  }
  .c-button a{
    font-weight: bold;
  }
}

/* navigation */
.l-navigation{
  position: fixed;
  z-index: 10;
}
.l-navigation_list{
  border: 1px solid #000;
  box-sizing: content-box;
  background-color: #fff;
  display: flex;
}
.l-navigation_list-item{
  height: 100%;
}
.l-navigation_list-item[data-current="on"] a{
  background-color: var(--green);
  color: #fff;
}
.l-navigation_list-item a{
  transition: all 300ms ease;
}
.l-navigation_list-item a:hover{
  background-color: var(--orange);
  color: #fff;
  opacity: 1;
}
@media screen and (min-width:800px) {
  .l-navigation{
    max-width: calc(1296/1366 *100vw);
    width: 100%;
    left: 50%;
    transform: translate(-50%);
    transition: all 300ms ease;
  }
  .l-navigation[data-scroll="stop"]{
    bottom: -100%;
  }
  .l-navigation[data-scroll="scroll"]{
    bottom: 0;
  }
  .l-navigation_list-item{
    width: calc(100% / 7);
  }
  .l-navigation_list-item:not(:first-child){
    border-left: 1px solid #000;
  }
  .l-navigation_list-item a{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: min(16px,calc((16 / var(--pc-width)) * 100 * 1vw));
    padding: min(5px,calc((5 / var(--pc-width)) * 100 * 1vw));
    height: min(56px,calc((56 / var(--pc-width)) * 100 * 1vw));
    letter-spacing: -1.25px;
    position: relative;
  }
  .l-navigation_list-item a:before{
    content: "";
    position: absolute;
    right: min(15px, calc((15 / var(--pc-width)) * 100 * 1vw));
    width: 5px;
    height: 9px;
    background: url(../img/common/arrow-black.svg) no-repeat left center;
    background-size: contain;
    pointer-events: none;
  }
  .l-navigation_list-item a:hover:before{
    background: url(../img/common/arrow-white.png) no-repeat left center;
    background-size: contain;
  }
  .l-navigation_list-item[data-current="on"] a:before{
    background: url(../img/common/arrow-white.png) no-repeat left center;
    background-size: contain;
  }
}
@media screen and (max-width:799px) {
  .l-navigation{
    width: 0;
    right: 0;
    /* bottom: 150px; */
    top: 62px;
    white-space: nowrap;
    transition: all 300ms ease;
  }
  [data-navigation="open"].l-navigation{
    width: 50%;
  }
  .l-navigation_list{
    width: 100%;
    flex-direction: column;
  }

  .l-navigation_list-item{
    width: 100%;
  }
  .l-navigation_list-item:not(:first-child){
    border-top: 1px solid #000;
  }
  .l-navigation_list-item a{
    display: block;
    font-size: 13px;
    padding: 12px 1em;
    height: 100%;
    letter-spacing: 0;
  }
  .l-navigation_list-item br {
    display: none;
  }
}

@media screen and (min-width:800px) {
  .l-navigation_button-sp{
    display: none;
  }
}
@media screen and (max-width:799px) {
  .l-navigation_button-sp{
    position: absolute;
    /* bottom: -49px; */
    margin-top: -1px;
    right: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    background-color: var(--green);
  }
  .l-navigation_button-sp::before{
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    left: 50%;
    transform: translate(-50%);
    top: 13px;
    background-color: #fff;  
    transition: all 300ms ease;
  }
  .l-navigation_button-sp::after{
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    left: 50%;
    transform: translate(-50%);
    bottom: 13px;
    background-color: #fff;
    transition: all 300ms ease;
  }
  [data-navigation="open"] .l-navigation_button-sp::before {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%) rotate(40deg);
  }
  [data-navigation="open"] .l-navigation_button-sp::after {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%) rotate(-40deg);
  }
  .l-navigation_button-sp span::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: calc((100% - 1px)/2);
    background-color: #fff;
    width: 15px;
    height: 1px;
    transition: all 300ms ease;
  }
  [data-navigation="open"] .l-navigation_button-sp span::before{
    width: 0;
    height: 0;
  }
}

@media screen and (max-width: 640px){
  .pagetop {
    bottom: 20px;
  }
}

#cocoa{
  padding-top: min(204px,calc((204 / var(--pc-width)) * 100 * 1vw));
  margin-top:min(-204px,calc((204 / var(--pc-width)) * 100 * 1vw));
}
@media screen and (max-width:800px) {
  #cocoa{
    padding-top:calc(200 / 750 * 100vw);
    margin-top: calc(-200 / 750 * 100vw);
  }
}
