@charset "UTF-8";
.copy_area {
  text-align: left;
  margin: 3em 0;
  position: relative;
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  .copy_area {
    margin: 2em 0;
    font-size: 90%;
  }
}
.copy_area .scroll_down {
  position: absolute;
  bottom: 0px;
  right: 0%;
  z-index: 1;
  color: #2A2B2B;
}
.copy_area .scroll_down .scroll_down_inr .arrow {
  width: 1px;
  height: 100px;
  background-color: none;
  position: relative;
  overflow: hidden;
}
.copy_area .scroll_down .scroll_down_inr .arrow:before {
  content: "";
  width: 2px;
  height: 100px;
  background-color: #2A2B2B;
  position: absolute;
  top: -100px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}
@-webkit-keyframes arrow {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    transform: translate3d(-50%, 100px, 0);
  }
}
@keyframes arrow {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    transform: translate3d(-50%, 100px, 0);
  }
}

.main_v {
  width: 100%;
  height: calc(100vh - 70px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_v {
    height: 50vh;
  }
}
.main_v .main_v_slider {
  width: 100%;
  height: calc(100vh - 70px);
}
@media screen and (max-width: 767px) {
  .main_v .main_v_slider {
    width: 100%;
    height: 50vh;
  }
}
.main_v .main_v_slider .swiper {
  width: 100%;
  height: 100%;
}
.main_v .main_v_slider .swiper-wrapper,
.main_v .main_v_slider .swiper-slide > div {
  height: 100%;
  width: 100%;
}
.main_v .main_v_slider .slide {
  background-size: cover !important;
  background-position: center !important;
}
@-webkit-keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
.main_v .main_v_slider .swiper-slide-active .slide_img,
.main_v .main_v_slider .swiper-slide-duplicate-active .slide_img,
.main_v .main_v_slider .swiper-slide-prev .slide_img {
  -webkit-animation: zoom-in 10s linear 0s 1 normal both;
          animation: zoom-in 10s linear 0s 1 normal both;
}

.about_section .about_section_inr {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .about_section .about_section_inr {
    display: block;
  }
}
.about_section .about_section_inr .section_title {
  margin-right: 5%;
}
@media screen and (max-width: 767px) {
  .about_section .about_section_inr .section_title {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
.about_section .about_section_inr .section_title {
  flex: 1;
}
.about_section .about_section_inr .txt {
  flex: 2;
}
.about_section .about_section_inr .txt p {
  margin-bottom: 1em;
}

.concept_slider {
  margin: 160px 0;
}
@media screen and (max-width: 767px) {
  .concept_slider {
    margin: 60px 0;
  }
}
.concept_slider .simply-scroll-container {
  position: relative;
}
.concept_slider .simply-scroll-clip {
  position: relative;
  overflow: hidden;
}
.concept_slider .simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: auto;
  /* 崩れる場合にはこちらも設定 */
}
.concept_slider .simply-scroll-list li {
  list-style: none !important;
  float: left;
  width: 480px;
  height: auto;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .concept_slider .simply-scroll-list li {
    width: 200px;
  }
}
.concept_slider .simply-scroll-list li img {
  display: block;
}

.workshop_section .tab_area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.workshop_section .tab_area .tab {
  width: 100%;
  background: #FFFFFF;
  padding: 20px;
  text-align: center;
  border: 1px solid #2A2B2B;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.5s;
}
@media screen and (max-width: 767px) {
  .workshop_section .tab_area .tab {
    padding: 12px;
    width: 100%;
  }
}
.workshop_section .tab_area .tab.tab_active {
  background: #2A2B2B;
  color: #FFFFFF;
}
.workshop_section .tab_area .tab.tab_active:hover {
  opacity: 1;
}
.workshop_section .tab_area .tab:hover {
  background: #2A2B2B;
  color: #FFFFFF;
  opacity: 0.7;
}
.workshop_section .content_area {
  margin: 5% auto;
}
@media screen and (max-width: 767px) {
  .workshop_section .content_area {
    margin: 5% auto;
  }
}
.workshop_section .content_area .content {
  display: none;
}
.workshop_section .content_area .content.show {
  display: block;
}
.workshop_section .price_area {
  display: flex;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .workshop_section .price_area {
    margin-bottom: 20px;
    font-size: 90%;
  }
}
.workshop_section .price_area .col_2 {
  display: flex;
}
.workshop_section .price_area dt {
  border-bottom: 1px solid #2A2B2B;
  padding: 15px 0 15px 0;
  flex: 1;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .workshop_section .price_area dt {
    padding: 10px 0 10px 0;
  }
}
.workshop_section .price_area dd {
  border-bottom: 1px solid #EBEBEB;
  padding: 15px 0;
  flex: 2;
}
@media screen and (max-width: 767px) {
  .workshop_section .price_area dd {
    padding: 10px 0;
  }
}
.workshop_section .price_area dd span {
  font-size: 90%;
}
.workshop_section .reed {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .workshop_section .reed {
    margin-bottom: 20px;
  }
}
.workshop_section .flow_area {
  border-top: 1px solid #2A2B2B;
}
.workshop_section .flow_area .flow_block {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #2A2B2B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .workshop_section .flow_area .flow_block {
    display: block;
  }
}
.workshop_section .flow_area .flow_block .number {
  color: #8B7F30;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .workshop_section .flow_area .flow_block .number {
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .workshop_section .flow_area .flow_block .number {
    text-align: center;
    margin-bottom: 1em;
  }
}
.workshop_section .flow_area .flow_block .txt {
  flex: 2;
  margin: 0 5%;
}
@media screen and (max-width: 767px) {
  .workshop_section .flow_area .flow_block .txt {
    margin: 5% 5%;
  }
}
.workshop_section .flow_area .flow_block .txt h3 {
  font-size: 2.2rem;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 767px) {
  .workshop_section .flow_area .flow_block .txt h3 {
    font-size: 1.6rem;
  }
}
.workshop_section .flow_area .flow_block .txt h3 span {
  margin-left: 1em;
  font-size: 70%;
}
.workshop_section .flow_area .flow_block .txt p {
  font-size: 90%;
}
.workshop_section .flow_area .flow_block .img {
  flex: 1;
}

.profile_section .profile_section_inr {
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .profile_section .profile_section_inr {
    display: block;
  }
}
.profile_section .profile_section_inr .img {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .profile_section .profile_section_inr .img {
    width: 70%;
  }
}
.profile_section .profile_section_inr .txt {
  flex: 1;
  margin-left: 5%;
}
@media screen and (max-width: 1023px) {
  .profile_section .profile_section_inr .txt {
    margin: 30px 0 0;
  }
}
.profile_section .profile_section_inr .txt .name {
  text-align: right;
  margin-top: 1em;
}
.profile_section .profile_section_inr .txt .name h3 {
  font-size: 110%;
}

.information_section .price_area {
  max-width: 680px;
}
.information_section .price_area .block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  font-size: 90%;
}
.information_section .price_area .block.last-child {
  margin-bottom: 0;
}
.information_section .price_area .block dt {
  flex: 1;
  font-weight: bold;
}
.information_section .price_area .block dd {
  flex: 3;
}
.information_section .img_shop {
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .information_section .img_shop {
    display: block;
    margin-bottom: 35px;
  }
}
.information_section .img_shop .block_01 {
  width: 68%;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_01 {
    width: 100%;
    padding: 0;
    margin-bottom: 6px;
  }
}
.information_section .img_shop .block_02 {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_02 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.information_section .img_shop .block_02 .small_img_01 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_02 .small_img_01 {
    margin-bottom: 0;
    width: 50%;
    padding-right: 3px;
  }
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_02 .small_img_02 {
    width: 50%;
    padding-left: 3px;
  }
}
.information_section .img_shop .block_03 {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_03 {
    margin-top: 6px;
  }
}
.information_section .img_shop .block_03 .small_img_01 {
  width: 50%;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_03 .small_img_01 {
    padding-right: 3px;
  }
}
.information_section .img_shop .block_03 .small_img_02 {
  width: 50%;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .information_section .img_shop .block_03 .small_img_02 {
    padding-left: 3px;
  }
}
.information_section .googlemap {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .information_section .googlemap {
    margin: 2em 0;
  }
}
.information_section .googlemap iframe {
  width: 100%;
  height: 580px;
}
@media screen and (max-width: 767px) {
  .information_section .googlemap iframe {
    height: 280px;
  }
}