/* ===============================
　　共通
=============================== */
* {
    padding: 0;
    list-style: none;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

body {
    text-align:center;
    color: #876827;
}

p{
    font-size: 20px;
    font-family: "RocknRoll One";
}

.cf:after {
    content: " ";
    display: block;
    clear: both;
}



/* ===============================
　　フォント
=============================== */


/* ===============================
　　ヘッダー
=============================== */
.header {
    width: 1000px;
}
.header .hanasaku_rogo01 img {
    height: 70px;
    margin-left: 350px;
    float: left;
    margin-bottom: 20px;
}

.SNS_logo img {
    width: 8%;
    float: right;
    margin: 10px;
} 


/* ===============================
　　メイン
=============================== */

.main_title {
    width: 1000px;
    text-align: center;
}
.main_title img {
    width: 500px;
}
.main_title p {
    margin-top: 30px;
    font-size: 30px;
}



/**
 * Carousel.sass
 * @author: Dang Van Thanh
 * @github: https://github.com/dangvanthanh/carousel.sass
 * @description: A Simple Carousel Pure CSS Using Sass
 * @version: 1.0.0
 */
 .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__next > label:nth-child(1), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__prev > label:nth-child(4), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__next > label:nth-child(5), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__prev > label:nth-child(3), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__next > label:nth-child(4), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__prev > label:nth-child(2), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__next > label:nth-child(3), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__prev > label:nth-child(1), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__next > label:nth-child(2), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__prev > label:nth-child(5) {
    opacity: 1 !important;
    z-index: 3;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  
  body {
    background: #fcfcfc;
    margin: 0;
  }
  
  .container {
    width: 800px;
    min-width: 300px;
    margin: 30px auto;
  }
  
  .carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .carousel > input[type=radio] {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
  }
  .carousel > input[type=radio]:checked ~ .carousel__items .carousel__item,
  .carousel > input[type=radio]:checked ~ .carousel__prev > label,
  .carousel > input[type=radio]:checked ~ .carousel__next > label {
    opacity: 0;
  }
  .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__items .carousel__item:nth-child(1) {
    opacity: 1;
  }
  .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__nav > label:nth-child(1) {
    background: #ccc;
    cursor: default;
    pointer-events: none;
  }
  .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__items .carousel__item:nth-child(2) {
    opacity: 1;
  }
  .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__nav > label:nth-child(2) {
    background: #ccc;
    cursor: default;
    pointer-events: none;
  }
  .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__items .carousel__item:nth-child(3) {
    opacity: 1;
  }
  .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__nav > label:nth-child(3) {
    background: #ccc;
    cursor: default;
    pointer-events: none;
  }
  .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__items .carousel__item:nth-child(4) {
    opacity: 1;
  }
  .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__nav > label:nth-child(4) {
    background: #ccc;
    cursor: default;
    pointer-events: none;
  }
  .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__items .carousel__item:nth-child(5) {
    opacity: 1;
  }
  .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__nav > label:nth-child(5) {
    background: #ccc;
    cursor: default;
    pointer-events: none;
  }
  .carousel__items {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    height: 600px;
    position: relative;
  }
  .carousel__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 2s;
    -webkit-transition: opacity 2s;
  }
  .carousel__item img {
    width: 100%;
    vertical-align: middle;
  }
  .carousel__prev > label, .carousel__next > label {
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
  }
  .carousel__prev > label:hover, .carousel__prev > label:focus, .carousel__next > label:hover, .carousel__next > label:focus {
    opacity: 0.5 !important;
  }
  .carousel__prev > label:before, .carousel__prev > label:after, .carousel__next > label:before, .carousel__next > label:after {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
  }
  .carousel__prev > label:before, .carousel__next > label:before {
    background: linear-gradient(to top, #fff 0%, #fff 10%, rgba(51, 51, 51, 0) 10%), linear-gradient(to left, #fff 0%, #fff 10%, rgba(51, 51, 51, 0) 10%);
    width: 60%;
    height: 60%;
    top: 20%;
  }
  .carousel__prev > label {
    left: 2%;
  }
  .carousel__prev > label:before {
    left: 35%;
    top: 20%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  .carousel__next > label {
    right: 2%;
  }
  .carousel__next > label:before {
    left: 10%;
    transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
  }
  .carousel__nav {
    position: absolute;
    bottom: 3%;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 3;
  }
  .carousel__nav > label {
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.125%;
    width: 20px;
    height: 20px;
  }

/* ===============================
　　体験内容
=============================== */

.content01 {
  float: left;
  width: 1000px;
  margin-bottom: 10px;
}

.content01.container_01 img {
left: 0px;
top:0px
}

.content01 {
    border-top: 1px #876827 solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

.content01 .column-1 {
  width: 500px;
  margin-right: 0px;
  display: block;
}

.midasi_01, .midasi_02, .midasi_03 {
  color: var(--2, #FCA3FF);
  text-align: center;
  font-family: "RocknRoll One";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 40px */
  letter-spacing: 4px;
}
.midasi_01 {
  color: var(--2, #FCA3FF);
}
.midasi_02 {
color: var(--2, #7BCB7E);
}
.midasi_03 {
color: var(--2, #32B0FC);
}
.midasi_03 span {
font-size: 20px;
letter-spacing: 2px;
}

.sale {
  color: #fff;
  font-size: 15px;
  font-family: "A-OTF UD Shin Maru Go Pro";
  background-color: #FF6666;
  padding: 5px;
  border-radius: 10px;
  margin-top: 5px;
  letter-spacing: 3px;
}

.column-1 a {
  color:#876827;
  font-family: "A-OTF UD Shin Maru Go Pro";
  font-size: 15px;
  font-style: normal;
  font-weight: 505;
  line-height: 125%;
  letter-spacing: 5px;
  border-radius: 15px;
  background-color: #e0e0e0;
  padding: 10px;
  max-width: 200px;
  display: block;
  margin-bottom: 20px;
}

.column-1 a span {
  font-size: 26px;
}

table th,
table td {
 padding: 5px;
}

table td {
  font-size: 30px;
  font-weight: bold;
}

table {
    border-collapse:separate;
}

.top {
  color: var(--, #876827);
  font-family: "A-OTF UD Shin Maru Go Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 14px */
  letter-spacing: 7px;
  line-height: 0px;
}

.line {
  color: var(--, #876827);
  font-family: "A-OTF UD Shin Maru Go Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 9.6px;
}

table th {
  background-color: #876827;
  color: #ffffff;
  border-radius: 10px;
  text-align: center;
}

.pink {
  color: #F66;
  font-family: "A-OTF UD Shin Maru Go Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 32px */
  letter-spacing: 1.6px;
}

.orange {
  color: var(--2, #FFA640);
  font-family: "A-OTF UD Shin Maru Go Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1.6px;
}


/* ===============================
　　キャッチ
=============================== */


/* ===============================
　　フッター
=============================== */

.footer_main {
  max-width: 1000px;
  margin: 0 auto;
}

.footer nav {
    margin-top: 100px;
    margin-bottom: 50px;
    text-align:left;
    display:flex;
}

.footer nav ul {
font-family: "A-OTF UD Shin Maru Go Pro";
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 19.5px */
letter-spacing: 1.5px;
text-align:left;
}

.footer01 {
  width: 1000px;
  height: 300px;
  float: left;
}

.footer nav ul li a {
    text-align:left;
    display: block;
    width: 700px;
}

.address{
    color: var(--, #876827);
    font-family: "A-OTF UD Shin Maru Go Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400px;
    line-height: 100%; /* 16px */
    letter-spacing: 1.6px;
    text-align: left;
    display:flex;
    text-indent: 10px;
    margin-bottom: 30px;
    width: 800px;
    display:block;
}

.tel {
    color: var(--, #876827);
    font-family: "A-OTF UD Shin Maru Go Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 24px */
    letter-spacing: 2.4px;
    text-align: left;
    line-height: 0;
    text-indent:10px;
  }

.footer02 {
    width: 50%;
    float: left;
}

#INSTA_yoyaku_icon img {
    height: 200px;
    margin-left: 250px;
    margin-bottom: 5px;
    text-align: 40%;
}
#QR {
    width: 50%;
    margin: 0 auto;
    float: right;
}
  
#QR img {
    height: 200px;
    margin-right: 250px;
}

.hanasaku {
  height: 100px;
  margin-top: 300px;
}

.hanasaku_rogo02{
  width: 100%;
  margin-block: 10%;
}

.hanasaku_rogo02 img {
    margin-bottom: 10px;
    float: left;
    margin-left: 180px;
    width: 300px;
    height: auto;
}

.marker {
    background-color: #FCA3FF;
    height: 20px;
    width: 1000px;
    margin-top: 50px;
}

/* ===============================
    以下_レスポンシブ対応
=============================== */



@media screen and (max-width: 768px) {
    /* 768px以下に適用されるCSS */

}

@media screen and (max-width: 480px) {
    /* 480px以下に適用されるCSS */

}