@charset "UTF-8";
/*===============================================================
mixins
====================================================================*/
/*=====================================================
color
==========================================*/
/*==================================================
共通クラス
================================================*/
main {
  padding-top: 70px;
}


body {
  margin: 0;
  color: #FFF;
 font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体', sans-serif;
  line-height: 1.68;
  background-color: #1a1917;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
}

section {
  padding: 50px 10px;
}

h2.section__title{
  margin: 0;
  display: inline-block;
  border-bottom: 1px solid;
  border-color: #FB1F1F;
  color: #FFF;
  font-weight: lighter;
  margin-bottom: 50px;
  letter-spacing: 2.5px;
 }



/**************

header

*****************/
h1.name{
  margin: 0;
  display: inline-block;
  border-top: 1px solid;
  border-color: #FB1F1F;
  font-size: 60px;
  letter-spacing: 3px;
  font-weight: lighter;
  font-family: 'Snell Roundhand','Savoye LET','Snell Roundhand',sans-serif;
 }


.header__inner {
  max-width: 1500px;
  height: 810px;
  background-image:url(../img/top_img.png);
  background-repeat:no-repeat; 
  background-position:right top;
  position: relative;
}
 .header__left{
  position: absolute;
  top: 10%;
  left: 15%;
 }

.sp__header{height: 650px;}
.sp__header_page{height: 0;}
/****

menu

*******/
ul.menu{
  list-style: none;
  padding: 0;
  padding-left: 5%;
  margin-top: 50px;
}

ul.menu > li{
  margin-bottom: 10px;
}

ul.menu > li >a{
  text-decoration: none;
  color: #FFF;
  font-size: 25px;
}


/********************

main

*******************************/
.main {
  padding-top: 70px;
}

/***  ハンバーガー ***/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  transition: all 0.5s;/*アニメーション設定*/
}


.menu-content ul {
  padding: 70px 10px 0;
  width: 55%;
    margin: 0 auto;
    margin-right: 0px;
    background: #1a1917d6;
    padding-bottom: 30px;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  text-indent: 10px 
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}
/*********************

history

************************/
section#history{
  text-align: center;
}

.img__area{
  width: 40%;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse; /* セルの境界線を一本にする */
}
th, td {
  border: none; /* セルの境界線スタイル */
  text-align: left;
  padding: 8px;
}
th {
  background-color: #f2f2f2; /* ヘッダーの背景色 */
}


.speech-image {
  width: 100%;
  background-image: url('../img/message.png'); 
  background-repeat: no-repeat;
  height: 700px;
}
.speech-text {
  padding: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 10;
  line-height: 2.5;
  letter-spacing: 3px;
  font-weight: lighter;
  top: 30px;
  left: 250px;
}

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

  h2.section__title {
    margin-bottom: 25px;
}

  .img__area{
    width: 90%;
  }
  th, td {
   display: block;
   padding: 2px;
  }
  tr {
    display: block;
    margin-top: 20px;
}
.speech-text {
  padding: 30px 20px 0 20px;
  border-radius: 5px;
  position: relative;
  z-index: 10;
  line-height: 1.7;
  letter-spacing: 0.5px;
  font-weight: lighter;
  top: 0;
  left: 0;
}

.speech-image {
  background-size: cover;
}
section#message {
  padding: 50px 0px;
}

}

/******************

contact

***********************/
section#contact{text-align: center;}
.form-group {
  width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

label {
  display: block;
  width: 50%;
    text-align: start;
}
label.male{
  margin: 0;
}

input#male, input#female{
  margin: 0;
}


input[type="text"],
input[type="email"],
input[type="date"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  background-color: #9f1414;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px 0;
}

button[type="submit"]:hover {
  color: #9f1414;
  background-color: #FFF;
}

@media screen and (max-width: 767px) {
  .form-group {
    width: 95%;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
  }
  
  label {
    display: block;
    width: 50%;
      text-align: start;
      font-size: 11px;
  }
}

/******************

Online Salon

*****************/
p.salon_form{
    text-align: center;
    font-size: 30px;
    background: #a80000;
    padding: 10px 0;
}

section#salon{text-align: center;}

p.salon {
  font-size: 30px;
  line-height: 2;
  margin: 100px 0;
}
.salon-text{
    line-height: 2.5;
    letter-spacing: 3px;
    font-weight: lighter;
    text-align: left;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
  section#salon >.sp__header {
    height: 100px;
}

  p.salon {
    font-size: 22px;
    line-height: 2;
    margin: 50px 0;
    text-align: left;
  }
  .salon-text{
    line-height: 1.7;
  letter-spacing: 0.5px;  
  font-size: 13px;
  }
  p.salon_form{
    text-align: center;
    font-size: 20px;
    background: #a80000;
    padding: 5px 0;
}

}

/********レスポンシブ*****}***/

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  section {
    padding: 20px 5px;
  }
  
}
@media screen and (min-width: 768px) {
  .is-sm {
    display: none;
  }
}