@charset "utf-8";

/* header */
header {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 99;    
}

header .container {
    align-items: center;
    max-width: unset;
    width: 100%;
}

header .logo {
    line-height: 1;
    position: relative;
}

header .menu {
    font-family: 'Comfortaa', sans-serif;
}

header .menu ul {
    gap: 2.8vw;
    align-items: center;
}

header .menu ul li a {
    position: relative;
    transition: 0.3s;
}

header .menu ul li a::after {
    content: ''; 
    position: absolute; 
    background: #000; 
    width: 0; 
    height: 3px; 
    left: 50%; 
    bottom: -5px; 
    transform: translateX(-50%); 
    transition: .3s;
}

header .menu ul li .ic::after {
    display: none;
}

header .menu ul li .ic:hover {
    opacity: 0.8;
}

header .menu ul li a:hover::after,
header .menu ul li a.is-active::after {
    width: 100%;
}

header .btnMenu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

header .btnMenu span {
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    transition: all 0.2s;
}

header .btnMenu span:nth-of-type(1) {
    top: 0;
}

header .btnMenu span:nth-of-type(2) {
    top: 10px;
}

header .btnMenu span:nth-of-type(3) {
    top: 20px;
}

header .btnMenu.is-open span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
}

header .btnMenu.is-open span:nth-of-type(2) {
    opacity: 0;
}

header .btnMenu.is-open span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
}

@media (max-width: 1200px) {
    header .menu ul {
        gap: 2vw;
    }
}

@media (max-width: 1000px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 10px;
        background: #fff;
    }

    header > .container {
        height: 100%;
    }

    header .logo img {
        width: 180px;
    }

    header .btnMenu {
        display: block;
    }

    header .menu {
        display: none;
        width: 100%;
        height: 100vh;
        padding-top: 60px;
        transition: 0.3s;
    }

    header .menu ul {
        transition: 0.3s;
        transform: translateX(-100%);
        gap: 20px;
    }

    header .menu ul li {
        width: 100%;
        text-align: center;
    }

    header .menu ul li a {
        display: inline-block;
        font-size: 16px;
    }

    header .menu ul li a:hover::after, 
    header .menu ul li a.is-active::after {
        bottom: -1px;
    }
    
    header .menu ul li a::after {
        height: 2px;
    }

    header.is-open .menu {
        display: block;
        width: 100%;
        height: 100vh;
    }

    header.is-open .menu ul {
        transform: translateX(0);
    }

}






/* footer */
footer {
    padding: 10rem 0;
    background: #fff;
    text-align: center;
}

footer .fMenu {
    justify-content: center;
    gap: 6rem;
}

footer .fMenu a {
    position: relative;
    transition: 0.3s;
}

footer .fMenu a::after {
    content: ''; 
    position: absolute; 
    background: #000; 
    width: 0; 
    height: 3px; 
    left: 50%; 
    bottom: -5px; 
    transform: translateX(-50%); 
    transition: .3s;
}

footer .fMenu a:hover::after,
footer .fMenu a.is-active::after {
    width: 100%;
}

footer .fLogo {
    max-width: 236px;
    margin: 8rem auto 4rem;
    width: 100%;
}

footer .fLogo a {
    transition: all 0.2s;
}

footer .fLogo a:hover {
    opacity: 0.8;
}


footer .fPrivacy {
    font-size: 1.2rem;
    margin: 0 0 2rem;
    justify-content: center;
    align-items: center;
    gap: 30px;
    line-height: 1;
}

footer .fPrivacy a {
    text-decoration: underline;
}

footer .fPrivacy a:hover {
    text-decoration: none;
    opacity: 0.8;
}

footer .copyR {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    footer {
        padding: 0 0 12rem;
    }

    footer .container {
        width: 100%;
    }

    footer .fMenu {
        gap: 0;
        display: none;
    }

    footer .fMenu li {
        width: 50%;
        border-bottom: 1px solid #ccc;
    }

    footer .fMenu li:nth-child(2n) {
        border-left: 1px solid #ccc;
    }

    footer .fMenu li:nth-child(1),
    footer .fMenu li:nth-child(2) {
        border-top: 1px solid #ccc;
    }


    footer .fMenu li a {
        display: block;
        background: #f0f0f0;
        padding: 10px;
    }

    footer .fMenu a:hover::after, 
    footer .fMenu a.is-active::after {
        display: none;
    }

    footer .fLogo {
        margin: 4rem auto;
    }

    footer .fPrivacy {
        gap: 15px;
    }
}





