@charset "utf-8";
body{
  background: url(../images/top/top_background_washi.jpg) repeat 0 0 / 100px;
  --TXT_COLOR_BASE: var(--TXT_COLOR_TOP);
}
@media screen and (min-width: 768px){
	:root{
		--GENERALSEC: clamp(100px, 12vw, 150px);
	}
}
@media screen and (max-width: 767px){
	:root{
    --GENERALSEC: 60px;
	}
}
/* t-wave */
.t-wave{
  --BG_COLOR_1: rgba(255, 255, 255, 1);
  --BG_COLOR_2: rgba(255, 255, 255, 0);
  background: linear-gradient(180deg, var(--BG_COLOR_1) 0%, var(--BG_COLOR_2)100%);
  position: relative;
  z-index: 1;
}
.t-wave--short{
  background: linear-gradient(180deg, var(--BG_COLOR_1) 0%,var(--BG_COLOR_1) 70%, var(--BG_COLOR_2) 100%);
}
.t-wave::before{
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../images/top/bg_wave.png) repeat-x center center;
  width: 100%;
  height: var(--WAVE_HEIGT);
  aspect-ratio: 2077/372;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px){
  .t-wave{
    margin-top: var(--WAVE_HEIGT);
    --WAVE_HEIGT: 329px;
  }
  .t-wave::before{
    background-size: 1840px;
    bottom: calc(100% - 150px);
  }
}
@media screen and (max-width: 767px){
  .t-wave{
    margin-top: calc(var(--WAVE_HEIGT) + var(--GENERALSEC_HALF));
    --WAVE_HEIGT: 71px;
  }
  .t-wave::before{
    background-size: 400px;
    bottom: calc(100% - 10px);
  }
}
/* -------------------headerarea-------------------- */
.t-heading{
  display: grid;
}
.t-heading__en{
  display: block;
}
.t-heading__ja{
  font-weight: var(--FF_W_B);
}
@media screen and (min-width: 768px){
  .t-headingContainer{
    margin-bottom: var(--GAP_50);
  }
  .t-heading{
    gap: 10px;
  }
  .t-heading__en img{
    height: clamp( 40px, 5vw, 60px);
    width: auto;
  }
  .t-heading__ja{
    font-size: var(--FZ_22);
  }
  .t-heading--horizontal{
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }
  .t-heading--horizontal .t-heading__en img{
    height: clamp( 30px, 3.5vw, 45px);
  }
  .t-heading--horizontal .t-heading__ja{
    line-height: 1;
  }
  .t-headingContainer--hasBtn{
    display: flex;
    justify-content: space-between;
  }
  .t-headingContainer--hasBtn > .t-heading{
    flex: 1;
  }
  .t-headingContainer--hasBtn .g-btn{
    width: 180px;
  }
}
@media screen and (max-width: 767px){
  .t-headingContainer{
    margin-bottom: 20px;
  }
  .t-heading{
    gap: 10px;
  }
  .t-heading__en img{
    height: 25px;
    width: auto;
  }
}
/* -------------------headerarea-------------------- */
@media screen and (min-width: 768px){
  #headerarea{
    padding-top: 50px;
  }
  .hd-inner{
    display: flex;
    align-items: start;
    gap: var(--GAP_40);
  }
  .hd-logo{
    width: clamp( 60px, 8vw, 114px);
  }
}

