@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #1A1A1A;
    margin: 0;
    background-color: #D2CDC6;
    cursor: none; /*もともとあるカーソルは非表示に*/
}
a {
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    text-decoration: none;
    font-size: 0.95vw;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #1A1A1A;
}
img {
    object-fit: fill;
    object-position: center center;
    width: 100%;
}

.logo{
    object-fit: contain;
}

p{
    font-size: 1.12vw;
    font-weight: 300;
}

.o_midasi {
    font-size: 100px;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #1A1A1A;
}

.midasi {
    font-size: 7vw;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #1A1A1A;
}





/* ① fade-up 初期状態 */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    transition-delay: 0.5s;
  }
  
  /* ② fade-up 表示時に追加されるクラス */
  .fade-up.show {
    opacity: 1;
    transform: translateY(0px);
  }
  
  /* ③ move-on-scroll にも初期transformを適用（JS上書きされる） */
.move-on-scroll {
  transition: transform 0.1s linear;
}




.text{
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #1A1A1A;
}

.n_text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8vw;
    font-size: 0.95vw;
    letter-spacing: 0.02em;
}

a {
    text-decoration-color: none;  /*リンクの色を消す*/
  }

  html,body {
    overflow-x: hidden;
  }

/*追従*/

.form{
    position: fixed;
    z-index: 99999;
    bottom: 50px;
    right: 50px;
    width: 350px;
}

.inner {
    width: 920px;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/*画像の下の隙間を消すコード*/


div{
	text-align:center;
}
img{
	vertical-align:top;
}




/*------------------------------カーソル要素*/
#cursor{
    position: fixed;
  
    /*丸の大きさと色の指定*/
    background: #1A1A1A;
    border-radius:10px;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;/*真ん中にくるようにマイナスマージンで調整*/
  
    z-index: 2;/*一番手前に来るように*/
    pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
    opacity: 0;
    transition: transform 0.1s;/*アニメーションの秒数指定*/
    z-index: 101;
  }
  
  /*ちょっと遅れてついてくるストーカー要素*/
  #stalker{
    position: fixed;

    /*丸の大きさと色の指定*/
    border: solid 1px #1A1A1A;
    width: 50px;
    height: 50px;
    border-radius:30px;
    margin: -25px 0 0 -25px;/*真ん中にくるようにマイナスマージンで調整*/
    z-index: 102;/*カーソルの後ろに来るように*/
    pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
    opacity: 0;
    transition: transform 0.5s;/*アニメーションの秒数指定*/
  }
  
  #cursor.active,
  #stalker.active{
    transform: scale(1.4);
  }


  





/*------------------------------アニメーション*/



/*全体フェードイン----------------------*/

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*下からフェードイン----------------------*/

.fade-in-up {
  opacity: 0;
  transform: translateY(5vw);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}


/*ポップアップ----------------------*/
.popup {
  position: relative;
  display: grid;
  width: 100vw;
  z-index: 0;
}

.popup::before {
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(.8);
  content: '';
  z-index: -1;
}

.popup .box {
  overflow: hidden;
}

.box-title {
  margin: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1s ease;
}

/* アニメーション発火用 */
.box-title.show {
  transform: translateY(0);
  opacity: 1;
}






/*画像の表示----------------------*/


.photo {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0%);
}

.overlay.start {
  transform: translateY(-100%);
}




/* HEADER
------------------------------- */

.pc_header {
    display: block;
    position: fixed;
    width: 100%;
}

.top_sp {
    display: none;
}

.pc_header {
    height: 4.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
    border-bottom: solid 0.1vw #1A1A1A;
    width: 100%;
    background-color: #D2CDC6;
    z-index: 100;
}



.pc_header .logo {
    font-family: "Geologica", sans-serif;
    color: #1A1A1A;
    font-weight: 400;
    font-size: 1.2vw;
}


.pc_menu {
    display: flex;
    align-items: center;
    gap: 2vw;
    border: solid 0.1vw #1A1A1A;
    border-radius: 10vw;
    padding: 0.25vw 0.25vw 0.25vw 2vw;
}

.pc_menu .contact {
    background-color: #1A1A1A;
    color: #D2CDC6;
    border-radius: 10vw;
    padding: 0.5vw 1.5vw;
}


.no_box {
    border-bottom: solid 0.1vw #1A1A1A;
    padding: 0.8vw 2vw;
    height: fit-content;
    width: 100%;
}

.no_box p {
    font-size: 1.2vw;
}

.m_t {
    padding: 2vw;
}

