@charset "utf-8";

:root {
  --font-m_plus: "M PLUS Rounded 1c", sans-serif;
  --font-zen_kaku: "Zen Kaku Gothic New", sans-serif;
  --font-oranienbaum: "Oranienbaum", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(5.111rem, 51.11px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-size: calc(100vw / 104);
}

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

body {
  font-family: var(--font-m_plus);
  letter-spacing: -0.04em;
  font-weight: 400;
  color: #000000;
}

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.488rem;
    font-size: calc(100vw / 37.5);
  }

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

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

.no_mt {
  margin-top: 0 !important;
}

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

div.common_h2_wrap {
  padding-bottom: min(0.5rem, 5px);
  border-bottom: min(0.3rem, 3px) solid #c34344;
  position: relative;
  z-index: 1;
}

div.common_h2_wrap::before, 
div.common_h2_wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: calc((100vw - min(100rem, 1000px)) / 2);
  height: min(0.3rem, 3px);
  background-color: #c34344;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 100%);
  z-index: -1;
}

div.common_h2_wrap::after {
  left: auto;
  right: 0;
  transform: translate(100%, 100%);
}

h2.common_h2 {
  font-size: min(3.0rem, 30px);
  font-weight: 700;
  font-family: var(--font-zen_kaku);
  padding-bottom: min(1.0rem, 10px);
  border-bottom: min(0.5rem, 5px) solid #c34344;
  position: relative;
  z-index: 1;
  color: #3e1006;
  text-align: center;
}

h2.common_h2::before,
h2.common_h2::after {
  content: "";
  display: block;
  position: absolute;
  width: calc((100vw - min(100rem, 1000px)) / 2);
  height: min(0.5rem, 5px);
  background-color: #c34344;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 100%);
  z-index: -1;
}

h2.common_h2::after {
  left: auto;
  right: 0;
  transform: translate(100%, 100%);
}


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

  div.common_h2_wrap {
    padding-bottom: .25rem;
    border-bottom: .2rem solid #c34344;
  }
  
  div.common_h2_wrap::before, 
  div.common_h2_wrap::after {
    width: calc(100% + 2rem);
    height: .2rem;
    transform: translate(0, 100%);
  }
  
  h2.common_h2 {
    font-size: 2rem;
    padding-bottom: 0.4rem;
    border-bottom: .4rem solid #c34344;
  }
  
  h2.common_h2::before,
  h2.common_h2::after {
    width: calc(100% + 2rem);
    height: .4rem;
    transform: translate(0, 100%);
  }
}

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

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

header div.container {
  /* max-width: 100%; */
  padding: min(1rem, 10px) 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

header nav.gnav ul.gnav_list li.gnav_item a {
  display: block;
  width: fit-content;
  font-size: min(1.5rem, 15px);
  font-weight: 500;
}

@media (max-width: 799px) {
  header div.container {
    padding: 0.8rem 2rem;
  }
  
  header h1 a {
    width: 2.6rem;
  }
  
  header nav.gnav ul.gnav_list {
    gap: 3rem;
  }
  
  header nav.gnav ul.gnav_list li.gnav_item a {
    font-size: 1.1rem;
  }
}

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

main {
  padding-top: min(5.111rem, 51.11px);
}

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

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

main.index section.mv {
  background-color: #c34344;
  background-image: url(../img/bg_mv.jpg);
  background-size: min(12.6rem, 126px);
  background-position: center top;
  background-repeat: repeat-x;
  position: relative;
  z-index: 1;
}

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;
  }
}

/* ----- introduction ----- */

main.index section.introduction {
  background-image: url(../img/bg_introduction.png);
  background-size: min(120rem, 1200px);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #c34344;
}

main.index section.introduction div.introduction_box {
  width: min(70rem, 700px);
  margin: 0 auto;
  border-radius: min(3rem, 30px);
  background-color: #fff;
  padding: min(0.5rem, 5px);
  overflow: hidden;
}

main.index section.introduction div.introduction_box div.introduction_wrap {
  border-radius: min(3.0rem, 30px);
  border: min(0.3rem, 3px) solid #c39316;
  padding: min(3.5rem, 35px);
  position: relative;
  overflow: hidden;
}

main.index section.introduction div.introduction_box div.introduction_wrap div.star_icon {
  position: absolute;
  width: min(7.5rem, 75px);
  top: 0;
  left: 0;
  transform: translate(max(-.3rem, -3px), max(-.3rem, -3px));
}

