@charset "utf-8";

:root {
  --font-m_plus: "M PLUS Rounded 1c", sans-serif;
}

* {
  box-sizing: border-box;
  font-feature-settings: "palt";
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(7rem, 70px);
  font-size: calc(100vw / 104);
}

body, h1, h2, h3, h4, h5, p {
  margin: 0;
}

body {
  font-family: var(--font-m_plus);
  letter-spacing: -0.08em;
  font-weight: 400;
}

body.active {
  height: 100%;
  overflow: hidden;
}

p {
  text-align: justify;
}

img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: opacity .8s;
  color: inherit;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

a[href^="#!"] {
  pointer-events: none;
}

span {
  display: inline-block;
}

dl, dt, dd {
  all: unset;
  display: block;
}

button {
  all: unset;
  display: block;
}

table {
  border-collapse: collapse;
}

.sp_obj {
  display: none !important;
}

@media (max-width: 799px) {

  html {
    scroll-padding-top: 4.5rem;
    font-size: calc(100vw / 37.5);
  }

  .sp_obj {
    display: block !important;
  }
  
  .pc_obj {
    display: none !important;
  }
}

/* ----- common ----- */

.no_mt {
  margin-top: 0;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: min(12rem, 120px) 20px;
  position: relative;
}

h2.common_h2 {
  margin: 0 auto;
  width: min(23rem, 230px);
}

@media (max-width: 799px) {
  .container {
    padding: 6rem 2rem;
  }

  h2.common_h2 {
    width: 18.5rem;
  }
}

/* ----- header ----- */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fddd52;
  color: #000000;
  z-index: 99;
}

