@charset "UTF-8";
/*===============
common
=========*/

:root{
    --primary-black:  #252324;  /*engraveタイトル*/
    --primary-lightblack: #4C484B;  /*全般黒*/
    --plan-price-txt-black: #7C767A;
    --plan-price-back-begu: #EFE7DD;
    --plan-title-gray: #968F93;
    --Pointstonote-txt: #B59371;
    --primary-white: #ffffff;

}

html{
    font-size: 62.5%;
}





body{
    font-family: "cormorant garamond", "noto serif jp", "Zen Kaku Gothic New";
    font-style: normal;
    color: var(--primary-lightblack);
    background-color: var(--primary-white);
    line-height: 1.0;
}

img{
    max-width: 100%;
    height: auto;
}



/*------
header
--------*/


.header-flex {
    display: flex;
    align-items: center;
}

.header-insta {
    width: 22px;
}

.header-insta-txt {
    font-size: 20px;
    margin-left: 5px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin:16px 24px 0px 24px;
}

.header-fixd {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
}

.menu {
    display: grid;
    place-items: end center;
}
.header-menu-flex{
    cursor: pointer;
    
}


.header-menu-flex:hover .menu-icon-open {
    opacity: 0;
}

.header-menu-flex:hover .menu-icon-close {
    opacity: 1;
}

.menu-icon-open {
    grid-area: 1 / 1;
    width: 37px;
}

.menu-icon-close {
    grid-area: 1/ 1;
    opacity: 0;
    width: 37px;
}

.head-camera-txt {
    font-size: 16px;
    margin-top: 5px;
}

.header-title {
    font-size: 75px;
    color: #252324;
    letter-spacing: 5.5px;
    margin-top: -160px;
    position: absolute;
    z-index: 3;
}

.title-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 10%;
    z-index: 3;
}

/*----------
ぼんやりアニメーション
-------*/
.header-title {
  opacity: 0;
  animation: fadeIn 7s forwards;

}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



.scrowll-txt{
    font-size: 15.5px;
    margin-left: 12px;
    margin-bottom: -6px;
}
.scrowll-img{
    width: 114px;
    
}


.scrowll-box{
    transform: rotate(90deg);
    position: absolute;
    right: -20px;
    bottom: 70px;
}

/*-----
↓動き
-------*/
.scrowll-txt,
.scrowll-img{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}


.keyframe0{
  animation-name: anim_v;
}

@keyframes anim_v {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(30px, 0);
  }
}


@media screen and (max-width:769px) {
   
.header-top{
    margin: 10px 11px 0 11px;
}    

.header-insta{
    width: 23px;
}
.header-insta-txt{
    font-size: 15px;
}
.menu-icon-open{
    width: 33px;
}
.head-camera-txt{
    font-size: 15px;
}
.header-title{
    font-size: 80px;
}
.scrowll-box{
    right: -35px;
}

}







/*-----------
ナビゲーション
-----*/

.nav{
    background-color: #EBE4DC;
    width: 28.2%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px 2% 23px 2% ;
    z-index: 100;
    transform: translateY(-130%);
    transition: transform 0.4s;
}
.nav.active{
    transform: translateY(0);
    width: 28.2%;
}
.nav-close {
    display: grid;
    place-items: center;
}

.nav-close-icon {
    width: 33px;
}
.nav-all{
    position: absolute;
    right: 7%;
}
.nav-close-txt{
    font-size: 15px;
}

.nav-item-all{
    margin-top: 82px;
}
.nav-item{
    font-size: 15px;
    margin-bottom: 35px;
    letter-spacing: 0.75px;
    color: #4C484B;
}

.nav-sns{
    display: flex;
    align-items: center;
    margin-top: 26px;
    margin-left: 20px;
}
.nav-insta{
    width: 28px;
}
.nav-youtube{
    width: 68px;
    margin-left: 12px;
}

.nav-irai{
    margin-top: 20px;
    background-color: #4C484B;
    border-radius: 10px;
    width: 150px;
    height: 30px;
    margin-left: 20px;
    display: flex;
    align-items:center;
    padding: 6px 12px;
}
.nav-irai-img{
    width: 22px;
    height: 2px;
    margin-left: 3px;
    margin-top: -15px;
}
.nav-irai-txt{
    color: #ffffff;
    font-size: 14px;
}

    .nav{
        width: 100%;
    }
    
    /*ナビゲーションマップSP*/
    
    @media screen and (max-width:769px){
    .nav-item-all{
        margin-left: 15px;
    }
    .nav-all{
        right: 15px;
        top: 10px;
    }
    .nav.active{
        padding: 0;
        width: 100%;
    }
    .nav-item{
        margin-bottom: 25px;
    }
    .nav-bar{
        width: 90%;
        margin-left: 15px;
    }
}










