/* ==========================
  price
============================= */
.price-date {
  margin: 60px 0 50px;
  font-size: 2.4rem;
}

.price-table {
  width: 100%;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 500px) {
  .price-table {
    font-size: 1.4rem;
  }
}
.price-table .col1 {
  width: 30%;
}
.price-table .col3 {
  width: 27%;
}
@media (max-width: 500px) {
  .price-table .col3 {
    width: 20%;
  }
}
.price-table .col4 {
  width: 27%;
}
@media (max-width: 500px) {
  .price-table .col4 {
    width: 20%;
  }
}
.price-table tr:not(:first-of-type) td {
  background-image: linear-gradient(to right, #365a76, #365a76 1px, transparent 1px, transparent 2px);
  background-size: 3px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}
.price-table tr:first-of-type {
  border-bottom: 1px solid #365a76;
}
.price-table th {
  text-align: center;
  padding: 8px 10px 9px;
}
.price-table td {
  padding: 8px 10px 9px;
  vertical-align: middle;
}
.price-table .rowspan {
  vertical-align: middle;
  border-right: 1px solid #365a76;
}

.price-text01 {
  margin-top: 30px;
}
.price-text01 a {
  background-image: linear-gradient(to right, #365a76, #365a76 1px, transparent 1px, transparent 2px);
  background-size: 3px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}

/* ==========================
  calc
============================= */
.calc {
  padding-top: 150px;
}
.calc-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .calc-list {
    display: block;
  }
}
.calc-list.kanto .calc-item, .calc-list.community .calc-item {
  background: #006f9d;
}
.calc-list.kanto .calc-item-price, .calc-list.community .calc-item-price {
  color: #006f9d;
}
.calc-list.kanto .calc-item.total, .calc-list.community .calc-item.total {
  background: #224655;
}
.calc-list.kanto .calc-item.total .calc-item-price, .calc-list.community .calc-item.total .calc-item-price {
  color: #fff;
}
.calc-list.tohoku .calc-item {
  background: #cd5c95;
}
.calc-list.tohoku .calc-item-price {
  color: #cd5c95;
}
.calc-list.tohoku .calc-item.total {
  background: #882255;
}
.calc-list.tohoku .calc-item.total .calc-item-price {
  color: #fff;
}
.calc-list.chubu .calc-item {
  background: #0c7e32;
}
.calc-list.chubu .calc-item-price {
  color: #0c7e32;
}
.calc-list.chubu .calc-item.total {
  background: #00ab38;
}
.calc-list.chubu .calc-item.total .calc-item-price {
  color: #fff;
}
.calc h3:first-of-type {
  margin-top: 85px;
}
.calc h3:nth-of-type(2) {
  margin-top: 70px;
}

.calc-item {
  position: relative;
  margin: 13px 7px 0 0;
  padding: 9px 0;
  flex: 1;
  align-self: stretch;
  min-width: 150px;
  max-width: 200px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
}
@media (max-width: 500px) {
  .calc-item {
    margin: 13px auto 0;
    width: 100%;
    max-width: 250px;
  }
}
.calc-item:not(.none) {
  margin: 13px 7px 0 40px;
}
@media (max-width: 500px) {
  .calc-item:not(.none) {
    margin: 47px auto 7px;
  }
}
.calc-item:not(.none)::before {
  content: "";
  display: block;
  width: 33px;
  height: 33px;
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 500px) {
  .calc-item:not(.none)::before {
    top: -40px;
    bottom: auto;
    left: 0;
    right: 0;
  }
}
.calc-item.plus::before {
  background: url("../images/icon-plus.png") no-repeat;
  background-size: contain;
}
.calc-item.minus::before {
  background: url("../images/icon-minus.png") no-repeat;
  background-size: contain;
}
.calc-item.equal::before {
  background: url("../images/icon-equal.png") no-repeat;
  background-size: contain;
}
.calc-item-price {
  font-size: 2.8rem;
  line-height: 1.2;
}
.calc-item-price.set {
  position: relative;
  display: inline-block;
  padding-left: 60px;
}
.calc-item-price.set::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  background: url("../images/img-otoku.png") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}
.calc-item-price.set + span {
  display: inline-block;
  padding-left: 60px;
}
.calc-item .caution {
  position: absolute;
  bottom: 5px;
  right: 7px;
}

