/* breakpoint ------------------------------*/
/* common ------------------------------------*/
.contents {
  padding: 0 5vw;
}

.page-nav {
  height: 80px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 40px;
  background-color: white;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  z-index: 5;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.page-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-nav__item a {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  text-decoration: none;
  color: black;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.page-nav__item a:hover {
  opacity: 0.7;
}

.page-nav__item.gasstation a {
  color: #6abd4d;
}

.page-nav__item.store a {
  color: #fbb909;
}

.page-nav__item.propane a {
  color: #fd653d;
}

.page-nav__item:after {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 30px;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.page-nav__item:last-child:after {
  display: none;
}

/* keyvisual ---------------------------------*/
.kv {
  margin: 0 10px;
  position: relative;
  z-index: 0;
}

.kv-list {
  height: calc(100vh - 220px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .kv-list {
    height: auto;
    display: block;
  }
}

.kv-list__item {
  max-width: calc((100% - 10px) / 3);
  -ms-flex-preferred-size: calc((100% - 10px) / 3);
  flex-basis: calc((100% - 10px) / 3);
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .kv-list__item {
    width: 100%;
    height: calc(50px + 35vw);
    min-height: 220px;
    max-width: none;
    margin-bottom: 5px;
  }
  .kv-list__item:last-child {
    margin-bottom: 0;
  }
}

.kv-list__item:last-child {
  margin-right: 0;
}

.kv-list__item a {
  width: 100%;
  position: relative;
  color: white;
}

.kv-list__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.kv-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: transform 600ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: transform 600ms cubic-bezier(0.37, 0, 0.63, 1),
    -webkit-transform 600ms cubic-bezier(0.37, 0, 0.63, 1);
}

a:hover .kv-list__image img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.kv-list__wrap {
  width: 100%;
  height: 200px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .kv-list__wrap {
    height: 70px;
    padding-top: 0;
    padding-left: 100px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.kv-list__wrap:before,
.kv-list__wrap:after {
  content: "";
  display: block;
}

.kv-list__wrap:before {
  width: 80px;
  height: 80px;
  background-color: white;
  background-position: center;
  background-size: 100% auto;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .kv-list__wrap:before {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: 25px;
  }
}

.kv-list__wrap:after {
  width: 20px;
  height: 20px;
  margin-top: 20px;
  background-image: url(../../assets/images/common/icn_arrow_b.png);
  background-size: 100% auto;
  border: 2px solid white;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .kv-list__wrap:after {
    margin-top: 0;
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
  }
}

.gasstation .kv-list__wrap {
  background-color: rgba(106, 189, 77, 0.8);
}

.gasstation .kv-list__wrap:before {
  background-image: url(../images/home/icon_gasstation.png);
}

.store .kv-list__wrap {
  background-color: rgba(251, 185, 9, 0.8);
}

.store .kv-list__wrap:before {
  background-image: url(../images/home/icon_store.png);
}

.propane .kv-list__wrap {
  background-color: rgba(253, 101, 61, 0.8);
}

.propane .kv-list__wrap:before {
  background-image: url(../images/home/icon_propane.png);
}

.kv-list__name {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .kv-list__name {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.kv-list__en {
  font-family: "bebas_neue_semirounded", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .kv-list__en {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* intro -------------------------------------*/
.intro {
  max-width: 1024px;
  margin: 120px auto;
  padding: 0 5vw;
}

@media screen and (max-width: 768px) {
  .intro {
    margin: 60px auto;
  }
}

.intro-catch {
  margin-top: 80px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.5;
  color: black;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .intro-catch {
    margin-top: 60px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.intro-catch span {
  display: inline-block;
}

.intro-data {
  max-width: 1024px;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .intro-data {
    margin: 30px auto;
  }
}

.intro-data__item {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.intro-data__item:first-child:after {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 20px;
}

.intro-data__title {
  font-size: 1.4rem;
  line-height: 2.5;
  width: 150px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #d6003a;
  border-radius: 15px;
  position: absolute;
  top: -15px;
  left: calc(50% - 75px);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .intro-data__title {
    font-size: 1.3rem;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .intro-data__title {
    width: 120px;
    left: calc(50% - 60px);
  }
}

.intro-data__title:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  display: block;
  background-position: center;
  background-size: 100% auto;
}

.open .intro-data__title:before {
  background-image: url(../images/common/icn_clock.png);
}

.close .intro-data__title:before {
  background-image: url(../images/common/icn_calendar.png);
}

.intro-data__title:after {
  content: "";
  border: 5px solid transparent;
  border-top: 10px solid #d6003a;
  position: absolute;
  left: calc(50% - 5px);
  bottom: -15px;
}

.intro-data p {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .intro-data p {
    font-size: 1.5rem;
  }
}

.intro-data p span {
  display: inline-block;
}

.intro-news {
  width: 100%;
  max-width: 1024px;
  min-height: 60px;
  margin: 0 auto;
  padding: 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #d6003a;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .intro-news {
    height: auto;
    padding: 20px;
    display: block;
    border-radius: 20px;
  }
}

.intro-news dt {
  max-width: 160px;
  -ms-flex-preferred-size: 160px;
  flex-basis: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #d6003a;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .intro-news dt {
    max-width: none;
    margin-bottom: 5px;
    font-size: 1.5rem;
  }
}

.intro-news dt:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 5px;
  background-image: url(../images/common/icn_alert.png);
  background-size: 100% auto;
}

.intro-news dd {
  font-size: 1.4rem;
  line-height: 2.5;
  max-width: calc(100% - 160px);
  -ms-flex-preferred-size: calc(100% - 160px);
  flex-basis: calc(100% - 160px);
}

@media screen and (max-width: 768px) {
  .intro-news dd {
    font-size: 1.3rem;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .intro-news dd {
    max-width: none;
  }
}

/* secrion -----------------------------------*/
.sec {
  margin: 80px 0;
  padding-bottom: 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec {
    padding-bottom: 40px;
  }
}

.sec:after {
  content: "";
  width: calc(100% + 10vw);
  height: calc(100% - 180px);
  display: block;
  position: absolute;
  top: 180px;
  left: -5vw;
  z-index: 0;
}

.sec.gasstation:after {
  background-color: rgba(106, 189, 77, 0.15);
}

.sec.store:after {
  background-color: rgba(251, 185, 9, 0.15);
}

.sec.propane:after {
  background-color: rgba(253, 101, 61, 0.15);
}

.sec-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.sec-head.left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.sec-head-en {
  font-family: "bebas_neue_semirounded", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px dashed #000;
  position: absolute;
  top: -40px;
  z-index: 1;
  font-size: 6rem;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .sec-head-en {
    height: 60px;
    top: -30px;
    font-size: 4rem;
  }
}

.gasstation .sec-head-en {
  left: 0;
  color: #6abd4d;
  border-bottom-color: #6abd4d;
}

.store .sec-head-en {
  right: 0;
  color: #fbb909;
  border-bottom-color: #fbb909;
}

.propane .sec-head-en {
  left: 0;
  color: #fd653d;
  border-bottom-color: #fd653d;
}

.sec-head__image {
  max-width: calc(100% - 230px - 60px + 5vw);
  -ms-flex-preferred-size: calc(100% - 230px - 60px + 5vw);
  flex-basis: calc(100% - 230px - 60px + 5vw);
  height: 640px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sec-head__image {
    width: calc(100% + 5vw);
    max-width: none;
    height: auto;
  }
}

.right .sec-head__image {
  border-radius: 0 40px 40px 0;
  left: -5vw;
}

@media screen and (max-width: 768px) {
  .right .sec-head__image {
    border-radius: 0 20px 20px 0;
  }
}

.left .sec-head__image {
  border-radius: 40px 0 0 40px;
  right: -5vw;
}

@media screen and (max-width: 768px) {
  .left .sec-head__image {
    border-radius: 20px 0 0 20px;
    right: 0;
  }
}

.sec-head__image img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec-head__wrap {
  max-width: 230px;
  -ms-flex-preferred-size: 230px;
  flex-basis: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .sec-head__wrap {
    max-width: none;
    display: block;
    margin-top: -50px;
  }
}

.sec-head-title {
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

@media screen and (max-width: 768px) {
  .sec-head-title {
    margin-bottom: 20px;
    padding-top: 0;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.sec-head-title__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  color: black;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .sec-head-title__catch {
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 90px;
    position: relative;
    font-size: 1.7rem;
  }
}

.sec-head-title__catch span {
  width: 30px;
  margin-left: 5px;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .sec-head-title__catch span {
    width: auto;
    height: 30px;
    margin: 2px 0;
    padding: 0 10px;
  }
}

.sec-head-title__catch:before {
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center;
  background-size: 100% auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 40px);
}

@media screen and (max-width: 768px) {
  .sec-head-title__catch:before {
    top: calc(50% - 40px);
    left: 0;
  }
}

.gasstation .sec-head-title__catch:before {
  background-image: url(../images/home/icon_gasstation_w.png);
  background-color: #6abd4d;
}

.store .sec-head-title__catch:before {
  background-image: url(../images/home/icon_store_w.png);
  background-color: #fbb909;
}

.propane .sec-head-title__catch:before {
  background-image: url(../images/home/icon_propane_w.png);
  background-color: #fd653d;
}

.sec-head-title__name {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .sec-head-title__name {
    font-size: 3.2rem;
  }
  .sec-head-title__name br {
    display: none;
  }
}

.gasstation .sec-head-title__name {
  color: #6abd4d;
}

.store .sec-head-title__name {
  color: #fbb909;
}

.propane .sec-head-title__name {
  color: #fd653d;
}

.sec-head__text {
  font-size: 1.4rem;
  line-height: 2.5;
  font-weight: bold;
  color: black;
}

@media screen and (max-width: 768px) {
  .sec-head__text {
    font-size: 1.3rem;
    line-height: 2;
  }
}

.sec-contents {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sec-contents {
    margin-top: 40px;
  }
}

.sec-contents__title {
  display: table;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-contents__title {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
}

.sec-contents__title span {
  font-family: "bebas_neue_semirounded", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  font-size: 4rem;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .sec-contents__title span {
    font-size: 3rem;
  }
}

.gasstation .sec-contents__title span {
  color: #6abd4d;
}

.store .sec-contents__title span {
  color: #fbb909;
}

.propane .sec-contents__title span {
  color: #fd653d;
}

.sec-contents__title:before,
.sec-contents__title:after {
  content: "";
  width: 24px;
  height: 57px;
  display: block;
  background-position: center;
  background-size: 100% auto;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 768px) {
  .sec-contents__title:before,
  .sec-contents__title:after {
    width: 19px;
    height: 42px;
  }
}

.sec-contents__title:before {
  left: -30px;
}

.gasstation .sec-contents__title:before {
  background-image: url(../images/common/icn_gasstation_line_l.png);
}

.store .sec-contents__title:before {
  background-image: url(../images/common/icn_store_line_l.png);
}

.propane .sec-contents__title:before {
  background-image: url(../images/common/icn_propane_line_l.png);
}

.sec-contents__title:after {
  right: -30px;
}

.gasstation .sec-contents__title:after {
  background-image: url(../images/common/icn_gasstation_line_r.png);
}

.store .sec-contents__title:after {
  background-image: url(../images/common/icn_store_line_r.png);
}

.propane .sec-contents__title:after {
  background-image: url(../images/common/icn_propane_line_r.png);
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
  .store .service-list {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .propane .service-list {
    display: block;
  }
}

.service-list__item {
  margin-right: 20px;
}

.gasstation .service-list__item {
  max-width: calc((100% - (20px * 4)) / 5);
  -ms-flex-preferred-size: calc((100% - (20px * 4)) / 5);
  flex-basis: calc((100% - (20px * 4)) / 5);
}

@media screen and (max-width: 992px) {
  .gasstation .service-list__item {
    max-width: calc((100% - (20px * 2)) / 3);
    -ms-flex-preferred-size: calc((100% - (20px * 2)) / 3);
    flex-basis: calc((100% - (20px * 2)) / 3);
    margin-bottom: 40px;
  }
  .gasstation .service-list__item:nth-child(3) {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .gasstation .service-list__item {
    max-width: calc((100% - 20px) / 2);
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
  .gasstation .service-list__item:nth-child(3) {
    margin-right: 20px;
  }
  .gasstation .service-list__item:nth-child(2n) {
    margin-right: 0;
  }
}

.store .service-list__item {
  max-width: calc((100% - 80px) / 2);
  -ms-flex-preferred-size: calc((100% - 80px) / 2);
  flex-basis: calc((100% - 80px) / 2);
  margin-right: 80px;
}

@media screen and (max-width: 992px) {
  .store .service-list__item {
    max-width: calc((100% - 40px) / 2);
    -ms-flex-preferred-size: calc((100% - 40px) / 2);
    flex-basis: calc((100% - 40px) / 2);
    margin-right: 40px;
  }
}

@media screen and (max-width: 576px) {
  .store .service-list__item {
    margin-right: 0;
    max-width: none;
    margin-bottom: 40px;
  }
}

.propane .service-list__item {
  max-width: calc((100% - (20px * 2)) / 3);
  -ms-flex-preferred-size: calc((100% - (20px * 2)) / 3);
  flex-basis: calc((100% - (20px * 2)) / 3);
}

@media screen and (max-width: 576px) {
  .propane .service-list__item {
    max-width: none;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.service-list__item:last-child {
  margin-right: 0;
}

.service-list__image {
  margin-bottom: 10px;
  position: relative;
}

.service-list__image:before {
  font-family: "bebas_neue_semirounded", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  content: "";
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  position: absolute;
  top: -21px;
  left: calc(50% - 21px);
  z-index: 1;
  font-size: 1.8rem;
  color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gasstation .service-list__image:before {
  background-color: #6abd4d;
  border: 5px solid #e9f5e4;
}

.store .service-list__image:before {
  display: none;
  background-color: #fbb909;
}

.propane .service-list__image:before {
  background-color: #fd653d;
  border: 5px solid #ffefeb;
}

.service-list__item:first-child .service-list__image:before {
  content: "1";
}

.service-list__item:nth-child(2) .service-list__image:before {
  content: "2";
}

.service-list__item:nth-child(3) .service-list__image:before {
  content: "3";
}

.service-list__item:nth-child(4) .service-list__image:before {
  content: "4";
}

.service-list__item:nth-child(5) .service-list__image:before {
  content: "5";
}

.service-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}

.service-list__title {
  font-size: 1.8rem;
  line-height: 2.5;
  margin-bottom: 10px;
  line-height: 1.6 !important;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-list__title {
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media screen and (max-width: 992px) {
  .service-list__title {
    margin-bottom: 5px;
  }
}

.gasstation .service-list__title {
  color: #6abd4d;
}

.store .service-list__title {
  text-align: left;
  color: #fbb909;
}

.propane .service-list__title {
  color: #fd653d;
}

.service-list__text {
  font-size: 1.4rem;
  line-height: 2.5;
  line-height: 1.6 !important;
}

@media screen and (max-width: 768px) {
  .service-list__text {
    font-size: 1.3rem;
    line-height: 2;
  }
}

.propane-bnr {
  max-width: 1000px;
  margin: 80px auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.propane-bnr a {
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 576px) {
  .propane-bnr a {
    height: auto;
    display: block;
  }
}

.propane-bnr__image {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

@media screen and (max-width: 768px) {
  .propane-bnr__image {
    max-width: none;
  }
}

.propane-bnr__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.propane-bnr__wrap {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fd653d;
  position: relative;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.propane-bnr__wrap:before {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  background-color: white;
  background-image: url(../images/home/icn_bnr.png);
  background-size: 100% auto;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: calc(50% - 30px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .propane-bnr__wrap {
    max-width: none;
  }
  .propane-bnr__wrap:before {
    top: -30px;
    left: calc(50% - 30px);
  }
}

.propane-bnr__title {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 5px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .propane-bnr__title {
    font-size: 2rem;
  }
}

.propane-bnr__icn {
  font-size: 1.2rem;
  line-height: 2.5;
  height: 24px;
  margin-bottom: 10px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid white;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .propane-bnr__icn {
    font-size: 1.1rem;
    line-height: 2;
  }
}

.propane-bnr__text {
  font-size: 1.4rem;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .propane-bnr__text {
    font-size: 1.3rem;
    line-height: 2;
  }
}

.other {
  margin: 80px 0;
}

.other__title {
  margin: 0 auto;
  margin-bottom: 40px;
  display: table;
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
  color: #d6003a;
}

@media screen and (max-width: 768px) {
  .other__title {
    font-size: 2rem;
    margin-bottom: -20px;
  }
}

.other__title:before,
.other__title:after {
  content: "";
  width: 24px;
  height: 57px;
  display: block;
  background-position: center;
  background-size: 100% auto;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 768px) {
  .other__title:before,
  .other__title:after {
    width: 19px;
    height: 42px;
  }
}

.other__title:before {
  left: -40px;
  background-image: url(../images/common/icn_other_line_l.png);
}

@media screen and (max-width: 768px) {
  .other__title:before {
    left: -20px;
  }
}

.other__title:after {
  right: -40px;
  background-image: url(../images/common/icn_other_line_r.png);
}

@media screen and (max-width: 768px) {
  .other__title:after {
    right: -20px;
  }
}

.other__image {
  width: calc(100% + 10vw);
  height: calc(50px + 30vw);
  margin-bottom: 60px;
  position: relative;
  left: -5vw;
  z-index: 0;
}

.other__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