/*------------
スライドショ    
-----------*/

.gallery-sp{
    display: none;
}
img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}


.gallery {
  display: flex;
  gap: 3px;
  height: 100vh;
  overflow: clip;
  position: relative;
  z-index: 2;
}

.gallery_block {
  width: calc(100% / 3);
}

.gallery_item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-block-start: 3px;
  white-space: nowrap;
  animation-timing-function: linear; /* アニメーションのイージング(linearは常に同じスピードでアニメーション数r) */
  animation-iteration-count: infinite; /* アニメーションの繰り返し回数(infiniteは無限) */
  animation-direction: normal; /* アニメーションの方向(下で設定しているようにreverseにすると逆再生する) */
  animation-play-state: running; /* アニメーションの状態(再生or停止) */
}

.gallery_item:nth-of-type(1) {
  animation-name: gallery-y-01;
  animation-duration: 60s; /* アニメーションの時間 */
  animation-delay: -30s; /* アニメーションの遅延（ここは↑のanimation-durationの-半分を必ず設定する） */
}

.gallery_item:nth-of-type(2) {
  animation-name: gallery-y-02;
  animation-duration: 60s; /* アニメーションの時間 */
}

.gallery_item.-reverse {
  animation-direction: reverse;  /* アニメーションの方向(逆再生にする) */
}

@keyframes gallery-y-01 {
  0% {
    translate: 0% 100%;
  }

  100% {
    translate: 0% -100%;
  }
}

@keyframes gallery-y-02 {
  0% {
    translate: 0% 0%;
  }

  100% {
    translate: 0% -200%;
  }
}

@media screen and (max-width:769px){
    .gallery-sp{
        display: block;
    }
    .gallery{
        display: none;
    }
    .gallery-sp {
  display: flex;
  gap: 3px;
  height: 80vh;
  overflow: clip;
  position: relative;
  z-index: 2;
}

.gallery_block-sp {
  width: calc(100% / 2);
}

.gallery_item-sp {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-block-start: 3px;
  white-space: nowrap;
  animation-timing-function: linear; /* アニメーションのイージング(linearは常に同じスピードでアニメーション数r) */
  animation-iteration-count: infinite; /* アニメーションの繰り返し回数(infiniteは無限) */
  animation-direction: normal; /* アニメーションの方向(下で設定しているようにreverseにすると逆再生する) */
  animation-play-state: running; /* アニメーションの状態(再生or停止) */
}

.gallery_item-sp:nth-of-type(1) {
  animation-name: gallery-y-01;
  animation-duration: 80s; /* アニメーションの時間 */
  animation-delay: -40s; /* アニメーションの遅延（ここは↑のanimation-durationの-半分を必ず設定する） */
}

.gallery_item-sp:nth-of-type(2) {
  animation-name: gallery-y-02;
  animation-duration: 80s; /* アニメーションの時間 */
}

.gallery_item-sp.-reverse {
  animation-direction: reverse;  /* アニメーションの方向(逆再生にする) */
}

@keyframes gallery-sp-y-01 {
  0% {
    translate: 0% 100%;
  }

  100% {
    translate: 0% -100%;
  }
}

@keyframes gallery-sp-y-02 {
  0% {
    translate: 0% 0%;
  }

  100% {
    translate: 0% -200%;
  }
}
}

-----------------------------------------------------------------------


.top-img-sp{
    display: none;
}

.top-img{
    display: flex;
    justify-content: center;
    gap: 2px;
}

.top-img-1,
.top-img-2,
.top-img-3{
    width: 32%;
}

.top-img-1 img,
.top-img-2 img,
.top-img-3 img{
    margin-top: 2px;
}


.top-img-last-txt{
    font-size: 16px;
    letter-spacing: 1.8px;
    color: #252324;
    margin-top: -210px;
    margin-left: -5px;
    
    
}

