@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Sawarabi+Mincho&display=swap');

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
#wrapper{
    width:100%;
    overflow-x: hidden !important;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
    color: #000;
}
ul {
    list-style-type: none;
}

a img   { -webkit-transition: all .3s; transition: all .3s;}
a img:hover { opacity: 0.6;  filter: brightness(110%); }

/* 共通セクションタイトル */
.cmn__text {
    margin-top: 25px;
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", serif;
    line-height: 2;
}
.cmn-title-heading {
	font-size: 57px;
    color: #07767F;
    text-transform: uppercase;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}
.cmn-title-heading::after {
    margin-top: 50px;
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #07767F;
}
.cmn-title-heading span {
    display: block;
	color: #07767F;
	font-size: 18px;
    position: absolute;
    top: 140px;
    left: 0;
}
@media (max-width: 1320px) {
    .cmn-title-heading {
        font-size: 35px;
        white-space: nowrap;
    }
    .cmn-title-heading::after {
        margin-top: 5px;
    }
    .cmn-title-heading span {
        top: 55px;
    }
}
@media (max-width: 767px) {
    .cmn-title-heading span {
        font-size: 14px;
    }

}


/* カラー */
.w-color {
    color: #ffc107;
}
.b-color {
    color: #484848;
}
.btn-color {
    color: #030303;
}
header a {
    color: #000;
}

/* ヘッダー */
.header-container {
    max-width: 1920px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 43px;
    padding-left: 25px;
}
.header-logo {
    max-width: 140px;
    width: 100%;
}

/*ハンバーガーメニューを開いた時のメニュー*/
.menu-btn {
    position: fixed;
    top: 18px;
    right: 18px;
    display: flex;
    height: 35px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 0.25rem;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #707070;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn {
    border: none;
    top: 47px;
    right: 30px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #FFFFFF;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #FFFFFF;
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #07767F;
}
.menu-content ul {
    padding: 117px 21px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 23px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    position: relative;
    text-align: left;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #07767F;
    transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;
    overflow: scroll;
}
.hamburger-menu-title {
    font-size: 35px;
    position: absolute;
    top: 40px;
    left: 25px;
}
  

/* ファーストビュースライダー */
.slick-img {
    position: relative;
}
.fv .slick-list{
    height: calc(100vh - 60px);
}
.slick-img p {
    font-family :'Noto Serif JP',serif;
    color: #484848;
    position: absolute;
    top: 30vh;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    font-size: 120px;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
}
.fv-slider .slick-img img {
    height: 1050px;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1320px) {
    .slick-img p {
      font-size: 50px;
      top: 40vh;
    }
  }

@media (max-width: 767px) {
    .slick-img p {
      font-size: 36px;
      top: 37vh;
    }
    .fv-slider .slick-img img {
        height: 760px;
    }
}
.fv-text-1,
.fv-text-2,
.fv-text-3{
    color: white!important;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.98);
}

.fv .slick-dots li{
    width: 35px;
}

.fv .slick-dots li button:before {
    display: block;
    content: "";
    background-color: #333;
    height: 4px;
    width: 30px;
}

.fv .slick-dots{
    bottom: -40px;
}

/* 商品スライダー */
.lineup-item {
    text-align: center;
}
.lineup-img {

}
.lineup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-prev {
    z-index: 1;
    color: #707070 !important;
    background: transparent !important;
    right: 55px !important;
    top: -50px !important;
    left: auto !important;
}
.slick-next {
    right: 50px;
    z-index: 1;
    color: #707070 !important;
    background: transparent !important;
    top: -50px !important;
    right: 38px !important;
}
.slick-prev:before {
    font-family: "Font Awesome 5 Free" !important;
    content: "\f0d9" !important;
    font-weight: 900;
    background-color: #fff;
    color: #707070 !important;
    font-size: 30px !important;
}
.slick-next:before {
    font-family: "Font Awesome 5 Free" !important;
    content: "\f0da" !important;
    font-weight: 900;
    background-color: #fff;
    color: #707070 !important;
    font-size: 30px !important;
}
.slide-arrow {
    background-color: #333;
    bottom: 0;
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 0;
}
.prev-arrow {
    border-bottom: 10px solid #333;
    border-left: 0;
    border-right: 10px solid #333;
    border-top: 10px solid #333;
    left: -25px;
}
.next-arrow {
    border-bottom: 10px solid #333;
    border-left: 10px solid #333;
    border-right: 0;
    border-top: 10px solid #333;
    right: -25px;
}
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
}
.slick-prev,
.slick-next {
    display: none !important;
}
.slick-dots {
    left: 0;
}
@media (max-width: 767px) {
    .slick-prev,
    .slick-next {
        display: block !important;
    }
    .lineup-body {
        margin-top: 2vw !important;
    }
    .lineup-body p {
        font-size: 14px !important;
    }
}

/* 会員ログイン */
.login {
    background-color: #FDEDD8;
}
.key:before {
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f502";
    font-weight: 900;
 }
.login-container {
    margin-right: auto;
    margin-left: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 1320px;
    width: 100%;
    background-color: #fff;
}
.login-title {
    color: #E39000;
}
.login-container p br {
    display: none;
}
@media (max-width: 767px) {
    .login {
        background-color:#fff;
    }
    .login-container {
        width: 80%;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 20px !important;
        padding-bottom: 5px !important;
    }
    .login-title {
        margin-top: 0 !important; 
    }
    .login-container p {
        margin-bottom: 0 !important;
        font-size: 11px;
    }
    .login-container p br {
        display: block;
    }
    .login-container span {
        font-size: 21px;
    }
    .login-container .btn {
        padding: 10px !important;
    }
}

