@charset "UTF-8";
/*----------------------------------
  カラー
------------------------------------*/
/*----------------------------------
  レスポンシブ制御関係
------------------------------------*/
body {
  min-width: 1200px;
}

@media (max-width: 1200px) {
  body {
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    min-width: 0px;
  }
}

/*----------------------------------
  mv
------------------------------------*/
/*----------------------------------
  concept
------------------------------------*/
.concept {
  width: 100%;
  padding-top: 80px;
  text-align: center;
  position: relative;
  background-color: rgba(229, 150, 194, 0.15);
}

.concept h2 {
  position: relative;
  font-size: 30px;
  line-height: calc(27 / 16);
  letter-spacing: 9px;
  font-weight: bold;
  margin-bottom: 18px;
}

.concept h2::after {
  position: absolute;
  bottom: -12px;
  left: calc(50% - 15px);
  content: "";
  width: 30px;
  height: 2px;
  background-color: #333;
}

.concept .leadtext {
  margin-top: 50px;
  font-size: 17px;
  line-height: 2.5;
  letter-spacing: 2px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .concept {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .concept::before {
    background-image: none;
  }
  .concept::after {
    background-image: none;
  }
  .concept h2 {
    position: relative;
    width: 90%;
    margin: 0 auto;
    font-size: 22px;
    line-height: calc(27 / 16);
    letter-spacing: 6px;
    font-weight: bold;
    margin-bottom: 18px;
  }
  .concept .leadtext {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
    margin-top: 40px;
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 2px;
    font-weight: bold;
  }
}

/*----------------------------------
  greeting
------------------------------------*/
.greeting {
  width: 100%;
  background-color: rgba(229, 150, 194, 0.15);
  padding-top: 70px;
  padding-bottom: 80px;
}

.greeting_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 100px 70px;
  background-color: #fff;
  text-align: center;
  position: relative;
}

.greeting_inner::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #FABF13;
  border-radius: 50%;
}

.greeting_inner::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #FABF13;
  border-radius: 50%;
}

.greeting_inner h2 {
  position: relative;
  font-size: 30px;
  line-height: calc(27 / 16);
  letter-spacing: 9px;
  font-weight: bold;
  margin-bottom: 18px;
}

.greeting_inner h2::after {
  position: absolute;
  bottom: -12px;
  left: calc(50% - 15px);
  content: "";
  width: 30px;
  height: 2px;
  background-color: #333;
}

.greeting_inner .greeting_flexcontainer {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.greeting_inner .greeting_pic {
  width: 450px;
}

.greeting_inner .greeting_textcontainer {
  width: 450px;
}

.greeting_inner .greeting_text {
  font-size: 17px;
  line-height: 38px;
  letter-spacing: 2px;
  text-align: justify;
}

.greeting_inner .greeting_text2 {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: right;
  margin-top: 50px;
}

.greeting_inner .greeting_text3 {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 6px;
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .greeting_inner {
    width: 90%;
    margin: 0 auto;
    padding: 80px 20px 70px;
    background-color: #fff;
    text-align: center;
    position: relative;
  }
  .greeting_inner h2 {
    position: relative;
    width: 90%;
    margin: 0 auto;
    font-size: 22px;
    line-height: calc(27 / 16);
    letter-spacing: 6px;
    font-weight: bold;
    margin-bottom: 18px;
  }
  .greeting_inner .greeting_flexcontainer {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .greeting_inner .greeting_pic {
    width: 100%;
  }
  .greeting_inner .greeting_textcontainer {
    width: 100%;
    margin-top: 20px;
  }
  .greeting_inner .greeting_text {
    font-size: 14px;
    line-height: 38px;
    letter-spacing: 2px;
    text-align: justify;
  }
  .greeting_inner .greeting_text2 {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    text-align: right;
    margin-top: 50px;
  }
  .greeting_inner .greeting_text3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 6px;
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
  }
}

/*----------------------------------
  about_hoiku
------------------------------------*/
.about_hoiku {
  width: 100%;
  background-color: rgba(229, 150, 194, 0.15);
  padding-top: 40px;
  padding-bottom: 0px;
}

.about_hoiku_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 100px 70px;
  background-color: #fff;
  text-align: center;
  position: relative;
}