.last-txt-box{
     display: flex;
  justify-content: center; 
  align-items: center;    
  height: 100vh;   
  margin-top: 200px;      
}


.section-Consept{
    margin: 50px 8.5% 0 8.5%;
}

.consept-wave-box{
    display: flex;
    align-items: center;
}

.Consept-ja{
    font-size: 13px;
    letter-spacing: 0.65;
}
.Consept-en{
    font-size: 96px;
    margin-top: 9px;
}
.consept-topic{
    margin-top: 118px;
    margin-left: 100px;
}
.consept-topic-txt{
    font-size: 40px;
    line-height: 1.6;
    letter-spacing: 10px;  
}
.consept-topic-img{
    width: 268px;
}
.consept-txt{
    margin-top: 11px;
    margin-left: 45%;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 2;
}
.consept-txt-2{
    margin-top: 30px;
}


/* コンセプトSP*/

@media screen and (max-width:769px){
  
  .section-Consept{
    margin: 0px 5% 0 5%;
  }
  
    .Consept-ja{
    font-size: 10px;
  }  
  .Consept-en{
    font-size: 48px;
    margin-top: 5px;
  }
  .consept-topic-txt{
    font-size: 24px;
    letter-spacing: 6px;
  }
  .consept-topic-img{
    width: 220px;
  }
  .consept-topic{
    margin-top: 95px;
    margin-left: 13%;
  }
  .consept-txt{
    margin-left: 13%;
    margin-top: 75px;
  }
}


/*----------
プラン
------*/

.section--plan{
    margin: 0 5% 0 5%;
}

.back-graund-img-all{
    margin-top: 260px;
    background-image: url("../images/plan-back.png");
    background-size: cover;
    padding-bottom: 170px;
}
.plantitle{
    padding-top: 232px;
    text-align: center;
}
.plantitle-en{
    font-size: 24px;
    color: #968F93;
}
.plantitle-ja{
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 164px;
}
.plan-set{
    display: flex;
    align-items: start;
    margin-bottom: 95px;
}
.plan-img{
    width: 45.5%;
}
.plan-tex{
    margin-left: 4.1%;
}
.plan-title-en{
    font-size: 38px;
    color: #504C4F;
}
.plan-title-ja{
    font-size: 24px;
    font-weight: 500;
    color: #504C4F;
}
.plan-price{
    display: flex;
    align-items: flex-end;
    margin-top: 14px;
}
.plan-price-en{
    font-size: 17px;
    font-family: "noto serif jp";
    color: #7C767A;
     background-color: #EFE7DD;
    padding: 13px 0px 7px 8px;
}
.plan-price-number{
    font-size: 27px;
    color: #7C767A;
     background-color: #EFE7DD;
    padding: 4px 8px 6px 2px;
    font-family: "noto serif jp";
}
.plan-txt{
    margin-top: 12px;
    line-height: 2;
    font-size: 15px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    letter-spacing: 0.45;
}
.plan-set-item{
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: #504C4F;
}
.plan-item-title{
    font-size: 15px;
    font-weight: 500;
}
.plan-item{
    margin-left: 17px;
    display: flex;
    flex-wrap: wrap;
    width: 70%;
}
.plan-item-txt{
    font-size: 15px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    line-height: 1;
    background-color: #ffffff;
    border: solid 0.5px #D5D5D5;
    padding: 4px 11px 4px 11px;
    margin-right: 8px;
    margin-bottom: 8px;
}
.plan-item-txt2{
    margin-bottom: 8px;
}
.plan-line{
    margin-bottom: 95px;
}
.plan-img-undert{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.85;
    margin-top: 10px;
}

.plan-set-pv{
    margin-top: -25px;
}
.plan-pv-line{
    margin-left: 75px;
    height: 139px;
}
.plan-pv-txt-set{
    margin-left: 60px;
}
.plan-pv-txt-1,
.plan-pv-txt-2{
    font-size: 16px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    line-height: 1.87;
    letter-spacing: 0.8px;
}

/*プランSP*/

