@charset "utf-8";
/***********************
    main
***********************/
.contents h3 {
  font-size: 1.125em;
  font-weight: 800;
  margin-bottom: 30px;
}
.feature_box p {
  text-decoration: underline;
  margin-bottom: 20px;
}
/* button */
.btn_more {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  height: 40px;
  background: #fff;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none !important;
  margin: 30px auto 0;
  padding: 5px;
  transition: all .3s;
}
/* map */
.map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* info */
.info_group {
  font-weight: 600;
  font-size: 1.125em;
  display: flex;
  flex-wrap: wrap;
}
.info_group dt,.info_group dd {
  width: calc(50% - 5px);
  margin-top: 15px;
}
.info_group dt {
  text-align: right;
  margin-right: 10px;
}
.info_group dt::after {
  content: ":";
  display: inline-block;
  padding: 0 5px;
}
.address {
  line-height: 2;
}

@media screen and (max-width: 480px) { 
/*　画面サイズが480px以下はここを読み込む　*/
  /***********************
    main
  ***********************/
  .page_header {
    position: relative;
  }
  .img_main_box {
    width: 80vw;
    max-width: 300px;
    height: 80vw;
    max-height: 300px;
    background: #fff;
    border-radius: 50%;
    border: #492200 solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
  }
  .img_main_box img {
    width: 50vw;
    max-width: 190px;
  }
  .main_header {
    font-size: 5.5vw;
    font-weight: 600;
    line-height: 2;
    text-align: center;
  }
  /*====== slick ======*/
  .sliderArea {
	  max-width: 100%;
    position: relative;
  }
  .slick-slide {
	  margin: 0 5px;
  }
  .slick-slide img {
	  width: 100%;
	  height: auto;
  }
  .slick-slide {
	  transition: all ease-in-out .3s;
	  opacity: .2;
  }
  .slick-active {
	  opacity: 1;
  }
  .slick-current {
	  opacity: 1;
  }
  .slide_works {
    margin: 0 10px;
    z-index: 10;
  }
  .arrow_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .prev-arrow,.next-arrow {
    display: block;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
  }
  .prev-arrow {
    transform: rotate(180deg);
    left: -15px;
  }
  .next-arrow {
    right: -15px;
  }
  .prev-arrow::before,.next-arrow::before {
    position:absolute;
    content: "";
    width:7px;
    height:7px;
    border-right: 2px solid #492200;
    border-top: 2px solid #492200;
    top:0;
    bottom:0;
    left:-5px;
    right:0;
    margin:auto;
    transform:rotate(45deg);
  }
  /* map */
  .map {
    height: 300px;
  }
}
@media screen and (min-width: 481px) { 
/*　画面サイズが481pxからはここを読み込む　*/
  /***********************
    header
  ***********************/
  header {
    background: #F9DCDC;
    padding-bottom: 1px;
  }
  h2.main_header {
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
    line-height: 2;
  }
  /*====== slick ======*/
  .slide_main .slick-slide.slick-active {
    display: flex;
    justify-content: center;
  }
  .slide_main .slide_box {
    width: 33vw;
    height: 33vw;
    padding: 1.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: bottom center;
    transform: scale(0.75) translate(0,0);
    transition: transform 1s linear;
    position: relative;
  }
  .slide_main .slick-slide.slick-center .slide_box {
    transform: scale(1) translate(0,-3vw);
    transition: transform 1s linear;
  }
  .slide_main .slide_box::after {
    content: " ";
    display: block;
    width: 30vw;
    padding-top: 30vw;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 5;
  }
  .slide_main .slick-slide.slick-center .slide_box::after {
    content: " ";
    display: block;
    width: 45vw;
    padding-top: 45vw;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -15vw;
    z-index: 5;
  }
  .slide_main .slide_box img {
     max-width: 80%;
     max-height: 80%;
     z-index: 10;
  }
  /***********************
    main
  ***********************/
  .contents h3 {
    margin-bottom: 60px;
  }
  .feature_box p {
    margin-bottom: 30px;
  }
  .main_cont_wrap {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro.main_cont_wrap {
    max-width: 700px;
  }
  .img_intro_box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .works_box > h3 + p br {
    display: none;
  }
  .slide_works .inner , .slide_events .inner {
    padding: 0 5px;
    display: flex;
    justify-content: center;
  }
  /* button */
  .btn_more:hover {
    background: #492200;
    color: #fff;
  }
  /* map */
  .map {
    height: 500px;
  }
}
@media screen and (min-width: 768px) { 
  /*　画面サイズが768pxからはここを読み込む　*/
  /***********************
    main
  ***********************/
  .main_cont_wrap > h3 + p {
    text-align: center;
  }
}
@media screen and (min-width: 961px) { 
  /*　画面サイズが961pxからはここを読み込む　*/
  /***********************
    main
  ***********************/
  main {
    font-size: 1.125em;
  }
  h2.main_header {
    font-size: 2vw;
  }
  .contents h3 {
    font-size: 1.25em;
  }
  .img_intro_box {
    width: 100%;
  }
  /* button */
  .btn_more {
    margin-top: 60px;
  }
  /* map */
  .map {
    height: 600px;
  }
}
@media screen and (min-width: 1601px) { 
  /*　画面サイズが1601pxからはここを読み込む　*/
  /***********************
    header
  ***********************/
  h2.main_header {
    font-size: 1.6vw;
    margin-bottom: 60px;
  }
}