@charset "UTF-8";

/*------------全体設定とヘッダーは別途css------------*/

#main {
  margin-top: 80px;
}
@media screen and (min-width: 960px) {
  #main {
    margin-top: 14px;
  }
}

#main .container {
  /*background-color: #d6ffa5;*/
  max-width: 100%;
}

.h2haikei {
  width: 100%;
  height: 160px;
  position: relative;
  background-image: url(../images/bg_kimono.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

h2 {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  font-size: 2rem;
  padding: 0.8rem;
  background-color: rgba(255,255,255,0.4);
}
@media screen and (min-width: 960px) {
  h2 {
    font-size: 2.4rem;
  }
}


h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 32px;
}

.hrborder2 {
    width: 100%;
    margin: 4px auto 8px auto;
    border-bottom: 1px solid #000;
}



/*----------------着付け ここから-----------------*/

.wrap_kimono {
  width: 90%;
  margin: 40px auto;
}
@media screen and (min-width: 960px) {
  .wrap_kimono {
    width: 1080px;
  }
}



/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 200px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 4px solid #F5D0DD;
  background-color: #DBDAD0;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #9c9c9c;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 24px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#kyousitu:checked ~ #kyousitu_content,
#staff:checked ~ #staff_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #F5D0DD;
  color: #fff;
}


/*着物コンセプト*/
.concept_kimono .inner .sawarabif {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
}



.ulwrap {
  width: 100%;
  margin: 24px auto;
}

.ul_kituke li {
  flex-direction: column;
  margin-bottom: 48px;
}

.ul_kituke li .txt_kimono {
  background-image: url("../images/bg_kimonotxt.png");
  background-color:rgba(255,255,255,0.8);
  background-blend-mode:lighten;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border: 1px solid #DBDAD0;
  padding: 40px;
}

@media screen and (min-width: 960px) {
  .ulwrap {
    width: 96%;
    margin: 32px auto;
  }

  .ul_kituke li {
    display: flex;
    text-align: center;
    height: 320px;
    flex-direction: row;
  }

   /* 偶数の行に対して指定 */
 .ul_kituke li:nth-child(2n) {
    flex-direction: row-reverse;
  }

  .ul_kituke li .photo_kimono,
  .ul_kituke li .txt_kimono {
    width: 50%;
  }

.txt_kimono .mannaka {
  position: absolute;
  top: 50%; /*親のtopから50%*/
  left: 50%; /*親のleftから50%*/
  transform: translateY(-50%) translateX(-50%); /*子要素自体の大きさを考慮*/
  margin: 0; /*margin:0を入れる*/
  }

.photo_kimono img {
  width: 100%;
  height: 100%;
  }
}

.nedan {
  color: #F19CBB;
  font-size: 1.2rem;
}

/*ヘアセット*/
.wrap_hairset {
  width: 96%;
  margin: auto;
}

.ul_hair {
  display: block;
}

.ul_hair-item {
  width: 98%;
  padding: 8px;
  background-color: #fff;
  border-left: 1px solid #DBDAD0;
  border-top: 1px solid #DBDAD0;
  border-bottom: 4px solid rgba(221, 202, 175, 0.4);
  border-right: 4px solid rgba(221, 202, 175, 0.4);
  text-align: center;
}

@media screen and (min-width: 960px) {
  .ul_hair {
    display: flex;
    justify-content: space-between;
  }

  .ul_hair-item {
    width: 30%;
    
  }
}


