@charset "UTF-8";

/* ユーティリティー */
body {
  color: #44423a;
  font-family: "m-plus-rounded-1c", sans-serif;
  font-size: clamp(15px, 3.95vw, 17px);
  font-weight: 500;
  line-height: 1.765;
  letter-spacing: 0;
  /* -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt"; */
}

body.fixed {
  overflow-y: hidden;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #30b57f;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
body.fade::after {
  opacity: 1;
}
/* ======================
font
========================= */
.f_round {
  font-family: "m-plus-rounded-1c", sans-serif;
  font-weight: 500;
  /* 400,500,700,800 */
  font-style: normal;
}
.f_din {
  font-family: "din-2014-rounded-variable", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.fw_3 {
  font-weight: 400;
}
.fw_5 {
  font-weight: 500;
}
.fw_7 {
  font-weight: 700;
}
.fw_8 {
  font-weight: 800;
}

/* ======================
common
========================= */
a {
  color: #44423a;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
a.no_link {
  pointer-events: none;
  opacity: 0.5;
}
a.sptel {
  pointer-events: none;
}
.cl_gr {
  color: #00a461;
}
.cl_bl {
  color: #1f96cf;
}
.cl_or {
  color: #f49134;
}
.cl_yl {
  color: #ffeb27;
}
.cl_wh {
  color: #fff;
}
.txt_c {
  text-align: center;
}
.txt_c span {
  display: inline-block;
}
.txt_l {
  text-align: left;
}
.bg_wh {
  background-color: #fff;
}
.bg_gr {
  background-color: #00a461;
}
.bg_bl {
  background-color: #1f96cf;
}
.bg_rd {
  background-color: #e83743;
}
.bg_yl {
  background-color: #ffeb27;
}
.bg_gry {
  background-color: #f2f2f2;
}
.bdr_r {
  border-radius: 16px;
}
.inner_430 {
  width: 87.76%;
  max-width: 430px;
  margin: 0 auto;
}
img {
  width: 100%;
  height: auto;
}
.img {
  width: 100%;
  height: auto;
}
.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}
.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}
img[src*="_sp"] {
  display: none;
}
.ilbk {
  display: inline-block;
}
.p_rltv {
  position: relative;
}
.flex {
  display: flex;
  justify-content: space-between;
}
/* ======================
header
========================= */
header {
  position: fixed;
  z-index: 10;
  right: max(11px, 0.76vw);
  top: 20px;
}
.openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 2;
}
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #00a461;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
/*activeクラスが付与されると線が回転して×に*/

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
}
body.modal-open .openbtn1 {
  display: none;
}
.o-header-nav__cover {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  -webkit-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}
.o-header-nav__cover.js-active {
  visibility: visible;
  opacity: 1;
}

.o-header-nav {
  position: fixed;
  width: 100%;
  height: 100dvh;
  padding: 30px;
  bottom: -100%;
  left: 0;
  background-color: #00a461;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: scroll;
}
@media (min-width: 430px) {
  .o-header-nav {
    width: 60%;
    max-width: 500px;
    left: auto;
    right: 0;
  }
}
.o-header-nav.js-active {
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.o-header-nav__inner {
  padding: 68px 0;
}
.o-header-nav__inner li:not(:last-child) {
  margin-bottom: 20px;
}
.o-header-nav__inner li a {
  font-size: 12px;
  line-height: 1.26;
  color: #fff;
  transform: scaleX(0.98);
}
.o-header-nav__inner li a .f_din {
  font-size: 29px;
  font-weight: 700;
  display: block;
}

/* ======================
section
========================= */
.sec_head-ttlbk {
  margin-bottom: 12px;
}
.sec_head-ttlbk::before {
  content: "";
  width: 490px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eat .sec_head-ttlbk::before {
  background: #00a461;
}
.spot .sec_head-ttlbk::before {
  background: #1f96cf;
}
.coupon .sec_head-ttlbk::before {
  background: #f49134;
}
.campaign .sec_head-ttlbk::before {
  background: #e83743;
}
.present .sec_head-ttlbk::before {
  background: #ffeb27;
}
.map .sec_head-ttlbk::before {
  background: #44423a;
}
.projects .sec_head-ttlbk::before {
  background: #1eaba6;
}
.sec_head-ttl {
  width: 190px;
  padding: 16px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}

.sec_head .sttl {
  font-size: clamp(28px, 6.88vw, 33px);
  line-height: 1.24;
  margin-bottom: 23px;
}
.sec_head .sttl + p {
  font-size: clamp(16px, 4.19vw, 18px);
  line-height: 1.57;
}
/* ======================
inview
========================= */
.inv_mov {
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(0, -60px);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}
.tl_rxt {
  transform: rotateX(180deg);
}
.tl_ryt {
  transform: rotateY(180deg);
}

.mov,
.on {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: opacity 1s, transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}
.mov.delay600 {
  transition-delay: 600ms;
}
.mov.delay700 {
  transition-delay: 700ms;
}

/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
  text-align: center;
  padding: 250px 0;
}
.notfound .page {
  padding-left: 0;
}

.notfound .ttl {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.notfound p {
  font-size: 16px;
  margin-bottom: 15px;
}

.notfound p strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.notfound a {
  text-decoration: underline;
  display: inline-block;
}

/*== totop ==*/
#totop {
  width: 11%;
  max-width: 61px;
  min-width: 40px;
  position: fixed;
  bottom: 40px;
  right: 2vw;
  z-index: 3;
  display: none;
}
#totop a:hover {
  animation: scaleOnce 0.4s ease-out;
}
@media screen and (max-width: 768px) {
}
