@charset "UTF-8";
img {
  width: 100%;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
#map {
  width: 100%;
  height: 406px; /* 必要に応じて変更 */
}

#section01 {
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 130px 0 20px 0;
  border-bottom: 5px solid #000063;
  background: url(../images/nakamura/header_pc.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width:800px) {
  #section01 {
    padding: 100px 0 30px 0;
    background: url(../images/nakamura/header_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section01 .section__in {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width:800px) {
  #section01 .section__in {
    width: 85%;
  }
}
#section01 .section__in h1 {
  width: 100%;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  #section01 .section__in h1 .spbox {
    width: 100%;
  }
}
#section01 .section__in h1::before {
  content: "";
  width: 50vw;
  height: 1px;
  background-color: #fff;
  top: 0.75em;
  right: calc(100% + 0.5em);
  position: absolute;
}
#section01 .section__in h1 .maru {
  display: inline-block;
  padding: 0.2em 1.5em 0.3em 1.5em;
  border: 1px solid #999;
  border-radius: 50px;
  margin: 0 0.5em;
  line-height: 100%;
}
@media screen and (max-width:800px) {
  #section01 .section__in h1 .maru {
    margin: 0 0.5em 0 0;
  }
}
#section01 .section__in .base_text {
  margin-top: 1em;
  line-height: 180%;
}

#section02 {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #F8F8F8;
  padding-bottom: 1px;
}
#section02 .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#section02 .pankz {
  width: 100%;
  margin-top: 0.5em;
}
#section02 .pankz a.links {
  padding-right: 2em;
  position: relative;
}
#section02 .pankz a.links span {
  position: relative;
  z-index: 5;
}
#section02 .pankz a.links::after {
  content: "＞";
  position: absolute;
  top: 50%;
  right: 0.35em;
  transform: translate(0, -50%) scale(0.9);
  font-size: 10px;
}
#section02 .botanbox {
  width: 75%;
  max-width: 480px;
  margin: 80px auto 110px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  #section02 .botanbox {
    margin: 40px auto;
  }
}
#section02 .botanbox a:hover::before {
  left: 0%;
}
#section02 .botanbox a {
  display: inline-block;
  width: 48%;
  border: 1px solid #000;
  padding: 0.25em 0 0.35em 0;
  text-align: center;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out 0.01s;
}
@media screen and (max-width:800px) {
  #section02 .botanbox a {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 3.5vw;
  }
}
#section02 .botanbox a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  left: -100%;
  top: 0%;
  z-index: 1;
  transition: all 0.4s ease-out 0.01s;
}
#section02 .botanbox a:hover {
  color: #fff;
}
#section02 .botanbox a:hover span::after {
  background: url(../images/icon_under_white.png) no-repeat center;
  background-size: contain;
}
#section02 .botanbox a span {
  display: inline-block;
  padding-right: 1.25em;
  position: relative;
  font-weight: 700;
  z-index: 5;
}
#section02 .botanbox a span::after {
  content: "";
  width: 0.75em;
  height: 1em;
  background: url(../images/icon_under.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

#section_area01 {
  width: 100%;
  background-color: #000063;
  padding: 20px 0 40px 0;
}
@media screen and (max-width:800px) {
  #section_area01 {
    padding: 5vw 0 10vw 0;
  }
}
#section_area01 .section__in {
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: center;
}
#section_area01 .section__in .photo {
  width: 48%;
}
@media screen and (max-width:800px) {
  #section_area01 .section__in .photo {
    width: 90%;
    margin: 0 auto;
    order: 2;
  }
}
#section_area01 .section__in .text {
  width: 44%;
  margin-right: 4%;
}
@media screen and (max-width:800px) {
  #section_area01 .section__in .text {
    width: 90%;
    margin: 0 auto;
    order: 1;
  }
}
#section_area01 .section__in .text h2 {
  width: 100%;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.75em;
  color: #fff;
  font-weight: 700;
}
#section_area01 .section__in .text dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 0.75em;
}
#section_area01 .section__in .text dl dt {
  width: 1.5em;
}
#section_area01 .section__in .text dl dd {
  width: calc(100% - 2em);
}

