/*------------------------------------------------------------
	page common
------------------------------------------------------------*/
#breadCrumbArea {
  margin-top: 139px;
}

#footer {
  margin-top: 0;
}

.tourism {
  width: 100%;
  min-width: 1000px;
  font-weight: 500;
  font-family: "Hiragino Sans", "Noto Sans JP ", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
.tourism * {
  box-sizing: border-box;
}
.tourism p {
  font-weight: 500;
  text-align: left;
}
.tourism b {
  font-weight: 700;
}
.tourism a {
  transition: opacity 0.3s;
  text-decoration: none;
}
@media (hover: hover) {
  .tourism a:hover {
    opacity: 0.6;
  }
}
.tourism img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.tourism figure, .tourism picture {
  margin: 0;
  display: block;
}

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

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

.about {
  padding: 40px 50px 80px;
  background: #FFF7DE;
}
.about_inner {
  margin: 0 auto;
  max-width: 1000px;
}
.about_list {
  margin-bottom: 48px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 16px;
}
.about_list li {
  width: 160px;
  height: 160px;
  background: #FF9D00;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.06em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.about_list li::before {
  content: "";
  width: 150px;
  height: 150px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about_column {
  margin-bottom: 40px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
.about_column-desc {
  padding: 30px;
  width: 500px;
  height: 206px;
  background: url("../images/about_column_desc_bg.png") no-repeat center center;
  background-size: contain;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  position: relative;
}
.about_column-desc::before {
  content: "";
  width: 122px;
  height: 142px;
  background: url("../images/about_column_desc_item.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 21px;
  bottom: 0;
}
.about_column-desc p {
  margin-left: 109px;
  font-size: 18px;
  line-height: 2.22;
  position: relative;
}
.about_column-desc p span {
  margin-right: 4px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  text-decoration: underline;
  text-decoration-color: #FCBF4C;
  text-decoration-thickness: 14px;
  text-underline-offset: -6px;
}
.about_column-title {
  width: calc(100% - 500px);
}
.about_column-title > h2 {
  margin: 0 auto 12px;
  width: fit-content;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}
.about_column-title > h2::before, .about_column-title > h2::after {
  content: "";
  width: 2px;
  height: 36px;
  background: #000;
  position: absolute;
  top: 50%;
}
.about_column-title > h2::before {
  left: -8px;
  transform: rotate(-25deg) translate(-100%, -50%);
}
.about_column-title > h2::after {
  right: -8px;
  transform: rotate(25deg) translate(-100%, -50%);
}
.about_column-title > h2 span {
  font-size: 20px;
}
.about_area {
  margin-bottom: 69px;
}
.about_area > picture {
  margin-bottom: 12px;
}
.about_area-attention {
  display: block;
  font-size: 14px;
  font-weight: 300;
  text-align: right;
}
.about_box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
.about_box > h2 {
  border-radius: 8px 8px 0 0;
  padding: 30px;
  background: #FDB42A;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  position: relative;
  font-weight: 700;
}
.about_box > h2::before {
  content: "";
  background: url("../images/about_box-title_fukidashi.png") no-repeat center center;
  background-size: contain;
  width: 157px;
  height: 72px;
  position: absolute;
  top: -28px;
  left: 16px;
}
.about_box > h2 b {
  font-size: 38px;
}
.about_box-content {
  padding: 33px 6px 50px;
}
.about_box-content > ul {
  display: flex;
  flex-flow: row wrap;
}
.about_box-content > ul li {
  flex: 1;
  padding: 0 32px;
}
.about_box-content > ul li:not(:last-child) {
  position: relative;
}
.about_box-content > ul li:not(:last-child)::before {
  content: "";
  width: 4px;
  height: 336px;
  background: url("../images/about_box_list_border.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.about_box-content > ul li h3 {
  margin-bottom: 10px;
  color: #FDB42A;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.about_box-content > ul li figure {
  margin-bottom: 20px;
}
.about_box-content > ul li p {
  font-size: 20px;
  line-height: 1.4;
}
.about_box-content > ul li p span {
  letter-spacing: -0.06em;
}

.cta {
  padding: 60px 50px;
  background: url("../images/cta_bg_orange.jpg") center center no-repeat;
  background-size: cover;
}
.cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 52px 0;
  background: #fff;
  border-radius: 8px;
}
.cta__inner h2 {
  margin-bottom: 16px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.28;
}
.cta__inner .button {
  margin: 0 auto;
  width: 568px;
  height: 84px;
  background: #F97022;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cta__inner .button::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/button_icon.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.cta.is-blue {
  background: url("../images/cta_bg_blue.jpg") center center no-repeat;
  background-size: cover;
}
.cta.is-green {
  background: url("../images/cta_bg_green.jpg") center center no-repeat;
  background-size: cover;
}

.product {
  padding: 80px 50px 100px;
  background: #F5FFEA;
}
.product_inner {
  max-width: 1240px;
  margin: 0 auto;
}
.product_lead {
  margin-bottom: 6px;
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.product_lead::before, .product_lead::after {
  width: 16px;
  height: 32px;
  content: "";
  display: block;
  background: url("../images/product_lead_item.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
}
.product_lead::before {
  left: -10px;
  transform: translate(-100%, -50%);
}
.product_lead::after {
  right: 0;
  transform: scale(-1, 1) translate(-100%, -50%);
}
.product_lead span {
  color: #E04060;
}
.product_title {
  margin-bottom: 60px;
  padding: 8px;
  background: #89BA40;
  border-radius: 4px;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.product_title::before, .product_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  z-index: 1;
}
.product_title::before {
  top: 5px;
  left: 0;
}
.product_title::after {
  bottom: 5px;
  left: 0;
}
.product_title b {
  font-size: 48px;
}
.product_list {
  margin: 0 auto;
  max-width: 1173px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 57px 30px;
}
.product_list > li {
  padding: 28px 20px 24px;
  width: 371px;
  height: 520px;
  background: url("../images/product_list_item_bg.png") no-repeat center center;
  background-size: contain;
  display: flex;
  flex-flow: column;
  position: relative;
}
.product_list > li:nth-child(4), .product_list > li:nth-child(5), .product_list > li:nth-child(6) {
  height: 541px;
  background: url("../images/product_list_item_bg_lg.png") no-repeat center center;
  background-size: contain;
}
.product_list > li::before, .product_list > li::after {
  content: "";
  display: block;
  width: 4px;
  height: 53px;
  background: url("../images/product_list_border.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
}
.product_list > li::before {
  left: 30px;
}
.product_list > li::after {
  right: 30px;
}
.product_list > li h3 {
  margin-bottom: 19px;
  padding: 10px 8px;
  background: #89BA40;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.08em;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.product_list > li h3.is-height-lg {
  margin-top: -18px;
}
.product_list > li h3::before, .product_list > li h3::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.product_list > li h3::before {
  top: 5px;
}
.product_list > li h3::after {
  bottom: 5px;
}
.product_list > li h3 span {
  font-size: 20px;
}
.product_list > li figure {
  margin-bottom: 20px;
  width: 100%;
  height: 162px;
}
.product_list > li figure img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_list > li .price {
  margin-bottom: 4px;
  padding: 0 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.product_list > li .price .label {
  padding: 7px 8px 5px;
  border: 2px solid #89BA40;
  border-radius: 4px;
  color: #89BA40;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.14;
}
.product_list > li .price .number {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
}
.product_list > li .price .number span {
  display: inline-block;
  font-weight: 600;
}
.product_list > li .price .number span:nth-child(1) {
  margin-right: 2px;
  color: #FF0000;
  font-size: 30px;
  font-weight: 700;
}
.product_list > li .price .number span:nth-child(2) {
  font-size: 18px;
}
.product_list > li .price .number span:nth-child(3) {
  font-size: 14px;
}
.product_list > li .add {
  margin-bottom: 10px;
  padding: 0 10px 4px;
  border-bottom: 1px solid #FCBF4C;
}
.product_list > li .add p {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
}
.product_list > li .add p span {
  display: inline-block;
  font-weight: 600;
}
.product_list > li .add p span:nth-child(1) {
  margin: 0 4px 0 6px;
  color: #FF0000;
  font-size: 20px;
  font-weight: 700;
}
.product_list > li .add p span:nth-child(2) {
  font-size: 14px;
}
.product_list > li .add p span:nth-child(3) {
  font-size: 14px;
  font-weight: 300;
}
.product_list > li > ul {
  padding: 0 0 0 10px;
  display: flex;
  flex-flow: column;
  gap: 4px 0;
}
.product_list > li > ul li {
  padding-left: 14px;
  font-size: 14px;
  text-align: left;
  position: relative;
  line-height: 1.1;
}
.product_list > li > ul li::before {
  content: "";
  background: #FCBF4C;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 1px;
  left: -2px;
}
.product_list > li > a {
  margin: auto auto 0;
  width: 263px;
  height: 56px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: #F97022;
  position: relative;
}
.product_list > li > a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/button_icon.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}

.other {
  padding: 80px 50px 87px;
  background: url("../images/other_bg.png") center center no-repeat;
  background-size: cover;
}
.other_inner {
  max-width: 1155px;
  margin: 0 auto;
}
.other_title {
  margin-bottom: 32px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}
.other_title span {
  color: #FF0000;
  font-size: 38px;
  font-weight: 700;
}
.other_banner {
  display: block;
  margin-bottom: 50px;
}
.other_text {
  margin: 0 auto;
  max-width: 1056px;
}

@media screen and (max-width: 1272px) {
  .product_list > li:nth-child(4) {
    height: 520px;
    background: url("../images/product_list_item_bg.png") no-repeat center center;
    background-size: contain;
  }
}
@media screen and (max-width: 1100px) {
  .about {
    padding: 40px 50px 80px;
    background: #FFF7DE;
  }
  .about_column-title > h2 {
    font-size: 24px;
  }
  .about_box > h2 b {
    font-size: 34px;
  }
  .about_box-content > ul li h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  #breadCrumbArea {
    margin-top: 0;
    margin-bottom: 0;
  }
  .tourism {
    min-width: 100%;
  }
  .about {
    padding: 10.6666666667vw 3.2vw 21.3333333333vw;
  }
  .about_list {
    margin-bottom: 16vw;
    gap: 2.6666666667vw;
  }
  .about_list li {
    width: 27.2vw;
    height: 27.2vw;
    font-size: 4.8vw;
    letter-spacing: -0.01em;
  }
  .about_list li::before {
    content: "";
    width: 25.6vw;
    height: 25.6vw;
    border: 0.2666666667vw solid #fff;
  }
  .about_column {
    margin-bottom: 3.2vw;
    display: block;
  }
  .about_column-desc {
    margin: 0 auto 2.6666666667vw;
    padding: 0vw 5.3333333333vw 5.3333333333vw;
    width: 84vw;
    height: 40.8vw;
    background: url("../images/about_column_desc_bg_sp.png") no-repeat center center;
    background-size: contain;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    position: relative;
  }
  .about_column-desc::before {
    content: "";
    width: 24vw;
    height: 27.7333333333vw;
    background: url("../images/about_column_desc_item_sp.png") no-repeat center center;
    background-size: contain;
    left: 1.0666666667vw;
    bottom: 5.3333333333vw;
  }
  .about_column-desc p {
    margin-left: 21.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.75;
  }
  .about_column-desc p span {
    margin-right: 0.5333333333vw;
    font-size: 4.8vw;
    text-decoration-thickness: 2.1333333333vw;
    text-underline-offset: -1.0666666667vw;
  }
  .about_column-title {
    margin-bottom: 10.6666666667vw;
    width: 100%;
  }
  .about_column-title > h2 {
    margin: 0 auto 1.6vw;
    font-size: 4.8vw;
  }
  .about_column-title > h2::before, .about_column-title > h2::after {
    width: 0.5333333333vw;
    height: 5.8666666667vw;
  }
  .about_column-title > h2::before {
    left: -2.1333333333vw;
    transform: rotate(-25deg) translate(-100%, -50%);
  }
  .about_column-title > h2::after {
    right: -2.1333333333vw;
    transform: rotate(25deg) translate(-100%, -50%);
  }
  .about_column-title > h2 span {
    font-size: 3.2vw;
  }
  .about_area {
    margin-bottom: 17.0666666667vw;
  }
  .about_area > picture {
    max-width: 85.3333333333vw;
    margin: 0 auto 1.8666666667vw;
  }
  .about_area-attention {
    font-size: 3.7333333333vw;
  }
  .about_box {
    border-radius: 2.1333333333vw;
    box-shadow: 0 0 0.8vw rgba(0, 0, 0, 0.16);
  }
  .about_box > h2 {
    border-radius: 2.1333333333vw 2.1333333333vw 0 0;
    padding: 5.3333333333vw;
    font-size: 5.8666666667vw;
    line-height: 1.1;
  }
  .about_box > h2::before {
    width: 33.8666666667vw;
    height: 13.8666666667vw;
    top: -6.9333333333vw;
    left: -1.0666666667vw;
  }
  .about_box > h2 b {
    font-size: 6.9333333333vw;
  }
  .about_box-content {
    padding: 5.3333333333vw 3.2vw;
  }
  .about_box-content > ul {
    flex-flow: column;
  }
  .about_box-content > ul li {
    padding: 5.3333333333vw 0;
  }
  .about_box-content > ul li:nth-child(1) {
    padding-top: 0;
  }
  .about_box-content > ul li:nth-child(3) {
    padding-bottom: 0;
  }
  .about_box-content > ul li:not(:last-child)::before {
    width: 87.2vw;
    height: 0.8vw;
    background: url("../images/about_box_list_border_sp.png") no-repeat center center;
    background-size: contain;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .about_box-content > ul li h3 {
    margin-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .about_box-content > ul li figure {
    margin-bottom: 2.6666666667vw;
  }
  .about_box-content > ul li p {
    font-size: 3.7333333333vw;
    line-height: 1.42;
    text-align: center;
  }
  .cta {
    padding: 8vw 2.6666666667vw;
  }
  .cta__inner {
    padding: 6.9333333333vw 2.6666666667vw;
    border-radius: 2.1333333333vw;
  }
  .cta__inner h2 {
    margin-bottom: 4.2666666667vw;
    font-size: 5.3333333333vw;
    line-height: 1.4;
    letter-spacing: -0.02em;
  }
  .cta__inner .button {
    width: 87.2vw;
    height: 17.6vw;
    font-size: 4.8vw;
    line-height: 1.38;
  }
  .cta__inner .button::before {
    width: 8.2666666667vw;
    height: 8.2666666667vw;
    right: 2.6666666667vw;
  }
  .product {
    padding: 16vw 3.2vw;
  }
  .product_lead {
    margin-bottom: 4.8vw;
    font-size: 6.1333333333vw;
    text-align: center !important;
    line-height: 1.43;
  }
  .product_lead::before, .product_lead::after {
    width: 4.2666666667vw;
    height: 8.5333333333vw;
    top: auto;
    bottom: 0;
  }
  .product_lead::before {
    left: -10px;
    transform: translate(-100%, 0);
  }
  .product_lead::after {
    right: 0;
    transform: scale(-1, 1) translate(-100%, 0);
  }
  .product_title {
    margin-bottom: 8vw;
    padding: 4.8vw 2.1333333333vw;
    border-radius: 1.0666666667vw;
    font-size: 9.0666666667vw;
    line-height: 1.35;
  }
  .product_title::before, .product_title::after {
    height: 0.5333333333vw;
  }
  .product_title::before {
    top: 1.3333333333vw;
  }
  .product_title::after {
    bottom: 1.3333333333vw;
  }
  .product_title b {
    font-size: 9.0666666667vw;
  }
  .product_list {
    flex-flow: column;
    gap: 5.3333333333vw;
    position: relative;
    right: -0.5333333333vw;
  }
  .product_list > li {
    padding: 7.4666666667vw 2.6666666667vw 9.0666666667vw;
    width: 93.3333333333vw;
    height: 137.6vw;
  }
  .product_list > li:nth-child(4) {
    height: 137.6vw;
  }
  .product_list > li.is-sp-bg-lg {
    padding-bottom: 6.4vw;
    height: 140vw;
    background: url("../images/product_list_item_bg_lg_sp.png") no-repeat center center;
    background-size: contain;
  }
  .product_list > li.is-sp-bg-lg h3 {
    margin-top: -3.2vw;
  }
  .product_list > li::before, .product_list > li::after {
    content: "";
    display: block;
    width: 1.0666666667vw;
    height: 7.7333333333vw;
    background: url("../images/product_list_border_sp.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0;
  }
  .product_list > li::before {
    left: 30px;
  }
  .product_list > li::after {
    right: 30px;
  }
  .product_list > li h3 {
    margin-bottom: 5.0666666667vw;
    padding: 3.2vw 2.1333333333vw;
    font-size: 6.9333333333vw;
  }
  .product_list > li h3::before, .product_list > li h3::after {
    height: 0.2666666667vw;
  }
  .product_list > li h3::before {
    top: 1.0666666667vw;
  }
  .product_list > li h3::after {
    bottom: 1.0666666667vw;
  }
  .product_list > li h3 span {
    font-size: 5.3333333333vw;
  }
  .product_list > li figure {
    margin-bottom: 2.6666666667vw;
    height: 43.2vw;
  }
  .product_list > li .price {
    margin-bottom: 1.0666666667vw;
    padding: 0 2.6666666667vw;
  }
  .product_list > li .price .label {
    padding: 1.8666666667vw 2.1333333333vw 1.3333333333vw;
    border: 0.5333333333vw solid #89BA40;
    border-radius: 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
  .product_list > li .price .number span:nth-child(1) {
    margin-right: 0.5333333333vw;
    font-size: 8vw;
  }
  .product_list > li .price .number span:nth-child(2) {
    font-size: 4.8vw;
  }
  .product_list > li .price .number span:nth-child(3) {
    font-size: 3.7333333333vw;
  }
  .product_list > li .add {
    margin-bottom: 2.6666666667vw;
    padding: 0 2.6666666667vw 1.0666666667vw;
    border-bottom: 0.2666666667vw solid #FCBF4C;
  }
  .product_list > li .add p {
    font-size: 3.7333333333vw;
  }
  .product_list > li .add p span:nth-child(1) {
    margin: 0 1.0666666667vw 0 1.6vw;
    font-size: 5.3333333333vw;
  }
  .product_list > li .add p span:nth-child(2) {
    font-size: 3.7333333333vw;
  }
  .product_list > li .add p span:nth-child(3) {
    font-size: 3.7333333333vw;
  }
  .product_list > li > ul {
    padding: 0 0 0 2.6666666667vw;
    gap: 1.0666666667vw 0;
  }
  .product_list > li > ul li {
    padding-left: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
  .product_list > li > ul li::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 0.2666666667vw;
    left: -0.5333333333vw;
  }
  .product_list > li > a {
    margin: auto auto 0;
    width: 74.9333333333vw;
    height: 13.8666666667vw;
    font-size: 4.8vw;
  }
  .product_list > li > a::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    background: url("../images/button_icon.png") center center no-repeat;
    background-size: contain;
    right: 4.2666666667vw;
  }
  .other {
    padding: 16vw 3.2vw;
    background: url("../images/other_bg_sp.png") center center no-repeat;
    background-size: cover;
  }
  .other_title {
    margin-bottom: 5.3333333333vw;
    font-size: 5.8666666667vw;
    line-height: 1.36;
  }
  .other_title span {
    font-size: 6.9333333333vw;
  }
  .other_banner {
    margin-bottom: 8vw;
  }
  .other_text {
    max-width: 84.2666666667vw;
  }
}

/*# sourceMappingURL=style.css.map */