.sample .calc-item {
  margin: 13px 3px 0 0;
  padding: 7px 0;
  max-width: 230px;
}
@media (max-width: 500px) {
  .sample .calc-item {
    width: 100%;
    max-width: 250px;
    margin: 13px auto 3px;
  }
}
.sample .calc-item:not(.none) {
  margin: 13px 3px 0 40px;
}
@media (max-width: 500px) {
  .sample .calc-item:not(.none) {
    margin: 43px auto 3px;
  }
}
.sample .calc-item:not(.total) {
  background: #fff;
  border: 2px solid #006f9d;
  color: #010101;
}
.sample > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sample.kanto .calc-item:not(.total) {
  background: #fff;
  border: 2px solid #006f9d;
  color: #010101;
  max-width: 230px;
}
.sample.tohoku .calc-item:not(.total) {
  background: #fff;
  border: 2px solid #cd5c95;
  color: #010101;
  max-width: 230px;
}
.sample.chubu .calc-item:not(.total) {
  background: #fff;
  border: 2px solid #0c7e32;
  color: #010101;
  max-width: 230px;
}

.calc-text01 {
  margin-top: 50px;
  font-size: 2rem;
}
@media (max-width: 500px) {
  .calc-text01 {
    font-size: 1.6rem;
    margin: 50px 0 22px;
  }
}

.calc-text02 {
  margin: 16px 0 22px;
}

.calc-text03 {
  font-size: 1.4rem;
  margin-top: 12px;
}

/* ==========================
  area-image
============================= */
.area-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 500px) {
  .area-image {
    display: block;
  }
}
.area-image div:first-of-type {
  margin-right: 30px;
  flex-basis: 22.5%;
}
@media (max-width: 500px) {
  .area-image div:first-of-type {
    margin-right: 0;
  }
}
.area-image div:last-of-type {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .area-image div:last-of-type {
    display: block;
  }
}
.area-image img {
  vertical-align: bottom;
}
@media (max-width: 500px) {
  .area-image img {
    margin-bottom: 20px;
  }
}
.area-image .img-town {
  margin-right: 38px;
  flex-basis: 40%;
}
@media (max-width: 500px) {
  .area-image .img-town {
    margin-right: 0;
  }
}
.area-image .img-truck {
  flex-basis: 45%;
}
.area-image .area-text01 {
  margin-top: 3px;
  font-size: 2.8rem;
  color: #00ab38;
  flex-basis: 100%;
}
@media (max-width: 500px) {
  .area-image .area-text01 {
    font-size: 2rem;
  }
}
.area-image.tohoku div:first-of-type {
  flex-basis: 24.5%;
  text-align: center;
}
.area-image.tohoku .img-snow {
  flex-basis: 20%;
}
.area-image.tohoku .img-truck {
  margin: 0 19px;
  flex-basis: 45%;
}
.area-image.chubu div:first-of-type {
  flex-basis: 24.5%;
  text-align: center;
}
.area-image.chubu .img-truck {
  margin: 0;
}
.area-image.chubu .img-castle {
  flex-basis: 25%;
  text-align: center;
}
.area-image.chubu .img-mount {
  position: absolute;
  top: 19%;
  left: 51%;
  width: 33%;
}
@media (max-width: 940px) {
  .area-image.chubu .img-mount {
    top: 17%;
    left: 53%;
  }
}
@media (max-width: 768px) {
  .area-image.chubu .img-mount {
    top: 10%;
    left: 55%;
  }
}
@media (max-width: 500px) {
  .area-image.chubu .img-mount {
    position: static;
    width: 80%;
  }
}
.area-image.chubu .img-truck {
  margin: 0 19px;
  flex-basis: 45%;
}

/* ==========================
  area-link
============================= */
.area-link {
  margin-top: 90px;
}
.area-link ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0 100px;
}
@media (max-width: 500px) {
  .area-link ul {
    display: block;
  }
}
.area-link ul li {
  width: 30%;
  max-width: 380px;
}
@media (max-width: 500px) {
  .area-link ul li {
    width: 75%;
    max-width: 380px;
    margin: 0 auto 30px;
  }
}
.area-link ul li a {
  display: block;
  width: 100%;
  padding: 7px;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  border-radius: 27px;
  transition: all 0.2s;
}
.area-link ul li a.kanto {
  background: #365a76;
}
.area-link ul li a.tohoku {
  background: #882255;
}
.area-link ul li a.chubu {
  background: #00ab38;
}
.area-link ul li a:hover {
  opacity: 0.7;
}

/* ==========================
  service-menu
============================= */
.service-menu ul {
  margin-top: 100px;
  margin-bottom: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service-menu ul {
    max-width: 550px;
    margin: 100px auto 65px;
  }
}
.service-menu ul li {
  min-width: 250px;
  width: 22%;
  max-width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .service-menu ul li {
    margin: 0 auto 20px;
  }
}
.service-menu ul li a {
  display: block;
  background: #f5f5f5;
  text-align: center;
  color: #505050;
  padding: 25px 0 20px;
  border-radius: 5px;
  box-shadow: 0px 2px 1px 1px #9f9f9f;
  transition: all 0.2s;
}
.service-menu ul li a:hover {
  background: #e0e0e0;
  box-shadow: 0px 2px 1px 1px #909090;
  transition: all 0.2s;
}
.service-menu ul::after {
  content: "";
  display: block;
  max-width: 300px;
  width: 22%;
  height: 0;
}
@media (max-width: 500px) {
  .service-menu ul::after {
    display: none;
  }
}

/* ==========================
  index
============================= */
.priceCalc .service-menu {
  margin-top: 174px;
}

.priceLink {
  margin-top: 140px;
}
.priceLink-text01 {
  margin-top: 110px;
}
.priceLink p {
  font-size: 2rem;
  line-height: 1.7;
}
.priceLink li {
  font-size: 2rem;
  line-height: 1.7;
}
.priceLink .link-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .priceLink .link-list {
    flex-direction: column;
  }
}
.priceLink .link-item {
  position: relative;
  margin: 68px 83px 0 0;
  padding: 9px 0;
  flex: 1;
  /* align-self: stretch; */
  background-color: #365a76;
  min-width: 150px;
  width: 30%;
  max-width: 380px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: 2rem;
  line-height: 1.7;
}
@media (max-width: 940px) {
  .priceLink .link-item {
    margin: 68px 44px 0 0;
  }
}
@media (max-width: 500px) {
  .priceLink .link-item {
    margin: 40px auto 0;
    width: 100%;
  }
}
.priceLink .link-item:hover {
  opacity: 0.7;
}
.priceLink .link-item span {
  display: inline-block;
}
.priceLink .link-item:last-of-type {
  margin-right: 0;
}
@media (max-width: 500px) {
  .priceLink .link-item:last-of-type {
    margin: 40px auto 0;
  }
}