header div.container {
  height: min(7rem, 70px);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 a {
  display: block;
  width: min(6.2rem, 62px);
}

header nav.gnav ul.gnav_list {
  display: flex;
  align-items: center;
  gap: min(7.0rem, 70px);
}

header nav.gnav ul.gnav_list li.gnav_item a {
  display: block;
  width: fit-content;
  font-size: min(2.0rem, 20px);
  font-weight: 700;
  -webkit-text-stroke: min(0.0rem, 0px) #fff;
  text-stroke: min(0.0rem, 0px) #fff;
  paint-order: none;
  transition: all .8s;
}

@media (hover: hover) {
  header nav.gnav ul.gnav_list li.gnav_item a:hover {
    opacity: 1;
    -webkit-text-stroke: min(0.8rem, 8px) #fff;
    text-stroke: min(0.8rem, 8px) #fff;
    paint-order: stroke;
  }
}

@media (max-width: 799px) {
  header div.container {
    height: 4.5rem;
    padding: 0 2rem 0 1.5rem;
  }
  
  header h1 a {
    width: 4rem;
  }
  
  header nav.gnav ul.gnav_list {
    gap: 2.7rem;
  }
  
  header nav.gnav ul.gnav_list li.gnav_item a {
    font-size: 1.2rem;
  }
}

/* ----- main ----- */

main {
  padding-top: min(7rem, 70px);
}

@media (max-width: 799px) {
  main {
    padding-top: 4.5rem;
  }
}

/* ----- mv ----- */

main.index section.mv {
  background-color: #ed7994;
}

main.index section.mv div.container {
  padding: 0 20px;
}

main.index section.mv div.mv_img {
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 799px) {
  main.index section.mv div.container {
    padding: 0rem;
  }
}

/* ----- info ----- */

main.index section.info {
  background-image: url(../img/bg_yellow.png);
  background-size: min(70rem, 700px);
  background-position: center top;
  background-repeat: repeat;
}

main.index section.info div.container {
  padding-top: 0;
}

main.index section.info div.date {
  width: 100%;
  padding: min(2.1rem, 21px) 0;
  background-color: #bd0427;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.4rem;
  font-size: min(3.0rem, 30px);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}

main.index section.info div.date::before {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #bd0427;
  top: 0;
  z-index: -1;
}

main.index section.info div.date strong {
  font-size: min(4.4rem, 44px);
  font-weight: 500;
  letter-spacing: -.04em;
}

main.index section.info p.info_lead {
  margin-top: min(10rem, 100px);
  display: flex;
  flex-direction: column;
  gap: min(2.0rem, 20px);
}

main.index section.info p.info_lead span {
  font-size: min(2.4rem, 24px);
  font-weight: 700;
  text-align: center;
  -webkit-text-stroke: min(0.8rem, 8px) #fff;
  text-stroke: min(0.8rem, 8px) #fff;
  paint-order: stroke;
}

main.index section.info h2.common_h2 {
  margin-top: min(10rem, 100px);
}

main.index section.info div.info_box {
  margin: min(8rem, 80px) auto 0;
  width: min(80rem, 800px);
}

main.index section.info div.info_box h3.info_ttl {
  width: 100%;
  height: min(7rem, 70px);
  background-color: #e60012;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(3.2rem, 32px);
  font-weight: 700;
  color: #fff;
}

main.index section.info div.info_box:last-of-type h3.info_ttl {
  background-color: #306ccf;
}

main.index section.info div.info_box h3.info_ttl img {
  width: min(30rem, 300px);
}

main.index section.info div.info_box div.info_box_inner {
  background-color: #fff;
  padding: min(7.5rem, 75px) min(3.5rem, 35px);
  display: flex;
  flex-direction: column;
  gap: min(4rem, 40px);
}

main.index section.info div.info_box:last-of-type div.info_box_inner {
  gap: 0;
}

main.index section.info div.info_box div.info_box_inner div.info_wrap {
  padding-bottom: min(4rem, 40px);
  border-bottom: min(0.2rem, 2px) solid #ebebeb;
  color: #3b3b3b;
}

main.index section.info div.info_box div.info_box_inner div.info_wrap:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

main.index section.info div.info_box div.info_box_inner div.info_wrap h4.info_ttl {
  margin: 0 auto;
  width: fit-content;
  padding: min(1rem, 10px) min(3rem, 30px);
  border-radius: 99px;
  background-color: #4e4e4e;
  font-size: min(1.8rem, 18px);
  font-weight: 600;
  color: #fff;
}

main.index section.info div.info_box div.info_box_inner div.info_wrap ul.info_list {
  margin: min(3rem, 30px) auto 0;
  width: min(43rem, 430px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1rem, 10px) min(2rem, 20px);
}

main.index section.info div.info_box div.info_box_inner div.info_wrap ul.info_list li.info_item {
  font-size: min(1.6rem, 16px);
  font-weight: 600;
  list-style: disc;
}

main.index section.info div.info_box div.info_box_inner h4.animaru_ttl {
  font-size: min(3.2rem, 32px);
  font-weight: 600;
  text-align: center;
}

main.index section.info div.info_box div.info_box_inner p.animaru_date {
  margin-top: min(3.4rem, 34px);
  font-size: min(1.8rem, 18px);
  font-weight: 600;
  text-align: center;
}

main.index section.info div.info_box div.info_box_inner a.animaru_btn {
  margin: min(4rem, 40px) auto 0;
  width: min(32rem, 320px);
  height: min(7rem, 70px);
  border-radius: 99px;
  background-color: #1797e8;
  font-size: min(2.4rem, 24px);
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .8s;
}

main.index section.info div.info_box div.info_box_inner a.animaru_btn::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(1.5rem, 15px);
  height: min(2.4rem, 24px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-100%);
}

@media (hover: hover) {
  main.index section.info div.info_box div.info_box_inner a.animaru_btn:hover {
    opacity: 1;
    background-color: #49b8ff;
  }
}