/* breadcrumb */
.breadcrumb {
    margin-top: 2rem;
    font-size: 0;
}

.breadcrumb li {
    display: inline-block;
    font-size: 1.6rem;
}

.breadcrumb li::after {
    content: '＞';
    display: inline;
    margin: 0 10px;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li a {
    text-decoration: underline;
    transition: 0.3s;
}

.breadcrumb li a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .breadcrumb li a {
        font-size: 1.4rem;
    }

    .breadcrumb li::after {
        font-size: 1.4rem;
    }
}






/* floatBtn */
.floatBtn {
    position: fixed;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    gap: 10px;
    transition: all 0.3s;
}

.floatBtn a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    width: 240px;
    height: 50px;
    position: relative;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    gap: 10px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.floatBtn a span::after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/common/arrow-right-long-white.svg) no-repeat top left / 100% 100%;
    margin-left: 5px;
    transition: 0.3s;
}

.floatBtn a:hover {
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.3); 
    transform: translateY(-5px);
}

.floatBtn .btn01 {
    background: #000;
    gap: 15px;
}

.floatBtn .btn02 {
    background: #c81250;
}

@media (max-width: 768px) {
    .floatBtn {
        gap: 0;
        width: 100%;
        left: 0;
        right: auto;
        bottom: 10px;
        padding: 0 10px;
    }

    .floatBtn a {
        width: 49%;
        padding: 5px 3px;
    }

    .floatBtn a span {
        display: block;
        width: 100%;
        font-size: min(3.8vw, 1.6rem);
    }

    .floatBtn a img {
        display: block;
        margin: 0 auto;
        width: auto;
        height: 30px;
    }
}






/* button hover */
.c-btn {
  background: #fff;
  color: #000;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  z-index: 1;
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50px;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}

.c-btn i {
    display: block;
    width: 25px;
    height: 25px;
    background: url(../img/common/arrow-right-long.svg) no-repeat center center / 100% 100%;
}

.c-btn::after {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  transform: skewY(-10deg) scale(1, 0);
  height: 140px;
}



@media (min-width: 769px) {
    .c-btn:hover {
      color: #fff;
  }

  .c-btn:hover i {
      color: #fff;
      background-image: url(../img/common/arrow-right-long-white.svg);
  }

  .c-btn:hover::after {
      transform: scale(1, 1);
      transform: skewY(-10deg) scale(1, 1);
  }
}



/* black */
.c-btn.black {
    background: #000;
    color: #fff;
}

.c-btn.black::after {
    background: #fff;
}

.c-btn.black i {
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../img/common/arrow-right-long-white.svg);
}

@media (min-width: 769px) {
    .c-btn.black:hover {
      color: #000;
      border-color: #000;
  }

  .c-btn.black:hover i {
      color: #000;
      background-image: url(../img/common/arrow-right-long.svg);
  }
}

@media (max-width: 768px) {
    .c-btn {
        font-size: min(4vw, 1.6rem);
        height: 40px !important;
    }

    .c-btn i {
        background-size: 15px auto;
    }
}
/* end button hover */




/* pagination */
.pagination {
    width: 100%;
    margin: 6rem auto;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    color: #000;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    border: 1px solid #000;
}

.pagination a:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(71, 157, 99, 0.2);
}

.pagination a.is-active,
.pagination a.is-active:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    pointer-events: none;
    cursor: default;
}

.pagination a.pageNext,
.pagination a.pagePrev {
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Noto Serif JP', sans-serif;
    
}