#section03 {
  width: 100%;
  background-color: #F8F8F8;
  padding-bottom: 160px;
}
@media screen and (max-width:800px) {
  #section03 {
    padding-bottom: 80px;
  }
}
#section03 .section__in {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}
#section03 .section__in .whitebox {
  width: 100%;
  background-color: #fff;
  padding: 70px 0 1px 0;
  transform: translate(0, -20px);
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width:800px) {
  #section03 .section__in .whitebox {
    padding-left: 10px;
    transform: translate(0, -5vw);
  }
}
#section03 .section__in .whitebox .tate {
  transform-origin: 0% 0%;
  position: absolute;
  top: 1.5em;
  left: 2em;
  transform: rotate(90deg);
}
#section03 .section__in .whitebox .tate.color02 {
  color: #BC0000;
}
#section03 .section__in .whitebox h3 {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width:800px) {
  #section03 .section__in .whitebox h3 {
    margin-bottom: 50px;
  }
}
#section03 .section__in .syousaibox {
  width: 90%;
  max-width: 930px;
  margin: 0 auto 90px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section03 .section__in .syousaibox.last {
  margin-bottom: 0;
}
#section03 .section__in .syousaibox .titlelogn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000063;
  padding: 0.85em 0;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .titlelogn {
    margin-bottom: 4em;
    padding: 0.5em 0;
  }
}
#section03 .section__in .syousaibox .titlelogn .iconsimg {
  width: 2.5em;
  height: 2.5em;
  background: url(../images/nakamura/no1b.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: translate(-50%, 0);
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .titlelogn .iconsimg {
    width: 1.75em;
    height: 1.75em;
  }
}
#section03 .section__in .syousaibox .titlelogn .titles {
  width: 50%;
  padding-left: 3em;
  font-weight: 700;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .titlelogn .titles {
    width: 100%;
    padding-left: 2em;
  }
}
#section03 .section__in .syousaibox .titlelogn .times {
  width: 50%;
  text-align: right;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .titlelogn .times {
    width: 100%;
    text-align: left;
    padding-left: 2.5em;
    position: absolute;
    left: 0;
    bottom: -2em;
  }
}
#section03 .section__in .syousaibox .titlelogn .times span {
  padding-left: 1.5em;
  position: relative;
}
#section03 .section__in .syousaibox .titlelogn .times span::before {
  content: "";
  width: 1em;
  height: 1.25em;
  background: url(../images/nakamura/icon_wark.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#section03 .section__in .syousaibox .photo {
  width: 44.3%;
  margin-left: 1.5%;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .photo {
    width: 97%;
    margin-right: 3%;
    margin-bottom: 1em;
  }
}
#section03 .section__in .syousaibox .text {
  width: 49.35%;
  margin-right: 1.5%;
  display: flex;
  flex-direction: column;
}
#section03 .section__in .syousaibox .text .tatebox {
  margin-top: auto;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .text {
    width: 97%;
    margin-right: 3%;
  }
}
#section03 .section__in .syousaibox .text .base_text {
  line-height: 160%;
}
#section03 .section__in .syousaibox .text .botans {
  text-align: left;
  margin-top: 2em;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .text .botans {
    text-align: center;
  }
}
#section03 .section__in .syousaibox .text .botans a {
  padding: 0.25em 3.5em 0.35em 3.5em;
  background-color: #3B3B3B;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out 0.01s;
  display: inline-block;
}
#section03 .section__in .syousaibox .text .botans a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000063;
  left: -100%;
  top: 0%;
  z-index: 1;
  transition: all 0.4s ease-out 0.01s;
}
#section03 .section__in .syousaibox .text .botans a span {
  position: relative;
  z-index: 5;
  transition: all 0.4s ease-out 0.01s;
}
#section03 .section__in .syousaibox .text .botans a:hover span {
  color: #fff;
}
#section03 .section__in .syousaibox .text .botans a:hover::before {
  left: 0;
}
#section03 .section__in .syousaibox .text .addresstext {
  width: 100%;
  position: relative;
  margin-top: 1em;
  padding-right: 5em;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .text .addresstext {
    margin-top: 2em;
    padding-right: 3em;
  }
}
#section03 .section__in .syousaibox .text .addresstext .mapicons {
  width: 8.8%;
  position: absolute;
  bottom: 0;
  right: 3em;
}
@media screen and (max-width:800px) {
  #section03 .section__in .syousaibox .text .addresstext .mapicons {
    width: 12%;
    right: 0em;
    transform: translate(0, 20%);
  }
}
#section03 .section__in .syousaibox .text .addresstext .mapicons .ttstext {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0em;
  line-height: 100%;
  font-family: "Noto Sans JP", BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
}

