@charset "utf-8";
/* ======================================================================
    共通
==========================================================================*/
h1{
  margin-bottom:10px;
  font-size: 30px;
  color: #3B3B3B;
  padding: 1rem 2rem;
  border-left: 6px double #d7177b
}

img {
	width: 100%;        		/* max-widht: 100%は避ける(レンダリングでチラつく) */
	height: auto;
}

html,body{ width:100%; overflow-x:hidden; }

body{
  margin: 0;
  height: 100%;
}

main{
  flex: auto;
}

@media screen and (max-width : 767px){
 *{
  font-size: 14px;
 }
  h1{
    font-size: 27px;
    
  }
  h2{
    font-size: 20px;
  }
  h3{
    font-size: 18px;
  }
 }

.container{
  height: 100%;
  display: flex;
  flex-direction: column;
}



/*
SLIDE MENU
================================================ */
.btn {
  width: 60px;
  height: 60px;
  background-color: #ffc3dc;/*p2+*/
  border-radius: 50%;
  position: fixed;
  top:10px;
  right:15px;
  opacity: 0.8;
  z-index: 10001;
  display: block;
}

.btn span {
  width:50%;
  border: 2px solid #fe7faa;/*li2+*/
  background-color: #fe7faa;/*li2+*/
  position: absolute;
  top:25%;
  left: 22%;
  transition: 0.3s;
}
.btn span:nth-child(2) {
  top:48%;
}
.btn span:nth-child(3) {
  top:72%;
}
.active:nth-child(1) {
  top:47%;
  left: 17%;
  width: 60%;
  transform: rotate(-45deg);
}
.active:nth-child(2) {
  opacity: 0;
}
.btn .active:nth-child(3) {
  width: 60%;
  top:47%;
  left: 17%;
  transform: rotate(45deg);
}


.menu {
  background-color: #d7177b;
  box-shadow: 0 0 20px rgba(22, 22, 22, 0.1);
  overflow: hidden;
  width: 40%;
  height: 100vh;
  position: fixed;
  padding-top: 100px;
  top: 0;
  right: -40%;
  transition: 0.5s;
  z-index: 10000;
}
.menu p {
    width: 90%;
    height: 10vh;
    border-bottom: 0.1px solid #ad065d;
    margin: 0 auto;
    text-align: center;
    align-content: end;
    font-size: 30px;



}
  .activeCont {
      opacity: 1;
  }


.activeBtn {
  right: 0;
}

a:link {
	color: #fcfcfc;
	text-decoration: none;
}
a:visited {
	color: #fcfcfc;
	text-decoration: none;
}
a:hover {
	color: #fcfcfc;
}
a:active {
	color: #fcfcfc;
}

/*
logo
================================================ */
.logo{
    display: grid;
    place-items: center; 
    width: 100%;
    padding: 30px;
    max-width: 400px;
    min-width: 200px;
  }

  @media screen and (max-width : 580px){
    .logo{
      width: 70%;
      padding: 15px;
    }
   }
/* ======================================================================
    ヒーロー部分
==========================================================================*/
.indicator {
    margin: 0;
    padding: 0;
  }
