@charset "utf-8";
/* ==============================
 common
==================================*/
.section__title--jp2{
  font-size: 1.1rem;
  line-height: 2.6rem;
  position: relative;
  padding-left: 1.3em;

}



.section__title--jp2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary--yellow); 
  border-radius: 50%;
}
.section__title--en2{
font-family: Montserrat;
font-size: 2.6rem;
font-weight: 700;
letter-spacing: 1.3px;
}
.section__title2{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}


.common__padding{
padding: 10px 15px;
}
:root{
    ---primary--whiteLow: #F7F5EF;
    ---primary--white: #FCFCFC;
    ---primary--black: #333;
    ---primary--darkBlue: #2A4759;
    --primary--NavyBlue: #1C1C5B;
    --primary--yellow: #FFC700;
    --primary--red: #D84734;
    --primary--skyBlue: #71AABE;
    --contentPadding: 3.8%;
}
html{
    font-size:  62.5%;
}
body {
  
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
      "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
  

        font-optical-sizing: auto;
        font-weight: 400;
        color: var(---primary--black , #333);
}
      .dela-gothic-one-regular {
        font-family: "Dela Gothic One", sans-serif;
        font-weight: 400;
      }
img{
    max-width:  100%;
    height:  auto;
}
.section__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}


.section__title--jp {
  font-size: 1.3rem;
  line-height: 2.6rem;
  position: relative;
  padding-left: 1.3em;
  font-weight: 700;
}

.section__title--jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary--yellow); 
  border-radius: 50%;
}


.section__title--en {
  font-family: Montserrat;
  font-size: 4rem;
  font-weight: 700;
  line-height: 3.6rem;
  letter-spacing: 2.7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.7rem;
  background: var(--primary--NavyBlue);
  width: 220px;
  height: 50px;
  padding: 0 24px; /* 上下左右バランス */
  color: var(---primary--white);
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5; 
  letter-spacing: 2px;
  position: relative;
  transition: 0.4s;
  text-decoration: none;
}

.btn::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 12px;
}
.btn:hover {
  opacity: 0.5;
}