.about_hoiku_inner::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #FABF13;
  border-radius: 50%;
}

.about_hoiku_inner::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #FABF13;
  border-radius: 50%;
}

.about_hoiku_inner h2 {
  position: relative;
  font-size: 24px;
  line-height: calc(27 / 16);
  letter-spacing: 6px;
  font-weight: bold;
  margin-bottom: 18px;
}

.about_hoiku_inner h2::after {
  position: absolute;
  bottom: -12px;
  left: calc(50% - 15px);
  content: "";
  width: 30px;
  height: 2px;
  background-color: #333;
}

.about_hoiku_inner .hoiku_flexcontainer {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.about_hoiku_inner .hoiku_item {
  width: 310px;
}

.about_hoiku_inner .hoiku_pic {
  width: 100%;
}

.about_hoiku_inner .hoiku_title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
  font-weight: bold;
  margin-top: 34px;
}

.about_hoiku_inner .hoiku_textcontainer {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.8;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about_hoiku {
    width: 100%;
    background-color: rgba(229, 150, 194, 0.15);
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .about_hoiku_inner {
    width: 90%;
    margin: 0 auto;
    padding: 80px 0px 32px;
    background-color: #fff;
    text-align: center;
    position: relative;
  }
  .about_hoiku_inner h2 {
    position: relative;
    font-size: 24px;
    line-height: calc(27 / 16);
    letter-spacing: 6px;
    font-weight: bold;
    margin-bottom: 18px;
  }
  .about_hoiku_inner .hoiku_flexcontainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 50px;
  }
  .about_hoiku_inner .hoiku_item {
    margin: 0 auto;
    margin-bottom: 32px;
    width: 310px;
  }
  .about_hoiku_inner .hoiku_pic {
    width: 100%;
  }
  .about_hoiku_inner .hoiku_title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    font-weight: bold;
    margin-top: 34px;
  }
  .about_hoiku_inner .hoiku_textcontainer {
    width: 280px;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.8;
    margin-top: 20px;
  }
}

/*----------------------------------
  access
------------------------------------*/
.access {
  width: 100%;
  background-color: rgba(229, 150, 194, 0.15);
  padding-top: 70px;
  padding-bottom: 80px;
}

.access_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 100px 70px;
  background-color: #fff;
  text-align: center;
  position: relative;
}

.access_inner::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #FABF13;
  border-radius: 50%;
}

.access_inner::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #FABF13;
  border-radius: 50%;
}

.access_inner h2 {
  position: relative;
  font-size: 30px;
  line-height: calc(27 / 16);
  letter-spacing: 9px;
  font-weight: bold;
  margin-bottom: 18px;
}

.access_inner h2::after {
  position: absolute;
  bottom: -12px;
  left: calc(50% - 15px);
  content: "";
  width: 30px;
  height: 2px;
  background-color: #333;
}

.access_inner .access_flexcontainer {
  margin-top: 50px;
}

.access_inner .access_item {
  width: 700px;
  margin: 0 auto;
  margin-top: 80px;

}
.access_inner .access_item_logo {
  width: 250px;
  margin: 0 auto;
}
.access_inner h3 {
  margin: 24px 0;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #3eb370;
}
.access_inner .access_ebisu h3 {
  color: #FABF13;
}

.access_inner .access_sanadayama .access_list {
  width: 100%;
  margin: 24px auto;
}

.access_inner .access_sanadayama .access_list dl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-bottom: 1px solid #3EB370;
}

.access_inner .access_sanadayama .access_list dl:last-of-type {
  border-bottom: 0px solid #3EB370;
}

.access_inner .access_sanadayama .access_list dt {
  width: 100px;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 1.8px;
  margin-right: 20px;
  color: #3EB370;
}