#section_area02 {
  width: 100%;
  background-color: #BC0000;
  padding: 20px 0 40px 0;
}
@media screen and (max-width:800px) {
  #section_area02 {
    padding: 5vw 0 10vw 0;
  }
}
#section_area02 .section__in {
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: center;
}
#section_area02 .section__in .photo {
  width: 48%;
}
@media screen and (max-width:800px) {
  #section_area02 .section__in .photo {
    width: 90%;
    margin: 0 auto;
    order: 2;
  }
}
#section_area02 .section__in .text {
  width: 44%;
  margin-right: 4%;
}
@media screen and (max-width:800px) {
  #section_area02 .section__in .text {
    width: 90%;
    margin: 0 auto;
    order: 1;
  }
}
#section_area02 .section__in .text h2 {
  width: 100%;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.75em;
  color: #fff;
  font-weight: 700;
}
#section_area02 .section__in .text dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 0.75em;
}
#section_area02 .section__in .text dl dt {
  width: 1.5em;
}
#section_area02 .section__in .text dl dd {
  width: calc(100% - 2em);
}

.mt3em {
  margin-top: 3em !important;
}
@media screen and (max-width:800px) {
  .mt3em {
    margin-top: 2em !important;
  }
}

.mt4em {
  margin-top: 4em !important;
}
@media screen and (max-width:800px) {
  .mt4em {
    margin-top: 2em !important;
  }
}

.mt5em {
  margin-top: 5em !important;
}
@media screen and (max-width:800px) {
  .mt5em {
    margin-top: 2em !important;
  }
}

.mt6em {
  margin-top: 6em !important;
}
@media screen and (max-width:800px) {
  .mt6em {
    margin-top: 2em !important;
  }
}

.mt7em {
  margin-top: 7em !important;
}
@media screen and (max-width:800px) {
  .mt7em {
    margin-top: 2em !important;
  }
}

.mt8em {
  margin-top: 8em !important;
}
@media screen and (max-width:800px) {
  .mt8em {
    margin-top: 2em !important;
  }
}

.mt9em {
  margin-top: 9em !important;
}
@media screen and (max-width:800px) {
  .mt9em {
    margin-top: 2em !important;
  }
}

.mt10em {
  margin-top: 10em !important;
}
@media screen and (max-width:800px) {
  .mt10em {
    margin-top: 2em !important;
  }
}

#section04 {
  width: 100%;
  background-color: #F8F8F8;
  padding-bottom: 160px;
}
@media screen and (max-width:800px) {
  #section04 {
    padding-bottom: 80px;
  }
}
#section04 .section__in {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}
#section04 .section__in .whitebox {
  width: 100%;
  background-color: #fff;
  padding: 70px 0 1px 0;
  transform: translate(0, -20px);
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width:800px) {
  #section04 .section__in .whitebox {
    padding-left: 10px;
    transform: translate(0, -5vw);
  }
}
#section04 .section__in .whitebox .tate {
  transform-origin: 0% 0%;
  position: absolute;
  top: 1.5em;
  left: 2em;
  transform: rotate(90deg);
}
#section04 .section__in .whitebox .tate.color02 {
  color: #BC0000;
}
#section04 .section__in .whitebox h3 {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width:800px) {
  #section04 .section__in .whitebox h3 {
    margin-bottom: 50px;
  }
}
#section04 .section__in .syousaibox {
  width: 90%;
  max-width: 930px;
  margin: 0 auto 90px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section04 .section__in .syousaibox.last {
  margin-bottom: 0;
}
#section04 .section__in .syousaibox .titlelogn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #BC0000;
  padding: 0.85em 0;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .titlelogn {
    margin-bottom: 4em;
    padding: 0.5em 0;
  }
}
#section04 .section__in .syousaibox .titlelogn .iconsimg {
  width: 2.5em;
  height: 2.5em;
  background: url(../images/nakamura/no1b.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: translate(-50%, 0);
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .titlelogn .iconsimg {
    width: 1.75em;
    height: 1.75em;
  }
}
#section04 .section__in .syousaibox .titlelogn .titles {
  width: 50%;
  padding-left: 3em;
  font-weight: 700;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .titlelogn .titles {
    width: 100%;
    padding-left: 2em;
  }
}
#section04 .section__in .syousaibox .titlelogn .times {
  width: 50%;
  text-align: right;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .titlelogn .times {
    width: 100%;
    text-align: left;
    padding-left: 2.5em;
    position: absolute;
    left: 0;
    bottom: -2em;
  }
}
#section04 .section__in .syousaibox .titlelogn .times span {
  padding-left: 1.5em;
  position: relative;
}
#section04 .section__in .syousaibox .titlelogn .times span::before {
  content: "";
  width: 1em;
  height: 1.25em;
  background: url(../images/nakamura/icon_wark.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#section04 .section__in .syousaibox .photo {
  width: 44.3%;
  margin-left: 1.5%;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .photo {
    width: 97%;
    margin-right: 3%;
    margin-bottom: 1em;
  }
}
#section04 .section__in .syousaibox .text {
  width: 49.35%;
  margin-right: 1.5%;
  display: flex;
  flex-direction: column;
}
#section04 .section__in .syousaibox .text .tatebox {
  margin-top: auto;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .text {
    width: 97%;
    margin-right: 3%;
  }
}
#section04 .section__in .syousaibox .text .base_text {
  line-height: 160%;
}
#section04 .section__in .syousaibox .text .botans {
  text-align: left;
  margin-top: 2em;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .text .botans {
    text-align: center;
  }
}
#section04 .section__in .syousaibox .text .botans a {
  padding: 0.25em 3.5em 0.35em 3.5em;
  background-color: #3B3B3B;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out 0.01s;
  display: inline-block;
}
#section04 .section__in .syousaibox .text .botans a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #BC0000;
  left: -100%;
  top: 0%;
  z-index: 1;
  transition: all 0.4s ease-out 0.01s;
}
#section04 .section__in .syousaibox .text .botans a span {
  position: relative;
  z-index: 5;
  transition: all 0.4s ease-out 0.01s;
}
#section04 .section__in .syousaibox .text .botans a:hover span {
  color: #fff;
}
#section04 .section__in .syousaibox .text .botans a:hover::before {
  left: 0;
}
#section04 .section__in .syousaibox .text .addresstext {
  width: 100%;
  position: relative;
  margin-top: 1em;
  padding-right: 5em;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .text .addresstext {
    margin-top: 2em;
    padding-right: 3em;
  }
}
#section04 .section__in .syousaibox .text .addresstext .mapicons {
  width: 8.8%;
  position: absolute;
  bottom: 0;
  right: 3em;
}
@media screen and (max-width:800px) {
  #section04 .section__in .syousaibox .text .addresstext .mapicons {
    width: 12%;
    right: 0em;
    transform: translate(0, 20%);
  }
}
#section04 .section__in .syousaibox .text .addresstext .mapicons .ttstext {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0em;
  line-height: 100%;
  font-family: "Noto Sans JP", BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
}

