@charset "UTF-8";
/* ==============================
 Foundation
============================== */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 1rem 0;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 4.103vw;
  }
}

* {
  min-height: 0vw;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 2;
  font-style: normal;
}
body.g-menu_open {
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  width: 100%;
}

/* ==============================
Component
============================== */
.hide {
  display: none;
}

.block {
  display: block;
}

@media screen and (max-width: 1270px) {
  .l_hide {
    display: none !important;
  }
  .l_block {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .m_hide {
    display: none !important;
  }
  .m_block {
    display: block !important;
  }
}
@media screen and (max-width: 480px) {
  .s_hide {
    display: none !important;
  }
  .s_block {
    display: block !important;
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes left-in {
  0% {
    visibility: visible;
    transform: translateX(0);
  }
  25% {
    visibility: hidden;
    transform: translateX(102%);
  }
  50% {
    visibility: hidden;
    transform: translateX(-102%);
  }
  100% {
    visibility: visible;
    transform: translateX(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ==============================
Lib
============================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* ==============================
Layout
============================== */
.inner {
  padding-left: 8.333vw;
}
@media screen and (max-width: 1270px) {
  .inner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    padding: 0 16px;
  }
}

.inner2 {
  padding-left: 19.792vw;
  padding-right: 8.333vw;
}
@media screen and (max-width: 1270px) {
  .inner2 {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .inner2 {
    padding: 0 16px;
  }
}

.inner3 {
  padding-right: 19.792vw;
  padding-left: 8.333vw;
}
@media screen and (max-width: 1270px) {
  .inner3 {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .inner3 {
    padding: 0 16px;
  }
}

.inner4 {
  width: 83.333vw;
  margin: 0 auto;
}
@media screen and (max-width: 1270px) {
  .inner4 {
    width: auto;
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .inner4 {
    padding: 0 16px;
  }
}

.header {
  padding: 30px 30px 0 30px;
  display: flex;
  width: 100%;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  .header {
    padding: 30px 20px 0 16px;
  }
}
.header h1 {
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 1270px) {
  .header h1 {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .header h1 {
    width: 120px;
  }
}
.header .menu {
  display: flex;
  align-items: center;
  justify-content: end;
  cursor: pointer;
  position: relative;
  z-index: 999;
  width: 120px;
}
.header .menu:hover .menu-toggle {
  background-color: #FFAA7E;
}
.header .menu:hover .menu-toggle span {
  background-color: #fff;
}
.header .menu-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: solid 1px #FFAA7E;
  border-radius: 30px;
  transition: all 0.3s;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .header .menu-toggle {
    width: 12.051vw;
    height: 12.051vw;
    left: auto;
  }
}
.header .menu-toggle span {
  background-color: #FFAA7E;
  width: 15px;
  height: 2px;
  position: absolute;
  transition: all 0.3s ease 0s;
  top: 50%;
  left: calc(50% - 2px);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 480px) {
  .header .menu-toggle span {
    height: 1px;
  }
}
.header .menu-toggle span:nth-of-type(1) {
  top: calc(50% - 7px);
  margin-left: 3px;
}
@media screen and (max-width: 480px) {
  .header .menu-toggle span:nth-of-type(1) {
    top: calc(50% - 5px);
  }
}
.header .menu-toggle span:nth-of-type(3) {
  top: calc(50% + 7px);
  margin-left: 3px;
}
@media screen and (max-width: 480px) {
  .header .menu-toggle span:nth-of-type(3) {
    top: calc(50% + 5px);
  }
}
.header .menu-txt {
  color: #FFAA7E;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}
.header .menu-txt::before {
  content: "MENU";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  font-size: 14px;
}
.header .menu-txt::after {
  font-size: 14px;
  content: "CLOSE";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  opacity: 0;
}
@media screen and (max-width: 480px) {
  .header .menu-txt {
    display: none;
  }
}
.header .menu.btn-active .menu-toggle {
  width: 100%;
  background-color: #FFAA7E;
}
@media screen and (max-width: 480px) {
  .header .menu.btn-active .menu-toggle {
    width: 12.051vw;
  }
}
.header .menu.btn-active .menu-toggle span {
  background-color: #fff;
  left: 34px;
}
@media screen and (max-width: 480px) {
  .header .menu.btn-active .menu-toggle span {
    left: 50%;
  }
}
.header .menu.btn-active .menu-toggle span:nth-of-type(1) {
  margin-left: 0;
  top: 50%;
}
.header .menu.btn-active .menu-toggle span:nth-of-type(3) {
  margin-left: 0;
  top: 50%;
}
.header .menu.btn-active .menu-txt {
  color: #fff;
  padding-right: 10px;
}
.header .menu.btn-active .menu-txt::before {
  opacity: 0;
}
.header .menu.btn-active .menu-txt::after {
  opacity: 1;
}
.header .g-menu {
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-property: all;
  transition-delay: 0s;
  background-color: #F8F8ED;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.header .g-menu.active {
  opacity: 1;
  visibility: visible;
}
.header .g-menu_img {
  background: url(./../../assets/img/g-navi.png) no-repeat center;
  width: 60%;
  height: 100%;
  background-size: cover;
}
@media screen and (max-width: 1270px) {
  .header .g-menu_img {
    width: 30%;
  }
}
.header .g-menu_inner {
  width: 40%;
  padding: 100px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1270px) {
  .header .g-menu_inner {
    width: 70%;
    padding: 0 6.098vw 0;
  }
}
@media screen and (max-width: 480px) {
  .header .g-menu_inner {
    overflow-y: scroll;
    padding-top: 50px;
  }
}
.header .g-menu_list {
  display: flex;
  flex-wrap: wrap;
}
.header .g-menu_list__item {
  width: calc(50% - 32px);
  margin-right: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .header .g-menu_list__item {
    width: auto;
    margin-bottom: 5.128vw;
  }
}
.header .g-menu_list__item a {
  transition: all 0.4s;
}
.header .g-menu_list__item a:hover {
  opacity: 0.7;
}
.header .g-menu_list__item .en {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFAA7E;
  text-transform: uppercase;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .header .g-menu_list__item .en {
    font-size: 5.128vw;
  }
}
.header .g-menu_list__item .ja {
  color: #FFAA7E;
  font-size: 12px;
  margin-top: 8px;
}
@media screen and (max-width: 480px) {
  .header .g-menu_list__item .ja {
    margin-top: 0;
    font-size: 3.077vw;
  }
}
.header .g-menu_contact {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .header .g-menu_contact {
    font-size: 4.103vw;
  }
}
.header .g-menu_contact__btn {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
  font-size: 1rem;
  border-radius: 50px;
}
.header .g-menu_contact__btn:hover::before {
  opacity: 0;
}
.header .g-menu_contact__btn::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.header .g-menu_contact__btn::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.header .g-menu_contact__btn span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  .header .g-menu_contact__btn {
    font-size: 4.103vw;
  }
}
@media screen and (max-width: 320px) {
  .header .g-menu_contact__btn {
    display: none;
  }
}
.header .g-menu_info {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .header .g-menu_info {
    text-align: left;
  }
}
.header .g-menu_info .ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #FFAA7E;
}
@media screen and (max-width: 480px) {
  .header .g-menu_info .ttl {
    font-size: 16px;
  }
}
.header .g-menu_info .address {
  line-height: 1.5;
  font-size: 14px;
}

.flow-btn {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
  font-size: 1.5rem;
  border-radius: 50px;
  position: fixed;
  bottom: 45px;
  right: 30px;
  z-index: 10;
}
.flow-btn:hover::before {
  opacity: 0;
}
.flow-btn::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.flow-btn::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.flow-btn span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  .flow-btn {
    display: none;
  }
}

.footer {
  margin-top: 250px;
  padding-bottom: 120px;
  background-color: #F8F8ED;
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
  overflow-x: clip;
}
@media screen and (max-width: 1270px) {
  .footer {
    margin-top: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    margin-top: 50px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    padding-bottom: 50px;
  }
}
.footer .access-ttl {
  padding-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  .footer .access-ttl {
    padding-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .access-ttl {
    padding-top: 30px;
  }
}
.footer .access-ttl_en {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #5FA66A;
}
@media screen and (max-width: 480px) {
  .footer .access-ttl_en {
    font-size: 32px;
    line-height: 1.5;
  }
}
.footer .access-ttl_ja {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #5FA66A;
}
.footer .access-map {
  position: relative;
  margin-top: 2rem;
}
.footer .access-map iframe {
  position: relative;
  z-index: 2;
  height: 650px;
}
@media screen and (max-width: 1270px) {
  .footer .access-map iframe {
    height: 450px;
  }
}
@media screen and (max-width: 480px) {
  .footer .access-map iframe {
    height: 300px;
  }
}
.footer .access-map::after {
  content: "";
  position: absolute;
  right: -232px;
  top: -442px;
  width: 426px;
  height: 569px;
  background: url(./../../assets/img/footer_item01.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 1270px) {
  .footer .access-map::after {
    width: 32.805vw;
    height: 45vw;
    right: -19.512vw;
    top: -36.585vw;
  }
}
.footer .access-link {
  text-align: right;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #000;
}
.footer .shopinfo {
  margin-top: 100px;
}
@media screen and (max-width: 1270px) {
  .footer .shopinfo {
    margin-top: 50px;
  }
}
.footer .shopinfo-content {
  display: flex;
}
@media screen and (max-width: 480px) {
  .footer .shopinfo-content {
    flex-direction: column;
  }
}
.footer .shopinfo-content .slick {
  width: 27.604vw;
}
@media screen and (max-width: 1270px) {
  .footer .shopinfo-content .slick {
    width: 350px;
  }
}
@media screen and (max-width: 480px) {
  .footer .shopinfo-content .slick {
    width: auto;
  }
}
.footer .shopinfo-content .slick-list {
  position: relative;
  z-index: 2;
}
.footer .shopinfo-content .slick-dots {
  bottom: -35px;
}
.footer .shopinfo-content .slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: #FFAA7E;
  border-radius: 50%;
}
.footer .shopinfo-content .slick-dots li button::before {
  content: none;
}
.footer .shopinfo-content .slick-active button {
  width: 15px !important;
  height: 15px !important;
  background-color: #5FA66A !important;
}
.footer .shopinfo-content .slick::after {
  content: "";
  width: 266px;
  height: 354px;
  transform: rotate(-30deg);
  position: absolute;
  bottom: -40px;
  left: -160px;
  background: url(./../../assets/img/top/point_item02.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
.footer .shopinfo-content_txt {
  margin-left: 5.208vw;
}
@media screen and (max-width: 1270px) {
  .footer .shopinfo-content_txt {
    margin-left: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer .shopinfo-content_txt {
    margin-left: 0;
    margin-top: 30px;
  }
}
.footer .shopinfo-content_txt .ttl {
  width: 300px;
}
@media screen and (max-width: 480px) {
  .footer .shopinfo-content_txt .ttl {
    margin: 0 auto;
  }
}
.footer .shopinfo-content_txt .information {
  margin-top: 2rem;
}
.footer .shopinfo-content_txt .information-item {
  display: flex;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) {
  .footer .shopinfo-content_txt .information-item {
    flex-direction: column;
  }
}
.footer .shopinfo-content_txt .information-item .heading {
  text-transform: uppercase;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #5FA66A;
  width: 100px;
}
.footer-nav {
  margin-top: 200px;
}
@media screen and (max-width: 1270px) {
  .footer-nav {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav {
    margin-top: 0;
  }
}
.footer-nav_content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .footer-nav_content {
    flex-direction: column-reverse;
  }
}
.footer-nav_left .nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .footer-nav_left .nav {
    flex-direction: column-reverse;
  }
}
.footer-nav_left .nav-ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #000;
  width: 350px;
}
@media screen and (max-width: 1270px) {
  .footer-nav_left .nav-ttl {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav_left .nav-ttl {
    line-height: 1.5;
    width: auto;
    font-size: 24px;
  }
}
.footer-nav_left .nav-list {
  width: calc(100% - 25vw);
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1270px) {
  .footer-nav_left .nav-list {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav_left .nav-list {
    width: auto;
    margin-bottom: 30px;
  }
}
.footer-nav_left .nav-list_item {
  width: calc(50% - 0.833vw);
  margin-right: 1rem;
}
@media screen and (max-width: 1270px) {
  .footer-nav_left .nav-list_item {
    width: 50%;
    margin-right: 0;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  .footer-nav_left .nav-list_item:nth-of-type(2n + 1) {
    padding-left: 0;
  }
}
.footer-nav_left .nav-list_item:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1270px) {
  .footer-nav_right {
    display: none;
  }
}
.footer-nav_right .ttl {
  width: 300px;
}
.footer-nav_right .information {
  margin-top: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .footer-nav_right .information {
    margin-top: 0;
    margin-left: 80px;
  }
}
.footer-nav_right .information-txt {
  font-size: 14px;
}
.footer-nav_right .information-map {
  display: flex;
}
.footer-nav_right .information-map p {
  font-size: 14px;
  color: #FFAA7E;
  position: relative;
}
@media screen and (max-width: 1270px) {
  .footer-nav_right .information-map p {
    margin-left: 32px;
  }
}
.footer-nav_right .information-map p::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(./../../assets/img/footer_mapicon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

.kv {
  display: flex;
  height: 100vh;
}
@media screen and (max-width: 1270px) {
  .kv {
    height: 59.952vw;
  }
}
@media screen and (max-width: 480px) {
  .kv {
    flex-direction: column-reverse;
    height: auto;
  }
}
.kv-left {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 480px) {
  .kv-left {
    width: 100%;
    padding: 30px 0 50px;
  }
}
.kv-left_img1 {
  position: absolute;
  bottom: 3.125vw;
  right: -6.25vw;
  width: 21.875vw;
}
@media screen and (max-width: 480px) {
  .kv-left_img1 {
    position: relative;
    bottom: 0;
    right: auto;
    left: 7.692vw;
    width: 46.154vw;
    z-index: 2;
  }
}
.kv-left_img2 {
  position: absolute;
  top: calc(7.813vw + 20px);
  right: 7.813vw;
  width: 33.333vw;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .kv-left_img2 {
    top: 39.941vw;
    right: 0;
    width: 81.538vw;
    z-index: 1;
  }
}
.kv-txt {
  position: absolute;
  bottom: 5.208vw;
  left: 3.646vw;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .kv-txt {
    position: static;
    width: auto;
    margin: 0 auto 150px;
    text-align: center;
  }
}
.kv-txt_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #000;
}
@media screen and (max-width: 1270px) {
  .kv-txt_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .kv-txt_ttl {
    font-size: 20px;
  }
}
.kv-txt_en {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: 0;
  text-align: right;
}
@media screen and (max-width: 1270px) {
  .kv-txt_en {
    text-align: left;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .kv-txt_en {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .kv-txt_en {
    text-align: center;
  }
}
.kv-right {
  width: 50%;
  background-image: url(./../../assets/img/top/kv.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 480px) {
  .kv-right {
    width: 100%;
    height: 102.564vw;
  }
}

.page {
  padding-top: 245px;
  padding-left: 8.333vw;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 1270px) {
  .page {
    padding-left: 30px;
  }
}
@media screen and (max-width: 480px) {
  .page {
    padding: 110px 0 80px;
    flex-direction: column-reverse;
  }
}
.page-left .aioseo-breadcrumbs {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .page-left .aioseo-breadcrumbs {
    margin-bottom: 0;
    position: absolute;
    top: 110px;
    left: 16px;
    font-size: 12px;
    width: 70%;
  }
}
.page-left .aioseo-breadcrumb {
  text-transform: uppercase;
  color: #FFAA7E;
}
.page-left .aioseo-breadcrumb a {
  color: #000;
  transition: all 0.4s;
}
.page-left .aioseo-breadcrumb a:hover {
  color: #FFAA7E;
}
.page-left_kv {
  background-image: url(../../assets/img/top/kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 53.333vw;
  height: 37.5vw;
  border-radius: 5px;
}
@media screen and (max-width: 1270px) {
  .page-left_kv {
    width: 61.463vw;
    height: 42.683vw;
  }
}
@media screen and (max-width: 480px) {
  .page-left_kv {
    width: 100vw;
    height: 69.231vw;
  }
}
.page-left_kv.shopinfo {
  background-image: url(../../assets/img/kv/shopinfo.png);
}
.page-left_kv.contact {
  background-image: url(../../assets/img/kv/contact.png);
}
.page-left_kv.taxonomy {
  background-image: url(../../assets/img/kv/taxonomy.png);
}
.page-right {
  display: flex;
}
@media screen and (max-width: 480px) {
  .page-right {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    padding-right: 32px;
    margin-bottom: 100px;
  }
}
.page-right h2 {
  writing-mode: vertical-lr;
  background-color: #FFAA7E;
  color: #fff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 32px;
  font-weight: 700;
  padding: 1em 0;
  border-radius: 5px;
  letter-spacing: 16px;
  position: relative;
  z-index: 2;
  margin-right: 14.375vw;
}
@media screen and (max-width: 480px) {
  .page-right h2 {
    margin-right: 0;
    font-size: 24px;
    word-break: keep-all;
  }
}
.page-right h2::before {
  content: "";
  position: absolute;
  left: -1.406vw;
  bottom: -9.896vw;
  width: 17.135vw;
  height: 21.146vw;
  background: url(../../assets/img/top/point_item03.png) no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .page-right h2::before {
    display: none;
  }
}
.page-right .en {
  color: #FFAA7E;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .page-right .en {
    padding-top: 60px;
    padding-left: 32px;
  }
}
.page-spitem {
  position: absolute;
  top: 210px;
  left: -50px;
  z-index: -1;
  width: 150px;
}

.wp-block-woocommerce-cart.alignwide {
  margin-top: 5rem !important;
  padding-right: 19.792vw;
  padding-left: 8.333vw;
}
@media screen and (max-width: 1270px) {
  .wp-block-woocommerce-cart.alignwide {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .wp-block-woocommerce-cart.alignwide {
    margin-top: 0 !important;
    flex-direction: column;
    padding: 0 16px;
  }
}
.wp-block-woocommerce-cart .wc-block-grid__products {
  margin-top: 2rem;
}

tbody tr {
  display: table-row !important;
  width: 100% !important;
}
tbody tr td {
  width: 33%;
}

.wc-block-components-product-name {
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  .wc-block-components-sidebar {
    width: 100% !important;
    margin-top: 2rem;
  }
}

.wc-block-cart .wc-block-cart__submit-container {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
}
.wc-block-cart .wc-block-cart__submit-container:hover::before {
  opacity: 0;
}
.wc-block-cart .wc-block-cart__submit-container::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.wc-block-cart .wc-block-cart__submit-container::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.wc-block-cart .wc-block-cart__submit-container span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  .wc-block-cart .wc-block-cart__submit-container:hover::before {
    opacity: 100;
  }
}
@media screen and (max-width: 480px) {
  .wc-block-cart .wc-block-cart__submit-container::before {
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .wc-block-cart .wc-block-cart__submit-container::after {
    border-radius: 0;
  }
}

.wc-block-cart__submit {
  display: flex;
  justify-content: center;
}

.wc-block-components-button__text {
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 480px) {
  .wc-block-cart .wc-block-cart__submit-container--sticky {
    padding: 8px !important;
    z-index: 10 !important;
  }
}

.wp-block-woocommerce-checkout {
  margin-top: 5rem !important;
  padding-right: 19.792vw;
  padding-left: 8.333vw;
}
@media screen and (max-width: 1270px) {
  .wp-block-woocommerce-checkout {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .wp-block-woocommerce-checkout {
    margin-top: 0 !important;
    flex-direction: column;
    padding: 0 16px;
  }
}
.wp-block-woocommerce-checkout a {
  text-decoration: underline;
}

.wc-block-components-button {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
}
.wc-block-components-button:hover::before {
  opacity: 0;
}
.wc-block-components-button::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.wc-block-components-button::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.wc-block-components-button span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  .wc-block-components-button:hover::before {
    opacity: 100;
  }
}
@media screen and (max-width: 480px) {
  .wc-block-components-button::before {
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .wc-block-components-button::after {
    border-radius: 0;
  }
}

.woocommerce-order {
  margin-top: 5rem !important;
  padding-right: 19.792vw;
  padding-left: 8.333vw;
}
@media screen and (max-width: 1270px) {
  .woocommerce-order {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .woocommerce-order {
    margin-top: 0 !important;
    flex-direction: column;
    padding: 0 16px;
  }
}

.woocommerce {
  margin-top: 5rem !important;
  padding-right: 19.792vw;
  padding-left: 8.333vw;
  padding-bottom: 470px;
}
@media screen and (max-width: 1270px) {
  .woocommerce {
    padding: 0 32px 500px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .woocommerce {
    margin-top: 0 !important;
    flex-direction: column;
    padding: 0 16px 50px;
  }
}
.woocommerce-MyAccount-navigation {
  width: 250px;
  float: left;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
  }
}
.woocommerce-MyAccount-navigation ul li {
  border: 1px solid #eee;
  border-bottom-width: 0;
}
.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: #FFAA7E;
  color: #fff;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  cursor: default;
}
.woocommerce-MyAccount-navigation ul li.is-active a:hover {
  background-color: #FFAA7E;
  color: #fff;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #5FA66A;
}
.woocommerce-MyAccount-content {
  float: right;
  width: 68%;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
    float: none;
  }
}
@media screen and (max-width: 480px) {
  .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0;
  }
}
.woocommerce h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #5FA66A;
  margin-bottom: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .woocommerce h2 {
    margin-top: 0;
  }
}
.woocommerce .woocommerce-form-login {
  max-width: 1024px;
}

/* ==============================
Pages
============================== */
.about {
  background-color: #F8F8ED;
  margin-top: 80px;
  padding: 80px 0;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 1270px) {
  .about {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .about {
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 480px) {
  .about-ttl {
    text-align: center;
  }
}
.about-ttl_en {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #FFAA7E;
  color: #5FA66A;
}
@media screen and (max-width: 480px) {
  .about-ttl_en {
    font-size: 32px;
    line-height: 1.5;
  }
}
.about-ttl_ja {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #FFAA7E;
  color: #5FA66A;
}
.about-content {
  width: 550px;
  margin-top: 130px;
  margin-left: 160px;
}
@media screen and (max-width: 1270px) {
  .about-content {
    margin: 50px 0 0 auto;
    width: 67.073vw;
  }
}
@media screen and (max-width: 768px) {
  .about-content {
    margin-right: auto;
    margin-left: 0;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .about-content {
    margin-top: 30px;
  }
}
.about-content_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFAA7E;
  color: #5FA66A;
}
@media screen and (max-width: 768px) {
  .about-content_ttl {
    line-height: 1.5;
  }
}
@media screen and (max-width: 480px) {
  .about-content_ttl {
    font-size: 24px;
  }
}
.about-content_txt {
  margin-top: 2rem;
}
@media screen and (max-width: 480px) {
  .about-content_txt {
    margin-top: 16px;
  }
}
.about-content_btn {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
  margin-top: 70px;
}
.about-content_btn:hover::before {
  opacity: 0;
}
.about-content_btn::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.about-content_btn::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.about-content_btn span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  .about-content_btn {
    margin: 50px auto 0;
    width: 89.744vw;
  }
}
.about .item1 {
  position: absolute;
  bottom: 12.188vw;
  left: 8.333vw;
  width: 15.625vw;
}
@media screen and (max-width: 1270px) {
  .about .item1 {
    width: 24.488vw;
    left: 0;
    bottom: 17.073vw;
  }
}
@media screen and (max-width: 768px) {
  .about .item1 {
    display: none;
  }
}
.about .item2 {
  position: absolute;
  width: 13.438vw;
  top: 9.271vw;
  right: 11.458vw;
  z-index: 2;
}
@media screen and (max-width: 1270px) {
  .about .item2 {
    width: 21.484vw;
    right: -5.542vw;
    top: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .about .item2 {
    display: none;
  }
}
.about .item3 {
  position: absolute;
  width: 13.021vw;
  right: 20.833vw;
  top: 15.365vw;
  z-index: 1;
}
@media screen and (max-width: 1270px) {
  .about .item3 {
    width: 220px;
    right: -0.167vw;
    top: 55.365vw;
  }
}

.point {
  padding: 150px 0 100px;
}
@media screen and (max-width: 1270px) {
  .point {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .point {
    padding: 50px 0;
  }
}
.point-ttl {
  text-align: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 1270px) {
  .point-ttl {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .point-ttl {
    margin-bottom: 30px;
  }
}
.point-ttl_en {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #FFAA7E;
}
@media screen and (max-width: 480px) {
  .point-ttl_en {
    font-size: 32px;
    line-height: 1.5;
  }
}
.point-ttl_ja {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #FFAA7E;
}
.point-list_item {
  margin-bottom: 120px;
  overflow-x: clip;
  position: relative;
}
@media screen and (max-width: 480px) {
  .point-list_item {
    margin-bottom: 50px;
  }
}
.point-list_item__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .point-list_item__content {
    flex-direction: column-reverse;
  }
}
.point-list_item__content .txtarea {
  width: calc(45% - 4.167vw);
}
@media screen and (max-width: 480px) {
  .point-list_item__content .txtarea {
    width: auto;
    margin-top: 30px;
  }
}
.point-list_item__content .txtarea .point_img {
  width: 144px;
}
.point-list_item__content .txtarea .ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  color: #5FA66A;
  margin-bottom: 2rem;
}
.point-list_item__content .img {
  width: 55%;
}
@media screen and (max-width: 480px) {
  .point-list_item__content .img {
    width: auto;
  }
}
.point-list_item.item1::after {
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -32px;
  top: 33px;
  width: 350px;
  height: 470px;
  background-image: url(./../../assets/img/top/point_item01.png);
}
@media screen and (max-width: 480px) {
  .point-list_item.item1::after {
    top: auto;
    bottom: 0;
    z-index: -1;
  }
}
.point-list_item.item2::after {
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -100px;
  top: 33px;
  width: 350px;
  height: 470px;
  background-image: url(./../../assets/img/top/point_item02.png);
  transform: rotate(-10deg);
}
@media screen and (max-width: 480px) {
  .point-list_item.item2::after {
    top: auto;
    bottom: 0;
  }
}
.point-list_item.item3::after {
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -32px;
  top: 33px;
  width: 240px;
  height: 300px;
  background-image: url(./../../assets/img/top/point_item03.png);
}
@media screen and (max-width: 480px) {
  .point-list_item.item3::after {
    bottom: 0;
    top: auto;
    z-index: -1;
  }
}
.point-list_item2 .point-list_item__content {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .point-list_item2 .point-list_item__content {
    flex-direction: column-reverse;
    position: relative;
    z-index: 2;
  }
}

.greeting-wrap {
  display: flex;
}
.greeting-ttl {
  writing-mode: vertical-lr;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #5FA66A;
}
@media screen and (max-width: 480px) {
  .greeting-ttl {
    font-size: 24px;
  }
}
.greeting-ttl h2 {
  display: inline-block;
  letter-spacing: 15px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .greeting-ttl h2 {
    line-height: normal;
  }
}
.greeting-ttl h2::before {
  content: "";
  position: absolute;
  bottom: -44px;
  right: -55px;
  background-image: url(./../../assets/img/top/greeting_item01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 63px;
  height: 113px;
  transform: rotate(15deg);
}
.greeting-content {
  margin-left: 8.333vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .greeting-content {
    margin-left: 32px;
  }
}
@media screen and (max-width: 480px) {
  .greeting-content {
    flex-direction: column-reverse;
    margin-left: 16px;
  }
}
.greeting-content_left {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .greeting-content_left {
    width: auto;
  }
}
.greeting-content_right {
  width: calc(50% - 2.604vw);
}
@media screen and (max-width: 480px) {
  .greeting-content_right {
    width: auto;
    margin-bottom: 20px;
  }
}
.greeting-content_right .name {
  width: 190px;
  margin: 1rem auto 0;
}
.greeting-content_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .greeting-content_ttl {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 16px;
  }
}
.greeting-content .txt {
  margin-bottom: 1.5rem;
}
.greeting-content .btn-right {
  display: flex;
  justify-content: right;
  margin-top: 3rem;
}
@media screen and (max-width: 480px) {
  .greeting-content .btn-right {
    margin-top: 30px;
    justify-content: center;
  }
}
.greeting-content .btn-right .btn-wrap {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
}
.greeting-content .btn-right .btn-wrap:hover::before {
  opacity: 0;
}
.greeting-content .btn-right .btn-wrap::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.greeting-content .btn-right .btn-wrap::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.greeting-content .btn-right .btn-wrap span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  .greeting-content .btn-right .btn-wrap {
    margin: 0 auto;
    width: 90%;
  }
}

.shopsection1 {
  text-align: center;
  margin: 300px auto 290px;
  position: relative;
  width: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1270px) {
  .shopsection1 {
    width: 100%;
    margin-top: 150px;
    margin-bottom: 150px;
    padding: 0 32px;
    overflow-x: clip;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1 {
    margin-top: 0;
    margin-bottom: 80px;
    padding: 0 16px;
    display: block;
  }
}
.shopsection1-enttl {
  color: #FFAA7E;
  text-decoration: underline;
}
@media screen and (max-width: 1270px) {
  .shopsection1-enttl {
    font-size: 1.951vw;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1-enttl {
    font-size: 14px;
  }
}
.shopsection1-ttl {
  color: #FFAA7E;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFAA7E;
  margin-bottom: 50px;
}
@media screen and (max-width: 1270px) {
  .shopsection1-ttl {
    font-size: 3.902vw;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1-ttl {
    font-size: 25px;
    line-height: normal;
    margin-bottom: 1.5rem;
  }
}
.shopsection1 .txt {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1270px) {
  .shopsection1 .txt {
    font-size: 1.951vw;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1 .txt {
    font-size: 14px;
    margin-bottom: 1rem;
    text-align: left;
  }
}
.shopsection1-btn {
  margin-top: 60px;
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
}
.shopsection1-btn:hover::before {
  opacity: 0;
}
.shopsection1-btn::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.shopsection1-btn::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.shopsection1-btn span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
.shopsection1-img1 {
  width: 221px;
  top: -2.396vw;
  right: -13.437vw;
  position: absolute;
}
@media screen and (max-width: 1270px) {
  .shopsection1-img1 {
    width: 18.293vw;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1-img1 {
    display: none;
  }
}
.shopsection1-img2 {
  position: absolute;
  width: 259px;
  left: -13.49vw;
  bottom: -2.76vw;
  z-index: -1;
}
@media screen and (max-width: 1270px) {
  .shopsection1-img2 {
    width: 21.951vw;
    left: 0;
    bottom: 12.195vw;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1-img2 {
    display: none;
  }
}
.shopsection1-img3 {
  position: absolute;
  width: 308px;
  right: -15.313vw;
  bottom: -3.177vw;
}
@media screen and (max-width: 1270px) {
  .shopsection1-img3 {
    width: 30.488vw;
    right: 0;
    bottom: -6.098vw;
  }
}
@media screen and (max-width: 480px) {
  .shopsection1-img3 {
    display: none;
  }
}
.shopsection1-imgsp {
  display: none;
}
@media screen and (max-width: 480px) {
  .shopsection1-imgsp {
    display: block;
    width: 100%;
    margin-top: 50px;
  }
}

.sectionbanner {
  background-image: url(../../assets/img/shopinfo/section1_img04.png);
  background-position: center;
  background-size: cover;
  width: 83.333vw;
  height: 340px;
  margin: 0 auto;
  border-radius: 5px;
  background-attachment: fixed;
}
@media screen and (max-width: 1270px) {
  .sectionbanner {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 480px) {
  .sectionbanner {
    height: 200px;
    width: calc(100% - 16px);
    background-attachment: scroll;
  }
}

.shopsection2 {
  width: 64.583vw;
  margin: 135px auto 200px;
}
@media screen and (max-width: 1270px) {
  .shopsection2 {
    width: 100%;
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .shopsection2 {
    width: 100%;
    padding: 0 16px;
    margin: 80px auto 100px;
  }
}
.shopsection2-txtarea {
  text-align: center;
  margin-bottom: 100px;
}
.shopsection2-txtarea_ttl {
  margin-bottom: 20px;
}
.shopsection2-txtarea_ttl .en {
  color: #FFAA7E;
  text-decoration: underline;
}
.shopsection2-txtarea_ttl h3 {
  color: #FFAA7E;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFAA7E;
}
.shopsection2-greeting {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .shopsection2-greeting {
    flex-direction: column;
    align-items: center;
  }
}
.shopsection2-greeting_item {
  width: calc(50% - 25px);
}
@media screen and (max-width: 480px) {
  .shopsection2-greeting_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.shopsection2-greeting_item .txt .name {
  width: 192px;
  margin-top: 30px;
  padding-top: 10px;
  position: relative;
}
.shopsection2-greeting_item .txt .name::before {
  content: "";
  background-color: #5FA66A;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 1px;
}
.shopsection2-greeting_item .txt .name.name2 {
  width: 162px;
}
.shopsection2-greeting_item .txt .desc {
  margin-top: 30px;
  margin-bottom: 30px;
}
.shopsection2-greeting_item .txt .licence-ttl {
  color: #5FA66A;
  font-weight: 700;
}

.shopsection3 {
  width: 64.583vw;
  margin: 0 auto;
}
@media screen and (max-width: 1270px) {
  .shopsection3 {
    width: 100%;
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .shopsection3 {
    width: 100%;
    padding: 0 16px;
    margin-top: 80px;
  }
}
.shopsection3 h3 {
  color: #FFAA7E;
  font-weight: 700;
}
.shopsection3 .table {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .shopsection3 .table {
    margin-top: 30px;
  }
}
.shopsection3 .table dl {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #EBEBEB;
}
@media screen and (max-width: 480px) {
  .shopsection3 .table dl {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0;
  }
}
.shopsection3 .table dl dt {
  width: 30%;
}
@media screen and (max-width: 480px) {
  .shopsection3 .table dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
.shopsection3 .table dl dd {
  width: 70%;
}
@media screen and (max-width: 480px) {
  .shopsection3 .table dl dd {
    width: 100%;
  }
}

.contact {
  display: flex;
  justify-content: space-between;
  margin-top: 200px;
}
@media screen and (max-width: 1270px) {
  .contact {
    margin-top: 100px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .contact {
    margin-top: 0;
  }
}
.contact-ttl_en {
  color: #FFAA7E;
  text-decoration: underline;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: #FFAA7E;
  color: 14px;
}
@media screen and (max-width: 1270px) {
  .contact-ttl_en {
    font-size: 3.902vw;
  }
}
@media screen and (max-width: 480px) {
  .contact-ttl_en {
    font-size: 25px;
    line-height: normal;
    margin-bottom: 1.5rem;
  }
}
.contact-ttl_ja {
  color: #FFAA7E;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFAA7E;
  margin-bottom: 50px;
}
@media screen and (max-width: 1270px) {
  .contact-ttl_ja {
    font-size: 3.902vw;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .contact-ttl_ja {
    font-size: 25px;
    line-height: normal;
    margin-bottom: 1.5rem;
  }
}
.contact tbody {
  width: 100%;
}
.contact tbody tr {
  display: flex !important;
  flex-direction: column;
  margin-bottom: 40px;
}
.contact tbody tr td {
  width: 100% !important;
}
.contact tbody tr td select,
.contact tbody tr td input,
.contact tbody tr td textarea {
  border-radius: 5px;
  padding: 1%;
  width: 100%;
  border: solid 1px #FFAA7E;
}
.contact tbody tr td .contact_link_btn {
  margin-top: 50px;
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .contact tbody tr td .contact_link_btn {
    margin-top: 10px;
  }
}
.contact tbody tr td .contact_link_btn input {
  cursor: pointer;
  background-color: #FFAA7E;
  color: #fff;
  text-align: center;
  font-weight: 700;
  transition: all 0.4s;
}
.contact tbody tr td .contact_link_btn input:hover {
  background-color: #fff;
  color: #FFAA7E;
}
.contact tbody th {
  font-weight: 500;
  margin-bottom: 10px;
}

.tbl-base {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .tbl-base {
    margin-top: 30px;
  }
}

.clrred {
  color: red;
}

.desc {
  margin-bottom: 3rem;
}

.privacy-item {
  font-weight: 500;
  margin-bottom: 2rem;
}
.privacy-item h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFAA7E;
  font-size: 18px;
}
.privacy-item ol {
  margin-top: 1rem;
  list-style: circle;
  margin-left: 20px;
}
.privacy-item ol li {
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .privacy-item ol li {
    margin-bottom: 1rem;
  }
}
.privacy-item ol li ul {
  list-style: disc;
  margin-left: 20px;
}
.privacy-item ol li ul li {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.law dl {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .law dl {
    flex-direction: column;
  }
}
.law dl dt {
  width: 30%;
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (max-width: 480px) {
  .law dl dt {
    width: auto;
    border-bottom: none;
  }
}
.law dl dd {
  width: calc(70% - 10px);
  margin-left: 10px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (max-width: 480px) {
  .law dl dd {
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 0;
  }
}

.archive {
  padding-left: 8.333vw;
  padding-right: 8.333vw;
  padding-top: 200px;
}
@media screen and (max-width: 1270px) {
  .archive {
    padding: 100px 32px 0;
  }
}
@media screen and (max-width: 480px) {
  .archive {
    padding: 50px 16px 0;
  }
}
.archive .campaign {
  margin-top: 2rem;
  width: 56.771vw;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1270px) {
  .archive .campaign {
    width: 100%;
  }
}
.archive .campaign a {
  transition: all 0.4s;
}
.archive .campaign a:hover {
  opacity: 0.7;
}
.archive-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .archive-inner {
    flex-direction: column-reverse;
  }
}
.archive-nav {
  width: 24.375%;
}
@media screen and (max-width: 1270px) {
  .archive-nav {
    width: 100%;
  }
}
.archive-nav_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #5FA66A;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1270px) {
  .archive-nav_ttl {
    font-size: 3.902vw;
  }
}
@media screen and (max-width: 480px) {
  .archive-nav_ttl {
    font-size: 18px;
    line-height: normal;
  }
}
.archive-nav_list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 1270px) {
  .archive-nav_list {
    gap: 1.5vw;
  }
}
@media screen and (max-width: 480px) {
  .archive-nav_list {
    gap: 10px;
  }
}
.archive-nav_list li {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  border-bottom: dotted 2px black;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1270px) {
  .archive-nav_list li {
    font-size: 2.604vw;
  }
}
@media screen and (max-width: 480px) {
  .archive-nav_list li {
    font-size: 14px;
    line-height: normal;
  }
}
.archive-nav_list li:hover {
  color: #5FA66A;
}
.archive-lists {
  width: 68.125%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1270px) {
  .archive-lists {
    width: 100%;
  }
}
.archive-lists_item {
  width: calc(33.333% - 2.083vw);
  margin-right: 2.083vw;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .archive-lists_item {
    width: calc(50% - 2.083vw);
  }
}
@media screen and (max-width: 480px) {
  .archive-lists_item {
    width: 100%;
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
.archive-lists_item_top img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.archive-lists_item_top.product img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 480px) {
  .archive-lists_item_top.product img {
    height: 89.744vw;
  }
}
.archive-lists_item_btm {
  padding-top: 16px;
}
.archive-lists_item_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
.archive-lists_item_ttl_top {
  font-size: 12px;
  line-height: 0.5;
}
.archive-lists_item_ttl_btm {
  font-size: 24px;
  line-height: normal;
}
.archive-lists_item .category {
  display: flex;
  flex-wrap: wrap;
}
.archive-lists_item .category-name {
  color: #fff;
  font-size: 12px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  background-color: #5FA66A;
  padding: 0 1rem;
  border-radius: 14px;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
.archive-lists_item .txt {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 1rem;
}
.archive-lists_item .morebtn {
  text-align: right;
  margin-top: 1rem;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.4s;
}
.archive-lists_item .morebtn:hover {
  color: #5FA66A;
}
.archive-lists_item .morebtn:hover::after {
  transform: scaleX(1);
}
.archive .attention {
  margin-top: 2rem;
  text-align: right;
  color: #FFAA7E;
}
@media screen and (max-width: 480px) {
  .archive .attention {
    text-align: left;
    font-size: 14px;
  }
}
.archive .topic_pager {
  display: flex;
  justify-content: right;
}
@media screen and (max-width: 480px) {
  .archive .topic_pager {
    justify-content: center;
  }
}
.archive .topic_pager .page-numbers {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.archive .topic_pager .page-numbers li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.archive .topic_pager .page-numbers a {
  transition: all 0.4s;
}
.archive .topic_pager .page-numbers a:hover {
  opacity: 0.7;
}
.archive .topic_pager .page-numbers .current {
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #5FA66A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.archive-low {
  width: calc(75.625% - 2.083vw);
}
@media screen and (max-width: 1270px) {
  .archive-low {
    width: 100%;
  }
}
.archive-low_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #fff;
  background-color: #5FA66A;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
@media screen and (max-width: 1270px) {
  .archive-low_ttl {
    font-size: 3.902vw;
  }
}
@media screen and (max-width: 480px) {
  .archive-low_ttl {
    font-size: 18px;
    line-height: normal;
  }
}
.archive-low_ttl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.archive-low_ttl span {
  margin-left: 1rem;
  font-size: 14px;
}
.archive-low_content_img {
  width: 67.68%;
}
.archive-low_content_img img {
  height: auto;
}
@media screen and (max-width: 1270px) {
  .archive-low_content_img {
    width: 100%;
  }
}
.archive-low_content_list_item {
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .archive-low_content_list_item {
    margin-bottom: 1rem;
  }
}
.archive-low_content_list_item h3 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #5FA66A;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 480px) {
  .archive-low_content_list_item h3 {
    font-size: 16px;
  }
}
.archive-low_content_btnarea {
  display: flex;
  margin-top: 3rem;
}
@media screen and (max-width: 480px) {
  .archive-low_content_btnarea {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }
}
.archive-low_content_btn {
  width: 350px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
  font-size: 14px;
  border-radius: 50px;
  margin-right: 2rem;
}
.archive-low_content_btn:hover::before {
  opacity: 0;
}
.archive-low_content_btn::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5fa66a 0%, #ffaa7e 100%);
  padding: 1rem 0;
}
.archive-low_content_btn::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5fa66a 0%, #ffaa7e 100%);
}
.archive-low_content_btn span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 1rem;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
@media screen and (max-width: 1270px) {
  .archive-low_content_btn {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .archive-low_content_btn {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .archive-low_content_btn .btn {
    padding: 0.5rem 0;
  }
}
.archive .price {
  font-size: 24px;
  font-weight: bold;
}
.archive .cart {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .archive .cart {
    align-items: baseline;
  }
}
.archive .cart .quantity input[type=number] {
  width: 105px;
  height: 50px;
  padding: 0 10px;
  border-radius: 5px;
  border: solid 1px #000;
  font-size: 16px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .archive .cart .quantity input[type=number] {
    width: 80px;
    height: 40px;
    font-size: 14px;
  }
}
.archive .cart button[type=submit] {
  padding: 10px 20px;
  margin-left: 20px;
  background-color: #FFAA7E;
  color: #fff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .archive .cart button[type=submit] {
    margin-top: 10px;
    font-size: 14px;
  }
}
.archive .cart button[type=submit]:hover {
  background-color: rgb(255, 136.3953488372, 75);
}
.archive .item_explanation {
  margin-top: 60px;
}
.archive .item_explanation:nth-of-type(1) {
  margin-top: 0;
}
.archive .item_explanation img {
  height: auto;
}
.archive .item_explanation_ttl {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #000;
  margin-bottom: 1rem;
  width: 100%;
  border-bottom: 3px dotted #000;
  background: rgba(48, 118, 115, 0.0941176471);
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 480px) {
  .archive .item_explanation_ttl {
    font-size: 16px;
    line-height: normal;
  }
}
.archive .type_double {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 480px) {
  .archive .type_double {
    flex-direction: column;
  }
}
.archive .type_double .item_explanation_text {
  flex: 1 1 47.5%;
  padding-right: 0 18px;
}
@media screen and (max-width: 480px) {
  .archive .type_double .item_explanation_text {
    padding: 0;
  }
}
.archive .type_double .item_explanation_img {
  flex: 1 1 47.5%;
  padding-left: 18px;
}
@media screen and (max-width: 480px) {
  .archive .type_double .item_explanation_img {
    padding: 0;
  }
}
.archive .type_double .item_explanation_img img {
  width: 100%;
  height: auto;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes float {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  100% {
    transform: translateX(-100px) translateY(-100px) rotate(360deg);
  }
}
.campaign-header {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #FFAA7E 0%, #5FA66A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.campaign-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s infinite linear;
}
.campaign-header h1 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .campaign-header h1 {
    font-size: 28px;
    line-height: 1.4;
  }
}
.campaign-header .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .campaign-header .subtitle {
    font-size: 16px;
  }
}

.diet-comparison {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8F8ED 0%, #fff 100%);
}
.diet-comparison .comparison-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .diet-comparison .comparison-container {
    flex-direction: column;
    gap: 30px;
  }
}
.diet-comparison .diet-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 450px;
  position: relative;
  transition: transform 0.3s ease;
}
.diet-comparison .diet-card:hover {
  transform: translateY(-10px);
}
.diet-comparison .diet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FFAA7E, #5FA66A);
  border-radius: 20px 20px 0 0;
}
.diet-comparison .diet-card .card-header {
  text-align: center;
  margin-bottom: 30px;
}
.diet-comparison .diet-card .card-header .medicine-name {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.diet-comparison .diet-card .card-header .main-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .diet-comparison .diet-card .card-header .main-title {
    font-size: 24px;
  }
}
.diet-comparison .diet-card .card-header .target {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}
.diet-comparison .diet-card .effects-section {
  margin-bottom: 30px;
}
.diet-comparison .diet-card .effects-section .effects-title {
  font-weight: bold;
  color: #5FA66A;
  margin-bottom: 15px;
  font-size: 18px;
}
.diet-comparison .diet-card .effects-section .effects-list {
  list-style: none;
  padding: 0;
}
.diet-comparison .diet-card .effects-section .effects-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}
.diet-comparison .diet-card .effects-section .effects-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5FA66A;
  font-weight: bold;
}
.diet-comparison .diet-card .price-section {
  text-align: center;
  border-top: 2px dashed #eee;
  padding-top: 25px;
}
.diet-comparison .diet-card .price-section .original-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 5px;
}
.diet-comparison .diet-card .price-section .campaign-price-label {
  font-size: 16px;
  color: #FFAA7E;
  font-weight: bold;
  margin-bottom: 10px;
}
.diet-comparison .diet-card .price-section .campaign-price {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .diet-comparison .diet-card .price-section .campaign-price {
    font-size: 28px;
  }
}
.diet-comparison .diet-card .price-section .price-note {
  font-size: 14px;
  color: #666;
}

.startup-plan {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.startup-plan h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #5FA66A;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .startup-plan h2 {
    font-size: 28px;
  }
}
.startup-plan .startup-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 3px solid #FFAA7E;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.startup-plan .startup-card::before {
  content: "ネット限定";
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: #fff;
  padding: 8px 50px;
  font-weight: bold;
  font-size: 14px;
  transform: rotate(45deg);
}
.startup-plan .startup-card .startup-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .startup-plan .startup-card .startup-title {
    font-size: 22px;
  }
}
.startup-plan .startup-card .startup-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.startup-plan .startup-card .startup-pricing {
  margin-bottom: 40px;
}
.startup-plan .startup-card .startup-pricing .startup-original {
  font-size: 24px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 10px;
}
.startup-plan .startup-card .startup-pricing .startup-campaign {
  font-size: 48px;
  font-weight: bold;
  color: #FFAA7E;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .startup-plan .startup-card .startup-pricing .startup-campaign {
    font-size: 36px;
  }
}
.startup-plan .startup-card .startup-pricing .startup-savings {
  font-size: 18px;
  color: #5FA66A;
  font-weight: bold;
}

.cta-button {
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  z-index: 3;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  font-size: 18px;
  margin: 20px auto 0;
}
.cta-button:hover::before {
  opacity: 0;
}
.cta-button::before {
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  background: linear-gradient(to left, #5FA66A 0%, #FFAA7E 100%);
  padding: 1rem 0;
}
.cta-button::after {
  padding: 1rem 0;
  border-radius: 50px;
  text-align: center;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: linear-gradient(to right, #5FA66A 0%, #FFAA7E 100%);
}
.cta-button span {
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  .cta-button {
    font-size: 14px;
  }
}

.benefits {
  background: #F8F8ED;
  padding: 80px 0;
}
.benefits h2 {
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #5FA66A;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .benefits h2 {
    font-size: 24px;
  }
}
.benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.benefits .benefits-grid .benefit-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.benefits .benefits-grid .benefit-item .benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.benefits .benefits-grid .benefit-item .benefit-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.benefits .benefits-grid .benefit-item .benefit-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.notes {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.notes h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}
.notes .notes-list {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.notes .notes-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.footer-cta {
  background: linear-gradient(135deg, #FFAA7E 0%, #5FA66A 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.footer-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .footer-cta h2 {
    font-size: 24px;
  }
}
.footer-cta p {
  font-size: 18px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .footer-cta p {
    font-size: 16px;
  }
}

.fadeInTrigger {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fadeInTrigger.active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */