* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho", serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* 表示切替 */
.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.pc-1100 {
  display: none;
}
@media (max-width: 1100px) {
  .pc-1100 {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc-1100 {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.is-600-hide {
  display: block;
}
@media (max-width: 600px) {
  .is-600-hide {
    display: none;
  }
}

.is-600-show {
  display: none;
}
@media (max-width: 600px) {
  .is-600-show {
    display: block;
  }
}

/* コンテナ */
.container {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* メインビジュアル */
#main-visual {
  padding: 30px 0;
  text-align: center;
  background: url(/img/mv.png) no-repeat center/cover;
}

/* コンテンツ全体背景 */
#content {
  background: url(/img/bg.png) repeat-y center top/cover;
}

/* リード文 */
#lead {
  padding: 110px 0;
}
@media (max-width: 1100px) {
  #lead {
    padding: 48px 0;
  }
}
#lead .lead-ttl {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 2;
  color: #d65942;
}
@media (max-width: 768px) {
  #lead .lead-ttl {
    font-size: 24px;
    line-height: 1.5;
  }
}

/* ポイント */
#points {
  position: relative;
}
#points .points-ttl {
  width: 100%;
}
#points .box {
  margin-top: -65px;
  margin-bottom: 72px;
  padding: 80px 36px 50px;
  background-color: #ffffff;
  border: 10px solid #d65942;
}
@media (max-width: 1100px) {
  #points .box {
    padding: 40px 20px;
    margin-top: -6.2vw;
    border-width: 5px;
  }
}
@media (max-width: 600px) {
  #points .box {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#points .box .point-list .point-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 24px 20px;
  border-bottom: 2px dashed #d65942;
}
@media (max-width: 768px) {
  #points .box .point-list .point-item {
    gap: 10px;
    padding: 20px 0;
  }
}
#points .box .point-list .point-item .num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding-bottom: 10px;
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #d65942;
  border-radius: 50%;
}
@media (max-width: 768px) {
  #points .box .point-list .point-item .num {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
#points .box .point-list .point-item .num::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 72px;
  height: 36px;
  background: url(/img/deco.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  #points .box .point-list .point-item .num::before {
    width: 36px;
    height: 18px;
  }
}
#points .box .point-list .point-item .txt {
  width: calc(100% - 100px);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #d65942;
}
@media (max-width: 768px) {
  #points .box .point-list .point-item .txt {
    width: calc(100% - 70px);
    font-size: 18px;
  }
}
#points .box .point-list .point-item:last-child {
  border-bottom: none;
}

/* フォト一覧 */
#photos .photo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}
#photos .photo-item {
  width: calc(50% - 12px);
}
@media (max-width: 600px) {
  #photos .photo-item {
    width: 100%;
  }
}
#photos .photo-item img {
  display: block;
  width: 100%;
}

/* 地域セクション */
#regions {
  padding: 135px 0 120px;
}
@media (max-width: 768px) {
  #regions {
    padding: 48px 0 180px;
  }
}
#regions .regions-ttl {
  margin-bottom: 90px;
  text-align: center;
}
@media (max-width: 768px) {
  #regions .regions-ttl {
    margin-bottom: 30px;
  }
}
#regions .region-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 20px;
}
@media (max-width: 600px) {
  #regions .region-list {
    gap: 20px;
  }
}
#regions .region-item {
  position: relative;
  width: calc(33.3333% - 20px);
  transition: all 0.3s ease;
}
#regions .region-item:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  #regions .region-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  #regions .region-item {
    width: 100%;
  }
}
#regions .region-item img {
  display: block;
  width: 100%;
}
#regions .region-item a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#regions .region-item a .ttl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 90px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #d65942;
}
#regions .region-item a .ttl span {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.3;
}
#regions .region-item a .ttl::before,
#regions .region-item a .ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 216px;
  height: 13px;
  background: url(/img/region-deco.png) no-repeat center/contain;
}
#regions .region-item a .ttl::before {
  top: 0;
}
#regions .region-item a .ttl::after {
  bottom: 0;
}
#regions .region-item a .ttl.medium {
  font-size: 25px;
}
#regions .region-item a .more {
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-bottom: 1px solid #d65942;
}
#regions .region-item a .more .txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #d65942;
}