/* -------------------t-fv-------------------- */
#mainarea{
  position: relative;
  z-index: 2;
}
.t-fv__nav li a{
  display: block;
  font-weight: var(--FF_W_B);
  position: relative;
}
.t-fv__nav li a::before{
  content: "";
  display: inline-block;
  --URL: url(../images/common/yajirushi_bold.svg);
  --MASK: var(--URL) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  aspect-ratio: 1/1;
  background-color: var(--BROWN01);
  position: absolute;
  transition: .5s;
}
.t-fv__nav li a::after{
  content: "";
  --COLOR_1: var(--BROWN01);
  --COLOR_2: transparent;
}
.t-fv__nav li.is-active a{
  color: var(--RED01);
}
.t-fv__nav li.is-active a::before{
  background-color: var(--RED01);
}
.t-fv__slide{
  position: relative;
}
.t-fv__slide::before{
  content: "";
  display: inline-block;
  background: url(../images/top/mv_back.svg) no-repeat center center / 100%;
  aspect-ratio: 30/29;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.t-fv__slide::after{
  content: "";
  display: inline-block;
  background: url(../images/top/happy-day.png) no-repeat center center / 100%;
  aspect-ratio: 1/1;
  position: absolute;
  transform: rotate(30deg);
  animation: sway 4s ease-in-out infinite;
}
.t-fv__slide li img{
  --URL: url(../images/top/mv_front.svg);
  --MASK: var(--URL) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
}
.t-fv__catch__secondary{
  font-weight: var(--FF_W_B);
}
@keyframes sway {
  0%, 100% {
    transform: translateX(-50%) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) rotate(5deg);
  }
}
@media (hover: hover){
  .t-fv__nav li a:hover{
    opacity: 1;
  }
}
@media screen and (min-width: 768px){
  .t-fv{
    max-width: 1025px;
    margin: -7% auto 0;
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--GAP_50);
    padding-bottom: 120px;
    position: relative;
  }
  .t-fv__nav{
    width: fit-content;
  }
  .t-fv__nav li a{
    font-size: var(--FZ_18);
    padding-bottom: var(--GAP_20);
    line-height: 1.5;
  }
  .t-fv__nav li:not(:last-child) a{
    margin-bottom: var(--GAP_25);
  }
  .t-fv__nav li a::before{
    width: 15px;
    top: 8px;
    left: calc(0px - var(--GAP_20));
  }
  .t-fv__nav li a::after{
    --WITDH: 7px;
    --HEIGHT: 2px;
    --SIZE: 2px;
    background-image: linear-gradient(to right, var(--COLOR_1), var(--COLOR_1) var(--SIZE), var(--COLOR_2) var(--SIZE), var(--COLOR_2) var(--WITDH));
    background-size: var(--WITDH) var(--HEIGHT);
    background-repeat: repeat-x;
    width: 100%;
    height: var(--HEIGHT);
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .t-fv__main{
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: var(--GAP_50);
  }
  .t-fv__slide{
    flex: 1;
  }
  .t-fv__slide::after{
    width: 18%;
    bottom: 3%;
    right: 1%;
  }
  .t-fv__catch{
    width: clamp( 130px, 17vw, 200px);
    display: flex;
    flex-direction: row-reverse;
    gap: var(--GAP_50);
    padding-top: 8%;
  }
  .t-fv__catch__secondary{
    width: fit-content;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    font-size: var(--FZ_16);
  }
}
@media screen and (max-width: 767px){
  .t-fv{
    overflow: hidden;
    position: relative;
    padding-top: 30px;
    margin-bottom: 80px;
  }
  .t-fv__catch{
    width: 100%;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
  }
  .t-fv__catch__secondary{
    text-align: center;
    display: block;
    margin-bottom: 30px;
  }
  .t-fv__catch__primary{
    display: block;
    width: 23%;
    margin-left: auto;
    margin-right: 7%;
  }
  .t-fv__slide{
    width: 95%;
    margin: 50px 0 0 -22%;
  }
  .t-fv__slide::after{
    width: 23%;
    bottom: 0%;
    right: 3%;
  }
  .t-fv__nav{
    display: flex;
    margin-top: 10px;
  }
  .t-fv__nav li{
    flex: 1;
  }
  .t-fv__nav li a{
    display: flex;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0px;
    padding: 13px 0 10px;
  }
  .t-fv__nav li a::before{
    width: 9px;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
  }
  .t-fv__nav li:not(:last-child) a::after {
    --WITDH: 1px;
    --HEIGHT: 5px;
    --SIZE: 1px;
    background-image: linear-gradient(to bottom, var(--COLOR_1) 0%, var(--COLOR_1) var(--SIZE), var(--COLOR_2) var(--SIZE), var(--COLOR_2) var(--HEIGHT));
    background-size: var(--SIZE) var(--HEIGHT);
    background-repeat: repeat-y;
    height: 100%;
    width: var(--SIZE);
    position: absolute;
    top: 0;
    right: calc(0px - (var(--SIZE)) / 2);
  }
}
/* -------------------t-special-------------------- */
@media screen and (min-width: 768px){
  .t-special__list .slick-slide > div > li{
    --WIDTH: clamp( 150px, 20vw, 250px);
    min-width: var(--WIDTH);
    max-width: var(--WIDTH);
  }
  .t-special__list .slick-slide{
    margin: 0 var(--GAP_10);
  }
  .t-special__list .slick-slide > div > li img{
    border-radius: var(--IMG_BDRS);
  }
}
@media screen and (max-width: 767px){
  .t-special__list{
    width: var(--INNER_WIDTH);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
  }
  .t-special__list li img{
    width: 100%;
    border-radius: var(--IMG_BDRS);
  }
}
/* -------------------t-brand -------------------- */
.t-brand__list__img{
  position: relative;
}
.t-brand__list__photo img{
  border-radius: 50%;
}
.t-brand__list__logo{
  width: 35%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(5%, 10%);
}
.t-brand__list__btn{
  max-width: unset;
}
.t-brand__list__btn a{
  width: fit-content;
}
@media screen and (min-width: 768px){
  .t-brand__list{
    display: grid;
    gap: var(--GAP_80);
    max-width: var(--PC_MAX_WIDTH_S);
    margin: 0 auto;
  }
  .t-brand__list li{
    display: grid;
    grid-template-columns: 40fr 55fr;
    align-items: center;
    gap: var(--GAP_50);
  }
  .t-brand__list__name{
    font-size: var(--FZ_30);
    margin-bottom: var(--GAP_10);
  }
  .t-brand__list__txt{
    font-size: var(--FZ_15);
  }
  .t-brand__list__btn{
    margin-top: var(--GAP_50);
  }
  .t-brand__list__btn a{
    padding: 20px 45px;
  }
}
@media screen and (max-width: 767px){
  .t-brand__list .slick-slide > div > li{
    padding: 0 35px;
  }
  [class*="t-brand__list__arrow--"]{
    top: 44%;
  }
  .t-brand__list__img{
    width: 80%;
    margin: 0 auto 30px;
  }
  .t-brand__list__name{
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  .t-brand__list__txt{
    font-size: 13px;
  }
  .t-brand__list__btn{
    width: fit-content;
    margin: 20px auto 0;
  }
  .t-brand__list__btn a{
    padding: 15px 25px;
  }
}
/* -------------------t-search-------------------- */
.t-search__itemList{
  display: grid;
}
.t-search__itemList li a{
  display: grid;
  align-items: center;
}
.t-search__itemList__photo img{
  border-radius: var(--IMG_BDRS);
}
.t-search__itemList__name{
  font-weight: 600;
  letter-spacing: 0px;
}
.t-search__type{
  display: grid;
}
.t-search__type li a{
  display: flex;
  align-items: center;
  border: 2px solid var(--TXT_COLOR_TOP);
  background-color: var(--WHITE);
  height: 100%;
  position: relative;
  font-weight: var(--FF_W_M);
  line-height: 1.5;
}
.t-search__type li a::before{
  content: "";
  display: inline-block;
  --MASK: var(--URL) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--TXT_COLOR_TOP);
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover){
  .t-search__type li a:hover{
    background-color: var(--TXT_COLOR_TOP);
    color: var(--WHITE);
    opacity: 1;
  }
  .t-search__type li a::before{
    transition: .5s;
  }
  .t-search__type li a:hover::before{
    background-color: var(--WHITE);
  }
}
@media screen and (min-width: 768px){
  .t-search__itemList{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--GAP_40) var(--GAP_20);
    margin-bottom: var(--GAP_100);
  }
  .t-search__itemList li a{
    grid-template-columns: repeat(2,1fr);
    gap: var(--GAP_10);
  }
  .t-search__itemList__name{
    font-size: var(--FZ_16);
  }
  .t-search__type{
    gap: var(--GAP_20);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .t-search__type li a{
    font-size: var(--FZ_14);
    padding: 20px 0 20px 80px;
    border-radius: 70px;
  }
  .t-search__type li a::before{
    width: 45px;
    left: 20px;
  }
}
@media screen and (max-width: 767px){
  .t-search__itemList{
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
    margin-bottom: var(--GAP_80);
  }
  .t-search__itemList li a{
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }
  .t-search__itemList__name{
    font-size: 12px;
  }
  .t-search__type{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
    gap: 10px;
  }
  .t-search__type li a{
    font-size: 12px;
    padding: 10px 0 10px 42px;
    border-radius: 35px;
  }
  .t-search__type li a::before{
    width: 25px;
    left: 10px;
  }
}
/* -------------------t-postItem-------------------- */
.t-whiteBox{
  background-color: var(--WHITE);
}
@media screen and (min-width: 768px){
  .t-whiteBox{
    border-radius: 30px;
  }
  .t-postItem__box{
    padding: var(--GAP_100) 0;
  }
}
@media screen and (max-width: 767px){
  .t-whiteBox{
    border-radius: 20px;
  }
  .t-postItem__box{
    padding: var(--GAP_50) 0;
  }
}
/* -------------------t-voice-------------------- */
@media screen and (min-width: 768px){
  .t-voice__btn .g-btn{
    max-width: unset;
    width: fit-content;
  }
  .t-voice__btn .g-btn a{
    padding: 20px 45px;
  }
}
@media screen and (max-width: 767px){
  
}
/* -------------------t-btmBnr-------------------- */
@media screen and (min-width: 768px){
  .t-btmBnr{
    padding: var(--GAP_60) var(--GAP_20);
  }
}
@media screen and (max-width: 767px){
  .t-btmBnr{
    padding: var(--GAP_30) 0;
  }
}