.list li {
    list-style: none;
  }

  /* ↓ スライドの外枠 */
  .slide-wrapper {
    width: 100%;
    height: 35vw;
    position: relative;
    overflow: hidden; /* はみ出したスライドを隠す */
  }
  /*  ↓ スライド（コンテンツ） */
  .slide { /*スライド全体 */
    width: 300%;
    height: 100%;
    display: flex;
    transition: all 0.3s;
    text-align: center;
  }
  .slide div { /* スライド */
    width: 33.33%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-repeat: none;
    background-size: cover;
    margin: 0;
  }
  .slide1 { /* スライドさせるために必要なクラス */
    transform: translateX(0);
  }
  .slide2 { /* スライドさせるために必要なクラス */
    transform: translateX(-33.33%);
  }
  .slide3 { /* スライドさせるために必要なクラス */
    transform: translateX(-66.66%);
  }
  .slide div:nth-of-type(1){ /* 背景色 */
    background-image: url(../images/hero_1.png);
  }
  .slide div:nth-of-type(2){ /* 背景色 */
    background-image: url(../images/hero_2.png);
  }
  .slide div:nth-of-type(3){ /* 背景色 */
    background-image: url(../images/hero_3.png);
  }
  /* ↓ 左右のボタン */
  .next {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 50%;
    z-index: 3;
    cursor: pointer;
    border-top: solid 3px #3B3B3B;
    border-right: solid 3px #3B3B3B;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
  }
  .prev {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 25px;
    bottom: 50%;
    z-index: 3;
    cursor: pointer;
    border-top: solid 3px #3B3B3B;
    border-right: solid 3px #3B3B3B;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
  }
  /* ↓ インジケーター */
  .indicator {
    width: 100%;
    position: absolute;
    bottom: 20px;
    display: flex;
    column-gap: 18px;
    z-index: 3;
    justify-content: center;
    align-items: center;
  }
  .indicator li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    list-style: none;
    background: #fcfcfc;
    border: 2px #3B3B3B solid;
    cursor: pointer;
  }
  .indicator li:first-of-type {
    background-color: #3B3B3B;
  }

  @media (max-width: 767px) {
      /* ↓ スライドの外枠 */
    .slide-wrapper {
      height: 60vw;
    }
    .slide1 { /* スライドさせるために必要なクラス */
      transform: translateX(0);
    }
    .slide2 { /* スライドさせるために必要なクラス */
      transform: translateX(-33.33%);
    }
    .slide3 { /* スライドさせるために必要なクラス */
      transform: translateX(-66.66%);
    }
    .slide div:nth-of-type(1){ /* 背景画像 */
      background-image: url(../images/hero_1mini.png);
    }
    .slide div:nth-of-type(2){ /* 背景画像 */
      background-image: url(../images/hero_2mini.png);
    }
    .slide div:nth-of-type(3){ /* 背景画像 */
      background-image: url(../images/hero_3mini.png);
    }
    /* ↓ インジケーター */
    .indicator {
      column-gap: 10px;
    }
    .indicator li {
      width: 5px;
      height: 5px;
    }
  }
  
/* ======================================================================
    info
==========================================================================*/
#info{
    margin: 100px;
    color: #3B3B3B;
  }
  #info ul li{
    display: flex;
    padding:20px;
    border-bottom: 0.5px solid #c5c5c5;
    color: #3B3B3B;
  }
  .date{
    margin-right:20px;
  }
  
  @media (max-width: 675px) {
    #info{
      margin: 60px 30px;
    }
    #info ul li{
      display: grid;
      padding:10px;
      line-height: 25px;
    }
    .topics{
      margin-left:-50px;
  }
  }

