@charset "utf-8";

/*--------------------------------------------------------------------------
   caption
---------------------------------------------------------------------------*/

.pic{position: relative;}
.cap{
    position: absolute;
    bottom: 16px; right: 16px;
    color: var(--light);
    font-size: 10px;
}
.cap.left{
    right: unset;
    left: 16px;
}
@media screen and (max-width: 768px){
    .cap{
    position: absolute;
    bottom: 10px; right: 10px;
    color: var(--light);
    font-size: 8px;
}
.cap.left{
    right: unset;
    left: 10px;
}
}

/*--------------------------------------------------------------------------
   fonts
---------------------------------------------------------------------------*/

body *{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.8px;
}
body .en{
    font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}


/*--------------------------------------------------------------------------
   settings
---------------------------------------------------------------------------*/
:root {
    --dark: #222222;
    --light: #fff;
    --blue: #005BAC;
    --lblue: #C5DDF4;
	--gold: #B8A380;
	--yellow: #FFF53B;
	--gray: #999999;
	--lgray: #F4F5F7;
}

@media screen and (max-width: 768px){
.inner{
        width: 90%;
        max-width: 560px;
}
}

/*--------------------------------------------------------------------------
   re_header
---------------------------------------------------------------------------*/

.re_header{
    position: fixed;
    top: 26px; left: 26px;
    z-index: 1000;
    width: 100svw;
}
.re_header h1{
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 16px;
}
.re_header h1 a{
    max-width: 140px;
    width: 10svw;
}
.re_header h1 span{
    color: var(--light);
    font-size: max(.6svw, 11px);
    line-height: 1.8em;
    letter-spacing: 0.08em;
}