.midasi_box {
    margin-bottom: 2vw;
}


/* ABOUT ========================================================================== */

.about {
    margin-top: 4.5vw;
}


/* area1------------------------------- */


.about .area1 {
    display: flex;
    border-bottom: solid 0.1vw #1A1A1A;
    width: 100%;
}

.about .area1 .no_box {
    display: flex;

}

.about_us {
    width: 40%;
}



.message {
    width: 40%;
    border-left: solid 0.1vw #1A1A1A;
}

.my_photo {
    width: 20%;
    border-left: solid 0.1vw #1A1A1A;
}

.my_photo .photo_box {
    border-bottom: solid 0.1vw #1A1A1A;
    padding: 0.5vw;
    height: 80%;
}

.my_photo .photo_box .photo {
    height: 100%;
    background-image: url(../images/20250528_1819-2.png);
    background-size: cover;
    background-position: center center;
    border-radius: 0.5vw;
}








/* area2------------------------------- */

.area2 {
    display: flex;
    border-bottom: solid 0.1vw #1A1A1A ;
}



.about .insta {
    padding: 1.5vw;
}

.about .insta .midasi {
    opacity: 0.4;
    margin-bottom: 0.5vw;
    font-size: 0.95vw;

}

.about .area2 .photo_box {
    width: 40%;
    padding: 0.5vw;
}

.about .area2 .photo {
    width: 100%;
    height: 100%;
    background-image: url(../images/20250528_1844-2.png);
    background-size: cover;
    background-position: center center;
    border-radius: 0.5vw;
}

.about .company {
    border-left: solid 0.1vw #1A1A1A;
    width: 60%;
}

.about .company .m_t {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about .area2 .naiyou {
    display: flex;
    flex-direction: column;
    gap: 0.1vw;
}

.about .area2 .list {
    display: flex;
    gap: 2vw;
}

.about .area2 .list .n_text:first-child {
    width: 5vw;
}






/* area3------------------------------- */


/* Service ========================================================================== */


.service {
    margin-top: 4.5vw;
}

.service .n_text {
    line-height: 1.5;
}

.service .title {
    font-weight: 400;
    font-size: 1.2vw;
}

.service .no_box {
    padding: 0.8vw;
}

.service .container {
    border-top: solid 0.1vw #1A1A1A;
    border-bottom: solid 0.1vw #1A1A1A;
}

.service .area1 {
    display: flex;
}

.service .area1 .l {
    border-right: solid 0.1vw #1A1A1A;
    width: 72%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 横に2列 */
}

.service .area1 .r {
    width: 28%;
    position: relative;
    overflow: visible;
}

.service .r .deg90 { 
    position: absolute;
    left: 10vw;
    bottom: 2vw;
    transform-origin: left bottom; /* 回転基準を左下に */
    transform: rotate(-90deg); /* 90度回転 */
    white-space: nowrap; /* 改行させない */
}

/* 上下のズレを調整したい場合は margin を使う */
.service .deg90 .n_text {
    margin-top: 1vw; /* midasi の右側にずらす例 */
}


.service .area1 .r .midasi {
    font-size: 3vw;
}



.service .area1 .l .box:nth-child(1), 
.service .area1 .l .box:nth-child(2),
.service .area1 .l .box:nth-child(3){
    border-bottom: solid 0.1vw #1A1A1A;
   
}


.service .area1 .l .box:nth-child(2), 
.service .area1 .l .box:nth-child(5),
.service .area1 .l .box:nth-child(8){
    border-left: solid 0.1vw #1A1A1A;
    border-right: solid 0.1vw #1A1A1A;
}

.service .area1 .l .no1 {
    background-image: url(../images/Maskgroup.png);
    background-size: cover;
}

.service .photo_box {
    padding: 0.8vw;
}

.service img {
    border-radius: 0.5vw;
    height: 24vw;
    object-fit: cover;
}

.service .title_box {
    padding: 0.8vw;
    border-top: solid 0.1vw #1A1A1A;
    border-bottom: solid 0.1vw #1A1A1A;
    height: fit-content;
}

.service .text_box {
    display: flex;
}

.service .text_box .l {
    border-right: solid 0.1vw #1A1A1A;
    padding: 0.8vw;
    width: 40%;
    display: block;
}

.service .text_box .r {
    padding: 0.8vw;
    width: 60%;
    height: 13.5vw;
    
}





/* footer------------------------------- */



.page-fotter {
    padding: 2vw;
    padding-bottom: 0px;
    margin-bottom: -2vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.index .page-fotter {
    padding: 2vw;
    padding-bottom: 0px;
    position: fixed;
    bottom: -0.1vw;
    left: 0;
    width: 100%;
    height: auto;
}


footer .rinen {
    margin-bottom: 4.5vw;
}


footer .rinen .box-title {
    line-height: 1.4;
    font-weight: 300;
}

footer .big_logo {
    width: 100%;
}

.footer_menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2vw;
}

.footer_menu p {
    font-size: 0.95vw;
}

.footer_menu_box {
    display: flex;
    align-items: flex-end;
    gap: 3vw;
}

.footer_menu_box .midasi {
    opacity: 0.4;
    margin-bottom: 0.5vw;
}


.coppylite {
    font-size: 0.95vw;
    line-height: 1.2;
}



/* contact------------------------------- */


.contact .inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffff;
    background-color: rgba(255, 255, 255, 0.562);
    padding: 100px 0;
}