@media (max-width: 768px) {
    .pagination {
        margin: 2rem 0 4rem;
    }

    .pagination a {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

/* end pagination */





/* common */
/* Edge */
::-webkit-input-placeholder {
    color: #a8a8a8;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.6rem;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
    color: #a8a8a8;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.6rem;
}

::placeholder {
    color: #a8a8a8;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.6rem;
}


select,
textarea,
input[type="email"],
input[type="text"] {
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.6rem;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml,<svg height='15px' width='15px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
    background-position: calc(100% - 0.75rem) center;
}

main {
    padding-top: 97px;
    position: relative;
}

main .lineSvg {
    z-index: -1;
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
}

main .lineSvg svg {
    width: 100%;
}

main .lineSvg.fade-in {
    transition: opacity 1.5s ease 1.5s;
}

figure {
    overflow: hidden;
}

.contents {
  padding: 8rem 0;
}

.container {
    width: calc(100% - 50px);
    max-width: 1200px;
    margin: 0 auto;
}

.flexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.en {
    font-family: 'Comfortaa', sans-serif;
    letter-spacing: 0.06em;
}

.center {
    text-align: center;
}

.cmTxt {
    line-height: 2;
}

.cmTxtTop {
    font-size: 2rem;
    text-align: center;
    line-height: 2;
    margin: 0 0 6rem;
}

.titEnJp {
    text-align: center;
    margin: 0 0 6rem;
    position: relative;
}

.titEnJp::before {
    content: '';
    width: 45px;
    height: 18px;
    background: url(../img/common/ic_h2.svg) no-repeat top left / 100% 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: min(3rem, 5rem);
}

.titEnJp span {
    display: block;
}

.titEnJp .en {
    font-size: 6rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 2rem;
}

.titEnJp .jp {
    font-size: 1.8rem;
    font-weight: 400;
}

.btnBack {
    max-width: 410px;
}

@media (max-width: 768px) {
    main {
        padding-top: 58px;
    }

    main .lineSvg {
        top: 96px;
    }

    .contents {
        padding: 4rem 0;
    }

    .titEnJp {
        margin-bottom: 3rem;
    }

    .titEnJp .en {
        font-size: min(8vw, 6rem);
        margin-bottom: 1rem;
    }

    .titEnJp .jp {
        font-size: min(3.5vw, 1.8rem);
    }

    .cmTxtTop {
        font-size: min(4vw, 2rem);
        line-height: 1.6;
        margin-bottom: 4rem;
    }

    .btnBack {
        margin: 4rem auto 0;
    }
}

/* relate slider sp */
@media screen and (max-width: 768px) {

    .relateSliderSp .slick-dots {
        margin-top: 0;
    }

    .relateSliderSp .slick-arrow {
        top: 35px;
    }

    .relateSliderSp .slick-next {
        right: calc(50% - 670px);
    }

    .relateSliderSp .slick-prev {
        left: calc(50% - 670px);
    }

    .relateSliderSp .slick-slide {
        width: 50vw;
        margin: 0 3vw;
        overflow: hidden;
    }

    .relateSliderSp .slick-slide img {
        width: 100%;
    }

    .relateSliderSp .slick-arrow {
        top: calc(11.75vw - 18px);
    }

    .relateSliderSp .slick-next {
        right: calc(15vw - 40px);
    }

    .relateSliderSp .slick-prev {
        left: calc(15vw - 40px);
    }
}

/* item tags */
.itemTags {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.itemTags li {
    display: inline-block;
    margin: 0 1rem 1rem 0;    
}

.itemTags li a {
    text-decoration: underline;
}
.itemTags li a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .itemTags {
        margin-top: 0.5rem;
        font-size: min(3.5vw, 1.4rem);
    }
    
    .itemTags li {
        margin: 0 0.5rem 0.5rem 0;
    }
}
/* end item tags */








/* Cookies Popup */
.cookiesPopup {
    display: none;

    
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    font-size: 1.6rem;
    line-height: 1.7;
    padding: 15px 20px 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.16);
}

.cookiesPopupTxt {
    width: calc(100% - 440px);
}

.cookiesPopupTxt a {
    text-decoration: underline;
}

.cookiesPopupTxt a:hover {
    color: #1F5F87;
}

.cookiesPopupBtn {
    width: 420px;    
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.cookiesPopupBtn a {
    width: 100%;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    border-radius: 30px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.cookiesPopupBtn a:hover {
    background: #fff;
    color: #000;
}

.cookiesPopupBtn #agree_ok {
    max-width: 170px;
}

.cookiesPopupBtn .btnPrivacy {
    background: #fff;
    color: #000;
}

.cookiesPopupBtn .btnPrivacy::after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/common/arrow-right-long.svg) no-repeat top left / 100% 100%;
    margin-left: 5px;
    transition: 0.3s;
}

.cookiesPopupBtn .btnPrivacy:hover {
    background: #000;
    color: #fff;
}

.cookiesPopupBtn .btnPrivacy:hover::after {
    background-image: url(../img/common/arrow-right-long-white.svg);
}

@media screen and (max-width: 1000px) {
    .cookiesPopup {
        padding: 15px 20px;
        font-size: 1.4rem;
    }

    .cookiesPopupTxt {
        width: 100%;
    }

    .cookiesPopupBtn {
        margin: 15px auto 0;
    }

    .cookiesPopupBtn a {
        font-size: min(3.5vw, 1.6rem);
        height: min(10vw, 48px);
    }

    .cookiesPopupBtn a:after {
        margin-left: 6px;
    }

    .cookiesPopupBtn #agree_ok {
        max-width: 100px;
    }
}
/* End Cookies Popup */