@charset "utf-8";
/* CSS Document */

/* --------------------------------------------
ドロワー
----------------------------------------------- */
.openbtn1{
  /*はじめは非表示に*/
display: block;
  /*ボタンの位置*/
position:fixed;
top:50px;
right: 50px;
z-index: 10000;
  /*ボタンの形状*/
background:none;
cursor: pointer;
  width: 60px;
  height:60px;
border-radius: 30px;
}


.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 16px;
  height: 3px;
  border-radius: 2px;
background-color: #3b5a4d;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
top:20px; 
}

.openbtn1 span:nth-of-type(2) {
top:28px;
}

.openbtn1 span:nth-of-type(3) {
top:36px;
}


.openbtn1.active span:nth-of-type(1) {
  top: 23px;
  left: 21px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 35px;
  left: 21px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime{
from {
  opacity: 0;
transform: translateY(-100px);
}

to {
  opacity: 1;
transform: translateY(0);
}
}

#header{
  height: 70px;
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background:#333; */
  color:#fff;
  text-align: center;
  padding: 2% 0 0 2%;
  /* border:1px solid #000; */
}

#header.dnone {
  opacity: 0;/*透過0にして非表示に*/
}

#header.dnone.panelactive {
  opacity: 1;/*不透明にして出現*/
}


#g-navi ul{
  list-style: none;
  display: flex;
  justify-content: end;
}

#g-navi ul li a{
  display: block;
  text-decoration: none;
  color: #ffffff;
 
}

#g-navi ul li a p{
  margin:10%;
}
.area-5{
  
}
.area-5 p{
  font-weight: bold;
  background-color: #8f1d35;
 text-align: center;
 width:200px;
 height:80px;
 /* border:1px solid #000; */
 line-height: center;
 padding:16px 0 0 0;
 border-radius:50px 0 50px 0 ;
 transform: translate(-15%,-45%);
 position: relative;
 z-index: 50000;
 
}
#g-navi ul li.current a,
#g-navi ul li a:hover{
  color:#949494; 
  transform: translate(0,2px);
}

#header.dnone #g-navi{
  /*固定位置にして最背面に*/
  position:fixed;
top: 0;
right: 0;
z-index: -1;
  /*高さと幅*/  
width:100%;
height: 100vh;
  /*天地中央＆テキスト中央揃え*/  
display: flex;
justify-content: center;
align-items: center;
text-align: center;
  /*はじめは透過0に*/  
  opacity: 0;
transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
opacity: 1;/*不透明に*/
z-index:3;/*最前面に*/
background:#1a424095;
width:300px;
justify-content: center;

}

#header.dnone.panelactive #g-navi ul{
display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
color: #fff;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
transition:all 0.3s;
justify-content: center;
}

section{
  position: relative;
  z-index: 1;
}

.nav_logo_1050{
  display: none;
}
/* ---------------------------------------------------
1050px
------------------------------------------------------ */


@media only screen and (max-width: 1050px){

 
  #header{
    display: none;
  }



  .openbtn1{
    display: none;
  }
  
  


.nav_logo_1050{
  display: block;
  padding:3% 0 0 3%;
  /* border: 1px solid #000; */
}

.nav_logo_1050 img{
  width:30%;
}

}




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

/* 本体 */
body{
width:100%;
/* border: 1px solid #000; */
}