.contact .title {
    margin-bottom: 60px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}

.contact .title div {
    height: 2px;
    width: 100%;
    background-color: #3E3C3C;
}
.contact .title p {
    color: #EF492A;
}


.contact h1 {
    color: #EF492A;
    font-size: 38px;
    font-weight: 500;
}

.contact .required {
    background-color: #FF0000;
    border-radius: 5px;
    color: #ffff;
    margin-left: 15px;
    padding: 3px;
    font-size: 10px;
}


.contact p {
    font-weight: 700;
}

.underbutton a {
    color: #85AC3C;
    font-weight: 700;
}

form {
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


form div{
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

label{
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
    color: #3E3C3C;
    font-weight: 700;
}

input[type="submit"]{
    background-image: url(../images/20241101_1709.png);
    background-size: cover;
    width: 350px;
    height: 72px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select{
    background: #ffff;
    padding: 10px;
    font-size: 1rem;
    height: 40px;
    border: solid 1px #B9B9B9;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select{
    width: 65%;
}

textarea{
    width: 65%;
    height: 12rem;
    border: solid 1px #B9B9B9;
}

input[type="submit"]{
    border: none;
    cursor: pointer;
    line-height: 1;
}

form .required {
    margin-bottom: 30px;
    font-size: 20px;
}

form .button {
    width: 100%;
    background-color: #ffff;
    padding: 10px 30px;
    border-radius: 50px;
    border: solid 4px #85AC3C;
    font-weight: 700;
    font-size: 20px;
}

.select_wrapper {
    position: relative;
}

.select_wrapper::after {
    content: "";
    position: absolute;
    top: 58px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}

select {
    -webkit-appearance: none;
    appearance: none;
}

.underbutton {
    width: 350px;
    margin: 50px 0 30px 0;
    color: #ffff;
}

.checkbox {
    display: flex;
    align-items: baseline;
}

.checkbox label {
    margin-left: 10px;
}







/*モバイル版
--------------------------------------------------------------------------モバイル版*/
@media (max-width: 600px) {


    .inner {
        width: 90%;
        display: flex;
        flex-direction: column;
    }


    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .midasi {
        font-size: 12vw;
    }

    .n_text {
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
        line-height: 1.65;
        font-size: 3.2vw;
        letter-spacing: 0.02em;
    }

    .no_box p {
        font-size: 3.5vw;
    }

    a {
        font-size: 3.2vw;
    }




    #cursor{
        display: none;
  }
  
  #stalker{
    display: none;
  }
    


    /* ヘッダー------------------------------- */

    .pc_header {
        display: none;
    }
   

    .top_ga {
        background-size: cover;
        height: 430px;
    }

    .top_ga .text_box {
        width: 90%;
    }

    .top_ga .no1 {
        font-size: 25px;
        line-height: 1
        ;
    }
    .top_ga .no2 {
        font-size: 12px;
    }


    .pc_menu {
        display: none;
    }

    .header {
        height: auto;
    }


    .top_sp{
        display: block;
        background-size: cover;
        padding-top: 2.5vw;
        height: 16vw;
        position: relative;
        position: fixed;
        width: 100%;
        background-color: #D2CDC6;
        z-index: 100;
        border-bottom: solid 0.35vw #1A1A1A;
    }

    .top_sp .topga {
        position: absolute;
        top: 60px;
        left: 0px;
        width: 100%;
        height: auto;
        z-index: -1;
    }

    .top_sp .logo {
        font-size: 3.5vw;
    }

    .top_sp h1 {
        margin-top: 520px;
        margin-left: 5%;
        font-size: 32px;
        line-height: 1.5em;
    }

    .top_sp .contactbutton_sp {
        background-color: #85AC3C;
        border-radius: 50px;
        padding: 5px 10px;
        color: #ffff;
        margin-top: 8px;
        margin-right: -50px;
    }

    .header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 0 2vw 0 2vw;
        position: relative;
    }

    .header .menu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }

    .header .menu a {
        border-bottom: 1px solid #1F7344;
        display: inline-block;
    }


    .top_sp .logo_box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .top_under_line {
        display: none;
    }

    .no_box {
        border-bottom: solid 0.35vw #1A1A1A;;
        padding: 2.5vw 5vw;
        height: fit-content;
        width: 100%;
    }

    .m_t {
        padding: 5vw;
    }





    /* ハンバーガーボタンのデザイン */
    .drawer__button {
        position: relative;
        width: 11vw;
        height: 11vw;
        border: none;
        cursor: pointer;
        z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
    }
    /* ハンバーガーボタン内の線 */
    .drawer__button > span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6.5vw;
        height: 0.5vw;
        background-color: #1A1A1A;
        transform: translateX(-50%);
    }
    .drawer__button > span:first-child {
        transform: translate(-50%, calc(-50% - 0.5rem));
        transition: transform 0.3s ease;
    }
    .drawer__button > span:nth-child(2) {
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }
    .drawer__button > span:last-child {
        transform: translate(-50%, calc(-50% + 0.5rem));
        transition: transform 0.3s ease;
    }
    /* 展開時のデザイン */
    .drawer__button.active > span:first-child {
        transform: translate(-50%, -50%) rotate(-45deg);
        background-color: #D2CDC6;
    }
    .drawer__button.active > span:nth-child(2) {
        opacity: 0;
    }
    .drawer__button.active > span:last-child {
        transform: translate(-50%, -50%) rotate(45deg);
        background-color: #D2CDC6;
    }
    /* メニューのデザイン */
    .drawer__nav {
        position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /*background-color: rgba(0, 0, 0, 0.5); */
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .drawer__nav.active {
        opacity: 1;
        visibility: visible;
        z-index: 10;
        width: 100%;
    }

    .drawer__nav__inner {
        position: relative;
        width: 60%;
        height: 100%;
        background-color: #1A1A1A;
        padding: 3rem 0rem;
        margin: 0 0 0 auto;
        overflow: scroll;
        transform: translateX(100%);
        transition: transform 0.8s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px 0 0 10px;
    }
    .drawer__nav.active .drawer__nav__inner {
        transform: translateX(0);
    }

    .drawer__nav__inner img {
        margin-bottom: 20px;
    }

    .drawer__nav__menu {
        list-style: none;
        padding-left: 0;
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 30px;
    }

    .drawer__nav__link {
        display: block;
        color: #D2CDC6;
        text-decoration: none;
        padding: 1rem 1rem;
        text-align: center;
        font-weight: 300;
    }

    .drawer__nav__item_contact {
        margin-top: 20px;
    }

    .drawer__nav__item_contact .contact {
        background-color: #D2CDC6;
        border-radius: 100px;
        color: #1A1A1A;
        padding: 8px 30px;
    }


    .drawer__nav .footer_menu_box {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .drawer__nav .footer_menu_box .contents {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .drawer__nav .footer_menu_box p {
        color: #D2CDC6;
        font-size: 3.2vw;
        font-weight: 300;
    }

    .drawer__nav .footer_menu_box .midasi {
        font-size: 3.2vw;
        font-weight: 300;
        margin-bottom: 1.5vw;
    }

    .top_sp .logo_box {
        margin-bottom: 30px;
    }


    /* ハンバーガーメニュー展開時、背景を固定 */
    body.active {
        height: 100%;
        overflow: hidden;
    }




    .drawer__nav__inner .tel_a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        background-color: rgb(239, 73, 43);
        padding: 15px 0;
        border-radius: 100px;
        color: #ffff;
    }

    .drawer__nav__inner .tel_a .no2 {
        font-size: 20px;
    }

    .drawer__nav__inner .tel_box {
        display: flex;
        align-items: center;
        padding-top: 5px;
        flex-direction: column;
        position: relative;
    }

    .drawer__nav__inner .tel_box .tel {
        font-size: 35px;
        padding: 0 10px 0 10px;
        line-height: 1em;
        margin-left: 25px;
    }

    .drawer__nav__inner .tel_box .tel_icon {
        position: absolute;
        top: 10px;
        left: 0px;
        width: 25px;
    }

    .drawer__nav__inner .yajirusi {
        position: absolute;
        top: 10px;
        left: 295px;
        width: 20px;
        height: auto;
    }

    .drawer__nav__inner .page-fotter {
        width: 100%;
        position: fixed;
        bottom: 0;
    }


    .midasi_box{
        margin-bottom: 5vw;
    }


    /* ABOUT ======================================================================= */

    /* area1------------------------------- */

    .about {
        margin-top: 16vw;
    }

    .about .area1 {
        display: flex;
        border-bottom: solid 1px #1A1A1A;
        width: 100%;
        flex-direction: column;
        margin-top: 16vw;
    }

    .about_us {
        width: 100%;
    }

    .about_us .m_t {
        border-bottom: solid 1px #1A1A1A;
    }

    .message {
        width: 100%;
        border-left: none;
    }

    .message .m_t {
        border-bottom: solid 1px #1A1A1A;
    }

    .my_photo {
        width: 100%;
        display: flex;
        border-left: none;
    }

    .my_photo .photo_box {
        border-bottom:none;
        border-right: solid 1px #1A1A1A;
        padding: 1.5vw;
        height: 180px;
        width: 50%;
    }

    .about .insta {
        padding: 15px;
    }

    .about .insta .midasi {
        opacity: 0.4;
        margin-bottom: 2px;
        font-size: 12px;
    }

    /* area2------------------------------- */

    .area2 {
        display: flex;
        border-bottom: solid 1px #1A1A1A;
        flex-direction: column-reverse;
    }

    .about .company {
        border-left: none;
        width: 100%;
    }

    .about .company .m_t {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .about .area2 .list .n_text:first-child {
        width: 20%;
    }

    .about .area2 .list {
        display: flex;
        gap: 5vw;
    }

    .about .area2 .naiyou {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .about .area2 .photo_box {
        display: none;
    }




    /* cervice ======================================================================= */

    .service {
        margin-top: 16vw;
    }

    .service .container {
        border-top: solid 0.35vw #1A1A1A;
        border-bottom: none;
    }

    .service .area1 .l {
        grid-template-columns: 1fr;
        width: 100%;
        border: none;
    }

    .service .area1 .r {
        display: none;
    }

    .service .area1 .l .box:nth-child(2), .service .area1 .l .box:nth-child(5), .service .area1 .l .box:nth-child(8) {
        border: none;
    }

    .service .area1 .l .box {
        border-bottom: solid 0.35vw #1A1A1A !important;
    }

    

    .service .no_img {
        display: flex;
        flex-direction: row-reverse;
    }

    .service .photo_box {
        width: 88%;
        padding: 2.5vw;
        border-right: solid 0.35vw #1A1A1A;
    }

    .service .no_box {
        width: 12%;
        padding: 2.5vw;
        height: 100%;
        border: none;
    }

    .service img {
        height: 102vw;
        border-radius: 1.5vw;
    }

    .service .title_box {
        padding: 2.5vw;
        border-top: solid 0.35vw #1A1A1A;
        border-bottom: solid 0.35vw #1A1A1A;
    }

    .service .title {
        font-size: 7.2vw;
    }

    .service .text_box .l {
        width: 40%;
        padding: 2.5vw;
        border-right: solid 0.35vw #1A1A1A;
    }

    .service .area1 .text_box .r  {
        display: block;
        padding: 2.5vw;
        width: 60%;
        height: 38.5vw;
    }







    /* footer------------------------------- */

    .index .page-fotter {
        padding: 15px;
        bottom: 0px;
    }


    .page-fotter {
        padding: 15px;
        bottom: 0px;
    }

    .page-fotter .r a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
    }

    .footer_menu .footer_menu_box {
        display: none;
    }

    footer .rinen {
        margin-bottom: 60px;
        font-size: 12px;
    }

    .footer_menu {
        margin-bottom: 15px;
    }


    /* contact------------------------------- */

    .contact {
        padding: 30px 0;
    }

    .contact .inner {
        width: 90%;
        padding: 60px 0;
    }

    form {
        width: 90%;
    }

    form div {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .contact label {
        margin-bottom: 10px;
    }

    input[type="text"], input[type="email"], input[type="tel"], select {
        width: 100%;
    }

    textarea {
        width: 100%;
    }

    input[type="image"]{
        width: 100%;
        margin-top: 20px;
    }

    .coppylite {
        font-size: 3.2vw;
        line-height: 1.2;
    }


}