@media (max-width: 799px) {
  main.index section.info {
    background-image: url(../img/bg_yellow.png);
    background-size: 40rem;
  }
  
  main.index section.info div.date {
    padding: 1rem 0;
    gap: 0rem;
    font-size: 1.5rem;
  }
  
  main.index section.info div.date strong {
    font-size: 2rem;
  }
  
  main.index section.info p.info_lead {
    margin-top: 4.5rem;
    gap: 0rem;
  }
  
  main.index section.info p.info_lead span {
    font-size: 1.6rem;
    -webkit-text-stroke: .4rem #fff;
    text-stroke: .4rem #fff;
    line-height: 1.8;
  }
  
  main.index section.info h2.common_h2 {
    margin-top: 3.5rem;
  }
  
  main.index section.info div.info_box {
    margin: 3rem auto 0;
    width: 100%;
  }
  
  main.index section.info div.info_box h3.info_ttl {
    width: 100%;
    height: 5.4rem;
    font-size: 2.4rem;
  }
  
  main.index section.info div.info_box:last-of-type h3.info_ttl {
    background-color: #306ccf;
  }
  
  main.index section.info div.info_box h3.info_ttl img {
    width: 25.5rem;
  }
  
  main.index section.info div.info_box div.info_box_inner {
    padding: 3.2rem;
    gap: 2rem;
  }
  
  main.index section.info div.info_box div.info_box_inner div.info_wrap {
    padding-bottom: 2rem;
    border-bottom: none;
  }
  
  main.index section.info div.info_box div.info_box_inner div.info_wrap h4.info_ttl {
    padding: 0.8rem 1.2rem;
    font-size: 1.6rem;
  }
  
  main.index section.info div.info_box div.info_box_inner div.info_wrap ul.info_list {
    margin: 1.6rem auto 0;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  
  main.index section.info div.info_box div.info_box_inner div.info_wrap ul.info_list li.info_item {
    font-size: 1.4rem;
    list-style: none;
    text-align: center;
  }

  main.index section.info div.info_box div.info_box_inner h4.animaru_ttl {
    font-size: 1.8rem;
  }
  
  main.index section.info div.info_box div.info_box_inner p.animaru_date {
    margin-top: 1.7rem;
    font-size: 1.1rem;
  }
  
  main.index section.info div.info_box div.info_box_inner a.animaru_btn {
    margin: 2rem auto 0;
    width: 23rem;
    height: 5rem;
    font-size: 1.5rem;
  }
  
  main.index section.info div.info_box div.info_box_inner a.animaru_btn::after {
    width: 1rem;
    height: 1.6rem;
    transform: translateX(-200%);
  }
}

/* ----- goods ----- */

main.index section.goods {
  background-image: url(../img/bg_blue.png);
  background-size: min(70rem, 700px);
  background-position: top center;
  background-repeat: repeat;
}

main.index section.goods div.goods_wrap {
  margin: min(5.6rem, 56px) auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.5rem, 25px) min(3.2rem, 32px);
}

main.index section.goods div.goods_wrap div.goods_item {
  background-color: #fff;
  padding: min(1.5rem, 15px) min(1.5rem, 15px) min(2.0rem, 20px);
  position: relative;
  color: #000000;
}

main.index section.goods div.goods_wrap div.goods_item div.goods_img {
  width: 100%;
}

main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl {
  margin-top: min(.8rem, 8px);
  min-height: min(3.5rem, 35px);
  font-size: min(1.6rem, 16px);
  font-weight: 700;
  line-height: 1.1;
}

main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl small {
  font-size: min(1.1rem, 11px);
  font-weight: 700;
}

main.index section.goods div.goods_wrap div.goods_item div.price_wrap {
  margin-top: min(1rem, 10px);
  display: flex;
  justify-content: end;
  align-items: baseline;
  gap: min(0.8rem, 8px);
}

main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price {
  font-size: min(1.1rem, 11px);
  font-weight: 700;
}

main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price strong {
  font-size: min(1.6rem, 16px);
  font-weight: 700;
}

main.index section.goods p.goods_note {
  margin-top: min(2rem, 20px);
  font-size: min(1.4rem, 14px);
  text-align: right;
}

main.index section.goods div.attention_box {
  margin: min(10rem, 100px) auto 0;
  width: min(80rem, 800px);
  background-color: #3984be;
  padding: min(5rem, 50px) min(12.0rem, 120px);
  color: #dadada;
}