.priceDetail {
  margin-top: 159px;
}
.priceDetail p {
  line-height: 1.7;
}
.priceDetail ul {
  margin-top: 108px;
}
.priceDetail ul li {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.priceDetail ul li:last-of-type {
  margin-bottom: 0;
}

/* ==========================
  map
============================= */
.map .priceArea {
  margin-top: 140px;
}
.map .priceArea-text01 {
  margin-top: 110px;
}
.map .priceArea p {
  display: block;
  font-size: 2rem;
  line-height: 1.7;
}
.map .priceArea p.priceArea-text02 {
  margin-top: 100px;
}
.map .priceArea p strong {
  color: #365a76;
  font-size: 2.4rem;
  border-bottom: 1px dotted #365a76;
}
.map .priceArea .map-img {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 163px auto 0;
}
@media (max-width: 767px) {
  .map .priceArea .map-img {
    display: none;
  }
}
.map .priceArea .link-map {
  display: none;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .map .priceArea .link-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.map .priceArea .link-map .link-item {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .map .priceArea .link-map .link-item {
    position: static;
    margin: 32px 2% 0 0;
    padding: 16px 0px;
    box-sizing: border-box;
    width: 32%;
    display: flex;
    align-items: center;
    align-self: stretch;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .map .priceArea .link-map .link-item {
    width: 100%;
    margin: 32px auto 1rem;
    padding: 8px;
    max-width: 380px;
  }
}
.map .priceArea .link-map .link-item p span {
  display: inline-block;
}
.map .priceArea .link-map .link-item.hokkaido {
  background-color: #68b8d2;
  top: 4%;
  left: 20%;
}
.map .priceArea .link-map .link-item.tohoku {
  background-color: #822152;
  top: 34%;
  left: 73%;
}
.map .priceArea .link-map .link-item.kanto {
  background-color: #0b6a95;
  top: 49%;
  left: 68%;
}
.map .priceArea .link-map .link-item.chubu {
  background-color: #117a3a;
  top: 62%;
  left: 48%;
}
.map .priceArea .link-map .link-item.kansai {
  background-color: #ea9900;
  top: 41%;
  left: 14%;
}
@media (max-width: 767px) {
  .map .priceArea .link-map .link-item:nth-of-type(3n) {
    margin: 32px 0 0 0;
  }
}
@media (max-width: 500px) {
  .map .priceArea .link-map .link-item:nth-of-type(3n) {
    margin: 32px auto 1rem;
  }
}
.map .priceArea .link-map .link-item:hover {
  opacity: 0.7;
}
.map .priceArea .link-map .link-item p {
  text-align: center;
  font-size: 20px;
  color: #fff;
}
.map .service-menu {
  margin-top: 187px;
}

/* ==========================
  community
============================= */
.header-content .community {
  width: 80%;
  max-width: 1260px;
  margin: 38vh 0 0 -28px;
}
@media (max-width: 1280px) {
  .header-content .community {
    margin: 38vh 0 0 0;
  }
	.header-content .community-text p {
  padding: 20px 28px;
  font-size: 1.9rem;
}
	
}
@media (max-width: 500px) {
  .header-content .community {
    width: 70%;
  }
}
.header-content .community h2 {
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 3.４rem;
  font-weight: normal;
  padding-bottom: 54px;
  text-align: left;
}
.header-content .community h2 span {
  display: inline-block;
}
.header-content .community h2::after {
  display: none;
}
.header-content .community-text {
  width: 100%;
  max-width: 824px;
  background-color: rgba(255, 255, 255, 0.5);
}
.header-content .community-text .img-community {
  display: block;
  background-color: white;
  width: 100%;
  text-align: center;
}
.header-content .community-text .img-community img {
  width: 450px;
}
.header-content .community-text p {
  padding: 20px 28px;
  font-size: 1.4rem;
}

.community .service-menu {
  margin-top: 185px;
}

.calc.community {
  padding-top: 114px;
}
.calc.community .calc-list.community .calc-item.used {
  max-width: 480px;
}
.calc.community .calc-list.community .annotation {
  margin-top: 33px;
}
.calc.community .annotation {
  display: block;
  width: 100%;
  margin-top: 33px;
  font-size: 2rem;
}
.calc.community .priceCase-table h3:first-of-type {
  border: none;
  margin-top: 75px;
}
.calc.community .priceCase-table .price-table {
  margin-top: 26px;
}
.calc.community .priceCase-table .price-table th, .calc.community .priceCase-table .price-table td {
  width: 25%;
}
.calc.community .priceCase-table .price-table th {
  color: #fff;
  background-color: #365a76;
  font-weight: normal;
}
.calc.community .priceCase-table .price-table td {
  background-image: none;
  border: 1px solid #999;
}
.calc.community .priceCase-table .annotation {
  margin-top: 17px;
}
.calc.community .calc-list.sample .annotation {
  margin-top: 33px;
}

.community-area {
  margin-top: 86px;
}
.community-area .map-img {
  display: block;
  margin: 85px auto 0;
}