main.index section.introduction div.introduction_box div.introduction_wrap div.star_icon:nth-of-type(2) {
  top: 0;
  left: auto;
  right: 0;
  transform: rotate(90deg) translate(max(-.3rem, -3px), max(-.3rem, -3px));
}

main.index section.introduction div.introduction_box div.introduction_wrap div.star_icon:nth-of-type(3) {
  top: auto;
  bottom: 0;
  transform: rotate(-90deg) translate(max(-.3rem, -3px), max(-.3rem, -3px));
}

main.index section.introduction div.introduction_box div.introduction_wrap div.star_icon:nth-of-type(4) {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform: rotate(180deg) translate(max(-.3rem, -3px), max(-.3rem, -3px));
}

main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl {
  margin: 0 auto;
  width: fit-content;
  font-size: min(4.0rem, 40px);
  font-family: var(--font-oranienbaum);
  background: linear-gradient(to bottom, #c99e2d 0%, #c99e2d 35%, #e7d346 50%, #c99e2d 65%, #c99e2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  position: relative;
}

main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl::before,
main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/shape_star_introduction.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(1.8rem, 18px);
  height: min(1.8rem, 18px);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  transform: translateX(-150%);
}

main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl::after {
  left: auto;
  right: 0;
  transform: translateX(150%);
}

main.index section.introduction div.introduction_box div.introduction_wrap div.introduction_txt_wrap {
  margin: min(3rem, 30px) auto 0;
  display: flex;
  flex-direction: column;
  gap: min(2rem, 20px);
}