main.index section.goods div.attention_box h3.limited_h3 {
  width: min(19rem, 190px);
  height: min(6rem, 60px);
  border-radius: 99px;
  background-color: #1c4260;
  margin: 0 auto;
  font-size: min(2.8rem, 28px);
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

main.index section.goods div.attention_box p.attention_txt {
  margin-top: min(5rem, 50px);
  font-size: min(1.8rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  color: #edf7ff;
}

main.index section.goods div.attention_box p.attention_highlight {
  margin-top: min(3.0rem, 30px);
  width: 100%;
  height: min(16.5rem, 165px);
  background-color: #fff;
  border-radius: min(2rem, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(1.5rem, 15px);
  color: #454647;
}

main.index section.goods div.attention_box p.attention_highlight span {
  font-size: min(2.0rem, 20px);
  font-weight: 600;
}

main.index section.goods div.attention_box p.attention_highlight span:last-of-type {
  text-indent: -0.25em;
}

main.index section.goods div.attention_box p.attention_highlight span small {
  font-size: min(1.4rem, 14px);
  font-weight: 600;
}

main.index section.goods div.attention_box p.attention_highlight span strong {
  font-size: min(3.0rem, 30px);
  font-weight: 600;
}

main.index section.goods div.attention_box p.attention_note {
  margin-top: min(2.8rem, 28px);
  font-size: min(1.2rem, 12px);
  font-weight: 600;
  line-height: 2.0;
  padding-left: 1em;
  text-indent: -1em;
  color: #ddeffd;
}

main.index section.goods div.attention_box p.attention_note + p.attention_note {
  margin-top: 0;
}

@media (max-width: 799px) {
  main.index section.goods {
    background-size: 40rem;
  }

  main.index section.goods div.container {
    padding: 5rem 2rem;
  }
  
  main.index section.goods div.goods_wrap {
    margin: 2.7rem auto 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4.0rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item {
    display: block;
    padding: 1.2rem 1.2rem 2.0rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl {
    margin-top: 1.4rem;
    min-height: auto;
    font-size: 1.6rem;
  }

  main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl small {
    font-size: 1.1rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.price_wrap {
    margin-top: 1.2rem;
    gap: .8rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price {
    font-size: 1.1rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item div.price_wrap span.price strong {
    font-size: 1.6rem;
  }

  main.index section.goods p.goods_note {
    margin-top: 2rem;
    font-size: 1.2rem;
  }

  main.index section.goods div.attention_box {
    margin: 8rem auto 0;
    width: 100%;
    padding: 3.0rem;
  }
  
  main.index section.goods div.attention_box h3.limited_h3 {
    width: 13.5rem;
    height: 4.2rem;
    font-size: 2rem;
  }
  
  main.index section.goods div.attention_box p.attention_txt {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  main.index section.goods div.attention_box p.attention_highlight {
    margin-top: 2rem;
    width: 100%;
    height: 21rem;
    border-radius: 1rem;
    gap: 2rem;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span {
    font-size: 1.4rem;
    line-height: 2.2;
    text-align: center;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span:last-of-type {
    text-indent: -0.25em;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span small {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  main.index section.goods div.attention_box p.attention_highlight span strong {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
  }
  
  main.index section.goods div.attention_box p.attention_note {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.4;
    padding-left: 1em;
    text-indent: -1em;
    color: #ddeffd;
  }
  
  main.index section.goods div.attention_box p.attention_note + p.attention_note {
    margin-top: 1rem;
  }
}

/* ----- x ----- */

main.index section.x {
  background-image: url(../img/bg_green.png);
  background-size: min(70rem, 700px);
  background-position: top center;
  background-repeat: repeat;
}

main.index section.x div.container {
  height: min(50rem, 500px);
}

main.index section.x a.x_btn {
  display: block;
  margin: 0 auto;
  width: min(48rem, 480px);
  height: min(12rem, 120px);
  border-radius: 99px;
  background-color: #42613a;
  font-size: min(3.2rem, 32px);
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;  
  transition: all .8s;
}

@media (hover: hover) {
  main.index section.x a.x_btn:hover {
    background-color: #67b851;
    opacity: 1;
  }
}

main.index section.x a.x_btn::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(1.7rem, 17px);
  height: min(2.8rem, 28px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-200%);
}

main.index section.x p.x_note {
  margin: min(4rem, 40px) auto 0;
  width: min(48rem, 480px);
}

main.index section.x p.x_note span {
  font-size: min(1.2rem, 12px);
  font-weight: 600;
  color: #4f4f4f;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 799px) {
  main.index section.x {
    background-image: url(../img/bg_green.png);
    background-size: 35rem;
  }
  
  main.index section.x div.container {
    height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  main.index section.x a.x_btn {
    width: 30rem;
    height: 7.5rem;
    font-size: 2rem;
  }
  
  main.index section.x a.x_btn::after {
    width: 1rem;
    height: 1.6rem;
    transform: translateX(-200%);
  }
  
  main.index section.x p.x_note {
    margin: 0 auto 0;
    width: 30rem;
  }

  
  main.index section.x p.x_note span {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

/* ----- footer ----- */

footer {
  width: 100%;
  background-color: #538b44;
}

footer div.container {
  height: min(16rem, 160px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

footer p.footer_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.0rem, 10px);
}

footer p.footer_txt span {
  font-size: min(1.2rem, 12px);
  font-weight: 600;
  color: #d6e3b2;
}

@media (max-width: 799px) {
  
  footer div.container {
    height: 15rem;
  }

  footer p.footer_txt {
    display: flex;
    flex-direction: column;
    gap: .8rem;
  }
  
  footer p.footer_txt span {
    font-size: 1.1rem;
  }  
}

/* ----- move_external ----- */

main.move_external section.move_external {
  background-color: #69c8fe;
  background-image: url(../img/bg_pattern_move_external.png);
  background-size: min(5rem, 50px);
  background-position: center;
  background-repeat: repeat;
  height: calc(100vh - min(8rem, 80px) - min(22.077rem, 220.77px));
  min-height: min(68rem, 680px);
}

main.move_external section.move_external div.move_area {
  width: min(80rem, 800px);
  margin: 0 auto;
  padding: min(8rem, 80px) min(8rem, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(10rem, 100px);
  background-color: #fff;
  border-radius: min(2rem, 20px);
}

main.move_external section.move_external div.move_area p.move_txt {
  font-size: min(2.0rem, 20px);
  line-height: 1.6;
}

main.move_external section.move_external div.move_area a.move_link {
  margin: 0 auto;
  width: min(44rem, 440px);
  height: min(7.6rem, 76px);
  background-color: #fff;
  color: #79b0f3;
  border: min(.3rem, 3px) solid #79b0f3;
  border-radius: 99px;
  font-size: min(2.2rem, 22px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .4s;
}

main.move_external section.move_external div.move_area a.move_link::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(1.7rem, 17px);
  height: min(2.5rem, 25px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-150%);
  transition: all .4s;
}

@media (hover: hover) {
  main.move_external section.move_external div.move_area a.move_link:hover {
    background-color: #79b0f3;
    color: #fff;
    opacity: 1;
  }

  main.move_external section.move_external div.move_area a.move_link:hover::after {
    background-image: url(../img/icon_arrow_white02.png);
  }
}

@media (max-width: 799px) {
  
  main.move_external section.move_external {
    background-size: 4rem;
    height: calc(100vh - 5rem - 16rem);
    min-height: 44rem;
  }

  main.move_external section.move_external div.move_area {
    width: 100%;
    padding: 4rem 1.5rem;
    gap: 4rem;
  }
  
  main.move_external section.move_external div.move_area p.move_txt {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  main.move_external section.move_external div.move_area p.move_txt span {
    display: inline;
  }
  
  main.move_external section.move_external div.move_area a.move_link {
    margin: 0;
    width: 100%;
    height: 7rem;
    font-size: 1.6rem;
  }
  
  main.move_external section.move_external div.move_area a.move_link::after {
    width: 1.4rem;
    height: 2.0rem;
    transform: translateX(-150%);
  }
}