.access_inner .access_sanadayama .access_list dt::after {
  content: ":";
  width: 17px;
  height: 17px;
  font-size: 17px;
  margin-left: 16px;
}

.access_inner .access_sanadayama .access_list dd {
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 1.8px;
  width: calc(100% - 160px);
  line-height: 26px;
  text-align: left;
}

.access_inner .access_ebisu .access_list {
  width: 100%;
  margin: 24px auto;
}

.access_inner .access_ebisu .access_list dl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-bottom: 1px solid #F1C045;
}

.access_inner .access_ebisu .access_list dl:last-of-type {
  border-bottom: 0px solid #F1C045;
}

.access_inner .access_ebisu .access_list dt {
  width: 100px;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 1.8px;
  margin-right: 20px;
  color: #F1C045;
}

.access_inner .access_ebisu .access_list dt::after {
  content: ":";
  width: 17px;
  height: 17px;
  font-size: 17px;
  margin-left: 16px;
}

.access_inner .access_ebisu .access_list dd {
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 1.8px;
  width: calc(100% - 160px);
  line-height: 26px;
  text-align: left;
}

@media (max-width: 768px) {
  .access {
    width: 100%;
    background-color: rgba(229, 150, 194, 0.15);
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .access_inner {
    width: 90%;
    margin: 0 auto;
    padding: 80px 10px 70px;
    background-color: #fff;
    text-align: center;
    position: relative;
  }
  .access_inner h2 {
    position: relative;
    font-size: 24px;
    line-height: calc(27 / 16);
    letter-spacing: 6px;
    font-weight: bold;
    margin-bottom: 18px;
  }
  .access_inner .access_flexcontainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 50px;
  }
  .access_inner .access_item {
    width: 100%;
  }
  .access_inner .access_item_logo {
    width: 150px;
    margin: 0 auto;
  }  
  .access_inner .access_sanadayama .access_list {
    width: 100%;
    margin: 24px auto;
  }
  .access_inner .access_sanadayama .access_list dl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    border-bottom: 1px solid #3EB370;
  }
  .access_inner .access_sanadayama .access_list dl:last-of-type {
    border-bottom: 0px solid #3EB370;
  }
  .access_inner .access_sanadayama .access_list dt {
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1.8px;
    margin-right: 20px;
    color: #3EB370;
  }
  .access_inner .access_sanadayama .access_list dt::after {
    content: ":";
    width: 14px;
    height: 14px;
    font-size: 14px;
    margin-left: 16px;
  }
  .access_inner .access_sanadayama .access_list dd {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1.8px;
    width: calc(100% - 160px);
    line-height: 26px;
    text-align: left;
  }
  .access_inner .access_sanadayama .access_gmap {
    width: 100%;
    margin: 0 auto;
  }
  .access_inner .access_ebisu .access_list {
    width: 100%;
    margin: 24px auto;
  }
  .access_inner .access_ebisu .access_list dl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    border-bottom: 1px solid #F1C045;
  }
  .access_inner .access_ebisu .access_list dl:last-of-type {
    border-bottom: 0px solid #F1C045;
  }
  .access_inner .access_ebisu .access_list dt {
    width: 100px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1.8px;
    margin-right: 20px;
    color: #F1C045;
  }
  .access_inner .access_ebisu .access_list dt::after {
    content: ":";
    width: 14px;
    height: 14px;
    font-size: 14px;
    margin-left: 16px;
  }
  .access_inner .access_ebisu .access_list dd {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1.8px;
    width: calc(100% - 160px);
    line-height: 26px;
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */







/*----------------------------------
  idずれ修正
------------------------------------*/

#sanadayama{
  margin-top: -150px;
  padding-top: 150px;
}

#ebisu{
  margin-top: -150px;
  padding-top: 200px;
}


@media (max-width: 768px) {
  #sanadayama{
    margin-top: -70px;
    padding-top: 70px;
  }
  
  #ebisu{
    margin-top: -70px;
    padding-top: 100px;
  }
  
}