main.index section.introduction div.introduction_box div.introduction_wrap div.introduction_txt_wrap p.introduction_txt {
  font-size: min(1.5rem, 15px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 799px) {
  main.index section.introduction {
    background-image: url(../img/bg_introduction_sp.png);
    background-size: cover;
  }
  
  main.index section.introduction div.introduction_box {
    width: 100%;
    border-radius: 1.5rem;
    padding: 0.3rem;
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap {
    border-radius: 1.5rem;
    border: 0.3rem solid #c39316;
    padding: 2.5rem 0;
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap div.star_icon {
    width: 3.6rem;
    transform: translate(max(-.3rem, -3px), max(-.3rem, -3px));
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl {
    font-size: 1.7rem;
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl::before,
  main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl::after {
    width: 0.9rem;
    height: 0.9rem;
    transform: translateX(-150%);
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap h2.introduction_ttl::after {
    transform: translateX(150%);
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap div.introduction_txt_wrap {
    margin: 2.0rem auto 0;
    gap: 1.0rem;
  }
  
  main.index section.introduction div.introduction_box div.introduction_wrap div.introduction_txt_wrap p.introduction_txt {
    font-size: 1rem;
    line-height: 1.2;
  }
}

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

main.index section.info {
  background-image: url(../img/bg_pattern01.jpg);
  background-size: min(13.5rem, 135px);
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  z-index: auto;
}

main.index section.info::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_zigzag_red.png);
  background-size: min(40rem, 400px);
  background-position: center top;
  background-repeat: repeat-x;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

main.index section.info div.info_container {
  margin: min(6rem, 60px) auto 0;
  width: min(74rem, 740px);
  display: flex;
  flex-direction: column;
  gap: min(5rem, 50px);
}

main.index section.info div.info_box {
  padding: min(2rem, 20px);
  background-color: #fff;
}

main.index section.info div.info_box div.info_wrap {
  background-color: #fff;
  padding: min(0.4rem, 4px);
  border: min(.5rem, 5px) solid;
  border-image: linear-gradient(to bottom, #cda651 0%, #cda651 30%, #fefea1 50%, #cda651 70%, #cda651 100%);
  border-image-slice: 1;
}

main.index section.info div.info_box div.info_wrap div.info_inner {
  padding: min(3.5rem, 35px) 0;
  border: min(0.2rem, 2px) solid;
  border-image: linear-gradient(to bottom, #cda651 0%, #cda651 30%, #fefea1 50%, #cda651 70%, #cda651 100%);
  border-image-slice: 1;
}

main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl {
  margin: min(5rem, 50px) auto 0;
  width: fit-content;
  font-size: min(1.8rem, 18px);
  font-weight: 700;
  color: #d7b240;
  position: relative;
  text-align: center;
}

main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl::before,
main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/shape_star_iinfo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(1.8rem, 18px);
  height: min(1.8rem, 18px);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  transform: translateX(-150%);
}

main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl::after {
  left: auto;
  right: 0;
  transform: translateX(150%);
}

main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt {
  margin-top: min(2.4rem, 24px);
  font-size: min(2.4rem, 24px);
  font-weight: 700;
  text-align: center;
  color: #2f0a0a;
}

main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt small {
  font-size: min(1.4rem, 14px);
}

main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt div.info_sub {
  font-size: min(1.2rem, 12px);
  font-weight: 600;
  text-align: center;
  margin-bottom: min(1rem, 10px);
}

main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt.info_date {
  font-size: min(1.4rem, 14px);
  font-weight: 700;
}

main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt.info_date strong {
  font-size: min(2.4rem, 24px);
  font-weight: 700;
}

main.index section.info div.info_box div.info_wrap div.info_inner a.info_btn {
  margin: min(5rem, 50px) auto 0;
  width: min(31rem, 310px);
  height: min(5.4rem, 54px);
  font-size: min(2.0rem, 20px);
  font-weight: 700;
  color: #fff;
  background-color: #c59927;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .8s;
}

@media (hover: hover) {
  main.index section.info div.info_box div.info_wrap div.info_inner a.info_btn:hover {
    opacity: 1;
    background-color: #f3bf36;
  }
}


main.index section.info div.info_box div.info_wrap div.info_inner a.info_btn::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(1rem, 10px);
  height: min(1.7rem, 17px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-200%);
}

@media (max-width: 799px) {
  main.index section.info {
    background-image: url(../img/bg_pattern01.jpg);
    background-size: 6.75rem;
  }
  
  main.index section.info::before {
    background-size: 20rem;
  }

  main.index section.info div.container {
    padding-top: 6rem;
  }
  
  main.index section.info div.info_container {
    margin: 3.5rem auto 0;
    width: 100%;
    gap: 2.5rem;
  }
  
  main.index section.info div.info_box {
    padding: .8rem;
  }
  
  main.index section.info div.info_box div.info_wrap {
    padding: 0.2rem;
    border: .3rem solid;
    border-image: linear-gradient(to bottom, #cda651 0%, #cda651 30%, #fefea1 50%, #cda651 70%, #cda651 100%);
    border-image-slice: 1;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner {
    padding: 2.5rem 0;
    border: .1rem solid;
    border-image: linear-gradient(to bottom, #cda651 0%, #cda651 30%, #fefea1 50%, #cda651 70%, #cda651 100%);
    border-image-slice: 1;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl {
    margin: 3rem auto 0;
    font-size: 1.1rem;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl::before,
  main.index section.info div.info_box div.info_wrap div.info_inner h3.info_ttl::after {
    width: .9rem;
    height: .9rem;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt small {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.8rem;
    text-align: center;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt div.info_sub {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt.info_date {
    font-size: 1rem;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner div.info_txt.info_date strong {
    font-size: 1.6rem;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner a.info_btn {
    margin: 2.5rem auto 0;
    width: 23rem;
    height: 4rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  main.index section.info div.info_box div.info_wrap div.info_inner a.info_btn::after {
    width: 0.8rem;
    height: 1.3rem;
    transform: translateX(-200%);
  }
}

/* ----- attention ----- */

main.index section.attention {
  background-color: #c34344;
}

main.index section.attention h2.attention_ttl {
  margin: 0 auto;
  width: min(16.5rem, 165px);
}

main.index section.attention ul.attention_list {
  margin: min(5rem, 50px) auto 0;
  width: min(70rem, 700px);
  display: flex;
  flex-direction: column;
  gap: min(1rem, 10px);
}

main.index section.attention ul.attention_list li.attention_item {
  font-size: min(1.4rem, 14px);
  font-weight: 600;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

@media (max-width: 799px) {
  main.index section.attention h2.attention_ttl {
    width: 12rem;
  }
  
  main.index section.attention ul.attention_list {
    margin: 2.5rem auto 0;
    width: 32rem;
    gap: 1rem;
  }
  
  main.index section.attention ul.attention_list li.attention_item {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }
}

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

main.index section.goods {
  background-image: url(../img/bg_pattern01.jpg);
  background-size: min(13.5rem, 135px);
  background-position: top center;
  background-repeat: repeat;
  position: relative;
  z-index: auto;
}

main.index section.goods::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_zigzag_red.png);
  background-size: min(40rem, 400px);
  background-position: center top;
  background-repeat: repeat-x;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

main.index section.goods div.container {
  padding-top: min(12rem, 120px);
}

main.index section.goods div.goods_wrap {
  margin: min(8.0rem, 80px) auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3.0rem, 30px) min(2.0rem, 20px);
}

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

main.index section.goods div.goods_wrap div.goods_item.hapidanbui {
  background-color: #86d7dc;
}

main.index section.goods div.goods_wrap div.goods_item.hapidanbui div.icon {
  position: absolute;
  width: min(13.5rem, 135px);
  left: 0;
  bottom: 0;
  transform: translate(min(1rem, 10px), -430%);
}

main.index section.goods div.goods_wrap div.goods_item.hapidanbui div.icon.yellow {
  width: fit-content;
  padding: min(0.4rem, 4px) min(1.2rem, 12px);
  background-color: #f3e968;
  border-radius: 99px;
  font-size: min(1.6rem, 16px);
  font-weight: 700;
  color: #000000;
  transform: translate(min(15.5rem, 155px), -470%);
}

main.index section.goods div.goods_wrap div.goods_item div.goods_img {
  width: 100%;
  background-color: #fff;
}

main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl {
  margin-top: min(2.3rem, 23px);
  min-height: min(4.0rem, 40px);
  font-size: min(1.8rem, 18px);
  font-weight: 700;
  line-height: 1.2;
}

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

main.index section.goods div.goods_wrap div.goods_item div.price_wrap {
  margin-top: min(2.0rem, 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: min(1.0rem, 10px);
}

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

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

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

main.index section.goods p.goods_note + p.goods_note {
  margin-top: min(1rem, 10px);
}

@media (max-width: 799px) {
  main.index section.goods {
    background-image: url(../img/bg_pattern01.jpg);
    background-size: 6.75rem;
  }
  
  main.index section.goods::before {
    background-size: 20rem;
  }
  
  main.index section.goods div.container {
    padding-top: 6rem;
  }
  
  main.index section.goods div.goods_wrap {
    margin: 4rem auto 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.5rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item {
    padding: 1rem;
    padding-bottom: 1.5rem;
  }
  
  main.index section.goods div.goods_wrap div.goods_item.hapidanbui div.icon {
    width: 13.5rem;
    transform: translate(1rem, -370%);
  }

  main.index section.goods div.goods_wrap div.goods_item.hapidanbui div.icon.yellow {
    padding: 0.65rem 1.2rem;
    font-size: 1.3rem;
    transform: translate(15.5rem, -373%);
  }
  
  main.index section.goods div.goods_wrap div.goods_item h3.goods_ttl {
    margin-top: 2.3rem;
    min-height: auto;
    font-size: 1.5rem;
  }
  
  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: 2rem;
    gap: 0.5rem;
  }
  
  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: 2.2rem;
  }
  
  main.index section.goods p.goods_note {
    margin-top: 2rem;
    font-size: 1.2rem;
  }

  main.index section.goods p.goods_note + p.goods_note {
    margin-top: .5rem;
  }
}

/* ----- attention_box ----- */

main.index section.attention_box {
  background-color: #e9c25c;
}

main.index section.attention_box h2.limited_ttl {
  margin: 0 auto;
  width: min(28rem, 280px);
}

main.index section.attention_box div.attention_box {
  margin: min(4rem, 40px) auto 0;
  width: min(70rem, 700px);
}

main.index section.attention_box div.attention_box p.attention_txt {
  font-size: min(1.6rem, 16px);
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
}

main.index section.attention_box div.attention_box p.attention_highlight {
  margin-top: min(2.0rem, 20px);
  width: 100%;
  height: min(8.5rem, 85px);
  background-color: #fff;
  border-radius: min(2rem, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(.5rem, 5px);
  color: #000000;
}

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

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

main.index section.attention_box div.attention_box p.attention_note {
  margin-top: min(3.2rem, 32px);
  font-size: min(1.2rem, 12px);
  font-weight: 500;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
  color: #000000;
}

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

@media (max-width: 799px) {

  main.index section.attention_box div.container {
    padding-bottom: 6rem;
  }

  main.index section.attention_box h2.limited_ttl {
    width: 22rem;
  }
  
  main.index section.attention_box div.attention_box {
    margin: 3rem auto 0;
    width: 100%;
  }
  
  main.index section.attention_box div.attention_box p.attention_txt {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  main.index section.attention_box div.attention_box p.attention_highlight {
    margin-top: 2rem;
    height: 7.0rem;
    border-radius: 1rem;
    gap: .5rem;
  }
  
  main.index section.attention_box div.attention_box p.attention_highlight span {
    font-size: 1.4rem;
  }
  
  main.index section.attention_box div.attention_box p.attention_highlight span:last-of-type {
    text-indent: 0.05em;
  }
  
  main.index section.attention_box div.attention_box p.attention_note {
    margin-top: 2.4rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    padding-left: 1em;
    text-indent: -1em;
  }
  
  main.index section.attention_box div.attention_box p.attention_note + p.attention_note {
    margin-top: .5rem;
  }
}

/* ----- special ----- */

main.index section.special {
  background-image: url(../img/bg_pattern01.jpg);
  background-size: min(13.5rem, 135px);
  background-position: bottom center;
  background-repeat: repeat;
		position: relative;
}

main.index section.special::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_zigzag_yellow.png);
  background-size: min(40rem, 400px);
  background-position: center top;
  background-repeat: repeat-x;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

main.index section.special p.special_lead {
  margin-top: min(8rem, 80px);
  font-size: min(1.8rem, 18px);
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
}

main.index section.special div.special_box {
  margin-top: min(4rem, 40px);
  background-color: #e9c25c;
  padding: min(5rem, 50px) min(3rem, 30px);
}

main.index section.special div.special_box div.special_wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: min(1.6rem, 16px);
}

main.index section.special div.special_box p.special_note {
  margin-top: min(2.5rem, 25px);
  font-size: min(1.2rem, 12px);
  font-weight: 600;
  color: #000000;
  text-align: left;
  line-height: 1.4;
}

@media (max-width: 799px) {
  main.index section.special {
    background-image: url(../img/bg_pattern01.jpg);
    background-size: 6.75rem;
  }

  main.index section.special::before {
    background-size: 20rem;
  }

  main.index section.special div.container {
    padding-top: 6rem;
  }

  main.index section.special p.special_lead {
    margin-top: 3rem;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  
  main.index section.special div.special_box {
    margin-top: 2rem;
    padding: 2rem 3rem;
  }
  
  main.index section.special div.special_box div.special_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.0rem;
  }
  
  main.index section.special div.special_box p.special_note {
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    line-height: 1;
  }

  main.index section.special div.special_box p.special_note span {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.08em;
  }
}

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

main.index section.x {
  background-image: url(../img/bg_pattern02.jpg);
  background-size: min(13.5rem, 135px);
  background-position: top center;
  background-repeat: repeat;
}

main.index section.x::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_zigzag_red02.png);
  background-size: min(40rem, 400px);
  background-position: center bottom;
  background-repeat: repeat-x;
  width: 100%;
  height: min(32rem, 320px);
  z-index: 1;
  pointer-events: none;
}

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

main.index section.x a.x_btn {
  margin: 0 auto;
  width: min(50rem, 500px);
  height: min(7rem, 70px);
  border-radius: 99px;
  background-color: #c34344;
  font-size: min(2.4rem, 24px);
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(4rem, 40px);
  transition: all .8s;
  letter-spacing: 0em;
}

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

main.index section.x a.x_btn::after {
  content: "";
  background-image: url(../img/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(1.5rem, 15px);
  height: min(2.5rem, 25px);
}

main.index section.x p.x_note {
  margin: min(2rem, 20px) auto 0;
  width: min(42rem, 420px);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

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

@media (max-width: 799px) {
  main.index section.x {
    background-size: 6.75rem;
  }
  
  main.index section.x::before {
    background-size: 20rem;
    height: 21rem;
  }
  
  main.index section.x div.container {
    padding: 6rem 2rem;
    height: 21rem;
    /* height: min(32rem, 320px); */
  }
  
  main.index section.x a.x_btn {
    margin: 0 auto;
    width: 32rem;
    height: 6rem;
    font-size: 1.5rem;
    gap: 2.5rem;
  }
  
  main.index section.x a.x_btn::after {
    width: 0.9rem;
    height: 1.5rem;
  }
  
  main.index section.x p.x_note {
    margin: 1.5rem auto 0;
    width: 28rem;
    gap: 0.3rem;
  }
  
  main.index section.x p.x_note span {
    font-size: 0.8rem;
  }
}

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

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

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

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

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

@media (max-width: 799px) {
  footer div.container {
    height: 12rem;
    padding: 0 2rem;
  }
  
  footer p.footer_txt {
    gap: 0rem;
  }
  
  footer p.footer_txt span {
    font-size: 0.8rem;
    line-height: 2;
    text-align: center;
  }
}

/* ----- 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%);
  }
}