@media screen and (max-width:769px){
    .back-graund-img-all{
        margin-top: 200px;
        padding-bottom: 130px;
        background-image: url(../images/plan-back-sp.png);
    }
    .plantitle{
        padding-top: 130px;
    }
    .plantitle-en{
        font-size: 16px;
    }
    .plantitle-ja{
        font-size: 24px;
        margin-top: 5px;
        margin-bottom: 80px;
    }
    .plan-set{
        display: block;
    }
    .plan-img{
        width: 100%;
    }
    .plan-tex{
        margin-top: 25px;
        margin-left: 0;
    }
    .plan-set-item{
        align-items: flex-start;
    }
    .plan-item-title{
        margin-top: 6px;
        font-weight: 600;
    }
    .plan-set{
        margin-bottom: 0;
    }
    .plan-line{
        margin: 55px 0 60px 0;
    }
    .plan-img-undert{
        margin-top: 22px;
    }
    .plan-pv-line{
        display: none;
    }
    .plan-pv-txt-set{
        margin-left: 0;
        margin-top: 15px;
    }
    .plan-pv-txt-2{
        margin-top: 30px;
    }
}





/*-------
オプション
-------*/

.section-option{
    margin-top: 220px;
}

.option-title-ja{
    display: flex;
}
.option-title-ja-txt{
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 300;
    margin-left: 7.8%;

}

