@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
html {
  scroll-padding-top: 100px; /* ヘッダーの高さ分に調整 */
}

/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  color: #41220f;
  line-height: 1.8;
}
/*リンク文字の設定*/
a {
  text-decoration: none;
    
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
    color: #41220f;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/* ヘッダー全体 */
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

/* ヘッダー内部をカラム幅にする */
.header_inr {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;               /* 横並び */
  justify-content: space-between; /* 左右に配置 */
  align-items: center;         /* 縦位置を中央揃え */
}

/* ヘッダーロゴ */
.header_logo {
  flex: 0 0 18%; 
    padding: 0.5em 0;       
}

/* ヘッダーの問い合わせボタン */
.header_btn {
  flex: 0 0 23%;               /* 幅23%固定 */
  text-align: center;
  text-decoration: none;
  background-color: #a30d58;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding: 0.8em 2em;
}
/* PC用のグローバルメニュー */
.global_nav ul {
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global_nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
}
.global_nav ul li a:hover {
  color: #bfa1ca;       /* ホバー時の色 */
}

    /*--------------------------------------------------
ハンバーガーメニュー
-----------------------------------------------------*/
    /*　ハンバーガーボタン　*/
    .hamburger {
      display: block;
      position: fixed;
      z-index: 5003;
      top: 4%;
      right: 2%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      text-align: center;

  }

  .hamburger span {
      display: block;
      position: absolute;
      width: 30px;
      height: 2px;
      left: 6px;
      background: #a8991d;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
      top: 3px;
  }

  .hamburger span:nth-child(2) {
      top: 13px;
  }

  .hamburger span:nth-child(3) {
      top: 23px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
      top: 16px;
      left: 6px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
      top: 16px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
  }

  nav.globalMenuSp {
      display: block;
      position: fixed;
      z-index: 5002;
      top: 0;
      left: 0;
      color: #473f2c;
      background: #fff;
      text-align: center;
      transform: translateY(-100%);
      transition: all 0.6s;
      width: 100%;
  }

  nav.globalMenuSp ul {
      display: block;
      background: #fff;
      margin: 0 auto;
      padding: 0;
      width: 100%;
  }

  nav.globalMenuSp ul li {
      display: block;
      list-style-type: none;
      padding: 0;
      width: 100%;
      border-bottom: 1px solid #473f2c;
  }

  nav.globalMenuSp ul li:last-child {
      padding-bottom: 0;
      border-bottom: none;
  }

  nav.globalMenuSp ul li:hover {
      background: #e8e7df;
  }
  nav.globalMenuSp ul li:hover a {
    opacity: 1;

  }

  nav.globalMenuSp ul li a {
      display: block;
      color: #1a1a1a;
      font-size: 1.3em;
      padding: 1em 0;
      text-decoration: none;
      font-weight: 600;
  }
  nav.globalMenuSp ul li:before {
      display: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
      transform: translateY(0%);
  }

  .h-text {
      width: 50px;
      font-size: 10px;
      color: #333;
      text-align: center;
      display: inline-block;
      font-weight: bold;

  }

/* --- レスポンシブ切り替え --- */
@media screen and (max-width: 767px) {
  .global_nav {
    display: none; /* スマホでは非表示 */
  }

}


/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #fff;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.7em; /*=17px*/


 
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.7;
}

.article{
	width: 100%;
}

/*カラム全体の幅を変更する*/

.top_image_in {
  width: 1100px;
  margin: 0 auto;
  height: auto;

}

.section_inr {
  width: 1100px;
  margin: 0 auto; 
  
}
.pc_img { display: block !important; }
.sp_img { display: none !important; }


/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.jpg");
  background-position: top center;
  height: auto;

}
.top_image_in img {
  width: 100%;
}


/*--------------------------------------------------
CTA
-----------------------------------------------------*/
.section_cta {
  background-image: url("../images/bg_cta.jpg");
  background-size: cover;
  padding: 3em 0 ;
}

.tit_cam {
  width: 60%;
  margin: 0 auto 2.5em;
}

.btn_cta_cam {
  width: 60%;
  margin: 1em auto 0;
}