.header{
  background-image: url(../img/lm_header_img.png);
  /* border:1px solid #bd2828; */
  background-size: 100%;
  height:65vw;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.nav_logo {
padding:0.2% 0 0 1.5%;
/* border:1px solid #000; */
}


nav p{
  width:150px;
  text-align: center;
  /* border: 1px solid #000; */
  transform: translate(-10%,0);
 
}



.wrapper{
  /* border:1px solid #000; */
  width:100%;
}



nav li{
  margin-top:10%;
}

ul{
  display: none;
}

/* ---------------------------------------------------
1050px
------------------------------------------------------ */
@media only screen and (max-width: 1050px){


  /* -----------------------
togglemenu
-------------------------- */
.openBtn{
  position: relative;
  background-color:none;
  position:fixed;
top:10px;
right: 10px;
z-index: 999;
  /*ボタンの形状*/
background:none;
cursor: pointer;
  width: 60px;
  height:60px;
border-radius: 30px;

}

.openBtn span{
display: inline-block;
position: absolute;
left: 16px;
height: 3px;
border-radius: 2px;
background-color: #3b5a4d;
width: 45%;
cursor: pointer;
}

.openBtn span:nth-of-type(1){
top: 20px;
}

.openBtn span:nth-of-type(2){
top: 28px;
}

.openBtn span:nth-of-type(3){
top: 36px;
}

.openBtn.active span:nth-of-type(1){

  top: 23px;
  left: 21px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: #fff;

}

.openBtn.active span:nth-of-type(2){

opacity: 0;

}

.openBtn.active span:nth-of-type(3){

  top: 35px;
  left: 21px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: #fff;

}

ul{
display:none;
list-style-type: none;
padding: 150px 0 0 0;
margin: 0;
background-color: #1a4240;
width:200px;
height:100%;
position: fixed;
top:0;
right:0;
z-index: 100;
}

li a{
text-decoration: none;
font-weight: bold;
padding: 17px 25px;
color:#fff;

display: block;
}

li p{
  width: 150px;
  text-align: start;
  font-family: "corporate-logo-ver2", sans-serif;
  margin:10%;
  
}

.li4 p{
background-color: #8f1d35;
width:150px;
height:80px;
padding-top:16px;
text-align: center;
border-radius: 50px 0 50px 0;
margin-top:20%;
margin-left: 0;
}

li:last-child a{
border-bottom:none;
}
}

/* --------------------------------
キャッチコピー
---------------------------------- */
.head_ca{
  /* font-family: "corporate-logo-ver2", sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
font-weight: 500;
font-style: normal;
color:#fff;
font-size: 4vw;
font-weight: bold;
transform: translate(7%,40%);
/* border: 1px solid #000; */
width:50vw;
}

.area-5{

}


/* ------------------------
1050
--------------------------- */

@media only screen and (max-width: 1050px){
.head_ca{
  transform: translate(7%,40%);
  z-index:1;
  
}
}

/* -----------------------------------------
TOP TEXT
--------------------------------------------- */

.tt{


  /* border: 1px solid #000; */
 margin:0 auto;
 /* font-family: "corporate-logo-ver2", sans-serif; */
 font-family: 'Noto Sans JP', sans-serif;
font-weight: 500;
font-style: normal;



}

.tt h1{
  font-size: 50pt;
  color: #8d6d45;
  display: block;
  text-align: center;
  margin-top:15%;
}

.tt p{
  font-size: 20pt;
  text-align: center;
  color: #0e2423;
  margin-top:10%;
}

span{
  color: #8f1d35;
}


/* ------------------------------------------------------
1050
--------------------------------------------------------- */

@media only screen and (max-width: 1050px){
  .tt h1{
    font-size: 7vw;
  }

  .tt p{
    font-size: 3vw;
    width:80%;
    margin:0 auto;
    text-align: start;
    margin-top:10%;
  }
}
/* ---------------------------------------------
サービス内容
--------------------------------------------------- */

.svn_ti{
  font-family: "corporate-logo-ver2", sans-serif;
font-weight: 500;
font-style: normal;
color: #8d6d45;
font-size: 50pt;
margin-top:15%;
}

.svn_ti h1{
  text-align: center;
}

.svn{
  /* margin-top:10%; */
}
.svn_box{
display: flex;
flex-direction: row; 
margin-top:4%; 
/* border:1px solid blue; */
}

.svn_box2{
  display: flex;
  flex-direction: row; 
  margin-top:4%; 
  /* border:1px solid rgb(247, 0, 255); */
  }


.svn_img{
  width:;
  /* border:1px solid #000; */
}
.svn_img img{
  width:661px;
  /* border:1px solid green; */
}

.svn_t{
  font-size: 20pt;
  text-align: center;
  color: #0e2423;
  /* font-family: "corporate-logo-ver2", sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-style: normal;
  padding:5% 15% 15% 15% ;
  /* border:1px solid red; */
}
.svn_maru {
  text-align: center;
  /* border:1px solid orange; */
}


/* -----------------------------------------------------
1050
------------------------------------------------------- */

@media only screen and (max-width: 1050px){

  .svn_ti{
    font-size: 7vw;
  }
  .svn_box{
  display: contents;
  
  }

  .svn_box2{
    display: flex;
    flex-direction: column-reverse;
    margin:0;
  }

  .svn_img{
  margin-top:10%;
  }

  .svn_img img{
    width:100%;
  }

  .svn_maru{
    margin-top:5%;
    
  }

  .svn_maru img{
    width:20%;
  }

  .svn_t{
    font-size: 3vw;
  }
}

/* ---------------------------------------------------
サービス料金
----------------------------------------------------- */

.sv_rk_ti{

  font-family: "corporate-logo-ver2", sans-serif;
  font-size: 50pt;
  font-weight: 500;
  /* border:1px solid #000; */
  width:100%;
  color:#8d6d45;
  margin-top:10%;
  
}

.sv_rk_ti h1{
  text-align: center;
}

.sv_rk{
  background-image: url(../img/lm_ryoukin_bg.png);
  background-size: 90vw;
  height:40vw;
background-repeat: no-repeat;  
background-position: center;
/* border:1px solid #000; */
display: flex;
flex-direction: row;
justify-content: center;
align-items: start;
margin-top:5%;
}



.sv_rk_img{
  /* border:1px solid #000; */
  text-align: center;
}

.sv_rk_img img{
  width:60%;
}


.sv_rk_box{
  /* border: 1px solid red; */
  width:25%;
  margin-top:10%;
}

.sv_rk_t{
  /* border: 1px solid #4d45c4; */
  width:100%;
  color: #fff;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin:0 auto;
  padding-top:7%;
}

.sv_rk_t p{
  text-align: center;
  font-size: 1.7vw;
  /* border: 1px solid orange; */
}


.sv_rk_t p span{
  font-size: clamp(9pt, 1.3vw, 12pt);
  color:#fff;
  
}

/* -----------------------------------------------------
1050
------------------------------------------------------- */

@media only screen and (max-width: 1050px){
  .sv_rk_ti{
    font-size: 7vw;
  }

  .sv_rk_box{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height:70%;
    width:30%;
    margin-top:0;
    margin:0 auto;
  }
  
 

  .sv_rk{
    transform: rotate(-90deg);
    height:90vw;
    width:200vw;
    background-position: end;
    background-size: 100%;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin-left:-50%;
    margin-top:70%;
    
  }

  .sv_rk_img{
    transform: rotate(90deg);
    width:100%;
    height:50%;
    position: relative;
    
    
  }

  .sv_rk_img img{
    position: absolute;
    top:20%;
    left: -30%;
    width:150%;
    
  }

  .sv_rk_t{
   
    transform: rotate(90deg);
    /* position: relative;
    */
    
  }

  .sv_rk_t p{
    font-size: 3.5vw;
    width:40vw;
    margin:-10px auto;
    /* position: absolute;
    transform: translate(-42%,-100%); */
  }

  .sv_rk_t p span{
    font-size: 2vw;
  }
}

/* ------------------------------------------------
サービスの流れ
--------------------------------------------------- */
.sv_nagare{
  display: flex;
  /* border:1px solid #000; */
  flex-direction: row;
  justify-content: center;
  margin-top:4%;
}

.sv_nagare_ti{
  font-family: "corporate-logo-ver2", sans-serif;
font-weight: 500;
font-style: normal;
color: #8d6d45;
font-size: 50pt;
margin-top:15%;
}

.sv_nagare_ti h1{
  text-align: center;
}

.sv_nagare_set{
  /* border:1px solid red; */
  width:15%;
 
}

.sv_nagare_img{
  /* border:1px solid blue; */
  
}

.sv_nagare_img img{
  width:100%;
}

.sv_nagare_t{
  /* border:1px solid green; */
  color: #0e2423;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20pt;
  
}

.sv_nagare_t p{
  text-align: center;
  font-size: clamp(14pt, 2vw, 20pt);
  margin-top:10px;

}

.sv_nagare_yazi{
  /* border:1px solid yellowgreen; */
  position: relative;
  margin-right: 5%;
  margin-left: 2%;
  width:3%; 
  
}
.sv_nagare_yazi img{
 /* border:1px solid #000; */
 position: absolute;
 top:40%;
 height:20%;
 
 
 
}


/* --------------------------------------------------------
1050
----------------------------------------------------------- */

@media only screen and (max-width: 1050px){

  .sv_nagare_ti{
    font-size: 7vw;
    margin-top:80%;
  }
  
  .sv_nagare_t p{
    font-size: 2vw;
  }
 
}

/* --------------------------------------------------- 
予約フォーム
----------------------------------------------------*/

.form_ti{
  color: #fff;
  font-size: 30pt;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-top:50px;
  margin-top:15%;
}

.form_ti h2{
  text-align: center;
 
}

.form{
  background-color: #be9460;
  height:1000px;
  
}

form{
 /* border:1px solid #000; */
 width:400px;
 margin:0 auto;
 text-align: start;
 height:auto;
}

form p{
  color: #fff;
  font-size: 15pt;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 2%;
}

.lavel{
  margin-top:55px;
  border-radius: 10px;
  border: none;
}

label{
  color: #fff;
  font-family: "corporate-logo-ver2", sans-serif;
  margin-left:10%;
}

input{
  
  height:40px;
  float: right;
  width:300px;
  border-radius: 10px;
  border:none;
  margin-top:0;
  margin-right:63px;
  /* border:1px solid red; */
}

input[type="submit"]{
  background: #8f1d35;
  border: none;
  border-radius: 25px 0 25px 0;
  color: white;
  font-size:17px;
  font-weight:bold;
  padding: 10px 20px;
  margin: 0 5px;
  font-family: "corporate-logo-ver2", sans-serif;
  position:absolute;
  left:45%;
  top:90%;
  width:150px;
}
select{
  
  height:40px;
  font-size: 12pt;
  float: right;
  width:300px;
  font-family: "corporate-logo-ver2", sans-serif;
  transform: translate(-63px,-140%);
}

label[type="comment"]{
  transform: translate(0,-50%);
 
}

::placeholder{
  font-size: 12pt;
  font-family: "corporate-logo-ver2", sans-serif;
  padding-left: 10px;
}

textarea{
  
  height:160px;
  border:none;
  /* border:1px solid orange; */
  width:300px;
  border-radius: 10px;
  float: right;
  margin-right:-235px;
  margin-top:10px;
}

iframe{
  margin:0 auto;
}



/* --------------------------------------------------------
1050
----------------------------------------------------------- */

@media only screen and (max-width: 1050px){

  .form_ti{
    font-size: 7vw;
  }

  input{
    margin-right:63px;
  }
}
@media only screen and (max-width: 580px){
  form{
    width:280px;
  }
  
  textarea{
    margin: 0;
  }
  input{
    margin:0 auto;
  }

  select{
    margin:0 auto;
    transform: translate(0,-50px);
  }

  label{
margin-left:-20px;

  }

  input[type="submit"]{
    position: absolute;
    left:30%;
  }
}
/* ---------------------------------------------------
会社概要
----------------------------------------------------- */



.kg_ti{
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #8d6d45;
  font-size: 30pt;
  margin-top:15%;
  margin-left:5%;
  
}

.kg_tb{
  margin:10% auto;
  font-family: "corporate-logo-ver2", sans-serif;
  color: #8d6d45;
}


.kg_tb th td{}
 
.kg_ti h1{
  text-align: center;
}

.kg{
  /* display: flex; */
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #8d6d45;
  font-size: 15pt;
  
  /* border:1px solid red; */
  
  
}

.kg_t{
 /* border:1px solid #000; */
 margin-top:2%;
 margin-left:5%;
 

}

.kg_t p{
  text-align: start;
}
/*-----------------------------------------------
 footer
 ------------------------------------------------ */

.ft{
background-image: url(../img/lm_footer_bg.png);  
background-size: 100vw;
height:15vw;
margin-top:10%;
}

.ft_other{
  display: flex;
  /* border: 1px solid red; */
  justify-content: center;
  padding:0 5%;
  
  
}

.ft_btn p{
  font-family: "corporate-logo-ver2", sans-serif;
  color: #0e2423;
  /* border: 1px solid #fff; */
  

}

.ft_btn{
  /* border: 1px solid #000; */
  margin-top: 7%;
 
 
}

.ft_cr p{
  /* border: 1px solid #000; */
  text-align: center;
  margin-top:3%;
  color:#0e2423;
}

.ft_btn_pp{
  margin-left:6%;
  margin-top: 7%;
  font-family: "corporate-logo-ver2", sans-serif;
}


/* --------------------------------------------------------
1050
----------------------------------------------------------- */

@media only screen and (max-width: 1050px){

  .kg_ti{
    font-size: 7vw;
}
}
/* -------------------------------------------------
           form
---------------------------------------------------- */

/* ---------------------------------------------------------------
sccess
--------------------------------------------------------------------- */

.sc{
  background-image: url(../img/lm_header_img.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height:80vw;
}

.sc h1{
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: bold;
  color:#fff;
  font-size: 10vw;
  text-align: center;
  padding-top:10px;
}

.sc h2{
  font-family: "corporate-logo-ver2", sans-serif;
  color:#fff;
  font-size: 2.5vw;
  text-align: center;
  margin-top:0px;
}

.sc_bt{
  margin-top:20%;
  background-color: #8f1d35;
  height:3vw;
  width:15vw;
  border-radius: 10vw 0 10vw 0;
  position: absolute;
  left:50%;
  transform: translate(-50%,0);
  
}
.sc_bt p{
  font-family: "corporate-logo-ver2", sans-serif;
  color:#fff;
  font-size: 1.2vw;
  text-align: center;
  margin:0 auto;
  /* padding-top:2%; */
  position: absolute;
  top:20%;
  left:25%;
  
}

.sc_bt:hover{
  transform: translate(-50%,2%);
}


.line{
  text-decoration: none;
}



/* ---------------------------------------------------------
1050
------------------------------------------------------------ */

@media only screen and (max-width: 790px){
  
  .sc_bt p{
    font-size: 5pt;
  }

  .sc_bt{
    margin-top:20%;
    background-color: #8f1d35;
    height:25px;
    width:120px;
    border-radius: 10vw 0 10vw 0;
    position: absolute;
    left:50%;
    transform: translate(-50%,0);
    
  }


}

@media only screen and (max-width: 600px){
  .sc_bt p{
    font-size:3pt;
  }
}

/* -------------------------------------------------
privacy policy
----------------------------------------------------- */
.pp{
 background-color: #3b5a4d;
}

.pp_main{
  font-family: "corporate-logo-ver2", sans-serif;
  color: #fff;
/* border:1px solid #000; */
width:60%;
margin:10% auto;
}

.pp_main h1{
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  margin-top:50px;
}

.pp_main h2{
  font-size:1.8vw;
  text-align: center;
  margin-top:10px;
  margin-bottom: 10%;
}

.pp_main h3{
  font-size:1.5vw;
  text-align: center;
  margin-top:80px;
}

.pp_main p{
  margin-top:15px;
}


/* ----------------------------------------
1050px
------------------------------------------- */

@media only screen and (max-width: 1050px){
.pp_main h1{
  font-size: 5vw;
}

.pp_main h2{
  font-size: 2vw;
}

.pp_main h3{
  font-size: 2vw;
}

.pp_main p{
  font-size: 1.5vw;
}
}

/* -----------------------------------------------
特定商取引法に基づく表記 
------------------------------------------------*/

.header_tt{
  background-image: none;
  background-color: #6699c9;
  height:100px;
}

#header_tt{
  height: 70px;
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background:#333; */
  color:#fff;
  text-align: center;
  padding: 2% 0 0 2%;
  /* border:1px solid #000; */
}

#header_tt.dnone {
  opacity: 0;/*透過0にして非表示に*/
}

#header_tt.dnone.panelactive {
  opacity: 1;/*不透明にして出現*/
}
.tokutei_ti{
  font-family: "corporate-logo-ver2", sans-serif;
  font-size: 2.5vw;
  color:#1b4240;
}

.tokutei_ti h1{
  text-align: center;
  margin-top:7%;
}

.tokutei_box{
  font-family: "corporate-logo-ver2", sans-serif;
  color:#1b4240;
  margin:7% auto;
  border-color:#1b4240;
 
}

th td{
  padding-left:10%;
}







/* ----------------------------------------------------
1050
------------------------------------------------------- */
@media only screen and (max-width: 1050px){
  .header_tt{
    height:13vw;
  }
}