.header_top_menu{
    max-width: 70%;
    margin-left: auto;
    position: absolute;
    top: 0; right: 8%;
    max-width: 69%;
    width: 100svw;
}
.header_top_menu .top{
    display: flex;
    justify-content: flex-end;
}
.header_top_menu .top a{
    display: block;
    text-align: center;
    font-size: 13px;
    padding: 0 16px;
    color: var(--dark);
    mix-blend-mode: exclusion;

}
.header_top_menu .top a:not(:last-child){
    background-image: repeating-linear-gradient(180deg, #999999, #999999 2px, transparent 2px, transparent 6px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 2px 100%;
}
.header_top_menu .bottom{
    background-color: var(--light);
    padding: 12px 24px;
    margin-top: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_top_menu .bottom li{
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex: 1;
}
.header_top_menu .bottom a{
    font-size: 10px;
    text-align: center;
    padding: 0 16px;
    line-height: 1;
    position: relative;
}
.header_top_menu .bottom li:not(:last-child){
    background-image: repeating-linear-gradient(180deg, #999999, #999999 2px, transparent 2px, transparent 6px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 2px 100%;
}
.header_top_menu .bottom a::before{
    content: attr(data-hover); 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: transparent;
    text-align: center;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 9px;
}
.header_top_menu .bottom a:hover{
    color: transparent; 
}
.header_top_menu .bottom a:hover::before{
    color: var(--dark);
}
.header_top_menu .bottom li a.new{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.header_top_menu .bottom li a.new::after{
    content: 'NEW';
    display: inline-block;
    background-color: var(--blue);
    color: var(--light);
    text-align: center;
    border-radius: 50px;
    font-size: 10px;
    line-height: 1;
    padding: 2px 4px;
    margin-left: 11px;
}
.header_top_menu .bottom a.new::before{
    width: 45%;
    left: 30%;
    white-space: pre;
}



.header_right{
    position: absolute;
  top: -26px;
  right: 40px;
  z-index: 1000;
  background-color: var(--lgray);
  border-radius: 16px 0 0 16px;
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header_right_sub_menu{
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_right_sub_menu li:not(:last-child){
   background-image: repeating-linear-gradient(90deg, #000000, #000000 2px, transparent 2px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
.header_right_sub_menu li{
    padding: 8px 0;
}
.header_right_sub_menu li a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
    font-size: 14px;
    padding: 24px 8px;
    border-radius: 8px;
    transition: .3s;
}
.header_right_sub_menu li a span{
    display: block;
    text-align: center;
}
.header_right_sub_menu li a span img{width: 12px;}
.header_right_sub_menu li.req a:hover{background-color: var(--blue); color: var(--light);}
.header_right_sub_menu li.res a:hover{background-color: var(--lblue);}
.header_right_sub_menu li.limited a:hover{background-color: var(--gold);}
.header_right_sub_menu li.limited a:hover span svg{fill: var(--dark);}
.header_right_sub_menu li.limited a span svg{fill: var(--dark);}

/* ハンバーガーメニュー */

/* overlay-styles.css */
.hamburger-overlay {
    position: relative;
    z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: var(--dark);
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: var(--dark);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--lgray);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
  padding: 5%;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
    max-width: 1300px;
    margin: auto;
}
.menu_wrap{
    display: flex;
    justify-content: space-between;
}
.menu_wrap .nav_img{
    flex-basis: 40%;
}
.menu_wrap .nav_img img{
    border-radius: 300px 300px 10px 10px;
}
.menu_wrap .nav_txt{
    flex-basis: 55%;
    display: flex;
    flex-direction: column;
}

.nav_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.nav_list li:first-child{
    flex-basis: 100%;
}
.nav_list li{
    flex-basis: 48%;
    padding-top: 4%;
    position: relative;
}
.nav_list li.new::after{
    content: 'NEW';
    display: block;
    background-color: var(--blue);
    color: var(--light);
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    line-height: 1;
    padding: 2px 4px;
    position: absolute;
    top: 24px; right: 13%;
    width: fit-content;
    height: 23px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    padding: 6px 12px;
    
}
.nav_list li a{
    transition: .3s;
    display: block;
}
.nav_list li a:hover{opacity: .7;}

.nav_list li a span.en{
    display: block;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}
.nav_list li a span.ja{
    display: block;
    font-size: 10px;
    line-height: 1;
    padding-top: 3px;
}
.btn_area{
    margin-top: auto;
}
.btn_area ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.btn_area li{
    margin-top: 16px;
}
.btn_area li.req,
.btn_area li.res{flex-basis: 49%;}
.btn_area li.limited{flex-basis: 100%;}


.btn_area li a{
    display: flex;
    align-items: center;
    gap: 0 8px;
    padding: 20px 24px;
    border-radius: 70px;
    position: relative;
    transition: .3s;
}
.btn_area li a span.en{
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}
.btn_area li a span.ja{
    font-size: 12px;
    line-height: 1;
}

.btn_area li a .arrow{
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-color: var(--light);
    padding: 6px 12px;
    border-radius: 16px;
    width: 40px;
    height: 20px;
    transition: .3s;

}
.btn_area li a .arrow:before,
.btn_area li a .arrow:after {
  position: absolute;
  content: '';
}
.btn_area li a .arrow:before {
    top: 12px;
    left: 10px;
  width: 15px;
  height: 1px;
  background: var(--dark);
}

.btn_area li a .arrow:after {
  top: 7px;
    left: 23px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 7px solid var(--dark);
}

.btn_area li.req a{
    background-color: var(--blue);
    color: var(--light);
}
.btn_area li.res a{
    background-color: var(--lblue);
}
.btn_area li.limited a{
    background-color: var(--gold);
}

.btn_area li.req a:hover{
    background-color: var(--dark);
    color: var(--blue);
}
.btn_area li.res a:hover{
    background-color: var(--dark);
    color: var(--lblue);
}
.btn_area li.limited a:hover{
    background-color: var(--dark);
    color: var(--gold);
}

.btn_area li.req a:hover .arrow{
    background: var(--blue);
}
.btn_area li.req a:hover .arrow::before{
    background: var(--light);
}
.btn_area li.req a:hover .arrow::after{
    border-left: 7px solid var(--light);
}
.btn_area li.res a:hover .arrow{
    background: var(--lblue);
}
.btn_area li.res a:hover .arrow::before{
    background: var(--light);
}
.btn_area li.res a:hover .arrow::after{
    border-left: 7px solid var(--light);
}
.btn_area li.limited a:hover .arrow{
    background: var(--gold);
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item.delay01 { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item.delay02 { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item.delay03 { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item.delay04{ transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item.delay05{ transition-delay: 0.5s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

@media screen and (max-width: 1250px){
    .re_header {
    top: 0;
    left: 0;
    width: 100%;
}
.re_header h1 {
    position: relative;
    top: 16px; left: 16px;
}
    .re_header h1 span,
    .header_top_menu,
    .header_right_sub_menu{display: none;}
    .header_right {
    border-radius: 0 0 0 16px;
    padding: 8px 8px;
    top: 0; right: 0;
    }
    .re_header h1 a {
    max-width: 100px;
    width: auto;
    }
    .menu_wrap .nav_img{
        display: none;
    }
    .menu_wrap .nav_txt{
        flex-basis: 100%;
        width: 100%;
    }
    .nav-overlay {
    height: 100%;
    padding: 16% 5% 16%;
    overflow-y: scroll;
}
.nav_list li {
    padding-top: 8%;
}
.nav_list li a span.en {
    font-size: 22px;
    line-height: 1.1;
}
.nav_list li.new::after {
        font-size: 9px;
        line-height: 1;
        top: 28px;
        right: 5%;
        height: 21px;
        padding: 6px 8px;
}
.btn_area ul {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
}
.btn_area {
    margin-top: 16%;
}
}

/*--------------------------------------------------------------------------
   re_footer
---------------------------------------------------------------------------*/

footer.crevia-common .contact dl.tel dd a{
    font-family: "Roboto", sans-serif;
  font-weight: 600;
}
footer.crevia-common .contact dl.tel dd::before {
    background: url(../img/re/tel.svg) 0 0 no-repeat;
    background-size: cover;
        width: 57px;
    height: 34px;
        top: 11px;
}
footer.crevia-common .contact dl.tel dd {
    font-size: 56px;
        padding: 0 0 0 67px;
}
footer.crevia-common .contact dl.tel dt {
    color: var(--dark);
    font-weight: 600;
}

@media screen and (max-width: 768px){
    footer.crevia-common .contact dl.tel dd {
        font-size: 9.6vw;
        padding: 0px 0px 0px 14.6667vw;
    }
        footer.crevia-common .contact dl.tel dd::before {
        width: 12vw;
        height: 7.2vw;
            top: 5px;
    }


}

/*--------------------------------------------------------------------------
   re_common-contents
---------------------------------------------------------------------------*/

.all_contents{
    padding-top: 8%;
    padding-bottom: 8%;
    background-color: var(--light);
}
.all_con_flex{
    display: flex;
    gap: 0 2%;
}
.all_con_ttl{
    flex-basis: 14%;
    max-width: 52px;
}
.all_con_list_wrap ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px 0;
}
.all_con_list_wrap li{
    flex-basis: 24%;
}
.all_con_img{
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}
.all_con_img img{
    height: auto;
  transition: transform .6s ease;
  width: 100%;
}
.all_con_txt_wrap{
    margin-top: 12px;
    display: flex;
    gap: 0 12px;
}
.all_con_txt_wrap .txt{

}
.all_con_txt_wrap .txt .en{
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 1;
}
.all_con_txt_wrap .txt .ja{
    font-size: 10px;
    font-weight: 600;
    display: block;
    line-height: 1;
    padding-top: 6px;
}
.all_con_txt_wrap .arrow{
    background-color: var(--lgray);
    padding: 6px 12px;
    border-radius: 16px;
    width: 40px;
    height: 20px;
    transition: .3s;
    position: relative;

}
.all_con_txt_wrap .arrow:before,
.all_con_txt_wrap .arrow:after {
  position: absolute;
  content: '';
}
.all_con_txt_wrap .arrow:before {
    top: 12px;
    left: 10px;
  width: 15px;
  height: 1px;
  background: var(--dark);
}

.all_con_txt_wrap .arrow:after {
  top: 7px;
    left: 23px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 7px solid var(--dark);
}

.all_con_list_wrap li a:hover .all_con_img img{ transform: scale(1.2);}
.all_con_list_wrap li a:hover .txt .en{color: var(--blue);}
.all_con_list_wrap li a:hover .arrow{background-color: var(--blue);}
.all_con_list_wrap li a:hover .arrow:before{background: var(--light);}
.all_con_list_wrap li a:hover .arrow:after{border-left: 7px solid var(--light);}

@media screen and (max-width: 768px){
    .all_contents{
    padding-top: 16%;
    padding-bottom: 8%;
}
.all_con_flex{
    display: flex;
    gap: 0 4%;
}
.all_con_ttl{
    flex-basis: 32%;
    max-width: auto;
}
.all_con_list_wrap ul{
    display: flex;
    flex-direction: column;
    gap: 24px 0;
}

}