/* common PC */
@media screen and (min-width: 769px) {

  .large{
    margin: 0 auto;
    max-width: 1440px;
    
  }
/* btn */
.btn {
  width: 242px;
  height: 65px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 12px; 
  letter-spacing: 2px;
  } 
/* title */
.section__title--jp{
  font-size: 1.6rem;
  display: block;
  margin-left: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}
.section__title--jp::before {
  width: 21px;
  height: 21px;
  position: absolute;
  left: -13px;
    }
  .section__title--en{
    font-size: 8rem;
    font-weight: 700;
    line-height: 40px; 
    letter-spacing: 3px;
  }
  .section__title{
    gap: 40px;
}
.section__title--en span{
  font-size: 7rem;
}
.section__title2{
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.section__title--jp2{
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 3px;
}
.section__title--en2{
font-size: 3.5rem;
font-weight: 700;
line-height: 39px;
letter-spacing: 3px;
}




}


/* ============================
header
=============================== */
.inner {
  background: none;
  z-index: 100; 
  position: fixed;
  width: 100%;
}

.nav{
  background-color: var(---primary--whiteLow);
}
.magical__logo, .nav__topic{
    background-color: var(--primary--red); 
    width: 93px;
    padding: 6px;
    display: block;
    align-items: center; 
    border-radius: 0 0 20px 0; 
  }

.header__btn, .nav__btn{
    padding: 7px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 20px;
    background-color: var(--primary--NavyBlue);
    position: absolute;
    right: 0;
    top: 0;
  }
  
.header__btn img {
    width: 39px; 
    height: 39px;
  }
/* navの初期表示 */
.nav__top {
    background-color: var(---primary--whiteLow); 
}
.nav{ 
    display: flex;
    flex-direction: column; /* ★上下に並べる */
    width: 100%;
    position:  fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translatex(-100%);
    transition: transform 0.4s;
    height: 100%;
   
}

.nav__item{
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
    line-height: 1.8;
    align-items: center;
    padding: 0.3rem;
    display: flex;
}
.navIcon{
    width: 40px;
    height: 40px;
}
.navText{
    margin-left: 16px;
    margin: 7px;
}


/* .nav.active表示 */
.nav.active{
  transform: translateX(0);
}
.main__btn__item{
  display: none;
}
.newbtn__pc{
  display: none;
  
}
.nav__item__instagram a{
  display: flex;
}
.nav__item :last-of-type{
  margin-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {

.header__btn, .nav__btn{
  width: 80px;
  height: 80px;
}

.magical__logo, .nav__topic{
    width: 140px;
  }

.nav__item {
    font-size: 2.6rem;
}
.navIcon {
    width: 70px;
    height: 70px;
}
.navText {
    margin-left: 45px;
}
}




@media screen and (min-width: 1025px) {
 
  .inner {
    background: none;
    z-index: 110; 
    position: fixed;
    width: 100%;
  }
  .magical__logo {
    width: 159px;
    height: 145px;
    padding: 21px 21px;
    position: absolute;
    top: 0;
    left: 0;
}

  .main__btn__item{
  width: 175px;
  height: 105px;
  border-radius: 0px 0px 0 30px;
  background-color: var(--primary--NavyBlue);
  color: var(---primary--white);
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}

  .nav__header{
    display: none;
}
  .nav{ 
    width: 100%;
    transform: translatex(0);
    padding: 0;
    height: 80px;
}
.nav__category{
  background-color: transparent ;
}
.navText{
  margin: 10px ;
}

.nav__item{
  display: flex;
  margin: 0;
  /* align-items: center; */

}

.nav__list {
  display: flex;
  justify-content: center;
  background-color: var(---primary--whiteLow);
  z-index: 0;
  margin: 2rem 0;
  gap: 1.5rem;
}
.navText .btn--contact {
  display: none;
}
.navIcon{
  display: none;
}
.header__btn{
  display: none;
}
.navIcon--instagram{
  display: block;
  
}



  .newbtn__pc {
    display: flex;
    width: 62px;
    height: auto;
    justify-content: flex-end;
    align-items: flex-start;
    border-radius: 10px 0px 0px 10px;
    background-color: var(--primary--NavyBlue);
    color: var(---primary--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 6px;
    position: fixed;
    align-items: center;
    right: 0;
    bottom: 70px;
    z-index: 100;
    padding: 15px 15px 15px 20px;
    writing-mode: vertical-lr;
}

.navText--instagram{
  margin: 5px 0 5px 14px;;
}

.newbtn__pc {
  display: flex;
  width: 62px;
  height: auto;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 10px 0px 0px 10px;
  background-color: var(--primary--NavyBlue);
  color: var(---primary--white);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 6px;
  position: fixed;
  align-items: center;
  right: 0;
  bottom: 90px;
  z-index: 100;
  padding: 15px 15px 15px 20px;
  writing-mode: vertical-lr;
}
.nav__item__instagram{
  transform: rotate(90deg);
  position: fixed;
  top: 207px;
  right: -35px;
  display: flex;
  align-items: center;
}
.nav__item__instagram a{
  display: inline-flex;
}
}


  /* ============================
Contact
=============================== */
.section--Contact{
  background-color: var(---primary--whiteLow);
  padding: 60px 15px;
  position: relative;
}

.contact__subTitle{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 2.9px;
  margin-top: 30px;
}
.contact__txt{
  font-size: 1.6rem;
  line-height: 31px;
  letter-spacing: 2.6px;
  margin-top: 30px;
}
.contact__btnWrap {
  position: relative;
  display: inline-block; /* ボタン幅に合わせる */
  margin-top: 30px;
}

.btn--contact {
  position: relative;
  z-index: 1;
}

.contact__img {
  
    position: absolute;
    left: 230px;
    bottom: -60px;
    width: 74px;
    height: auto;
}
@media screen and (min-width: 769px){
.section--Contact{
  padding: 120px 60px;
}
.section__title__contact{
  margin: 100px auto;
  width: 406px;
}


.contact__subTitle{
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 38px; 
  letter-spacing: 3.5px;
  margin-top: 80px;
}
.contact__txt{
margin: 30px auto;
text-align: center;
font-size: 1.8rem;
line-height: 37px; 
letter-spacing: 3px;
max-width:  667px;
}
.contact__btnWrap{
  margin-top: 60px;
  align-items: center;
  display: flex;
}
.contact__img{
    position: absolute;
    display: block;
    left: 70%;
    bottom: -120px;
    width: 136px;
    height: auto;
}

}
  /* ============================
footer
=============================== */
.footer{
  padding: 30px 15px;
  background-color: var(--primary--red);
  position: relative;
}
.footer__nav__item a{
  color: var(---primary--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.footer__item{
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
.footer__img img{
  width: 81px;
  height: auto;
}
.footer__logo__txt{
  /* display: flex; */
  color: var(---primary--white);
  font-family: "Dela Gothic One";
  font-size: 2.3rem;
  line-height: 30px; 
  letter-spacing: 5px;
  align-items: center;
  /* margin: 20px auto; */
}
.footer__logoGroup{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
}

.footer__nav__list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 20px auto;
}
.btn--contact{
  display: flex;
  margin: 20px auto;
}
.insta__item{
  display: flex;
  align-items: center;
}
.insta{
  color: var(---primary--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-left: 5px;
}
.insta__item img{
  width: 30px;
  height: 30px;
}
.copyright{
    color: var(---primary--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 12px; 
  text-align: center;
}
.pageTop img {
  top: -43px;
  right: 0px;
  width: 76px;
  position: absolute;
}

.footer__nav__item__instagram{
  display: flex;
  gap: 5px;
  text-align: center;
  align-items: center;
}
.footer__nav__item__instagram img{
  width: 16px;
  height: 16px;
}
.copyright{
  margin-top: 30px;
}
.footer__name{
  display: flex
}



/* footer PC */
@media screen and (min-width: 769px){
.footer{
  padding: 80px 60px;
}
.footer__img img{
  width: 160px;
  height: 148px;
}
/* .footer__logo__txt{
  color: var(---primary--white);
text-align: center;
font-family: "Dela Gothic One";
font-size: 2.8rem;
line-height: 36px; 
letter-spacing: 6px;
display: flex;
height: 62px;
margin-top: 15px; */


.footer__logoGroup{
    width: 362px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer__group1{
    display: flex;
    gap: 1.4vw;
    align-items: center;
    width: 80.8vw;
    justify-content: center;
    }

    
  
 
  .footer__nav__item a{
    color: var(---primary--white);
    font-size: 1.6rem;
    font-weight: 700;
    
    display: block;
  }
.footer__item{
  display: flex;
  gap: 1.4vw;
  margin: 0;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.footer__group2{
  display: flex;
  flex-direction: column;
}
.footer__group{
  display: flex;
  gap: 100px;
}
.footer__nav__list{
  width: 190px;
  margin: 0;
  gap: 40px;
  white-space: nowrap;
}
.footer__nav__list--1{
  gap: 40px;
}
.copyright {
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 1.4rem;

}
/* .footer__name{
  gap: 60px;

} */
}

  


 
   





























  







  