/* ======================================================================
    servics
==========================================================================*/
#service{
    margin: 100px;
    color: #3B3B3B;
  }
  .zentai{
    display: flex;
    justify-content: space-around;
  }
  .naiyou{
    display: grid;
    place-items: center; 
    text-align: center;
    width:30%;
  }
  
  .gazou{
    width:120px;
    height:120px;
    margin: 30px 0 15px 0;
  }
  .setumei{
    line-height: 25px;
    margin:10px 0 10px 0;
    color:#3B3B3B;
  }
  
  @media (max-width: 915px) {
    .zentai{
      display: grid;
      align-items: center;
    }
    .naiyou{
      width: 100%;
    }
    }
  
  @media (max-width: 675px) {
    #service{
      margin: 60px 30px;
      color: #3B3B3B;
    }
    }
  
  
  /* ======================================================================
     access
  ==========================================================================*/
  #access{
    margin: 100px;
    color: #3B3B3B;
  }
  
  .access{
    display: flex;
    justify-content: center;
  }
  .map{
    margin: 50px;
    width:450px;
  }
  
  .map iframe{
    height: 450px;
  }
  
  .itikankei{
    display: grid;
    place-items: center; 
    line-height: 30px;
  }
  
  @media (max-width: 1070px) {
    .access{
      display: grid;
    }
    .map{
      margin: 30px auto;
    }
  }

  
  @media (max-width: 675px) {
    #access{
      margin: 60px 30px;
    }
  }

  @media (max-width: 500px) {
    .map{
      margin: 30px auto;
      width:300px;
    }
    .map iframe{
      height: 300px;
    }
  }
    
  /* ======================================================================
     contact
  ==========================================================================*/
  #contact{
    margin: 100px;
    color: #3B3B3B;
  }

  /* フォーム */
  .Form {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }
  .Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
  }
  
  .Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }
  
  .Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 60px;
    display: flex;
    justify-content: center;
    background: #d7177b;
    color: #fff;
    font-size: 14px;
  }
  
  .Form-Item-Input {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #fcfcfc;
    font-size: 18px;
  }
  
  .Form-Item-Textarea {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    height: 216px;
    width: 100%;
    max-width: 410px;
    background: #fcfcfc;
    font-size: 18px;
  }
  
  .Form-Btn {
    border-radius: 6px;
    border: 0.25px solid #d7177b;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #d7177b;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 50px
  }
  
  
  
  @media (max-width: 800px) {
    .Form-Item {
      display: grid;
    }
    .Form-Item-Textarea{
      margin:10px;
      width: 90%;
    }
    .Form-Item-Input{
      margin:10px;
      width: 90%;
    }
    .Form-Item-Label-Required {
      margin: 10px;
    }
    .Form-Btn {
      width: 180px;
    }
  }
  
  @media (max-width: 675px) {
    #contact{
      margin: 60px 30px;
    }
    .Form {
      margin-top: 30px;
    }
    .Form-Btn {
      margin-top: 15px;
      padding-top: 10px;
      padding-bottom: 10px;
      width: 150px;
      font-size: 15px;
    }
    }
  
  
  /* 表 */
  .table_design01 {
    border-collapse: collapse;
    width: 40%;
    margin: 50px;
    max-width: 700px;
  }
  .table_design01 th, .table_design01 td {
    border: 2px solid #fff;
    background-color: #fff3fa;
    padding: 1em;
  }
  .table_design01 th {
    background-color: #d7177b;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 20%;
    min-width: 4em;
  }
  .adress{
    display: flex;
    justify-content: center;
  }
  caption{
    text-align: left;
  }

  caption h2{
    margin-bottom: 5px;
  }
  
  /* 営業時間 */
  .tel{
    display: grid;
    align-content: center; 
    line-height: 30px;
  }
  .tel h3{
    margin-top: 100px;
    margin-bottom: 5px;
  }

  .tel p{
    margin-top: 5px;
    margin-bottom: 15px;
  }
  
  @media (max-width: 830px) {
    .adress{
      display: grid;
      justify-items: center;
  }
   .tel{
    line-height: 20px;
  }
   .table_design01{
    width: 100%;
  
  }
  }

  @media (max-width: 830px) {
    .tel h3{
      margin-top: 50px;
    }
  
    .tel p{
      font-size: 13px;
      line-height: 15px;
    }
  
  }
  
  /* ======================================================================
   Topに戻る
==========================================================================*/
   
  #js-pagetop {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #575757;
    bottom: 50px;
    right: 50px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
  }
  
   
  #js-pagetop span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    
  } 
  
  @media screen and (max-width : 580px){
    #js-pagetop {
      right: 2rem;
    }
    .slide1{
      object-fit:fill;
    }
   }

  /* ======================================================================
     フッター
  ==========================================================================*/
  
  
  footer{
    background-color: #d7177b;
    color: #FCFCFC;
    display: grid;
    place-items: center; 
    padding: 10px;
    margin-top: auto;
  }
  