@charset "UTF-8";
/* =========================================================
body
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
  line-height: 1.3rem;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #009140;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  background-color: #FFFACB;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: top;
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}

main {
  display: block;
  /*IE*/
}

a {
  text-decoration: none;
  color: #015E3C;
  transition: 0.3s;
}

a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

.pc-disp {
  display: none;
}

.sp-disp {
  display: block;
}

@media screen and (min-width: 769px) {
  .pc-disp {
    display: block;
  }
  .sp-disp {
    display: none;
  }
}

/* =========================================================
header
========================================================= */
.header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .btn-area, .header .sns_list {
  display: flex;
  align-items: center;
}

.header .btn-area {
  font-size: 14px;
  font-weight: 500;
  gap: 30px;
}

.header .btn-area .sns_list {
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.header .btn-area .sns_list .item.fb a {
  width: 30px;
  height: 30px;
  background: url("../images/sns_fb.svg");
  display: block;
}

.header .btn-area .sns_list .item.inst a {
  width: 30px;
  height: 30px;
  background: url("../images/sns_inst.svg");
  display: block;
}

.header .btn-area .sns_list .item.youtube a {
  width: 34px;
  height: 24px;
  background: url("../images/sns_youtube.svg");
  display: block;
}

.header .btn-area .sns_list .item.line a {
  width: 30px;
  height: 30px;
  background: url("../images/sns_line.svg");
  display: block;
}

.header .btn-area .hamburger-menu {
  width: 60px;
  height: 60px;
  position: relative;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.header .btn-area .hamburger-menu__bar {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: url(../images/menu-icon.svg) no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}

.header .btn-area .hamburger-menu__bar:first-child {
  top: 16px;
}

.header .btn-area .hamburger-menu__bar:nth-child(2) {
  top: 27px;
}

.header .btn-area .hamburger-menu__bar:last-child {
  top: 38px;
}

.header .btn-area .hamburger-menu.menu-open .hamburger-menu__bar {
  top: 50%;
}

.header .btn-area .hamburger-menu.menu-open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.header .btn-area .hamburger-menu.menu-open .hamburger-menu__bar:nth-child(2) {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header .btn-area .hamburger-menu.menu-open .hamburger-menu__bar:last-child {
  display: none;
}

.header .btn-area .navigation {
  transition: transform 0.5s ease-in-out;
  background: rgba(1, 94, 60, 0.9);
  position: fixed;
  top: 16vw;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  padding: 120px 10px;
  box-sizing: border-box;
  z-index: 2;
}

.header .btn-area .navigation_list {
  text-align: center;
}

.header .btn-area .navigation_list .item {
  font-size: 24px;
  font-weight: normal;
  padding-bottom: 30px;
}

.header .btn-area .navigation_list .item a {
  color: #fff;
}

.header .btn-area .navigation_list .sns_list {
  justify-content: center;
  padding-top: 50px;
}

.header .btn-area .navigation_list .sns_list .item.fb a {
  -webkit-mask-image: url("../images/sns_fb.svg");
  mask-image: url("../images/sns_fb.svg");
  background: #fff;
}

.header .btn-area .navigation_list .sns_list .item.inst a {
  -webkit-mask-image: url("../images/sns_inst.svg");
  mask-image: url("../images/sns_inst.svg");
  background: #fff;
}

.header .btn-area .navigation_list .sns_list .item.youtube a {
  -webkit-mask-image: url("../images/sns_youtube.svg");
  mask-image: url("../images/sns_youtube.svg");
  background: #fff;
}

.header .btn-area .navigation_list .sns_list .item.line a {
  -webkit-mask-image: url("../images/sns_line.svg");
  mask-image: url("../images/sns_line.svg");
  background: #fff;
}

.header .sns_list {
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .header {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    height: 16vw;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    padding: 0;
    width: 100vw;
  }
  .header .title img {
    width: 140px;
    margin: auto;
  }
  .header .btn-area {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background: #015E3C;
    height: 100%;
  }
}

/* =========================================================
Main
========================================================= */
.main-contents {
  background: url(../images/bg.png) center repeat;
  background-attachment: fixed;
}

.main-contents .cont01 {
  position: relative;
  background: url(../images/mv-pc.png) center no-repeat;
  background-size: contain;
  width: 100%;
}

.main-contents .cont01 .read-area.is-active {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  100% {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  100% {
    transform: perspective(400px);
  }
}

.main-contents .cont01 .on-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-contents .cont01 .on-cont.is-active {
  opacity: 1;
}

.main-contents .cont02 {
  max-width: 1080px;
  margin: 120px auto;
}

.main-contents .cont02 .img-area {
  margin: 0 auto 40px;
}

.main-contents .cont02 .img-area.img01 {
  max-width: 750px;
}

.main-contents .cont02 .img-area.img02 {
  max-width: 1080px;
}

.main-contents .cont02 .txt-area {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 50px;
}

.main-contents .cont02 .line-area {
  position: relative;
  text-align: center;
  margin: 70px 147px;
  background: #fff;
  border: #009140 4px solid;
  border-radius: 20px;
}

.main-contents .cont02 .line-area .ttl {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.main-contents .cont02 .line-area .ttl::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: -20px;
  display: inline;
  border: #fff 4px solid;
  z-index: -1;
}

.main-contents .cont02 .line-area .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 90px;
  gap: 10px;
}

.main-contents .cont02 .line-area .col .btn {
  background: #FBE301;
  border-radius: 40px;
  font-size: 24px;
  font-weight: bold;
  padding: 23px 47px;
  text-align: center;
}

.main-contents .cont02 .line-area .col .btn a {
  color: #009140;
  display: inline-flex;
  align-items: center;
}

.main-contents .cont02 .line-area .col .btn a::after {
  content: '';
  display: inline-block;
  width: 0;
  border-style: solid;
  height: 0;
  border-color: transparent transparent transparent #009140;
  border-width: 10px 0px 10px 10px;
  margin-left: 10px;
}

.main-contents .cont03 {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #FFAAB8;
}

.main-contents .cont03 .img-area {
  max-width: 880px;
  margin: 0 auto 70px;
}

.main-contents .cont03 .img-area.d-width {
  max-width: 368px;
}

.main-contents .cont03 .line-area {
  text-align: center;
  margin: 60px auto 0;
  max-width: 786px;
  background: #FBE201;
  border: #009140 4px solid;
  border-radius: 20px;
}

.main-contents .cont03 .line-area .ttl {
  font-size: 30px;
  font-weight: bold;
}

.main-contents .cont03 .line-area .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  gap: 20px;
}

.main-contents .cont03.end .img-area, .main-contents .cont03.end .line-area {
  display: none;
}

.main-contents .cont03.end::after {
  content: '今月のキャンペーンは終了しました';
  display: block;
  font-size: 32px;
  text-align: center;
}

.main-contents .cont04 {
  max-width: 1080px;
  margin: 120px auto 80px;
}

.main-contents .cont04 .list-area {
  margin: auto;
  max-width: 880px;
  margin-bottom: 80px;
}

.main-contents .cont04 .list-area .list {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-contents .cont04 .list-area .list li {
  width: 420px;
  margin-bottom: 10px;
}

.main-contents .cont04 .list-area .list li .min {
  font-size: 14px;
  line-height: 1.4;
}

.main-contents .cont04 .list-txt {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.main-contents .cont04 .conditions-area {
  position: relative;
  background: #fff;
  border: #009140 4px solid;
  border-radius: 20px;
  padding: 70px 100px 60px;
}

.main-contents .cont04 .conditions-area .ttl {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.main-contents .cont04 .conditions-area .ttl::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: -20px;
  display: inline;
  border: #fff 4px solid;
  z-index: -1;
}

.main-contents .cont04 .conditions-area .txt {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  word-break: break-all;
}

.main-contents .cont04 .conditions-area .txt a {
  color: #009140;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .main-contents .cont01 {
    background: url(../images/mv-sp.png) center no-repeat;
    background-size: contain;
  }
  .main-contents .cont02 {
    margin: 80px 20px;
    width: auto;
  }
  .main-contents .cont02 .img-area {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .main-contents .cont02 .txt-area {
    font-size: 18px;
  }
  .main-contents .cont02 .line-area {
    margin: 0;
  }
  .main-contents .cont02 .line-area .ttl {
    font-size: 20px;
  }
  .main-contents .cont02 .line-area .ttl::after {
    left: 0;
    right: 0;
  }
  .main-contents .cont02 .line-area .col {
    padding: 40px 20px;
    display: block;
  }
  .main-contents .cont02 .line-area .col .code-img {
    display: none;
  }
  .main-contents .cont02 .line-area .col .btn {
    font-size: 16px;
  }
  .main-contents .cont03 {
    padding: 80px 20px;
  }
  .main-contents .cont03 .line-area .col {
    display: block;
  }
  .main-contents .cont03.end::after {
    font-size: 18px;
  }
  .main-contents .cont04 {
    padding: 0 20px;
    margin: 80px auto 80px;
  }
  .main-contents .cont04 .list-area .list {
    font-size: 16px;
    display: block;
  }
  .main-contents .cont04 .list-area .list li {
    width: 100%;
  }
  .main-contents .cont04 .list-area .list li .min {
    font-size: 12px;
    line-height: 1.4;
  }
  .main-contents .cont04 .list-txt {
    font-size: 16px; 
  }
  .main-contents .cont04 .conditions-area {
    padding: 65px 20px 20px;
  }
  .main-contents .cont04 .conditions-area .ttl {
    font-size: 20px;
  }
  .main-contents .cont04 .conditions-area .ttl::after {
    left: 0;
    right: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pc-disp {
    display: block;
  }
  .sp-disp {
    display: none;
  }
  .sp-disp.tb-disp {
    display: block;
  }
  .header {
    padding: 10px 13px;
  }
  .header .title img {
    width: 80%;
  }
  .header .btn-area, .header .sns_list {
    gap: 14px;
  }
  .main-contents .cont02, .main-contents .cont03, .main-contents .cont04 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-contents .cont02 .line-area .col {
    padding: 50px 50px;
  }
}

/* =========================================================
Footer
========================================================= */
.footer {
  background: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

/* =========================================================
Sub
========================================================= */
.g-txt {
  font-size: 30px;
  font-weight: bold;
  padding: 13px 0;
  margin: 0 auto 30px;
  background: #fff;
  border: #009140 4px solid;
  border-radius: 80px;
  text-align: center;
}

.g-txt.cont03-txt {
  max-width: 430px;
}

.g-txt.cont04-txt {
  max-width: 750px;
}

.r-txt {
  font-size: 20px;
  text-align: right;
  margin-top: 20px;
}

.js-scradd {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.js-scradd.is-active {
  opacity: 1;
}

section {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .g-txt {
    font-size: 20px;
    line-height: 1.3;
    margin-left: 15px;
    margin-right: 15px;
  }
  .g-txt.cont03-txt {
    max-width: 100%;
  }
  .g-txt.cont04-txt {
    margin-left: 0;
    margin-right: 0;
  }
}

.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .pagetop {
    display: none;
    bottom: 20px;
    right: 20px;
  }
}

.pagetop a {
  display: inline-block;
  position: relative;
  width: 16vw;
  height: 16vw;
  text-indent: 100%;
  background: url(../images/pagetop.svg) no-repeat;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .pagetop a {
    width: 60px;
    height: 60px;
  }
  .pagetop a:hover {
    opacity: 0.7;
  }
}

.pagetop a:hover {
  opacity: 1;
}

.bnr-img {
  max-width: 368px;
  margin: 50px auto 0;
  position: relative;
  border: #fff 2px solid;
}

.bnr-img::after {
  content: '';
  display: block;
  background: url(../images/2511/christmas_icon.svg) no-repeat;
  position: absolute;
  width: 80px;
  height: 80px;
  top: -50px;
  right: -20px;
}

@media screen and (min-width: 769px) {
  .bnr-img::after {
    width: 90px;
    height: 90px;
    top: -30px;
    right: -50px;
  }
}

.bnr-txt {
    color: #DE2525;
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .bnr-txt {
    margin-top: 16px;
    font-size: 16px;
  }
}

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