.option-title-en{
    font-size: 80px;
    margin-top: 10px;
    margin-left: 7.8%;
}
.option-title{
    display: flex;
    align-items: flex-end;
}
.option-explanation{
    margin-bottom: 10px;
    margin-left: 40px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.option-item-title-en{
    font-size: 24px;
    font-weight: 500;
   
}
.option-item-title-jp{
    font-size: 20px;
    font-weight: 400;
    
}
.option-item-img{
    width: 96px;
}
.option-item-img-ca{
    width: 83px;
}
.option-item-img-ph{
    width: 79px;
}
.option-price{
    display: flex;
    align-items: center;
    
}
.option-plus{
    font-size: 14px;
    margin-bottom: -5px;
}
.option-price-en{
    font-size: 16px;
    line-height: 1;
    margin-top: 9px;
}
.option-price-number{
    font-size: 24px;
    font-family: "noto serif jp";
}

.option-txt{
    font-size: 15px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    letter-spacing: 0.75px;
    line-height: 1.3;
}

.option-item{
    background-color: #ffffff;
    border-radius: 15px;
    width: 227px;
    padding: 27px 19px;
    margin-bottom: 20px;
}
.option-item-box{
    margin: 90px 7.8% 0 7.8%;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    gap: 4.4%;
}
.option-item{
    text-align: center;
}
.option-item-img,
.option-item-img-ca,
.option-item-img-ph{
    margin-top: 13px;
}
.option-price{
    margin-top: 9px;
    margin-left: 37px;
}
.option-txt{
    margin-top: 13px;
}


/*オプションSP*/
@media screen and (max-width:769px){
    .section-option{
        margin-top: 150px;
    }
    .option-title-ja-txt{
        font-size: 10px;
        margin-left: 5%;
    }
    .option-title-en{
        font-size: 60px;
        margin-left: 5%;
        margin-top: 0;
        line-height: 1;
    }
    .option-title{
        display: block;
    }
    .option-explanation{
        margin: 40px 0 0 5%;
        font-family: "Zen Kaku Gothic New";
    }
    .option-item-box{
        margin: 60px 5% 0 5%;
    }
    .option-item-img{
        width: 73px;
    }
    .option-item-title-en{
        font-size: 20px;
        font-weight: 700;
    }
    .option-plus{
        font-size: 7px;
        font-weight: 700;
    }
    .option-price-en{
        font-size: 12px;
    }
    .option-price-number{
        font-size: 20px;
    }
    .option-price{
        margin-left: 20px;
    }
    .option-item-img-ca{
        width: 73px;
    }
    .option-item{
        width: 160px;
        height: auto;
        padding: 17px 11px;
    }
    .option-price-ca{
        margin-left: 20px;
    }
    .option-item-title-jp{
        font-size: 16px;
        font-weight: 600;
    }
    .option-txt{
        line-height: 1.5;
    }
}




/*-------
割引
--------*/

.section-discount{
    margin-top: 140px;
}

.discount-title-ja{
    display: flex;
}
.discount-title-ja-txt{
    font-size: 14px;
    letter-spacing: 0.7px;
    margin-left: 8.7%;
}
.discount-title-en{
    font-size: 80px;
    margin-left: 8.7%;
    margin-top: 10px;
}

.discount-item-box{
    margin-top: 68px;
    text-align: center;
}
.discount-item{
    background-color: #ffffff;
    border-radius: 15px;
    width: 227px;
    height: 333px;
    padding: 27px 19px;
    margin-bottom: 20px;
}

.discount-item-img-1{
   width: 150px;
   margin-top: 20px;
}
.discount-item-img-2{
    width: 96px;
    margin-top: 20px;
}
.dicount-price{
    margin-top: 9px;
}
.discount-txt{
    margin-top: 13px;
}
.discount-item-title{
    font-size: 24px;
    font-weight: 400;
}
.discount-price{
    display: flex;
    align-items: center;
    margin-top: 9px;
    margin-left: 42px;
}
.discount-minus{
    font-size: 14px;
    font-family: "noto serif jp";
    margin-top: 5px;
}
.discount-price-en{
    font-size: 16px;
    font-family: "noto serif jp";
}
.discount-price-number{
    font-size: 24px;
    font-family: "noto serif jp";
}
.discount-txt{
    margin-top: 18px;
    font-size: 15px;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: 0.45px;

}
.discount-item-box{
    display: flex;
     margin: 90px 7.8% 0 7.8%;
    flex-wrap: wrap;
    gap: 4.4%;
}

@media screen and (max-width:769px){
    .section-discount{
        margin-top: 100px;
    }
    .discount-title-ja-txt{
        font-size: 10px;
    }
    .discount-title-en{
        font-size: 60px;
        margin-left: 5%;
        margin-top: 5px;
    }
    .discount-item-box{
        margin: 60px 5% 0 5%;
    }
    .discount-item{
        padding: 17px 11px;
        width: 160px;
        height: auto;
    }
    .discount-item-title{
        font-weight: 600;
        font-size: 16px;
    }
    .discount-item-img-1{
        width: 120px;
    }
    .discount-item-img-2{
        width: 73px;
    }
    .discount-plus{
        font-size: 7px;
        font-weight: 700;
    }
    .discount-price-en{
        font-size: 12px;
    }
    .discount-price-number{
        font-size: 20px;
    }
    .discount-price{
        margin-left: 25px;
    }
    .discount-txt{
        line-height: 1.5;
    }
}


/*---------
注意してほしいこと
-------*/

.section-Points-to-note{
    margin-top: 230px;
}
.Points-to-note-title{
    text-align: center;
}
.Points-to-note-en{
    font-size: 24px;
    color: #B59371;
}
.Points-to-note-ja{
    margin-top: 15px;
    font-size: 30px;
    font-family: "noto serif jp";
    font-weight: 500;
}
.Points-to-note-item-box{
    margin-top: 165px;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    margin: 165px 7.8% 154px 7.8%;
    gap: 120px;
}
.Points-to-note-number{
    font-size: 20px;
    font-family: "noto serif jp";
}
.Points-to-note-item-title{
    margin-top: 21px;
    font-size: 24px;
    font-weight: 500;
}
.Points-to-note-txt{
    margin-top: 37px;
    font-size: 16px;
    letter-spacing: 0.8;
    line-height: 1.56;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
}
.Points-to-note-item{
    width: 270px;
}

@media screen and (max-width:769px){
    .section-Points-to-note{
        margin-top: 150px;
    }
    .Points-to-note-en{
        font-size: 16px;
    }
    .Points-to-note-ja{
        font-size: 24px;
        margin-top: 5px;
    }
    .Points-to-note-item-box{
        margin: 120px 5% 0 5%;
        gap: 60px;
    }
    .Points-to-note-item{
            width: 100%;
    }
    .Points-to-note-item-title{
        font-size: 22px;
        margin-top: 14px;
    }
    .Points-to-note-txt{
        margin-top: 20px;
    }
}


/*--------
作品
---------*/
.work-img-sp{
    display: none;
}


.section-work{
    margin-top: 230px;
}
.work-title{
    font-size: 60px; 
    color: #ffffff;
    margin-left: -10px;
    
   
}
.work-btn{
    position: absolute;
    bottom: 40%;
    right: 40%;
    align-items: center;
    text-align: center;


}
.work-txt{
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 999px;
    border: 1.5px solid #ffffff;
    padding: 8px 15px;
}
.work-center{
   position: relative;
   
}


@media screen and (max-width:769px) {
   .section-work{
    margin-top: 150px;
   } 
   .work-back-pc{
    display: none;
   }
   .work-img-sp{
    display: block;
   }
    .work-title{
        font-size: 48px;
    }
    
    .work-btn{
        bottom: 40%;
        left: 20%;
        right: auto;
    }

}



/*-------
私について
------*/

.section-profile{
    margin-top: 300px;
}

.profile-title-ja{
    display: flex;
    align-items: center;
    margin-left:11.7%;
}
.profile-title-ja-txt{
    font-size: 14px;
    letter-spacing: 0.7px;
}
.profile-title-en{
    font-size: 96px;
    margin-top: 10px;
    margin-left: 11.7%;
}
.profile-all{
    margin-top: 138px;
    margin: 138px 11.7% 0 11.7%;
    display: flex;
    justify-content: flex-start;
    
.profile-record{
    font-size: 20px;
    font-weight: 500;
    color: #787276;
}    
.profile-box2{
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.profile-line{
    width: 19px;
    height: 27px;
    margin-top: 6px;
}
}
.profile-name-en{
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.75;
    margin-top: 7px;
}
.plofile-nane-ja{
    font-size: 30px;
    letter-spacing: 1.5px;
    margin-top: 7px;
    font-weight: 500;
}
.profile-txt{
    font-size: 16px;
    font-family: "noto serif jp";
    font-weight: 400;
    line-height: 1.56;
    letter-spacing: 0.8px;
    margin-top: 56px;
}
.profile-txt-2,
.profile-txt-3{
    margin-top: 25px;
}
.profile-box{
    width: 60%;
}
.profile-img-box{
    width: 34%;
    margin-left: 5%;
}


@media screen and (max-width:769px){
    .section-profile{
        margin-top: 170px;
    }
    .profile-title-ja-txt{
        font-size: 10px;
    }
    .profile-title-en{
        font-size: 48px;
        margin-top: 5px;
        margin-left: 5%;
    }
    .profile-title-ja{
        margin-left: 5%;
    }
    .profile-all{
        display: flex;
        flex-direction: column-reverse;
    }
    .profile-all{
        margin: 75px 5% 0 5%;
        width: 100%;
    }
    .profile-img{
        width: 100%;
    }
    .profile-name-en{
        font-size: 23px;
    }
    .plofile-nane-ja{
        font-size: 25px;
    }
    .profile-img-box{
        width: 90%;
        margin-left: 0;
    }
    .profile-box{
        width: 100%;
    }
    .profile-record{
        margin-top: 50px;
    }
    .profile-txt{
        width: 91%;
    }
    
}

/*------
コンタクト
*/

.section-contact{
    margin-top: 305px;
     position: relative;
}
.contct-img-sp{
    display: none;
}
.contact-box{
    background-color: rgba(255, 255, 255, 0.27);
    padding: 30px 20px 20px 20px;
    width: 421px;
    height: 77%;
    position: absolute;
    top: 10%;
    right: 5%;

}

.contact-title{
    font-size: 80px;
}
.contact-txt{
    font-size: 16px;
    margin-top: 37px;
    letter-spacing: 0.8px;
}
.contact-btn{
    margin-top: 42%;
    background-color: #4C484B;
    border-radius: 30px;
    padding: 8px 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 255px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.contact-btn-txt{
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
}
.conatact-btn-img{
    width: 32px;
    margin-top: -7px;
    
}
.contact-img-sp{
    display: none;
}

@media screen and (max-width:769px) {
    .section-contact{
        margin-top: 171px;
    }
    .contact-img-sp{
        display: block;
    }
    .contact-img{
        display: none;
    }
    .contact-box{
        width: 92%;
        padding: 20px;
    }
    .contact-title{
        font-size: 48px;
        margin-top: 0;
        bottom: 12px;
    }
}
/*------
フッター
-------*/

.footer{
    margin-top: 200px;
    background-image: url(../images/footer-back.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.footer-box{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.footer-rogo{
    font-size: 30px;
    margin-top: 90px;
    margin-bottom: 20px;
    margin-left: 5%;
}
.copy{
    font-size: 10px;
    margin-right: 3.3%;
    margin-bottom: 20px;
}


@media screen and (max-width:769px) {
    .footer{
        margin-top: 170px;
        background-image: url(../images/footer-back-sp.png);
        background-size: cover;
        margin-top: 100px;
    }
    
}   