/* ABOUT US */
.build:before {
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f1ad";
    font-weight: 900;
}
.atom:before {
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f46b";
    font-weight: 900;
}
.about {
    background-image: url(img/about-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 80vh;
}
.about-inner {
    position: relative;
}
.about-img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.about-container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    width: 85%;
    background-color: #fff;
    position: absolute;
    top: 330px;
    right: 0;
    display: flex;
}
.about-title {
    width: 20%;
}
.about-body {
    margin-left: 20px;
    width: 50%;
    color: #07767F;
}
.about-heading {
    font-size: 39px;
}
.about-text {
    font-size: 20px;
}
.about-body span {
        font-size: 20px;
    }
@media (max-width: 1499px) {
    .about {
        height: 60vh;
    }
    .about-container {
        top: 10vh;
    }
    .about-title {
        width: 30%;
    }
    .about-body {
      width: 70%;
    }
    .about-body span {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .about-title {
        width: 100%;
        margin: 0 !important;
    }
    .about-container {
        display: block;
        padding-top: 17px !important;
        padding-right: 25px !important;
        padding-left: 25px !important;
        width: 100%;
        top: 50vw;
    }
    .about-body {
        margin-top: 50px;
        margin-left: 0;
        width: 100%;
    }
    .about-heading {
        font-size: 17px;
    }
    .about-text {
        margin-top: 25px !important;
        font-size: 1rem;
    }
    .about-row {
        margin-top: 0 !important;
        margin-bottom: 22px !important;
    }
}


/* メイクアウィッシュ */
.heart:before {
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f004";
    font-weight: 900;
}
.wish {
    background-color: #FDEDD8;
    padding-top: 30vw;
    padding-bottom: 100px;
}
.wish-inner {
    background-image: url(img/H-3-min.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
}
.wish-text {
    margin-top: 100px;
}
.wish-btn {
    margin-left: auto;
}
#yt16x9-2 {
    width:895px;
}
.youtube{
    margin-top: 50vh;
}
.container-bottom{
    padding-bottom: 60vh;
}

@media (max-width: 1499px) {
    .wish-btn {
        width: 100%;
    }
    #yt16x9-2 {
        width:500px;
    }
    .container-bottom{
        padding-bottom: 40vh;
    }
    .wish {
        padding-top: 30vw;
    }
}
@media (max-width: 991px) {
    .wish {
        padding-top: 40vw;
    }
    .youtube{
        margin-top: 30vh;
    }
    .container-bottom{
        padding-bottom: 20vh;
    }
}
@media (max-width: 767px) {
    #yt16x9-2 {
        width:100%;
    }
    .wish {
        padding-top: 40vh !important;
    }
    .youtube{
        margin-top: 10vh;
    }
    .wish-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .wish-btn {
        margin: 0px !important;
        margin-top: 24px !important;
    } 
    .wish-btn span {
        font-size: 13px;
    }
    .wish-btn .btn {
        margin: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .container-bottom{
        padding-bottom: 20vh;
    }
}

/* フッター */
footer {
    background-color: #06767D;
}
.footer-logo {
    max-width: 208px;
    width: 100%;
}
.footer-nav a {
    color: #FFFFFF;
    font-size: 20px;
}
.footer-nav ul {
    list-style-type: square;
    color: #FFFFFF;
}
.footer-nav li {
    margin-bottom: 5px;
}
.col-md-15 {
    position: relative;
    min-height: 1px;
}
.col-md-15 {
    width: 20%;
    float: left;
}
.copy-light {
    font-size: 20px;
}
@media (max-width: 767px) {
    .footer-inner {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .copy-light {
        font-size: 10px;
    }
    .footer-logo {
        max-width: 165px;
    }
}

.bg-wish-green{
    background-color: #06767D;
}
.bg-about{
    background-image: url(img/about-img.png);
}
.bg-privacy{
    background-image: url(img/privacy/mainv.jpg);
}
.bg-compliance{
    background-image: url(img/compliance/mainv.jpg);
}
.bg-specific-trade-law{
    background-image: url(img/specific-trade-law/mainv.jpg);
}
.bg-makeawish{
    background-image: url(img/H-3-min.jpg);
}
.bg-reborn-plus{
    background-image: url(img/H-2.jpg);
}.bg-member{
    background-image: url(img/member/member-bg.jpg);
}
.eyecatch{
    background-size: cover;
    background-position: center;
    background-color:rgba(255,255,255,0.75);
    background-blend-mode:lighten;
    height: 284px;
    margin-top: 68px;
}

.text-justify{
    text-align: justify;
    text-align-last: justify;
}
@media (max-width: 991px) {
    .text-justify{
        text-align: left;
        text-align-last: left;
    }
}

.list-style-dot{
    list-style: initial;
}


@media (min-width: 992px) {
    /* CUSTOM WIDTHS */
    .w-lg-10 { width: 10%!important; }
    .w-lg-15 { width: 15%!important; }
    .w-lg-25 { width: 25%!important; }
}

.wish-color{
    color: #07767F;
}

.scroll{
    overflow: scroll;
    height: 300px;
}

iframe{
    width: 100%;
    height: 300px;
}

li.slick-active p.fv-text-1,
li.slick-active p.fv-text-2,
li.slick-active p.fv-text-3 {
    animation: fadeIn .5s ease 2s 1 normal backwards;
}

@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}

p {
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
}
.img-cover{
    object-fit: cover;
    height: 40vw;
}
.slick-dotted.slick-slider{
    padding:0;
}

.small_img{
    width: 12.5%;
}
@media (max-width: 767px) {
    .small_img{
        width: 23.0%;
    }
}
.login2{
    background-color:rgba(7,118,127,.2);
}
.login2-title{
    color:rgb(7,118,127);
}