#section05 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
  padding: 130px 0 40px 0;
}
@media screen and (max-width:800px) {
  #section05 {
    padding: 20vw 0 10vw 0;
  }
}
#section05 h2 {
  text-align: center;
}

#section06 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
}
#section07 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
  padding: 130px 0 40px 0;
}
@media screen and (max-width:800px) {
  #section07 {
    padding: 20vw 0 7.5vw 0;
  }
}
#section07 h2 {
  text-align: center;
}

#section08 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
}
#section08 .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#section08 ul {
  width: 100%;
  display: block;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section08 ul li {
  width: 30.9%;
}
@media screen and (max-width:800px) {
  #section08 ul li {
    width: 100%;
    margin-bottom: 5vw;
  }
}
#section08 ul li a {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
#section08 ul li a .text {
  width: 66.5%;
  background-color: #5D01B9;
  display: flex;
  align-items: center;
}
#section08 ul li a .text.color00 {
  background-color: #000063;
}
#section08 ul li a .text.color02 {
  background-color: #BC0000;
}
#section08 ul li a .text.color03 {
  background-color: #871028;
}
#section08 ul li a .text .textin {
  width: 90%;
  margin: 0 2.5% 0 7.5%;
  line-height: 120%;
}
#section08 ul li a .text .textin .f16res {
  margin-bottom: 0.2em;
}
#section08 ul li a .text .textin .f22res {
  line-height: 120%;
}
#section08 ul li a .photo {
  width: 33.5%;
}

#section09 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
  padding: 130px 0 40px 0;
}
@media screen and (max-width:800px) {
  #section09 {
    padding: 20vw 0 7.5vw 0;
  }
}
#section09 h2 {
  text-align: center;
}

#section10 {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 5;
  padding: 0px 0 120px 0;
}
@media screen and (max-width:800px) {
  #section10 {
    padding: 0vw 0 10vw 0;
  }
}
#section10 .botancenter {
  text-align: center;
}
@media screen and (max-width:800px) {
  #section10 .botancenter {
    width: 90%;
    margin: 0 auto;
  }
}
#section10 .botancenter a {
  display: inline-block;
  padding: 1em 2.5em;
  background-color: #3B3B3B;
  color: #fff;
  border-radius: 15px;
  line-height: 180%;
}

.posbox {
  position: relative;
}
.posbox #link05, .posbox #link06 {
  position: absolute;
  bottom: 0;
  transform: translate(0, -100px);
}
@media screen and (max-width:800px) {
  .posbox #link05, .posbox #link06 {
    transform: translate(0, -50px);
  }
}

#map img {
  max-width: none !important;
}/*# sourceMappingURL=nakamura.css.map */