.btn_ani {
display: block;
  margin: 0 auto;
  transform-origin: center;
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

.btn_ani:hover {
transform: scale(1.02) translateY(-2px);
}

.tit_cta02 {
  width: 70%;
  margin: 0 auto 1.5em;
}


/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h1 {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 1.8em;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
  color: #b066a6;
  margin: 0 0 1em;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

h3 {
      font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
padding-bottom: 10px;
	font-size: 32px;
  font-weight: 100;;
	background-image: repeating-linear-gradient(90deg, #b4a983 0, #b4a983 2px, rgba(0,0,0,0) 2px, rgba(0,0,0,0) 4px);
	background-size: 4px 4px;
	background-repeat: repeat-x;
	background-position: center bottom;
  margin: 0 0 0.7em;
}



h4 {
	position: relative;
	padding-left: 90px;
	font-size: 24px;
    color: #b066a6;
line-height: 1.4;
	border-bottom: 2px solid #b066a6;
  padding-bottom: 8px;
  margin: 0 0 1em;
}

h4 span {
	position: relative;
	z-index: 2;
}

h4::before {
	content: attr(data-en);
	position: absolute;
	bottom: -7px;
	left: 0;
	color: rgba(191,161,202,0.4);
	font-size: 68px;
	text-transform: uppercase;
	z-index: 1;
}

.tit_logo {
  width: 30%;
  margin: 0 auto 1em;
}

h5 {
  font-size: 1.2em;
  border-left: 3px solid #bfa1ca;
  font-weight: 600;
 padding-left: 8px;
  margin: 0 0 1em;
  line-height: 1.3;
}



/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.sec_tit_sec01 {
  background-image: url("../images/bg_tit_sec01.jpg");
  background-size: cover;
  padding: 3em 0em ;
}
.tit_sec01 {
  width: 18%;
  margin: 0 auto;
}


.section_01 {
  background-image: url("../images/bg_sec01.jpg");
  background-size: cover;
  background-position: top center;
    padding: 3em 0em 3em;
}
.txt_sec01 {
  text-align: center;
}

.section_02 {
  background-image: url("../images/bg_sec02.jpg");
  background-size: cover;
  background-position: bottom center;
  padding: 3em 0em  5em;
}
.section_03 {
  background-color: #fff;
  padding: 0 0 3em;

}

.section_04 {
  background-image: url("../images/bg_sec04.jpg");
  background-size: cover;
    padding: 3em 0em 3em;
}

.section_05 {
  background-image: url("../images/bg_sec05.jpg");
    padding: 3em 0em 2em;
}
.section_06 {
  background-image: url("../images/bg_sec06.jpg");
    padding: 3em 0em 4em;
}

/*--------------------------------------------------
利用シーン
-----------------------------------------------------*/
.img_sec02 {
  float: left;
  width: 45%;
    padding-top: 1em;
    padding-right: 1em;
    padding-bottom: 2em;

}
.txt_sec02 {
    float: right;
  width: 55%;
  padding-top: 2em;
  font-size: 1.1em;
}

ul.ul_nayami {
  padding: 0 0.5em;
  position: relative;

}

ul.ul_nayami li {
  line-height: 1.4;
  padding: 0.5em 0 0.5em 2.2em;
  list-style-type: none!important;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative; /* アイコンの位置調整用 */
}

ul.ul_nayami li img.icon {
  width: 24px; /* アイコンのサイズを調整 */
  height: 24px;
  position: absolute;
  left: 0.3em; /* 左端からの距離 */
  vertical-align: middle;

}

ul.ul_nayami li:last-of-type {
  border-bottom: none;
}

/*--------------------------------------------------
サンプル動画
-----------------------------------------------------*/
.tit_movie {
    width: 45%;
    margin: 1em auto 0;    
   
}


.box_movie1 {
    width: 49%;
    margin: 3em auto 2em;
}



.ctn_movie {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}


.box_movie {
    width: 49%;
    margin: 0 0 2em;
}

.iframe-wrap {
    position: relative;
    width: 95%;
    padding-top: 56.25%;
    overflow: auto;
}

.iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}



/*--------------------------------------------------
特徴
-----------------------------------------------------*/


.txt_future01 {
  float: left;
  width: 55%;
    padding: 2em 0 3em;

}
.img_future01 {
  float: right;
  width: 40%;
  padding: 2em 0 3em;
}

.txt_future02 {
  float: right;
  width: 55%;
  padding: 0em 1em 0;
}
.img_future02 {
  float: left;
  width: 40%;
  padding: 1em 0;
}

.txt_future03 {
  float: left;
  width: 55%;
  padding: 3em 0 0;
}
.img_future03 {
  float: right;
  width: 40%;
  padding: 4em 0 0;
}


/*--------------------------------------------------
匠プラン
-----------------------------------------------------*/
.tit_takumi {
  width: 45%;
  margin: 4em auto 1em;

}

.img_price {
  width: 95%;
  margin: 0 auto 1em;
}

.tit_flow {
    width: 45%;
    margin: 4em auto 0;    
   
}

.flow_takumiplan {
  width: 90%;
  margin: 2em auto 0;
}

/*--------------------------------------------------
修プラン
-----------------------------------------------------*/
.tit_osamu {
  width: 45%;
  margin: 0 auto 1em;

}
.box_osusume {
  background: rgba(191,161,202,0.7);
  padding: 2em 2em 1em;
  border-radius: 15px;
  margin: 2em 0;
}
.tit_osusume {
  width: 45%;
  margin: 1em auto 0;
}
.img_osusume {
  float: right;
  width: 47%;
}
.txt_osusume {
  float: left;
  width: 50%;
  padding-top: 1em;
}
.flow_osamuplan {
  width:90% ;
  margin: 2em auto 0;
}


/*--------------------------------------------------
メッセージ
-----------------------------------------------------*/
.txt_message {
  float: right;
  width: 63%;
  background: rgba(255,255,255,0.65);
  padding: 2em;
}
.img_message {
  float: left;
  width: 35%;
}

.img_ceo {
  width: 70%;
  margin: 0 auto;
}

.logo_message {
  width: 80%;
  margin-bottom: 0.5em;
}

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

.fadein {
    opacity : 0;
    transform: translateY(10px);
    transition: all 2s;
}
.fadeinleft01 {
    opacity : 0;
    transform: translateX(-10px);
    transition: all .5s;
}

.fadeinleft02 {
    opacity : 0;
    transform: translateX(-20px);
    transition: all 1s;
}
.fadeinleft03 {
    opacity : 0;
    transform: translateX(-28px);
    transition: all 1.5s;
}


/*左からフェードイン*/
.fadeinleft {
    opacity : 0;
    transform: translateX(-20px);
    transition: all 1.5s;
}
/*右からフェードイン*/
.fadeinright {
    opacity : 0;
    transform: translateX(20px);
    transition: all 1.5s;
}



/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.qa {
  width: 10%;
  margin: 3em auto 1em;
}
.accordion {
    max-width: 90%;
    padding:  0;
    text-align: left;
    margin: 0 auto;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
.accordion-hidden {
    display: none;
}

/* Question部分 */
.accordion-open {
    display: block;
    padding: 1em 3em 1em 1em;
    cursor: pointer;
    margin: 7px 0;
    position: relative;
    background-color: #ebe1ee;
    font-weight: bold;
    font-size: 1.1em;
    text-align: left;
    border-radius: 15px;
    /* 変更部分 */
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
    content: '';
    width: 20px;
    height: 3px;
    background: #a30d58;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
    transform: translateY(-50%) rotate(90deg);
    transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
    transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transition: 0.5s;
    /* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
    height: auto;
    opacity: 1;
    padding: 10px 1.5em;

}


/*--------------------------------------------------
お問い合わせフォーム
-----------------------------------------------------*/

.wrap_form {
  margin: 0 auto;
  padding: 3em 2em 1em;
  background-color: #fff;
  border-radius: 10px;
}

.Form-Item-Label-Required {
 
  margin-right: 8px;
  width: 40px;
  line-height: 1.7em;
  display: inline-block;
  text-align: center;
  background: #dbcdac;
  font-size: 75%;
}


table.formTable{
width:100%;
margin:0 auto;
border-collapse:collapse;
}
table.formTable td,table.formTable th{
border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
padding:22px 10px;
}
table.formTable th{
width:30%;
font-weight:normal;
text-align:left;
  font-weight: bold;
}

form input[type="text"] {
width:50%;
padding:7px 10px;
display:block;
  border-color:#ccc; 
  border-style: solid;
  border-width: 1px;
      font-size: 1.1em;
  border-radius: 5px;
}
form input[type="text02"] {
width:70%;
padding:7px 10px;
display:block;
      border-color:#ccc; 
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
      font-size: 1.1em;
}

form textarea {
width:90%;
padding:10px;
display:block;
      border-color:#ccc; 
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  font-size: 1.1em;

}

.form_btn {
  padding: 1em 0;
  margin-top: 1em;
  text-align: center;
}

.entry_btn {
  display: inline-block;
  position: relative;
  width: 50%;
  margin: 0.5em;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #a30d58;
  color: #a30d58;
  font-size: 1.3em;
  border-radius: 100vh;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5em ;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
}
.entry_btn:hover {
  background-color: #a30d58;
  color: #fff;
  border: none;
}


/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
.wrap_form  {
width:95%;
margin:0 auto;
      padding: 2em 1em;
      border-radius: 10px;
  }
table.formTable th, table.formTable td {
width:auto;
display:block;
  padding: 12px 5px;

}
table.formTable th {
margin-top:5px;
border-bottom:0;
}
form input[type="text"], form input[type="text02"],form textarea {
width:90%;
padding: 10px;
display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
display:block;

}
  table.formTable td {
  border-bottom: none;
}

  
.entry_btn {
  width: 80%;
  margin: 0 auto;
  }
}

    /*--------------------------------------------------
下部固定ヘッダー（スマホ）
-----------------------------------------------------*/
     
#sp_btn {
        display: none!important;
}

.section_pp {
  padding: 4em 0;
}


.sec_pp {
  background-color: #fff;
  padding: 4em 1em;

}

table{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
    margin-bottom: 6em;
}
table td,table th{
	border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
padding:22px 10px;
}
table th{
	width:30%;
	font-weight:normal;
	text-align:left;
    font-weight: bold;
}



/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #f8f5ee;
  padding: 2em 2em ;
  text-align: center;
  font-size: 1.4em;
  color: #41220f;
}
.ft_insta {
  display: block;
  width: 120px;
  margin: 0 auto 20px;
}


.footer a {
  color: #41220f;
}
.footer p {
  color: #41220f;
}