/* 20250108 */
/* -------------------t-newitemList-------------------- */
.t-newitemList{
  opacity: 0;
	transition: opacity .3s linear;
	line-height: 1;
}
.t-newitemList:has(.fs-pt-carousel__track.slick-initialized){
  opacity: 1;
}
.t-newitemList button.slick-prev,
.t-newitemList button.slick-next,
.t-newitemList .slick-dots{
  display: none;
  opacity: 0;
}
.t-newitemList .fs-pt-carousel__slide{
  min-width: var(--WIDTH);
  max-width: var(--WIDTH);
}
.t-newitemList .fs-pt-carousel__slide img{
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
  border-radius: var(--BDRS);
}
@media screen and (min-width: 768px){
  .t-newitemList .slick-slide{
    margin: 0 5px;
  }
  .t-newitemList .fs-pt-carousel__slide{
    --WIDTH: 400px;
    --BDRS: 10px;
  }
  [class*="t-newitemList__arrow"]{
    top: 40%;
		--SLICK_ARROW_TO_BODY: 5px;
  }
  .t-newitemList .g-slickDots{
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px){
  .t-newitemList .slick-slide{
    margin: 0 5px;
  }
  .t-newitemList .fs-pt-carousel__slide{
    --WIDTH: 250px;
    --BDRS: 10px;
  }
  [class*="t-newitemList__arrow"]{
    top: 40%;
		--SLICK_ARROW_TO_BODY: 2px;
  }
}