@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
html,
body {
  font-family: "Zen Old Mincho", serif;
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  line-height: 1.7;
}
@media screen and (max-width: 1440px) {
  html,
  body {
    font-size: 0.0694444444vw;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 0.1333333333vw;
  }
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.f-mincho {
  font-family: "Zen Old Mincho", serif;
}

.f-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: #242424;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 1 !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0%;
  padding: 0%;
}

ul li,
ol li {
  list-style: none;
  line-height: 1;
}

figure,
table {
  margin: auto;
}

.seccontain {
  max-width: 1440px;
  margin: auto !important;
}

div {
  font-size: 16px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1440px) {
  .seccontain {
    max-width: 1440rem;
    margin: auto;
  }
}
body h2 span {
  font-size: inherit;
  margin-left: inherit;
}

.nolink {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

.sec_pd {
  padding: 60px 0;
}
@media screen and (max-width: 1440px) {
  .sec_pd {
    padding: 60rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_pd {
    padding: 60rem 0;
  }
}

.header {
  background-color: #fff;
  position: relative;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 0 !important;
}
.header--fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: top 0.3s ease;
}
.header--hidden {
  top: -100px;
}
.header_contain {
  position: relative;
  z-index: 100;
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 45px;
}
@media screen and (max-width: 1440px) {
  .header_contain {
    max-width: 1440rem;
    padding: 15rem 45rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .header_contain {
    padding: 35rem 40rem;
    max-width: 100%;
  }
}
.header_logo {
  position: relative;
  z-index: 99;
  max-width: 295px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .header_logo {
    max-width: 295rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    max-width: 400rem;
  }
}
.header_top {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
}
@media screen and (max-width: 1440px) {
  .header_top {
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .header_top {
    gap: 30rem;
  }
}
.header_topleft {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .header_topleft {
    gap: 25rem;
  }
}
.header_topleft__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #242424;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .header_topleft__item {
    gap: 6rem;
    font-size: 14rem;
  }
}
.header_topleft__item .cart-count {
  position: absolute;
  top: -5px;
  left: 10px;
  background: #2b2e38;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 15px;
  height: 15px;
  font-size: 11px;
  border-radius: 50%;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .header_topleft__item .cart-count {
    top: -5rem;
    left: 10rem;
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .header_topleft__item .cart-count {
    top: -10rem;
    left: 0rem;
    width: 30rem;
    height: 30rem;
  }
}
.header_topleft__item img {
  width: 21px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .header_topleft__item img {
    width: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .header_topleft__item img {
    width: 40rem;
  }
}
.header_topleft .menubtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_topleft .menubtn {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14rem;
  }
}
.header_topleft .menubtn.change .bar01 {
  transform: rotate(-45deg) translate(-11rem, 11rem);
}
.header_topleft .menubtn.change .bar02 {
  opacity: 0;
}
.header_topleft .menubtn.change .bar03 {
  transform: rotate(45deg) translate(-11rem, -11rem);
}
.header_topleft .menubtn .bar {
  width: 40rem;
  height: 2rem;
  background: #242424;
}
.header_search {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .header_search {
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .header_search {
    display: none;
  }
}
.header_search::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  width: 13px;
  height: 13px;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .header_search::before {
    left: 8rem;
    width: 13rem;
    height: 13rem;
  }
}
.header_search input {
  width: 160px;
  height: 26px;
  border-radius: 1px;
  background: #fff;
  border: 1px solid #b1b1b1;
  font-family: "Zen Old Mincho";
  font-weight: 400;
  font-size: 13px;
  text-align: left;
  position: relative;
  padding: 3px 25px;
  padding-right: 5px;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .header_search input {
    width: 160rem;
    height: 26rem;
    font-size: 13rem;
    padding: 3rem 25rem;
  }
}
.header_search input::-moz-placeholder {
  color: #898989;
}
.header_search input::placeholder {
  color: #898989;
}
.header_search_btn {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  text-align: left;
  color: #242424;
  border-radius: 1px;
  background: #d8d8d8;
  padding: 2px 8px;
}
@media screen and (max-width: 1440px) {
  .header_search_btn {
    padding: 2rem 8rem;
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .header_tel {
    display: none;
  }
}
.header_tel a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .header_tel a {
    font-size: 17rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .header_tel a {
    font-size: 30rem;
    gap: 20rem;
  }
}
.header_tel a img {
  width: 25px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .header_tel a img {
    width: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .header_tel a img {
    width: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .header .navbox {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    z-index: 90;
    height: 100vh;
    background-color: #fff;
    padding-top: 150rem;
    transition: 0.3s;
  }
}
.header .navbox.open {
  right: 0%;
}
.header .navbox .header_search {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .navbox .header_search {
    padding: 0 75rem;
    display: block;
    margin-top: 40rem;
  }
  .header .navbox .header_search::before {
    left: 90rem;
    width: 30rem;
    height: 30rem;
  }
  .header .navbox .header_search input {
    width: 470rem;
    height: 70rem;
    font-size: 26rem;
    padding: 5rem 50rem;
    padding-right: 10rem;
  }
  .header .navbox .header_search .header_search_btn {
    font-size: 26rem;
    padding: 16rem 30rem;
  }
}
.header .navbox .header_tel {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .navbox .header_tel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40rem;
  }
}
.header_nav {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 1440px) {
  .header_nav {
    margin-top: 25rem;
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .header_nav {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .header_nav li {
    width: 100%;
    padding: 0 75rem;
    border-top: 1px solid #d0d0d0;
  }
}
.header_nav li a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .header_nav li a {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .header_nav li a {
    display: flex;
    align-items: center;
    padding: 30rem 0;
    font-size: 26rem;
    line-height: 30rem;
  }
}
@media screen and (min-width: 768px) {
  .header_nav li a:hover {
    opacity: 0.8;
  }
  .header_nav li a:hover::after {
    width: 100%;
  }
}
.header_nav li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  transition: 0.3s;
  background-color: #242424;
}
@media screen and (max-width: 1440px) {
  .header_nav li a::after {
    bottom: -2rem;
  }
}

.morebtn a {
  display: inline-block;
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .morebtn a {
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .morebtn a {
    font-size: 26rem;
    min-width: 300rem;
  }
}
@media screen and (min-width: 768px) {
  .morebtn a:hover::before {
    height: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .morebtn a:hover::before {
    height: calc(100% + 8rem);
  }
}
@media screen and (min-width: 768px) {
  .morebtn a:hover::after {
    height: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .morebtn a:hover::after {
    height: calc(100% + 8rem);
  }
}
@media screen and (min-width: 768px) {
  .morebtn a:hover span::before {
    width: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .morebtn a:hover span::before {
    width: calc(100% + 8rem);
  }
}
@media screen and (min-width: 768px) {
  .morebtn a:hover span::after {
    width: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .morebtn a:hover span::after {
    width: calc(100% + 8rem);
  }
}
.morebtn a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.5px;
  height: calc(100% - 10px);
  background-color: #707070;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .morebtn a::before {
    height: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .morebtn a::before {
    height: calc(100% + 12rem);
  }
}
.morebtn a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0.5px;
  height: calc(100% - 10px);
  transition: 0.3s;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .morebtn a::after {
    height: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .morebtn a::after {
    height: calc(100% + 12rem);
  }
}
.morebtn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .morebtn a span {
    padding: 10rem 50rem;
  }
}
@media screen and (max-width: 768px) {
  .morebtn a span {
    padding: 15rem 30rem;
  }
}
.morebtn a span::before {
  position: absolute;
  content: "";
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  width: calc(100% - 10px);
  height: 0.5px;
  transition: 0.3s;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .morebtn a span::before {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .morebtn a span::before {
    width: calc(100% + 12rem);
  }
}
.morebtn a span::after {
  position: absolute;
  content: "";
  bottom: 0%;
  transform: translateX(-50%);
  left: 50%;
  width: calc(100% - 10px);
  height: 0.5px;
  transition: 0.3s;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .morebtn a span::after {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .morebtn a span::after {
    width: calc(100% + 12rem);
  }
}

.main {
  max-width: 100%;
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .main {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 120rem;
  }
}

.t-fv {
  position: relative;
}
.t-fv .fvimg img,
.t-fv .fvimg video {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .t-fv .fvimg img,
  .t-fv .fvimg video {
    height: 700rem;
  }
}
@media screen and (max-width: 768px) {
  .t-fv .fvimg img,
  .t-fv .fvimg video {
    height: 1150rem;
  }
}
.t-fv .fvtxt {
  position: absolute;
  top: 65px;
  left: 155px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 51px;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-fv .fvtxt {
    top: 65rem;
    left: 155rem;
    font-size: 51rem;
  }
}
@media screen and (max-width: 768px) {
  .t-fv .fvtxt {
    top: 50%;
    transform: translateY(-50%);
    left: 40rem;
    font-size: 70rem;
  }
}

.t-sec01 {
  margin-top: 50px;
}
@media screen and (max-width: 1440px) {
  .t-sec01 {
    margin-top: 50rem;
  }
}
.t-sec01_main {
  display: flex;
  flex-direction: row;
  gap: 70px;
}
@media screen and (max-width: 1440px) {
  .t-sec01_main {
    gap: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_main {
    flex-direction: column-reverse;
    gap: 60rem;
    align-items: flex-end;
  }
}
.t-sec01_title h2 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 30px;
  line-height: 1.6;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .t-sec01_title h2 {
    font-size: 30rem;
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_title h2 {
    align-items: flex-end;
    writing-mode: unset;
    text-align: right;
    margin: auto 75rem;
    font-size: 36rem;
    line-height: 65rem;
  }
}
.t-sec01_title .smalltxt {
  padding-top: 30px;
  position: relative;
  font-size: 14px;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-sec01_title .smalltxt {
    padding-top: 30rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_title .smalltxt {
    font-size: 22rem;
    line-height: 1.5;
    padding: 0;
  }
}
.t-sec01_title .smalltxt::before {
  content: "";
  width: 1px;
  left: 50%;
  top: 0;
  height: 21px;
  position: absolute;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .t-sec01_title .smalltxt::before {
    height: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_title .smalltxt::before {
    width: 21rem;
    height: 1rem;
    top: 50%;
    left: -35rem;
  }
}
.t-sec01_img {
  max-width: 1010px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .t-sec01_img {
    max-width: 1010rem;
  }
}
.t-sec01_img .txt {
  position: absolute;
  bottom: 35px;
  left: 140px;
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 46px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-sec01_img .txt {
    bottom: 35rem;
    left: 140rem;
    font-size: 24rem;
    line-height: 46rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_img .txt {
    bottom: 50rem;
    left: 75rem;
    font-size: 32rem;
    line-height: 60rem;
  }
}
.t-sec01_content {
  max-width: 1160px;
  margin: auto;
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .t-sec01_content {
    max-width: 1160rem;
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_content {
    flex-direction: column;
    margin: 60rem 75rem 0;
    gap: 60rem;
  }
}
.t-sec01_content .morebtn {
  margin-right: 90px;
}
@media screen and (max-width: 1440px) {
  .t-sec01_content .morebtn {
    margin-right: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec01_content .morebtn {
    margin-right: 0;
  }
}

.txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 45px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .txt {
    font-size: 16rem;
    line-height: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .txt {
    font-size: 26rem;
    line-height: 62rem;
  }
}

.t-sec02 .seccontain {
  position: relative;
}
.t-sec02_main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .t-sec02_main {
    flex-direction: column;
    justify-content: flex-start;
    gap: 40rem;
  }
}
.t-sec02_main .mainimg01 {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .t-sec02_main .mainimg01 {
    max-width: 560rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec02_main .mainimg01 {
    max-width: 375rem;
    position: absolute;
    top: 100rem;
    right: 0;
  }
}
.t-sec02_main .mainimg02 {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin-top: 250px;
}
@media screen and (max-width: 1440px) {
  .t-sec02_main .mainimg02 {
    max-width: 560rem;
    margin-top: 250rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec02_main .mainimg02 {
    max-width: 560rem;
    margin-top: 0;
  }
}
.t-sec02_main .mainimg02 .manimg {
  position: absolute;
  bottom: -20px;
  z-index: 2;
  right: -70px;
  width: 207px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .t-sec02_main .mainimg02 .manimg {
    width: 207rem;
    right: -70rem;
    bottom: -20rem;
  }
}
.t-sec02_maintxt {
  margin-top: 120px;
}
@media screen and (max-width: 1440px) {
  .t-sec02_maintxt {
    margin-top: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec02_maintxt {
    margin-top: 0;
    margin-left: 135rem;
  }
}
.t-sec02_maintxt::after {
  position: absolute;
  content: "";
  width: 1210px;
  height: 380px;
  background: linear-gradient(#ebf2f6 0%, #d9e4e9 100%);
  opacity: 0.6;
  left: 0;
  top: 350px;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .t-sec02_maintxt::after {
    width: 1210rem;
    height: 380rem;
    top: 350rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec02_maintxt::after {
    top: 160rem;
    left: 0;
    width: 100%;
    height: 980rem;
  }
}
.t-sec02_maintxt h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 2;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1440px) {
  .t-sec02_maintxt h2 {
    font-size: 30rem;
  }
}
.t-sec02_content {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .t-sec02_content {
    margin: 0 75rem;
    margin-top: 70rem;
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec02_content {
    gap: 70rem;
    margin-top: 80rem;
  }
}
.t-sec02_content .txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .t-sec02_content .txt {
    text-align: left;
  }
}

.t-sec03 {
  position: relative;
}
.t-sec03_box {
  max-width: 1130px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .t-sec03_box {
    max-width: 1130rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_box {
    max-width: 100%;
    margin: 0 75rem;
  }
}
.t-sec03_box .stubborn_box {
  position: absolute;
  bottom: -20px;
  right: -125px;
  width: 180px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .t-sec03_box .stubborn_box {
    bottom: -20rem;
    right: -125rem;
    width: 180rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_box .stubborn_box {
    width: 205rem;
    bottom: -40rem;
    right: -35rem;
  }
}
.t-sec03_box .stubborn_box_txt {
  padding: 30px 25px;
  background: #fff;
  border: 1px solid #d0d0d0;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
  margin-left: 15px;
  margin-right: -15px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_box .stubborn_box_txt {
    padding: 30rem 25rem;
    font-size: 15rem;
    margin-left: 15rem;
    margin-right: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_box .stubborn_box_txt {
    padding: 20rem 10rem;
    font-size: 24rem;
    margin: auto;
  }
}
.t-sec03_box .stubborn_box img {
  margin-top: -20px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_box .stubborn_box img {
    margin-top: -20rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_box .stubborn_box img {
    max-width: 170rem;
    margin: auto;
    margin-top: -20rem;
  }
}
.t-sec03_slider .slideritem {
  display: flex !important;
  align-items: flex-start;
  background: linear-gradient(#222 0%, #414141 100%);
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem {
    flex-direction: column;
  }
}
.t-sec03_slider .slideritem_img {
  max-width: 665px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_img {
    max-width: 665rem;
  }
}
.t-sec03_slider .slideritem_content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 465px;
  width: 100%;
  padding: 60px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content {
    max-width: 465rem;
    padding: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content {
    padding: 60rem 50rem;
    padding-bottom: 80rem;
    max-width: 100%;
  }
}
.t-sec03_slider .slideritem_content_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 46px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_title {
    font-size: 24rem;
    line-height: 46rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content_title {
    font-size: 40rem;
    line-height: 1.7;
  }
}
.t-sec03_slider .slideritem_content_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 42px;
  text-align: left;
  color: #fff;
  margin: 25px auto;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_txt {
    font-size: 15rem;
    line-height: 42rem;
    margin: 25rem auto;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content_txt {
    font-size: 26rem;
    line-height: 60rem;
    margin: 40rem auto;
  }
}
.t-sec03_slider .slideritem_content_price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_price {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content_price {
    font-size: 26rem;
  }
}
.t-sec03_slider .slideritem_content_price span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  margin: 0 5px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_price span {
    font-size: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content_price span {
    font-size: 40rem;
  }
}
.t-sec03_slider .slideritem_content_morelink {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_morelink {
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content_morelink {
    font-size: 40rem;
    justify-content: flex-start;
  }
}
.t-sec03_slider .slideritem_content_morelink a {
  position: relative;
  padding: 8px 35px;
  background: rgba(255, 255, 255, 0.8588235294);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_morelink a {
    font-size: 16rem;
    padding: 8rem 35rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slideritem_content_morelink a {
    padding: 10rem 35rem;
    font-size: 24rem;
  }
}
@media screen and (min-width: 768px) {
  .t-sec03_slider .slideritem_content_morelink a:hover::after {
    width: 0;
  }
}
.t-sec03_slider .slideritem_content_morelink a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 18px;
  height: 1px;
  background: #242424;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slideritem_content_morelink a::after {
    width: 18rem;
  }
}
.t-sec03_slider .slick-prev,
.t-sec03_slider .slick-next {
  width: 57px;
  height: 57px;
  background: #242424 !important;
  top: unset;
  bottom: 0;
  transform: none;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slick-prev,
  .t-sec03_slider .slick-next {
    width: 57rem;
    height: 57rem;
  }
}
.t-sec03_slider .slick-prev:hover,
.t-sec03_slider .slick-next:hover {
  background: #242424;
}
.t-sec03_slider .slick-prev::before,
.t-sec03_slider .slick-next::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 13px;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-prev.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slick-prev::before,
  .t-sec03_slider .slick-next::before {
    width: 8rem;
    height: 13rem;
  }
}
.t-sec03_slider .slick-prev::after,
.t-sec03_slider .slick-next::after {
  width: 0;
  height: 0;
}
.t-sec03_slider .slick-prev {
  left: 547px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slick-prev {
    left: 547rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slick-prev {
    left: unset;
    right: 62rem;
    top: 337rem;
  }
}
.t-sec03_slider .slick-next {
  left: 608px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider .slick-next {
    left: 608rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider .slick-next {
    left: unset;
    right: 0;
    transform: none;
    top: 337rem;
  }
}
.t-sec03_slider .slick-next::before {
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-next.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.t-sec03_slider_counter {
  position: absolute;
  bottom: 17px;
  left: 493px;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-sec03_slider_counter {
    bottom: 17rem;
    left: 493rem;
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_slider_counter {
    left: unset;
    right: 140rem;
    top: 340rem;
    bottom: unset;
    font-size: 22rem;
  }
}
.t-sec03_products {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .t-sec03_products {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec03_products {
    margin: auto 75rem;
    margin-top: 100rem;
  }
}
.t-sec03_products .morebtn {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .t-sec03_products .morebtn {
    margin-top: 60rem;
  }
}

.products_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .products_flex {
    gap: 30rem;
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .products_flex {
    max-width: 100%;
    gap: 40rem 20rem;
  }
}
.products_flex .productitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 263px;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .products_flex .productitem {
    max-width: 263rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .products_flex .productitem {
    max-width: 290rem;
    gap: 15rem;
    margin-bottom: auto;
  }
}
@media screen and (min-width: 768px) {
  .products_flex .productitem:hover img {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
.products_flex .productitem_img {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.products_flex .productitem_img img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.products_flex .productitem_img .num {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  width: 34px;
  height: 34px;
  background: #fff;
}
@media screen and (max-width: 1440px) {
  .products_flex .productitem_img .num {
    width: 34rem;
    height: 34rem;
    font-size: 16rem;
    top: 10rem;
    left: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .products_flex .productitem_img .num {
    font-size: 28rem;
    width: 50rem;
    height: 50rem;
  }
}
.products_flex .productitem_img .num.num_01 {
  background: #bea870;
  color: #fff;
}
.products_flex .productitem_img .num.num_02 {
  background: #a8a9a8;
  color: #fff;
}
.products_flex .productitem_img .num.num_03 {
  background: #997a5c;
  color: #fff;
}
.products_flex .productitem_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .products_flex .productitem_title {
    font-size: 15rem;
    line-height: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .products_flex .productitem_title {
    font-size: 26rem;
    line-height: 40rem;
  }
}
.products_flex .productitem_price {
  margin-top: 5px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .products_flex .productitem_price {
    margin-top: 5rem;
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .products_flex .productitem_price {
    margin-top: 10rem;
    font-size: 22rem;
  }
}
.products_flex .productitem_price span {
  font-size: 17px;
  line-height: 1;
  margin: 0 5px;
}
@media screen and (max-width: 1440px) {
  .products_flex .productitem_price span {
    margin: 0 5rem;
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .products_flex .productitem_price span {
    font-size: 28rem;
  }
}

.rankingsliders .slick-slide {
  margin: auto 15px;
}
@media screen and (max-width: 1440px) {
  .rankingsliders .slick-slide {
    margin: auto 15rem;
  }
}
.rankingsliders .slick-prev,
.rankingsliders .slick-next {
  width: 57px;
  height: 57px;
  background: #242424 !important;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .rankingsliders .slick-prev,
  .rankingsliders .slick-next {
    width: 57rem;
    height: 57rem;
  }
}
.rankingsliders .slick-prev:hover,
.rankingsliders .slick-next:hover {
  background: #242424;
}
.rankingsliders .slick-prev::before,
.rankingsliders .slick-next::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 13px;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-prev.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .rankingsliders .slick-prev::before,
  .rankingsliders .slick-next::before {
    width: 8rem;
    height: 13rem;
  }
}
.rankingsliders .slick-prev::after,
.rankingsliders .slick-next::after {
  width: 0;
  height: 0;
}
.rankingsliders .slick-prev {
  left: -70px;
}
@media screen and (max-width: 1440px) {
  .rankingsliders .slick-prev {
    left: -70rem;
  }
}
.rankingsliders .slick-next {
  right: -70px;
}
@media screen and (max-width: 1440px) {
  .rankingsliders .slick-next {
    right: -70rem;
  }
}
.rankingsliders .slick-next::before {
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-next.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.products_grid {
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px 35px;
}
@media screen and (max-width: 1440px) {
  .products_grid {
    max-width: 1160rem;
    grid-gap: 50rem 35rem;
  }
}
@media screen and (max-width: 768px) {
  .products_grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40rem 20rem;
    max-width: 100%;
  }
}
.products_grid .productitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .products_grid .productitem {
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .products_grid .productitem {
    gap: 15rem;
  }
}
@media screen and (min-width: 768px) {
  .products_grid .productitem:hover img {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
.products_grid .productitem_img {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.products_grid .productitem_img img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.products_grid .productitem_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .products_grid .productitem_title {
    font-size: 15rem;
    line-height: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .products_grid .productitem_title {
    font-size: 26rem;
    line-height: 40rem;
  }
}
.products_grid .productitem_price {
  margin-top: 5px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .products_grid .productitem_price {
    margin-top: 5rem;
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .products_grid .productitem_price {
    margin-top: 10rem;
    font-size: 22rem;
  }
}
.products_grid .productitem_price span {
  font-size: 17px;
  line-height: 1;
  margin: 0 5px;
}
@media screen and (max-width: 1440px) {
  .products_grid .productitem_price span {
    margin: 0 5rem;
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .products_grid .productitem_price span {
    font-size: 28rem;
  }
}

.t-sec04 {
  position: relative;
}
.t-sec04_main {
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/top/gift-bg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .t-sec04_main {
    background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/top/gift-bg-sp.jpg);
  }
}
.t-sec04_main .gifttxt {
  max-width: 980px;
  margin: auto;
  padding: 90px 0 250px;
}
@media screen and (max-width: 1440px) {
  .t-sec04_main .gifttxt {
    max-width: 980rem;
    padding: 90rem 0 250rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04_main .gifttxt {
    max-width: 100%;
    padding: 380rem 75rem 330rem;
  }
}
.t-sec04_main .gifttxt .txt01 {
  display: flex;
  align-items: flex-end;
  gap: 35px;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-sec04_main .gifttxt .txt01 {
    font-size: 17rem;
    line-height: 20rem;
    gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04_main .gifttxt .txt01 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 28rem;
    line-height: 50rem;
    gap: 20rem;
  }
}
.t-sec04_main .gifttxt .txt01 .headtxt {
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: normal;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-sec04_main .gifttxt .txt01 .headtxt {
    font-size: 34rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04_main .gifttxt .txt01 .headtxt {
    font-size: 40rem;
  }
}
.t-sec04_main .gifttxt .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 42px;
  text-align: left;
  color: #fff;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .t-sec04_main .gifttxt .txt02 {
    font-size: 15rem;
    line-height: 42rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04_main .gifttxt .txt02 {
    margin-top: 60rem;
    font-size: 26rem;
    line-height: 60rem;
  }
}
.t-sec04 .giftproducts {
  margin-top: -190px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts {
    margin-top: -190rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts {
    margin-top: -250rem;
  }
}
.t-sec04 .giftproducts .ribonbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .ribonbox {
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .ribonbox {
    margin-bottom: 40rem;
  }
}
.t-sec04 .giftproducts .ribonbox span {
  position: relative;
}
.t-sec04 .giftproducts .ribonbox span::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #DF1E30;
  top: 50%;
  left: -80px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .ribonbox span::before {
    left: -80rem;
    width: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .ribonbox span::before {
    width: 80rem;
    left: -110rem;
  }
}
.t-sec04 .giftproducts .ribonbox span::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #DF1E30;
  top: 50%;
  right: -80px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .ribonbox span::after {
    width: 60rem;
    right: -80rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .ribonbox span::after {
    width: 80rem;
    right: -110rem;
  }
}
.t-sec04 .giftproducts .ribonbox img {
  max-width: 75px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .ribonbox img {
    max-width: 75rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .ribonbox img {
    max-width: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .products_grid {
    margin: 0 75rem;
  }
}
.t-sec04 .giftproducts .giftbox {
  max-width: 980px;
  margin: auto;
  margin-top: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .giftbox {
    max-width: 980rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .giftbox {
    max-width: 100%;
    margin: 0 40rem;
    margin-top: 60rem;
    flex-direction: column;
    align-items: center;
    gap: 60rem;
  }
}
.t-sec04 .giftproducts .giftbox_intro {
  border: 1px solid #d0d0d0;
  background: #fff;
  max-width: 640px;
  width: 100%;
  display: flex;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .t-sec04 .giftproducts .giftbox_intro:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .giftbox_intro {
    max-width: 640rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .giftbox_intro {
    max-width: 100%;
  }
}
.t-sec04 .giftproducts .giftbox_intro_img {
  max-width: 255px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .giftbox_intro_img {
    max-width: 255rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .giftbox_intro_img {
    max-width: 200rem;
    height: auto;
  }
}
.t-sec04 .giftproducts .giftbox_intro_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.t-sec04 .giftproducts .giftbox_intro_content {
  display: flex;
  align-items: center;
  padding: 0px 35px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .giftbox_intro_content {
    padding: 0 35rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .giftbox_intro_content {
    max-width: 470px;
    width: 100%;
    padding: 20rem;
  }
}
.t-sec04 .giftproducts .giftbox_intro_content .introtitle {
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .giftbox_intro_content .introtitle {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .giftbox_intro_content .introtitle {
    font-size: 26rem;
  }
}
.t-sec04 .giftproducts .giftbox_intro_content .introtxt {
  font-family: "Zen Kaku Gothic New";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #555;
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .t-sec04 .giftproducts .giftbox_intro_content .introtxt {
    margin-top: 15rem;
    line-height: 25rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec04 .giftproducts .giftbox_intro_content .introtxt {
    margin-top: 10rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}

.t-sec05 .seccontain {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .t-sec05 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05 .seccontain {
    max-width: 100%;
  }
}
.t-sec05_main {
  position: relative;
}
.t-sec05_main_title {
  position: absolute;
  top: -30px;
  right: 100px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width: 1440px) {
  .t-sec05_main_title {
    top: -30rem;
    right: 100rem;
    gap: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_main_title {
    right: 75rem;
    gap: 15rem;
    top: -40rem;
  }
}
.t-sec05_main_title .txt01 {
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-sec05_main_title .txt01 {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_main_title .txt01 {
    font-size: 26rem;
  }
}
.t-sec05_main_title .txt02 {
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .t-sec05_main_title .txt02 {
    font-size: 32rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_main_title .txt02 {
    font-size: 36rem;
    margin-top: 80rem;
  }
}
.t-sec05_main_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 42px;
  text-align: center;
  color: #242424;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .t-sec05_main_txt {
    margin-top: 60rem;
    font-size: 15rem;
    line-height: 42rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_main_txt {
    font-size: 26rem;
    line-height: 62rem;
    margin: 70rem 40rem 0;
    margin-left: auto;
    max-width: 480rem;
    text-align: left;
  }
}
.t-sec05_products {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .t-sec05_products {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_products {
    margin: 0 75rem;
    margin-top: 60rem;
  }
}
.t-sec05_products .morebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .t-sec05_products .morebtn {
    margin-top: 60rem;
  }
}
.t-sec05_manimg {
  position: absolute;
  bottom: 0;
  left: -35px;
  max-width: 227px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .t-sec05_manimg {
    max-width: 227rem;
    left: -35rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_manimg {
    bottom: 135rem;
    left: 40rem;
    max-width: 280rem;
    top: 320rem;
  }
}
.t-sec05_manimg_txt {
  margin-left: 15px;
  margin-right: -15px;
  background: #fff;
  border: 1px solid #d0d0d0;
  padding: 20px 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-sec05_manimg_txt {
    margin-left: 15rem;
    margin-right: -15rem;
    padding: 20rem 30rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .t-sec05_manimg_txt {
    margin: 0;
    padding: 20rem 12rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.t-sec05_manimg img {
  max-width: 170px;
  width: 100%;
  margin-top: -20px;
}
@media screen and (max-width: 1440px) {
  .t-sec05_manimg img {
    max-width: 170rem;
    margin-top: -20rem;
  }
}

.t-column {
  position: relative;
}
.t-column_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .t-column_title {
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_title {
    margin: 0 40rem;
  }
}
.t-column_title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 25px;
  background-color: #707070;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .t-column_title::after {
    bottom: 25rem;
  }
}
.t-column_title img {
  width: 20px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .t-column_title img {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_title img {
    width: 30rem;
  }
}
.t-column_title h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  color: #242424;
  padding: 0 180px;
  display: inline-block;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-column_title h2 {
    font-size: 30rem;
    padding: 0 180rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_title h2 {
    font-size: 40rem;
    padding: 0 60rem;
  }
}
.t-column_box {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .t-column_box {
    margin-top: 40rem;
  }
}
.t-column_box .columnslider_item {
  border: 1px solid #d0d0d0;
}
@media screen and (min-width: 768px) {
  .t-column_box .columnslider_item:hover img {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
.t-column_box .columnslider_item_img {
  position: relative;
  overflow: hidden;
}
.t-column_box .columnslider_item_img img {
  width: 100%;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider_item_img img {
    height: 208rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_box .columnslider_item_img img {
    height: 260rem;
  }
}
.t-column_box .columnslider_item_img .category {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #242424;
  padding: 0 15px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider_item_img .category {
    font-size: 14rem;
    padding: 0 15rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_box .columnslider_item_img .category {
    font-size: 22rem;
    padding: 5rem 15rem;
  }
}
.t-column_box .columnslider_item_content {
  border-top: none;
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider_item_content {
    padding: 25rem;
  }
}
.t-column_box .columnslider_item_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider_item_title {
    font-size: 16rem;
    line-height: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_box .columnslider_item_title {
    font-size: 26rem;
    line-height: 39rem;
  }
}
.t-column_box .columnslider_item_date {
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #8b8b8b;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider_item_date {
    font-size: 13rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_box .columnslider_item_date {
    font-size: 24rem;
    margin-top: 20rem;
  }
}
.t-column_box .columnslider_item_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: left;
  color: #242424;
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider_item_txt {
    font-size: 13rem;
    line-height: 23rem;
    margin-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .t-column_box .columnslider_item_txt {
    margin-top: 20rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.t-column_box .columnslider .slick-slide {
  margin: 0 18px;
  opacity: 0.4;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider .slick-slide {
    margin: 0 18rem;
  }
}
.t-column_box .columnslider .slick-slide.slick-active {
  opacity: 1;
}
.t-column_box .columnslider .slick-prev,
.t-column_box .columnslider .slick-next {
  width: 57px;
  height: 57px;
  background: #242424 !important;
  z-index: 1;
  top: 150px;
  transform: none;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider .slick-prev,
  .t-column_box .columnslider .slick-next {
    width: 57rem;
    height: 57rem;
    top: 150rem;
  }
}
.t-column_box .columnslider .slick-prev::before,
.t-column_box .columnslider .slick-next::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 13px;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-prev.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .t-column_box .columnslider .slick-prev::before,
  .t-column_box .columnslider .slick-next::before {
    width: 8rem;
    height: 13rem;
  }
}
.t-column_box .columnslider .slick-prev::after,
.t-column_box .columnslider .slick-next::after {
  width: 0;
  height: 0;
}
.t-column_box .columnslider .slick-prev {
  left: 0;
}
.t-column_box .columnslider .slick-next {
  right: 0;
}
.t-column_box .columnslider .slick-next::before {
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-next.png);
}

.p-giftsec {
  margin-top: 60px;
  background: linear-gradient(rgba(235, 242, 246, 0.9019607843) 0%, rgba(217, 228, 233, 0.9019607843) 100%);
}
@media screen and (max-width: 1440px) {
  .p-giftsec {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec {
    padding: 60rem 40rem;
  }
}
.p-giftsec .seccontain {
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .p-giftsec .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec .seccontain {
    max-width: 100%;
  }
}
.p-giftsec_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-giftsec_grid {
    grid-gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec_grid {
    grid-template-columns: 1fr;
    grid-gap: 55rem;
  }
}
@media screen and (min-width: 768px) {
  .p-giftsec a:hover {
    opacity: 0.6 !important;
  }
}
.p-giftsec__item {
  display: flex;
  align-items: center;
  background: #fff;
  transition: 0.3s;
}
.p-giftsec__item_img {
  max-width: 170px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .p-giftsec__item_img {
    max-width: 170rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec__item_img {
    max-width: 200rem;
  }
}
.p-giftsec__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-giftsec__item_content {
  max-width: 310px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 1440px) {
  .p-giftsec__item_content {
    max-width: 310rem;
    padding: 0 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec__item_content {
    max-width: 470rem;
  }
}
.p-giftsec__item_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-giftsec__item_title {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec__item_title {
    font-size: 26rem;
  }
}
.p-giftsec__item_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 22px;
  text-align: left;
  color: #555;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .p-giftsec__item_txt {
    font-size: 14rem;
    margin-top: 10rem;
    line-height: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftsec__item_txt {
    font-size: 24rem;
    line-height: 44rem;
    margin-top: 10rem;
  }
}

.footer {
  padding: 50px 40px 30px;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/footer-pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer {
    padding: 50rem 40rem 30rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 100rem 75rem;
    background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/footer-sp.jpg);
  }
}
.footer .seccontain {
  max-width: 1160px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .footer .seccontain {
    max-width: 1160rem;
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .seccontain {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_left {
  max-width: 255px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer_left {
    max-width: 255rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_left {
    max-width: 100%;
  }
}
.footer_logo {
  max-width: 165px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .footer_logo {
    max-width: 165rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_logo {
    max-width: 360rem;
    margin: 0;
  }
}
.footer_info {
  margin-top: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .footer_info {
    margin-top: 15rem;
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_info {
    margin-top: 40rem;
    font-size: 24rem;
  }
}
.footer_info .acess {
  margin-left: -5px;
}
@media screen and (max-width: 1440px) {
  .footer_info .acess {
    margin-left: -5rem;
  }
}
.footer_info .address {
  margin-top: 5px;
}
@media screen and (max-width: 1440px) {
  .footer_info .address {
    margin-top: 5rem;
  }
}
.footer_contactbox {
  margin-top: 10px;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 1440px) {
  .footer_contactbox {
    margin-top: 10rem;
    grid-gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbox {
    margin-top: 40rem;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30rem;
  }
}
.footer_contactbox_item .head {
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 11px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .footer_contactbox_item .head {
    font-size: 11rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbox_item .head {
    font-size: 24rem;
  }
}
.footer_contactbox_item a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .footer_contactbox_item a {
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbox_item a {
    font-size: 36rem;
  }
}
.footer_contactbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn {
    justify-content: flex-start;
    margin-top: 40rem;
  }
}
.footer_contactbtn a {
  display: inline-block;
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a {
    font-size: 26rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .footer_contactbtn a:hover::before {
    height: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .footer_contactbtn a:hover::before {
    height: calc(100% + 8rem);
  }
}
@media screen and (min-width: 768px) {
  .footer_contactbtn a:hover::after {
    height: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .footer_contactbtn a:hover::after {
    height: calc(100% + 8rem);
  }
}
@media screen and (min-width: 768px) {
  .footer_contactbtn a:hover span::before {
    width: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .footer_contactbtn a:hover span::before {
    width: calc(100% + 8rem);
  }
}
@media screen and (min-width: 768px) {
  .footer_contactbtn a:hover span::after {
    width: calc(100% + 8px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .footer_contactbtn a:hover span::after {
    width: calc(100% + 8rem);
  }
}
.footer_contactbtn a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.5px;
  height: calc(100% - 10px);
  background-color: #707070;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a::before {
    height: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a::before {
    height: calc(100% + 12rem);
  }
}
.footer_contactbtn a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0.5px;
  height: calc(100% - 10px);
  transition: 0.3s;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a::after {
    height: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a::after {
    height: calc(100% + 12rem);
  }
}
.footer_contactbtn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a span {
    padding: 10rem 50rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a span {
    padding: 25rem 60rem;
  }
}
.footer_contactbtn a span::before {
  position: absolute;
  content: "";
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  width: calc(100% - 10px);
  height: 0.5px;
  transition: 0.3s;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a span::before {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a span::before {
    width: calc(100% + 12rem);
  }
}
.footer_contactbtn a span::after {
  position: absolute;
  content: "";
  bottom: 0%;
  transform: translateX(-50%);
  left: 50%;
  width: calc(100% - 10px);
  height: 0.5px;
  transition: 0.3s;
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a span::after {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a span::after {
    width: calc(100% + 12rem);
  }
}
.footer_contactbtn a img {
  width: 17px;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .footer_contactbtn a img {
    width: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_contactbtn a img {
    width: 24rem;
  }
}
.footer_right {
  max-width: 800px;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .footer_right {
    max-width: 800rem;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_right {
    max-width: 100%;
  }
}
.footer_nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .footer_nav {
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35rem 70rem;
  }
}
.footer_nav .box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .footer_nav .box {
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav .box {
    flex-direction: column;
    justify-content: flex-start;
    gap: 35rem;
  }
}
.footer_nav .navlist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .footer_nav .navlist {
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav .navlist {
    gap: 35rem;
  }
}
.footer_nav .navlist li a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .footer_nav .navlist li a {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav .navlist li a {
    font-size: 24rem;
  }
}
@media screen and (min-width: 768px) {
  .footer_nav .navlist li a:hover {
    opacity: 0.8;
  }
}
.footer_copyright {
  margin-top: 50px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-align: left;
  color: #d8d8d8;
}
@media screen and (max-width: 1440px) {
  .footer_copyright {
    font-size: 11rem;
    margin-top: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    font-size: 22rem;
    margin-top: 100rem;
  }
}

.p-subfv {
  position: relative;
}
.p-subfv_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-subfv_box {
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 70rem;
  }
}
.p-subfv_leftbox {
  max-width: 760px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-subfv_leftbox {
    max-width: 760rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_leftbox {
    max-width: 675rem;
    margin: auto;
    margin-left: 0;
  }
}
.p-subfv_leftbox img,
.p-subfv_leftbox video {
  width: 100%;
  height: auto;
}
.p-subfv_rightbox {
  max-width: 295px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-subfv_rightbox {
    max-width: 295rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_rightbox {
    max-width: 550rem;
  }
}
.p-subfv_rightbox img {
  width: 100%;
  height: 630px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .p-subfv_rightbox img {
    height: 630rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_rightbox img {
    height: 285rem;
  }
}
.p-subfv_content {
  margin-top: 70px;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .p-subfv_content {
    margin-top: 70rem;
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_content {
    width: 100%;
    margin-top: 0;
    gap: 0;
  }
}
.p-subfv_title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .p-subfv_title {
    font-size: 30rem;
    gap: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_title {
    position: absolute;
    top: 30rem;
    left: 75rem;
    font-size: 40rem;
    gap: 15rem;
    letter-spacing: 0.2em;
  }
}
.p-subfv_title img {
  width: 20px;
}
@media screen and (max-width: 1440px) {
  .p-subfv_title img {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_title img {
    width: 28rem;
  }
}
.p-subfv_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.5;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
  margin-top: 45px;
}
@media screen and (max-width: 1440px) {
  .p-subfv_txt {
    font-size: 16rem;
    margin-top: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv_txt {
    margin-top: 0;
    font-size: 26rem;
    line-height: 62rem;
    writing-mode: unset;
    max-width: 510rem;
    width: 100%;
    margin: auto;
    margin-right: 40rem;
  }
}

.p-subfv02 {
  position: relative;
}
.p-subfv02_box {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(235, 242, 246, 0.5411764706), rgba(217, 228, 233, 0) 100%);
}
@media screen and (max-width: 768px) {
  .p-subfv02_box {
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 70rem;
  }
}
.p-subfv02_leftbox {
  max-width: 655px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_leftbox {
    max-width: 655rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_leftbox {
    max-width: 675rem;
    margin: auto;
    margin-left: 0;
  }
}
.p-subfv02_leftbox img,
.p-subfv02_leftbox video {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_leftbox img,
  .p-subfv02_leftbox video {
    height: 340rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_leftbox img,
  .p-subfv02_leftbox video {
    height: auto;
  }
}
.p-subfv02_rightbox {
  max-width: 230px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_rightbox {
    max-width: 230rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_rightbox {
    max-width: 550rem;
  }
}
.p-subfv02_rightbox img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_rightbox img {
    height: 340rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_rightbox img {
    height: auto;
  }
}
.p-subfv02_content {
  margin-top: 70px;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_content {
    margin-top: 70rem;
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_content {
    width: 100%;
    margin-top: 0;
    gap: 0;
  }
}
.p-subfv02_title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_title {
    font-size: 30rem;
    gap: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_title {
    position: absolute;
    top: 30rem;
    left: 75rem;
    font-size: 40rem;
    gap: 15rem;
    letter-spacing: 0.2em;
  }
}
.p-subfv02_title img {
  width: 20px;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_title img {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_title img {
    width: 28rem;
  }
}
.p-subfv02_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.5;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
  margin-top: 45px;
}
@media screen and (max-width: 1440px) {
  .p-subfv02_txt {
    font-size: 16rem;
    margin-top: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv02_txt {
    margin-top: 0;
    font-size: 26rem;
    line-height: 62rem;
    writing-mode: unset;
    max-width: 510rem;
    width: 100%;
    margin: auto;
    margin-right: 40rem;
  }
}
.p-subfv02_txt span {
  writing-mode: initial;
  line-height: 1;
}

.p-subfv03 {
  background: #ebf2f6;
}
.p-subfv03_content {
  max-width: 980px;
  width: 100%;
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 1440px) {
  .p-subfv03_content {
    max-width: 980rem;
    padding: 50rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv03_content {
    padding: 50rem 40rem;
  }
}
.p-subfv03_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-subfv03_title {
    gap: 10rem;
    font-size: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv03_title {
    gap: 20rem;
    font-size: 40rem;
  }
}
.p-subfv03_title img {
  width: 20px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .p-subfv03_title img {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-subfv03_title img {
    width: 30rem;
  }
}

.main .breadcrumb {
  max-width: 980px;
  margin: auto;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
@media screen and (max-width: 1440px) {
  .main .breadcrumb {
    max-width: 980rem;
    padding: 30rem 0;
  }
}
@media screen and (max-width: 768px) {
  .main .breadcrumb {
    padding: 30rem 40rem;
  }
}
.main .breadcrumb-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #707070;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .main .breadcrumb-item {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .main .breadcrumb-item {
    font-size: 24rem;
  }
}
.main .breadcrumb-item::after {
  content: "―";
  margin: auto 8px;
}
@media screen and (max-width: 1440px) {
  .main .breadcrumb-item::after {
    margin: auto 8rem;
  }
}
@media screen and (max-width: 768px) {
  .main .breadcrumb-item::after {
    margin: auto 10rem;
    content: "‒";
  }
}
.main .breadcrumb-item:last-child::after {
  content: "";
  margin: 0;
}
.main .breadcrumb-item span,
.main .breadcrumb-item a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #707070;
}
@media screen and (max-width: 1440px) {
  .main .breadcrumb-item span,
  .main .breadcrumb-item a {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .main .breadcrumb-item span,
  .main .breadcrumb-item a {
    font-size: 24rem;
  }
}

.s-about_sectitle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-about_sectitle h2 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-about_sectitle h2 {
    font-size: 26rem;
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about_sectitle h2 {
    align-items: flex-end;
    writing-mode: unset;
    text-align: right;
    letter-spacing: 0.01em;
    font-size: 36rem;
    line-height: 65rem;
  }
}
.s-about_sectitle .en {
  padding-top: 20px;
  position: relative;
  font-size: 16px;
  color: #a0a0a0;
}
@media screen and (max-width: 1440px) {
  .s-about_sectitle .en {
    padding-top: 20rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about_sectitle .en {
    font-size: 22rem;
    line-height: 1.5;
    padding: 0;
  }
}
.s-about_sectitle .en::before {
  content: "";
  width: 1px;
  left: 50%;
  top: 0;
  height: 16px;
  position: absolute;
  background-color: #a0a0a0;
}
@media screen and (max-width: 1440px) {
  .s-about_sectitle .en::before {
    height: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about_sectitle .en::before {
    width: 21rem;
    height: 1rem;
    top: 50%;
    left: -35rem;
  }
}

.about_content {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .about_content {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .about_content {
    margin: 0 35rem;
    margin-top: 60rem;
  }
}
.about_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .about_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .about_content .txt02 {
    text-align: left;
    font-size: 26rem;
    line-height: 63rem;
  }
}
.about_content .morebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .about_content .morebtn {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .about_content .morebtn {
    margin-top: 60rem;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .s-about01 {
    margin: 0 40rem;
  }
}
.s-about01 .seccontain {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-about01 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about01 .seccontain {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .s-about01 .s-about_sectitle {
    justify-content: flex-end;
    margin: 0 35rem;
  }
}
.s-about01_box {
  position: relative;
  margin-top: -70px;
}
@media screen and (max-width: 1440px) {
  .s-about01_box {
    margin-top: -70rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about01_box {
    margin-top: -30rem;
  }
}
.s-about01_box .manbox {
  position: absolute;
  bottom: -90px;
  left: 90px;
  width: 193px;
}
@media screen and (max-width: 1440px) {
  .s-about01_box .manbox {
    left: 90rem;
    bottom: -90rem;
    width: 193rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about01_box .manbox {
    bottom: -100rem;
    left: 35rem;
    width: 255rem;
  }
}
.s-about01_box .manbox_txt {
  border: 1px solid #d0d0d0;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
  padding: 15px 23px;
}
@media screen and (max-width: 1440px) {
  .s-about01_box .manbox_txt {
    padding: 15rem 23rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about01_box .manbox_txt {
    text-align: center;
    padding: 20rem 13rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-about01_box .manbox img {
  width: 170px;
  height: auto;
  margin: auto;
  margin-right: 0;
  margin-top: -15px;
}
@media screen and (max-width: 1440px) {
  .s-about01_box .manbox img {
    width: 170rem;
    margin-top: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about01_box .manbox img {
    margin: auto;
    margin-left: 20rem;
    margin-top: -20rem;
  }
}
.s-about01_img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .s-about01 .about_content {
    margin-top: 160rem;
  }
}

@media screen and (max-width: 768px) {
  .s-about02 {
    margin: 0 40rem;
  }
}
.s-about02 .seccontain {
  position: relative;
}
.s-about02 .s-about_sectitle {
  padding-top: 90px;
}
@media screen and (max-width: 1440px) {
  .s-about02 .s-about_sectitle {
    padding-top: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about02 .s-about_sectitle {
    margin: 0 35rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .s-about02 .s-about_sectitle h2 {
    align-items: flex-start;
    text-align: left;
  }
  .s-about02 .s-about_sectitle h2 .en {
    margin-left: 40rem;
  }
}
.s-about02_rightimg {
  position: absolute;
  left: 35px;
  top: 0;
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-about02_rightimg {
    left: 35rem;
    max-width: 440rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about02_rightimg {
    position: initial;
    max-width: 635rem;
    margin-top: 60rem;
  }
}
.s-about02_leftimg {
  position: absolute;
  top: 70px;
  right: 45px;
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-about02_leftimg {
    top: 70rem;
    right: 45rem;
    max-width: 340rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about02_leftimg {
    max-width: 250rem;
    top: 0;
    right: 0;
  }
}
.s-about02 .about_content {
  margin-top: 90px;
}
@media screen and (max-width: 1440px) {
  .s-about02 .about_content {
    margin-top: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about02 .about_content {
    margin: 0 35rem;
    margin-top: 60rem;
  }
}

@media screen and (max-width: 768px) {
  .s-about03 {
    margin-left: 45rem;
  }
}
.s-about03 .seccontain {
  position: relative;
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-about03 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .seccontain {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .s-about_sectitle {
    margin: 0 35rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .s-about_sectitle h2 {
    align-items: flex-start;
    text-align: left;
  }
  .s-about03 .s-about_sectitle h2 .en {
    margin-left: 40rem;
  }
}
.s-about03_box {
  margin-top: -180px;
}
@media screen and (max-width: 1440px) {
  .s-about03_box {
    margin-top: -180rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03_box {
    margin-top: 60rem;
  }
}
.s-about03_imgs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 1440px) {
  .s-about03_imgs {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03_imgs {
    gap: 20rem;
  }
}
.s-about03_imgs .itemimg:nth-child(2) {
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .s-about03_imgs .itemimg:nth-child(2) {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03_imgs .itemimg:nth-child(2) {
    margin-top: 30rem;
  }
}
.s-about03 .manbox {
  position: absolute;
  z-index: 2;
  bottom: 110px;
  left: -40px;
  width: 177px;
}
@media screen and (max-width: 1440px) {
  .s-about03 .manbox {
    bottom: 110rem;
    left: -40rem;
    width: 177rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .manbox {
    top: 0;
    right: 40rem;
    left: unset;
    bottom: unset;
    width: 235rem;
  }
}
.s-about03 .manbox_txt {
  border: 1px solid #d0d0d0;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
  padding: 15px 23px;
}
@media screen and (max-width: 1440px) {
  .s-about03 .manbox_txt {
    padding: 15rem 23rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .manbox_txt {
    text-align: center;
    padding: 20rem 13rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-about03 .manbox img {
  width: 170px;
  height: auto;
  margin: auto;
  margin-right: -15px;
  margin-top: -15px;
}
@media screen and (max-width: 1440px) {
  .s-about03 .manbox img {
    width: 170rem;
    margin-top: -15rem;
    margin-right: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .manbox img {
    margin: auto;
    margin-right: 0rem;
    margin-top: -20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-about03 .about_content {
    margin-right: 75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-productlist {
    margin: 0 75rem;
  }
}

.concept_sectitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .concept_sectitle {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .concept_sectitle {
    writing-mode: unset;
    text-align: right;
    font-size: 36rem;
    line-height: 1.8;
    margin-right: 75rem;
  }
}

.concept_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .concept_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .concept_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}

.s-concept01_box {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 95px;
}
@media screen and (max-width: 1440px) {
  .s-concept01_box {
    gap: 95rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept01_box {
    flex-direction: column;
    gap: 60rem;
  }
}
.s-concept01_img {
  max-width: 1010px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-concept01_img {
    max-width: 1010rem;
  }
}
.s-concept01 .concept_content {
  max-width: 1160px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-concept01 .concept_content {
    max-width: 1160rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept01 .concept_content {
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 60rem;
  }
}

.s-concept02_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .s-concept02_box {
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02_box {
    flex-direction: column;
  }
}
.s-concept02 .seccontain {
  position: relative;
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02 .seccontain {
    max-width: 100%;
  }
}
.s-concept02 .concept_sectitle {
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .concept_sectitle {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02 .concept_sectitle {
    position: absolute;
    top: 0;
    right: 70rem;
    margin-top: 120rem;
    margin-right: 0;
    writing-mode: vertical-rl;
    text-align: left;
  }
}
.s-concept02_main {
  max-width: 780px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-concept02_main {
    max-width: 780rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02_main {
    max-width: 100%;
  }
}
.s-concept02_img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .s-concept02_img {
    max-width: 475rem;
  }
}
.s-concept02 .manbox {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: -75px;
  width: 180px;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .manbox {
    bottom: -20rem;
    left: -75rem;
    width: 180rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02 .manbox {
    left: 40rem;
    bottom: -125rem;
    width: 182rem;
  }
}
.s-concept02 .manbox_txt {
  display: inline-block;
  border: 1px solid #d0d0d0;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
  padding: 15px 25px;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .manbox_txt {
    padding: 15rem 25rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02 .manbox_txt {
    text-align: center;
    padding: 20rem 13rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-concept02 .manbox img {
  width: 170px;
  height: auto;
  margin: auto;
  margin-right: -15px;
  margin-top: -15px;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .manbox img {
    width: 170rem;
    margin-top: -15rem;
    margin-right: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02 .manbox img {
    margin: auto;
    margin-top: -20rem;
  }
}
.s-concept02 .concept_content {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .concept_content {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-concept02 .concept_content {
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 200rem;
  }
}
.s-concept02 .concept_content .morebtn {
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-concept02 .concept_content .morebtn {
    margin-top: 40rem;
  }
}

.p-otherpages {
  position: relative;
}
.p-otherpages .seccontain {
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .p-otherpages .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-otherpages .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.p-otherpages_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-otherpages_box {
    grid-gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .p-otherpages_box {
    grid-gap: 20rem;
  }
}
.p-otherpages__item {
  position: relative;
  overflow: hidden;
}
.p-otherpages__item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  top: 0;
  left: 50%;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-otherpages__item::after {
    height: 50rem;
  }
}
@media screen and (min-width: 768px) {
  .p-otherpages__item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.p-otherpages__item_img img {
  transition: 0.5s;
}
.p-otherpages__item_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.p-otherpages__item_txt .en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .p-otherpages__item_txt .en {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .p-otherpages__item_txt .en {
    font-size: 20rem;
  }
}
.p-otherpages__item_txt .jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 29px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-otherpages__item_txt .jp {
    font-size: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .p-otherpages__item_txt .jp {
    font-size: 28rem;
  }
}

.story_sectitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .story_sectitle {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .story_sectitle {
    writing-mode: unset;
    text-align: right;
    font-size: 36rem;
    line-height: 1.8;
    margin-right: 75rem;
    letter-spacing: 0.2em;
  }
}

.storycontent .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .storycontent .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .storycontent .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}

.s-story01 {
  padding-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .s-story01 {
    padding-bottom: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01 {
    padding-bottom: 60rem;
  }
}
.s-story01 .seccontain {
  position: relative;
}
@media screen and (max-width: 768px) {
  .s-story01 .seccontain {
    padding: 0 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01 .story_sectitle {
    writing-mode: vertical-rl;
    text-align: left;
    margin-left: 80rem;
  }
}
.s-story01_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}
@media screen and (max-width: 1440px) {
  .s-story01_box {
    padding-top: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01_box {
    align-items: flex-start;
    padding-top: 140rem;
    gap: 90rem;
  }
}
.s-story01_rightimg {
  position: absolute;
  top: 0;
  right: 45px;
  max-width: 460px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-story01_rightimg {
    max-width: 460rem;
    right: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01_rightimg {
    max-width: 320rem;
    right: 40rem;
    top: 0;
  }
}
.s-story01_leftimg {
  position: absolute;
  left: 45px;
  top: 100px;
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-story01_leftimg {
    left: 45rem;
    top: 100rem;
    max-width: 470rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01_leftimg {
    max-width: 465rem;
    position: relative;
    left: unset;
    top: unset;
  }
}
.s-story01_content {
  margin-top: 90px;
}
@media screen and (max-width: 1440px) {
  .s-story01_content {
    margin-top: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01_content {
    margin: 0 35rem;
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01_content .txt02 {
    text-align: left;
  }
}
.s-story01 .manbox_txt {
  position: absolute;
  bottom: -25px;
  right: 190px;
  z-index: 2;
  display: inline-block;
  background: #fff;
  border: 1px solid #d0d0d0;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
  padding: 15px 25px;
}
@media screen and (max-width: 1440px) {
  .s-story01 .manbox_txt {
    padding: 15rem 25rem;
    font-size: 15rem;
    bottom: -25rem;
    right: 190rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01 .manbox_txt {
    padding: 20rem 15rem;
    font-size: 24rem;
    line-height: 43rem;
    right: -170rem;
    bottom: 40rem;
  }
}
.s-story01 .manbox .manimg {
  position: absolute;
  z-index: 3;
  right: 70px;
  bottom: -45px;
  max-width: 170px;
}
@media screen and (max-width: 1440px) {
  .s-story01 .manbox .manimg {
    max-width: 170rem;
    bottom: -45rem;
    right: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story01 .manbox .manimg {
    right: unset;
    left: 35rem;
    bottom: -70rem;
  }
}

.s-story02 .seccontain {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-story02 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story02 .seccontain {
    padding: 0 75rem;
    padding-top: 120rem;
    max-width: 100%;
  }
}
.s-story02 .seccontain::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 265px;
  background: linear-gradient(#ebf2f6 0%, #d9e4e9 100%);
  opacity: 0.6;
  left: 0;
  top: 220px;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .s-story02 .seccontain::after {
    height: 265rem;
    top: 220rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story02 .seccontain::after {
    height: 360rem;
    top: 0;
  }
}
.s-story02_box {
  max-width: 980px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .s-story02_box {
    max-width: 980rem;
    gap: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story02_box {
    flex-direction: column;
  }
}
.s-story02_img {
  max-width: 615px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-story02_img {
    max-width: 615rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story02_img {
    max-width: 100%;
  }
}
.s-story02_content {
  max-width: 305px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-story02_content {
    max-width: 305rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story02_content {
    max-width: 100%;
    margin-top: 0;
  }
}
.s-story02 .storycontent .txt02 {
  text-align: left;
}

.s-story03 .seccontain {
  position: relative;
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-story03 .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story03_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.s-story03 .story_sectitle {
  position: absolute;
  z-index: 2;
  top: -100px;
  right: 80px;
}
@media screen and (max-width: 1440px) {
  .s-story03 .story_sectitle {
    top: -100rem;
    right: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story03 .story_sectitle {
    position: relative;
    writing-mode: vertical-rl;
    top: unset;
    right: unset;
    text-align: left;
  }
}
.s-story03_imgs {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .s-story03_imgs {
    margin-top: -100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story03_imgs .leftimg {
    position: absolute;
    top: 30rem;
    left: 75rem;
    max-width: 240rem;
    width: 100%;
  }
}
.s-story03_content {
  margin-top: 80px;
}
@media screen and (max-width: 1440px) {
  .s-story03_content {
    margin-top: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story03_content {
    margin: 0 75rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story03_content .txt02 {
    text-align: left;
  }
}
.s-story03_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}
@media screen and (max-width: 1440px) {
  .s-story03_grid {
    margin-top: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .s-story03_grid {
    margin-top: 60rem;
  }
}

.commitment_sectitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .commitment_sectitle {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .commitment_sectitle {
    font-size: 36rem;
    line-height: 1;
    letter-spacing: 0.2em;
  }
}
.commitment_sectitle span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 45px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .commitment_sectitle span {
    font-size: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .commitment_sectitle span {
    font-size: 52rem;
  }
}

.commitment_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .commitment_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .commitment_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}

.s-commitment01_box {
  max-width: 1210px;
  margin: auto;
  margin-right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 150px;
}
@media screen and (max-width: 1440px) {
  .s-commitment01_box {
    gap: 150rem;
    max-width: 1210rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment01_box {
    max-width: 100%;
    padding-left: 40rem;
    gap: 65rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment01_box .commitment_sectitle {
    margin-top: 70rem;
  }
}
.s-commitment01_content {
  max-width: 1010px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-commitment01_content {
    max-width: 1010rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment01_content {
    max-width: 590rem;
  }
}
.s-commitment01_content .txt02 {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .s-commitment01_content .txt02 {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment01_content .txt02 {
    margin-top: 40rem;
    margin-right: 40rem;
  }
}

.s-commitment02 .seccontain {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-commitment02 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment02 .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.s-commitment02 .commitment_sectitle {
  position: relative;
  z-index: 2;
}
.s-commitment02_box {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.s-commitment02_content {
  margin-top: -100px;
}
@media screen and (max-width: 1440px) {
  .s-commitment02_content {
    margin-top: -100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment02_content {
    margin-top: -200rem;
  }
}
.s-commitment02_content .txt02 {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .s-commitment02_content .txt02 {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment02_content .txt02 {
    text-align: left;
    margin-top: 40rem;
    margin-left: 35rem;
    margin-right: 35rem;
  }
}

.s-commitment03_box {
  max-width: 1210px;
  margin: auto;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 150px;
}
@media screen and (max-width: 1440px) {
  .s-commitment03_box {
    gap: 150rem;
    max-width: 1210rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment03_box {
    max-width: 100%;
    padding-right: 40rem;
    gap: 65rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment03_box .commitment_sectitle {
    margin-top: 70rem;
  }
}
.s-commitment03_content {
  max-width: 1010px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-commitment03_content {
    max-width: 1010rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment03_content {
    max-width: 590rem;
  }
}
.s-commitment03_content .txt02 {
  max-width: 870px;
  margin: auto;
  margin-right: 0;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .s-commitment03_content .txt02 {
    max-width: 870rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-commitment03_content .txt02 {
    max-width: 100%;
    margin-top: 40rem;
    margin-left: 40rem;
  }
}

.s-biginners_sectitle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-biginners_sectitle h2 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-biginners_sectitle h2 {
    font-size: 26rem;
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners_sectitle h2 {
    align-items: flex-end;
    font-size: 36rem;
    line-height: 65rem;
  }
}

.biginners_content {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .biginners_content {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .biginners_content {
    margin: 0 35rem;
    margin-top: 60rem;
  }
}
.biginners_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .biginners_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .biginners_content .txt02 {
    text-align: left;
    font-size: 26rem;
    line-height: 63rem;
  }
}
.biginners_content .morebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .biginners_content .morebtn {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .biginners_content .morebtn {
    margin-top: 60rem;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .s-biginners01 {
    margin: 0 40rem;
  }
}
.s-biginners01 .seccontain {
  position: relative;
}
.s-biginners01 .s-biginners_sectitle {
  padding-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-biginners01 .s-biginners_sectitle {
    padding-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners01 .s-biginners_sectitle {
    margin: 0 35rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners01 .s-biginners_sectitle h2 {
    align-items: flex-start;
    text-align: left;
  }
  .s-biginners01 .s-biginners_sectitle h2 .en {
    margin-left: 40rem;
  }
}
.s-biginners01_rightimg {
  position: absolute;
  left: 35px;
  top: 0;
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners01_rightimg {
    left: 35rem;
    max-width: 440rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners01_rightimg {
    position: initial;
    max-width: 470rem;
    margin-top: 60rem;
  }
}
.s-biginners01_leftimg {
  position: absolute;
  top: 70px;
  right: 45px;
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners01_leftimg {
    top: 70rem;
    right: 45rem;
    max-width: 340rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners01_leftimg {
    max-width: 340rem;
    top: 0;
    right: 0;
  }
}
.s-biginners01 .biginners_content {
  margin-top: 70px;
}
@media screen and (max-width: 1440px) {
  .s-biginners01 .biginners_content {
    margin-top: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners01 .biginners_content {
    margin: 0 35rem;
    margin-top: 120rem;
  }
}

@media screen and (max-width: 768px) {
  .s-biginners05 {
    margin-left: 45rem;
  }
}
.s-biginners05 .seccontain {
  position: relative;
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-biginners05 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .seccontain {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .s-biginners_sectitle {
    margin: 0 35rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .s-biginners_sectitle h2 {
    align-items: flex-start;
    text-align: left;
    writing-mode: unset;
    letter-spacing: 0.05em;
  }
}
.s-biginners05_box {
  margin-top: -230px;
}
@media screen and (max-width: 1440px) {
  .s-biginners05_box {
    margin-top: -230rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05_box {
    margin-top: 40rem;
  }
}
.s-biginners05_imgs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 1440px) {
  .s-biginners05_imgs {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05_imgs {
    gap: 20rem;
  }
}
.s-biginners05_imgs .itemimg:nth-child(2) {
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .s-biginners05_imgs .itemimg:nth-child(2) {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05_imgs .itemimg:nth-child(2) {
    margin-top: 30rem;
  }
}
.s-biginners05 .manbox {
  position: absolute;
  z-index: 2;
  bottom: 110px;
  left: -40px;
  width: 177px;
}
@media screen and (max-width: 1440px) {
  .s-biginners05 .manbox {
    bottom: 110rem;
    left: -40rem;
    width: 177rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .manbox {
    top: 0;
    right: 40rem;
    left: unset;
    bottom: unset;
    width: 235rem;
  }
}
.s-biginners05 .manbox_txt {
  border: 1px solid #d0d0d0;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
  padding: 15px 23px;
}
@media screen and (max-width: 1440px) {
  .s-biginners05 .manbox_txt {
    padding: 15rem 23rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .manbox_txt {
    text-align: center;
    padding: 20rem 13rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-biginners05 .manbox img {
  width: 170px;
  height: auto;
  margin: auto;
  margin-right: -15px;
  margin-top: -15px;
}
@media screen and (max-width: 1440px) {
  .s-biginners05 .manbox img {
    width: 170rem;
    margin-top: -15rem;
    margin-right: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .manbox img {
    margin: auto;
    margin-right: 0rem;
    margin-top: -20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners05 .biginners_content {
    margin-right: 75rem;
  }
}

@media screen and (max-width: 768px) {
  .s-biginners02 {
    position: relative;
    z-index: 2;
  }
}
.s-biginners02 .seccontain {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .s-biginners02 .seccontain {
    position: initial;
  }
}
.s-biginners02 .seccontain::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 1100px;
  height: 220px;
  background: linear-gradient(#ebf2f6 0%, #d9e4e9 100%);
  opacity: 0.6;
  top: 15px;
  left: 0;
}
@media screen and (max-width: 1440px) {
  .s-biginners02 .seccontain::after {
    top: 15rem;
    width: 1100rem;
    height: 220rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02 .seccontain::after {
    width: 100%;
    height: 556rem;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02 {
    margin-top: 60rem;
  }
}
.s-biginners02_box {
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_box {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02_box {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.s-biginners02_title .en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  padding: 1px 13px;
  border-radius: 3px;
  background: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_title .en {
    font-size: 14rem;
    padding: 1rem 13rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02_title .en {
    font-size: 22rem;
    padding: 2rem 20rem;
  }
}
.s-biginners02_title .jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_title .jp {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02_title .jp {
    font-size: 38rem;
  }
}
.s-biginners02_flex {
  margin-top: 50px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 35px;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_flex {
    grid-gap: 35rem;
    margin-top: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02_flex {
    grid-template-columns: 1fr 1fr;
    margin-top: 30rem;
    gap: 20rem;
  }
}
.s-biginners02_flex .itemlink {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .s-biginners02_flex .itemlink:nth-child(3) {
    grid-column: 1/span 2;
  }
}
.s-biginners02_flex .itemlink::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  top: 0;
  left: 50%;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_flex .itemlink::after {
    height: 50rem;
  }
}
@media screen and (min-width: 768px) {
  .s-biginners02_flex .itemlink:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.s-biginners02_flex .itemlink_img img {
  transition: 0.5s;
}
.s-biginners02_flex .itemlink_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.s-biginners02_flex .itemlink_txt .en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_flex .itemlink_txt .en {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02_flex .itemlink_txt .en {
    font-size: 20rem;
  }
}
.s-biginners02_flex .itemlink_txt .jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-biginners02_flex .itemlink_txt .jp {
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners02_flex .itemlink_txt .jp {
    font-size: 28rem;
  }
}

.s-biginners03_box {
  max-width: 890px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .s-biginners03_box {
    max-width: 890rem;
    margin-top: 30rem;
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners03_box {
    align-items: flex-start;
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 80rem;
  }
}
.s-biginners03_img {
  max-width: 220px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners03_img {
    max-width: 220rem;
  }
}
.s-biginners03_content {
  max-width: 625px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners03_content {
    max-width: 625rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners03_content {
    max-width: 360rem;
  }
}
.s-biginners03_content .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners03_content .title {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners03_content .title {
    font-size: 32rem;
  }
}
.s-biginners03_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .s-biginners03_content .txt02 {
    margin-top: 20rem;
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners03_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}

.s-biginners04_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .s-biginners04_box {
    grid-template-columns: 1fr;
    padding: 0 75rem;
  }
}
.s-biginners04_item {
  position: relative;
}
.s-biginners04_item_title {
  background: rgba(255, 255, 255, 0.9490196078);
  padding: 20px 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  color: #242424;
  writing-mode: vertical-rl;
  position: absolute;
  top: 35px;
  right: 45px;
}
@media screen and (max-width: 1440px) {
  .s-biginners04_item_title {
    padding: 20rem 10rem;
    font-size: 22rem;
    top: 35rem;
    right: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners04_item_title {
    padding: 15rem 10rem;
    font-size: 32rem;
    top: 40rem;
    right: 40rem;
  }
}
.s-biginners04_item_txt {
  position: absolute;
  bottom: 50px;
  left: 65px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 38px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-biginners04_item_txt {
    bottom: 50rem;
    left: 65rem;
    font-size: 17rem;
    line-height: 38rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners04_item_txt {
    left: 40rem;
    bottom: 40rem;
    font-size: 26rem;
    line-height: 63rem;
  }
}

@media screen and (max-width: 768px) {
  .s-biginners06 .seccontain {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .s-biginners_sectitle {
    margin-top: 70rem;
    max-width: 200rem;
  }
}
.s-biginners06 .s-biginners_sectitle h2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  writing-mode: initial;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .s-biginners_sectitle h2 {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .s-biginners_sectitle h2 {
    height: 570rem;
  }
}
.s-biginners06 .s-biginners_sectitle h2 img {
  max-width: 78px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .s-biginners_sectitle h2 img {
    max-width: 78rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .s-biginners_sectitle h2 img {
    max-width: 105rem;
    height: auto;
    height: 35rem;
  }
}
.s-biginners06 .s-biginners_sectitle h2 span {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .s-biginners06 .s-biginners_sectitle h2 span {
    display: block;
    height: 500rem;
  }
}
.s-biginners06_box {
  max-width: 1210px;
  margin: auto;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 120px;
}
@media screen and (max-width: 1440px) {
  .s-biginners06_box {
    gap: 120rem;
    max-width: 1210rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06_box {
    max-width: 100%;
    padding-right: 40rem;
    gap: 60rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
  }
}
.s-biginners06_content {
  max-width: 1010px;
  width: 100%;
  margin-top: 0;
}
@media screen and (max-width: 1440px) {
  .s-biginners06_content {
    max-width: 1010rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06_content {
    max-width: 480rem;
    margin: 0;
  }
}
.s-biginners06_txt {
  max-width: 1160px;
  margin: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .s-biginners06_txt {
    max-width: 1160rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06_txt {
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 60rem;
  }
}
.s-biginners06_txt .txt02 {
  text-align: left;
}
.s-biginners06 .giftproducts {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .products_grid {
    margin: 0 75rem;
  }
}
.s-biginners06 .giftproducts .giftbox {
  max-width: 980px;
  margin: auto;
  margin-top: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts .giftbox {
    max-width: 980rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .giftbox {
    max-width: 100%;
    margin: 0 40rem;
    margin-top: 60rem;
    flex-direction: column;
    align-items: center;
    gap: 60rem;
  }
}
.s-biginners06 .giftproducts .giftbox_intro {
  border: 1px solid #d0d0d0;
  background: #fff;
  max-width: 640px;
  width: 100%;
  display: flex;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .s-biginners06 .giftproducts .giftbox_intro:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts .giftbox_intro {
    max-width: 640rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .giftbox_intro {
    max-width: 100%;
  }
}
.s-biginners06 .giftproducts .giftbox_intro_img {
  max-width: 255px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts .giftbox_intro_img {
    max-width: 255rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .giftbox_intro_img {
    max-width: 200rem;
    height: auto;
  }
}
.s-biginners06 .giftproducts .giftbox_intro_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-biginners06 .giftproducts .giftbox_intro_content {
  display: flex;
  align-items: center;
  padding: 0px 35px;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts .giftbox_intro_content {
    padding: 0 35rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .giftbox_intro_content {
    max-width: 470px;
    width: 100%;
    padding: 20rem;
  }
}
.s-biginners06 .giftproducts .giftbox_intro_content .introtitle {
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts .giftbox_intro_content .introtitle {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .giftbox_intro_content .introtitle {
    font-size: 26rem;
  }
}
.s-biginners06 .giftproducts .giftbox_intro_content .introtxt {
  font-family: "Zen Kaku Gothic New";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #555;
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .s-biginners06 .giftproducts .giftbox_intro_content .introtxt {
    margin-top: 15rem;
    line-height: 25rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners06 .giftproducts .giftbox_intro_content .introtxt {
    margin-top: 10rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}

.s-biginners07 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .s-biginners07 {
    padding-bottom: 60rem;
  }
}
.s-biginners07 .seccontain {
  max-width: 980px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners07 .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07 .seccontain {
    max-width: 100%;
    padding: 0 75rem;
  }
}
.s-biginners07_products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products {
    grid-gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products {
    grid-gap: 10rem;
  }
}
.s-biginners07_products__item {
  display: flex;
  align-items: flex-end;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item {
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20rem;
  }
}
.s-biginners07_products__item .itemimg {
  max-width: 235px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .itemimg {
    max-width: 235rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .itemimg {
    max-width: 100%;
  }
}
.s-biginners07_products__item .itemcontent {
  max-width: 215px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .itemcontent {
    max-width: 215rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .itemcontent {
    max-width: 100%;
    gap: 20rem;
  }
}
.s-biginners07_products__item .box {
  width: 100%;
}
.s-biginners07_products__item .itemtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .itemtitle {
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .itemtitle {
    font-size: 26rem;
  }
}
.s-biginners07_products__item .itemtxt {
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .itemtxt {
    font-size: 14rem;
    margin-top: 20rem;
    line-height: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .itemtxt {
    margin-top: 15rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-biginners07_products__item .itemprice {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: right;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .itemprice {
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .itemprice {
    font-size: 22rem;
  }
}
.s-biginners07_products__item .itemprice span {
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .itemprice span {
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .itemprice span {
    font-size: 28rem;
  }
}
.s-biginners07_products__item .itemlinkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-biginners07_products__item .morelink {
  position: relative;
  display: inline-block;
  padding: 10px 35px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #fff;
  background: rgba(36, 36, 36, 0.9019607843);
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .morelink {
    padding: 10rem 35rem;
    font-size: 16rem;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .morelink {
    font-size: 26rem;
    padding: 15rem 60rem;
    margin-top: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .s-biginners07_products__item .morelink:hover::after {
    width: 0;
  }
}
.s-biginners07_products__item .morelink::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .s-biginners07_products__item .morelink::after {
    width: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .s-biginners07_products__item .morelink::after {
    width: 38rem;
  }
}

.p-menuproducts .sec_contain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .p-menuproducts .sec_contain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-menuproducts .sec_contain {
    max-width: 100%;
    padding: 0 75rem;
  }
}
.p-menuproducts_list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-menuproducts_list {
    gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .p-menuproducts_list {
    gap: 40rem 20rem;
  }
}
.p-menuproducts__item {
  max-width: 303px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1440px) {
  .p-menuproducts__item {
    max-width: 303rem;
    gap: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-menuproducts__item {
    max-width: 290rem;
  }
}
@media screen and (min-width: 768px) {
  .p-menuproducts__item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.p-menuproducts__item_img {
  position: relative;
  overflow: hidden;
}
.p-menuproducts__item_img img {
  transition: 0.5s;
}
.p-menuproducts__item_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-menuproducts__item_title {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .p-menuproducts__item_title {
    font-size: 26rem;
  }
}

.p-giftproducts .sec_contain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .p-giftproducts .sec_contain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftproducts .sec_contain {
    max-width: 100%;
    padding: 0 75rem;
  }
}
.p-giftproducts_list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-giftproducts_list {
    gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftproducts_list {
    gap: 40rem 20rem;
  }
}
.p-giftproducts__item {
  max-width: 303px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1440px) {
  .p-giftproducts__item {
    max-width: 303rem;
    gap: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftproducts__item {
    max-width: 290rem;
  }
}
@media screen and (min-width: 768px) {
  .p-giftproducts__item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.p-giftproducts__item_img {
  position: relative;
  overflow: hidden;
}
.p-giftproducts__item_img img {
  transition: 0.5s;
}
.p-giftproducts__item_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-giftproducts__item_title {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .p-giftproducts__item_title {
    font-size: 26rem;
  }
}

.p-mainproducts .seccontain {
  max-width: 1160px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts .seccontain {
    max-width: 1160rem;
  }
}
.p-mainproducts .searchtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts .searchtitle {
    font-size: 16rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts .searchtitle {
    font-size: 26rem;
    padding: 0 75rem;
  }
}
.p-mainproducts_head {
  margin: 25px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head.bottom {
    justify-content: center;
  }
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head {
    margin: 25rem auto;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head {
    padding: 0 75rem;
    margin: 40rem auto;
  }
}
.p-mainproducts_head .sortsbox {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .sortsbox.pc_only {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .sortsbox {
    gap: 15rem;
  }
}
.p-mainproducts_head .sortsbox img {
  max-width: 20px;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .sortsbox img {
    max-width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .sortsbox img {
    max-width: 32rem;
  }
}
.p-mainproducts_head .sortsbox select {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  border: none;
  outline: none;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .sortsbox select {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .sortsbox select {
    font-size: 24rem;
  }
}
.p-mainproducts_head .pagerbox {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .pagerbox {
    gap: 35rem;
  }
}
.p-mainproducts_head .pagerbox .showcount {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .pagerbox .showcount {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .pagerbox .showcount {
    font-size: 24rem;
  }
}
.p-mainproducts_head .pagerbox .pagerlist {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .pagerbox .pagerlist.pc_only {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .pagerbox .pagerlist {
    gap: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .pagerbox .pagerlist {
    gap: 20rem;
  }
}
.p-mainproducts_head .pagerbox .pagerlist li a {
  display: flex;
  align-items: center;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #c1c1c1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .pagerbox .pagerlist li a {
    font-size: 13rem;
    padding: 7rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .pagerbox .pagerlist li a {
    font-size: 26rem;
    padding: 10rem 25rem;
  }
}
.p-mainproducts_head .pagerbox .pagerlist li a.prev, .p-mainproducts_head .pagerbox .pagerlist li a.next {
  border: none;
}
.p-mainproducts_head .pagerbox .pagerlist li a.prev img, .p-mainproducts_head .pagerbox .pagerlist li a.next img {
  filter: invert(1);
  max-width: 8px;
  opacity: 0.5;
}
@media screen and (max-width: 1440px) {
  .p-mainproducts_head .pagerbox .pagerlist li a.prev img, .p-mainproducts_head .pagerbox .pagerlist li a.next img {
    max-width: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mainproducts_head .pagerbox .pagerlist li a.prev img, .p-mainproducts_head .pagerbox .pagerlist li a.next img {
    max-width: 15rem;
  }
}
.p-mainproducts_head .pagerbox .pagerlist li a.current {
  background: #555;
  border-color: #555;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-mainproducts_list {
    padding: 0 75rem;
  }
}

.s-eatclub01_sectitle {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .s-eatclub01_sectitle {
    padding: 0 75rem;
  }
}
.s-eatclub01_sectitle h2 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_sectitle h2 {
    font-size: 26rem;
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_sectitle h2 {
    align-items: flex-end;
    writing-mode: unset;
    text-align: right;
    letter-spacing: 0.01em;
    font-size: 36rem;
    line-height: 65rem;
  }
}
.s-eatclub01_sectitle .en {
  padding-top: 20px;
  position: relative;
  font-size: 16px;
  color: #a0a0a0;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_sectitle .en {
    padding-top: 20rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_sectitle .en {
    font-size: 22rem;
    line-height: 1.5;
    padding: 0;
  }
}
.s-eatclub01_sectitle .en::before {
  content: "";
  width: 1px;
  left: 50%;
  top: 0;
  height: 16px;
  position: absolute;
  background-color: #a0a0a0;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_sectitle .en::before {
    height: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_sectitle .en::before {
    width: 21rem;
    height: 1rem;
    top: 50%;
    left: -35rem;
  }
}
.s-eatclub01_box {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 95px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_box {
    gap: 95rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_box {
    flex-direction: column;
    gap: 30rem;
  }
}
.s-eatclub01_img {
  position: relative;
  max-width: 1010px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_img {
    max-width: 1010rem;
  }
}
.s-eatclub01_content {
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_content {
    max-width: 800rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_content {
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 160rem;
  }
}
.s-eatclub01_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}
.s-eatclub01 .manimg {
  position: absolute;
  left: 115px;
  bottom: -30px;
  max-width: 165px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01 .manimg {
    left: 115rem;
    bottom: -30rem;
    max-width: 165rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01 .manimg {
    max-width: 255rem;
    left: 35rem;
    bottom: -120rem;
  }
}
.s-eatclub01 .manimg_txt {
  background: #fff;
  border: 1px solid #d0d0d0;
  padding: 20px 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01 .manimg_txt {
    padding: 20rem 30rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01 .manimg_txt {
    text-align: center;
    padding: 20rem 12rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-eatclub01 .manimg img {
  max-width: 170px;
  width: 100%;
  margin-left: -20px;
  margin-top: -20px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01 .manimg img {
    max-width: 170rem;
    margin-top: -20rem;
    margin-left: -20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01 .manimg img {
    margin-left: 20rem;
  }
}
.s-eatclub01_grid {
  max-width: 980px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-gap: 35px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_grid {
    max-width: 980rem;
    margin-top: 60rem;
    grid-gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_grid {
    grid-template-columns: 1fr;
    grid-gap: 50rem;
    padding: 0 75rem;
    margin-top: 120rem;
  }
}
.s-eatclub01_grid__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_grid__item {
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_grid__item {
    grid-gap: 30rem;
  }
}
.s-eatclub01_grid__item_head {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 20px 8px;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_grid__item_head {
    right: 25rem;
    padding: 20rem 8rem;
    font-size: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_grid__item_head {
    right: 30rem;
    padding: 15rem 10rem;
    font-size: 32rem;
  }
}
.s-eatclub01_grid__item_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub01_grid__item_txt {
    font-size: 16rem;
    line-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub01_grid__item_txt {
    font-size: 26rem;
    line-height: 62rem;
  }
}

.s-eatclub02_box {
  position: relative;
  margin: 0 60px;
  background: linear-gradient(to bottom, rgba(235, 242, 246, 0.5019607843) 0%, rgba(217, 228, 233, 0.5019607843) 100%);
  padding: 80px;
  padding-top: 30px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_box {
    padding: 80rem;
    padding-top: 30rem;
    margin: 0 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_box {
    padding: 35rem;
    margin: 0 40rem;
  }
}
.s-eatclub02_title h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 46px;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_title h2 {
    font-size: 26rem;
    line-height: 46rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_title h2 {
    font-size: 38rem;
    line-height: 60rem;
  }
}
.s-eatclub02_head {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  background: #242424;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_head {
    padding: 0 15rem;
    font-size: 14rem;
    top: -10rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_head {
    font-size: 22rem;
    line-height: 40rem;
    top: -20rem;
    padding: 0 20rem;
  }
}
.s-eatclub02_flow {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_flow {
    margin-top: 50rem;
    grid-gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_flow {
    grid-template-columns: 1fr;
    grid-gap: 80rem;
  }
}
.s-eatclub02_flowitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_flowitem {
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_flowitem {
    flex-direction: row;
    align-items: center;
    gap: 30rem;
  }
}
.s-eatclub02_flowitem::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 20px;
  right: -23px;
  top: 38%;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/eat-club/icon-flow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_flowitem::after {
    width: 13rem;
    height: 20rem;
    right: -23rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_flowitem::after {
    top: unset;
    bottom: -60rem;
    left: 50%;
    right: unset;
    transform: translateX(-50%) rotate(90deg);
    width: 20rem;
    height: 30rem;
  }
}
.s-eatclub02_flowitem:last-child::after {
  width: 0;
}
@media screen and (max-width: 768px) {
  .s-eatclub02_flowitem_img {
    max-width: 200rem;
    width: 100%;
  }
}
.s-eatclub02_flowitem_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub02_flowitem_txt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub02_flowitem_txt {
    max-width: 380rem;
    width: 100%;
    font-size: 26rem;
    line-height: 46rem;
  }
}

.s-eatclub03 .seccontain {
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03 .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03 .seccontain {
    padding: 0 75rem;
    max-width: 100%;
  }
}
.s-eatclub03 .mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03 .mt-80 {
    margin-top: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03 .mt-80 {
    margin-top: 90rem;
  }
}
.s-eatclub03_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_box {
    grid-gap: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_box {
    grid-template-columns: 1fr;
    grid-gap: 80rem;
  }
}
.s-eatclub03_box02 {
  max-width: 650px;
  width: 100%;
  margin: auto;
  margin-top: 45px;
  padding: 25px 50px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .s-eatclub03_box02:hover .itemimg img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_box02 {
    gap: 20rem;
    max-width: 650rem;
    padding: 25rem 50rem;
    border-radius: 5rem;
    margin-top: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_box02 {
    flex-direction: column;
    margin-top: 80rem;
    max-width: 100%;
    border-radius: 10rem;
    padding: 40rem 50rem;
    gap: 40rem;
  }
}
.s-eatclub03_box02 .itemcontent {
  max-width: 310px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_box02 .itemcontent {
    max-width: 310rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_box02 .itemcontent {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
}
.s-eatclub03_box02 .itemimg {
  max-width: 160px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_box02 .itemimg {
    max-width: 160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_box02 .itemimg {
    max-width: 210rem;
  }
}
.s-eatclub03_box02 .itemimg img {
  transition: 0.5s;
}
.s-eatclub03_box02 .itemhead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: #242424;
  padding: 3px 10px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_box02 .itemhead {
    font-size: 16rem;
    padding: 3rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_box02 .itemhead {
    font-size: 24rem;
  }
}
.s-eatclub03_box02 .itemtxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #242424;
  margin-top: 25px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_box02 .itemtxt {
    margin-top: 25rem;
    font-size: 16rem;
    line-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_box02 .itemtxt {
    margin-top: 30rem;
    font-size: 26rem;
    line-height: 46rem;
    text-align: center;
  }
}
.s-eatclub03_itembox_head .toptxt {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_head .toptxt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_head .toptxt {
    font-size: 24rem;
  }
}
.s-eatclub03_itembox_head .toptxt::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #bebebe;
  z-index: 1;
}
.s-eatclub03_itembox_head .toptxt span {
  position: relative;
  z-index: 2;
  padding-right: 35px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_head .toptxt span {
    padding-right: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_head .toptxt span {
    padding-right: 15rem;
  }
}
.s-eatclub03_itembox_head .bottomtxt {
  margin-top: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_head .bottomtxt {
    margin-top: 10rem;
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_head .bottomtxt {
    font-size: 38rem;
  }
}
.s-eatclub03_itembox_head .bottomtxt span {
  font-size: 28px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_head .bottomtxt span {
    font-size: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_head .bottomtxt span {
    font-size: 46rem;
  }
}
.s-eatclub03_itembox_head .bottomtxt span.green {
  color: #448367;
}
.s-eatclub03_itembox_head .bottomtxt span.brown {
  color: #D17519;
}
.s-eatclub03_itembox_content {
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_content {
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_content {
    margin-top: 40rem;
  }
}
@media screen and (min-width: 768px) {
  .s-eatclub03_itembox_content:hover .itemimg img {
    transform: scale(1.05);
  }
  .s-eatclub03_itembox_content.no-link:hover .itemimg img {
    transform: scale(1);
  }
}
.s-eatclub03_itembox_content .itemimg {
  position: relative;
  overflow: hidden;
}
.s-eatclub03_itembox_content .itemimg .headtxt {
  position: absolute;
  top: 20px;
  left: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: #242424;
  padding: 3px 10px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_content .itemimg .headtxt {
    top: 20rem;
    font-size: 16rem;
    padding: 3rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_content .itemimg .headtxt {
    top: 30rem;
    font-size: 24rem;
  }
}
.s-eatclub03_itembox_content .itemimg img {
  transition: 0.5s;
}
.s-eatclub03_itembox_content .itemcontent {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_content .itemcontent {
    font-size: 16rem;
    margin-top: 40rem;
    line-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_content .itemcontent {
    font-size: 26rem;
    line-height: 46rem;
    margin-top: 40rem;
  }
}
.s-eatclub03_itembox_content .itemcontent .imgtxt {
  position: absolute;
  top: -30px;
  right: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-align: left;
  color: #9f142a;
}
@media screen and (max-width: 1440px) {
  .s-eatclub03_itembox_content .itemcontent .imgtxt {
    top: -30rem;
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub03_itembox_content .itemcontent .imgtxt {
    font-size: 24rem;
    top: -30rem;
  }
}

.s-faqsec .seccontain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-faqsec .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec .seccontain {
    max-width: 100%;
    padding: 0 75rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec .seccontain.faqcontain {
    padding: 0 40rem;
  }
  .s-faqsec .seccontain.faqcontain .s-faqsec_item {
    padding-right: 20rem;
  }
}
.s-faqsec_toptxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_toptxt {
    margin-bottom: 40rem;
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_toptxt {
    margin-bottom: 50rem;
    font-size: 26rem;
    font-weight: 500;
  }
}
.s-faqsec_itembox {
  margin-bottom: 60px;
}
.s-faqsec_itembox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_itembox {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_itembox {
    margin-bottom: 80rem;
  }
}
.s-faqsec_itembox_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_itembox_title {
    margin-bottom: 10rem;
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_itembox_title {
    font-size: 30rem;
    margin-bottom: 20rem;
  }
}
.s-faqsec_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #242424;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_title {
    margin-bottom: 50rem;
    font-size: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_title {
    font-size: 38rem;
    margin-bottom: 30rem;
  }
}
.s-faqsec_item {
  padding: 25px 20px;
  border-top: 1px solid #dedede;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item {
    padding: 20rem 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item {
    padding: 30rem 20rem;
    padding-right: 0;
  }
}
.s-faqsec_item:last-child {
  border-bottom: 1px solid #dedede;
}
.s-faqsec_item_question {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_question {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item_question {
    gap: 30rem;
  }
}
.s-faqsec_item_question.active::before {
  transform: translateY(-50%) rotate(90deg);
}
.s-faqsec_item_question::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  width: 22px;
  height: 3px;
  background-color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_question::after {
    width: 22rem;
    height: 3rem;
  }
}
.s-faqsec_item_question::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 9.5px;
  width: 3px;
  height: 22px;
  background-color: #242424;
  transition: 0.1s;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_question::before {
    width: 3rem;
    height: 22rem;
    right: 9.5rem;
  }
}
.s-faqsec_item_question .q-txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 19px;
  line-height: 30px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_question .q-txt {
    font-size: 19rem;
    line-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item_question .q-txt {
    font-size: 29rem;
    line-height: 48rem;
  }
}
.s-faqsec_item_question .content {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #222;
  padding-right: 100px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_question .content {
    padding-right: 30rem;
    font-size: 15rem;
    line-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item_question .content {
    padding-right: 30rem;
    font-size: 26rem;
    line-height: 48rem;
  }
}
.s-faqsec_item_answer {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_answer {
    gap: 40rem;
    margin-top: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item_answer {
    gap: 30rem;
    margin-top: 30rem;
  }
}
.s-faqsec_item_answer .a-txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 19px;
  line-height: 27px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_answer .a-txt {
    font-size: 19rem;
    line-height: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item_answer .a-txt {
    line-height: 42rem;
    font-size: 29rem;
  }
}
.s-faqsec_item_answer .content {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 27px;
  text-align: left;
  color: #222;
  padding-right: 100px;
}
@media screen and (max-width: 1440px) {
  .s-faqsec_item_answer .content {
    font-size: 15rem;
    line-height: 27rem;
    padding-right: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-faqsec_item_answer .content {
    padding-right: 30rem;
    font-size: 26rem;
    line-height: 42rem;
  }
}

.s-eatclub04_box {
  padding: 120px 0;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/eat-club/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1440px) {
  .s-eatclub04_box {
    padding: 120rem 0;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub04_box {
    background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/eat-club/banner-bg-sp.jpg);
    padding: 100rem 0;
  }
}
.s-eatclub04_content_en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-eatclub04_content_en {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub04_content_en {
    font-size: 24rem;
  }
}
.s-eatclub04_content_jp {
  margin-top: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-eatclub04_content_jp {
    margin-top: 10rem;
    font-size: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub04_content_jp {
    font-size: 48rem;
  }
}
.s-eatclub04_content .registbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .s-eatclub04_content .registbtn {
    margin-top: 30rem;
  }
}
.s-eatclub04_content .registbtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 385px;
  width: 100%;
  gap: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  background: #9f142a;
  padding: 17px 10px;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .s-eatclub04_content .registbtn a {
    max-width: 385rem;
    gap: 30rem;
    font-size: 16rem;
    padding: 17rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub04_content .registbtn a {
    max-width: 580rem;
    padding: 25rem 10rem;
    font-size: 30rem;
    gap: 50rem;
  }
}
@media screen and (min-width: 768px) {
  .s-eatclub04_content .registbtn a:hover {
    background: #242424;
  }
}
.s-eatclub04_content .registbtn a img {
  max-width: 5px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .s-eatclub04_content .registbtn a img {
    max-width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-eatclub04_content .registbtn a img {
    max-width: 10rem;
  }
}

.s-trial01 .seccontain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
.s-trial01_grid {
  max-width: 980px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-gap: 35px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1440px) {
  .s-trial01_grid {
    max-width: 980rem;
    grid-gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial01_grid {
    grid-template-columns: 1fr;
    grid-gap: 60rem;
    padding: 0 75rem;
    margin-top: 120rem;
  }
}
.s-trial01_grid__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .s-trial01_grid__item {
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial01_grid__item {
    grid-gap: 30rem;
  }
}
.s-trial01_grid__item_head {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 20px 8px;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-trial01_grid__item_head {
    right: 25rem;
    padding: 20rem 8rem;
    font-size: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial01_grid__item_head {
    right: 30rem;
    padding: 15rem 10rem;
    font-size: 32rem;
  }
}
.s-trial01_grid__item_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-trial01_grid__item_txt {
    font-size: 15rem;
    line-height: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial01_grid__item_txt {
    font-size: 26rem;
    line-height: 63rem;
  }
}

@media screen and (max-width: 768px) {
  .s-trial02 {
    margin: 0 20rem;
    margin-top: 130rem;
  }
}
.s-trial02 .seccontain {
  position: relative;
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-trial02 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02 .seccontain {
    max-width: 100%;
  }
}
.s-trial02_sectitle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .s-trial02_sectitle {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 40rem;
  }
}
.s-trial02_sectitle h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-trial02_sectitle h2 {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02_sectitle h2 {
    writing-mode: unset;
    font-size: 36rem;
    line-height: 65rem;
  }
}
.s-trial02_sectitle h2 span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .s-trial02_sectitle h2 span {
    color: #242424;
  }
}
.s-trial02_box {
  margin-top: -255px;
}
@media screen and (max-width: 1440px) {
  .s-trial02_box {
    margin-top: -255rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02_box {
    margin-top: 60rem;
  }
}
.s-trial02_imgs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 1440px) {
  .s-trial02_imgs {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02_imgs {
    gap: 20rem;
  }
}
.s-trial02_imgs .itemimg:nth-child(2) {
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .s-trial02_imgs .itemimg:nth-child(2) {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02_imgs .itemimg:nth-child(2) {
    margin-top: 30rem;
  }
}
.s-trial02 .manbox {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: -40px;
  width: 177px;
}
@media screen and (max-width: 1440px) {
  .s-trial02 .manbox {
    bottom: 60rem;
    left: -40rem;
    width: 177rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02 .manbox {
    top: -130rem;
    right: 40rem;
    left: unset;
    bottom: unset;
    width: 235rem;
  }
}
.s-trial02 .manbox_txt {
  border: 1px solid #d0d0d0;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #242424;
  padding: 15px 23px;
}
@media screen and (max-width: 1440px) {
  .s-trial02 .manbox_txt {
    padding: 15rem 23rem;
    font-size: 15rem;
    line-height: 29rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02 .manbox_txt {
    text-align: center;
    padding: 20rem 13rem;
    font-size: 24rem;
    line-height: 44rem;
  }
}
.s-trial02 .manbox img {
  width: 170px;
  height: auto;
  margin: auto;
  margin-right: -15px;
  margin-top: -15px;
}
@media screen and (max-width: 1440px) {
  .s-trial02 .manbox img {
    width: 170rem;
    margin-top: -15rem;
    margin-right: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02 .manbox img {
    margin: auto;
    margin-right: 0rem;
    margin-top: -20rem;
  }
}
.s-trial02_content {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-trial02_content {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02_content {
    margin: 0 55rem;
    margin-top: 60rem;
  }
}
.s-trial02_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-trial02_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-trial02_content .txt02 {
    text-align: left;
    font-size: 26rem;
    line-height: 63rem;
  }
}

@media screen and (max-width: 768px) {
  .s-review .seccontain {
    padding: 0 40rem;
  }
}
.s-review_title h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1440px) {
  .s-review_title h2 {
    gap: 5rem;
  }
}
.s-review_title h2 .en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #9d9d9d;
}
@media screen and (max-width: 1440px) {
  .s-review_title h2 .en {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .s-review_title h2 .en {
    font-size: 22rem;
  }
}
.s-review_title h2 .jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-review_title h2 .jp {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-review_title h2 .jp {
    font-size: 30rem;
  }
}
.s-review_box {
  max-width: 980px;
  width: 100%;
  margin: auto;
  margin-top: 25px;
}
@media screen and (max-width: 1440px) {
  .s-review_box {
    max-width: 980rem;
    margin-top: 25rem;
  }
}
.s-review__item {
  padding: 30px 55px;
  background: rgba(244, 247, 248, 0.6);
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .s-review__item {
    padding: 30rem 55rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-review__item {
    padding: 35rem;
  }
}
.s-review__item:last-child {
  margin-bottom: 0;
}
.s-review__item_head {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .s-review__item_head {
    gap: 20rem;
  }
}
.s-review__item_head .viewer {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-review__item_head .viewer {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .s-review__item_head .viewer {
    font-size: 26rem;
  }
}
.s-review__item_txt {
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-review__item_txt {
    margin-top: 20rem;
    font-size: 14rem;
    line-height: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-review__item_txt {
    font-size: 26rem;
    line-height: 42rem;
    margin-top: 30rem;
  }
}

.s-store01_box {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 95px;
}
@media screen and (max-width: 1440px) {
  .s-store01_box {
    gap: 95rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_box {
    gap: 50rem;
    padding-right: 40rem;
  }
}
.s-store01_img {
  max-width: 1010px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-store01_img {
    max-width: 1010rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_img {
    max-width: 550rem;
  }
}
.s-store01_sectitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-store01_sectitle {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_sectitle {
    font-size: 36rem;
    line-height: 1.7;
    margin-top: 50rem;
  }
}
.s-store01_sectitle .dot {
  font-size: 14px;
  margin: 5px auto;
}
@media screen and (max-width: 1440px) {
  .s-store01_sectitle .dot {
    font-size: 14rem;
    margin: 5rem auto;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_sectitle .dot {
    font-size: 20rem;
  }
}
.s-store01_content {
  max-width: 1160px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-store01_content {
    max-width: 1160rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_content {
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 60rem;
  }
}
.s-store01_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-store01_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}
.s-store01_content .name {
  max-width: 150px;
  width: 100%;
  margin: auto;
  margin-right: 0;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .s-store01_content .name {
    max-width: 150rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_content .name {
    max-width: 240rem;
    margin-top: 30rem;
  }
}
.s-store01_content .box {
  max-width: 870px;
  width: 100%;
  margin-left: 0;
}
@media screen and (max-width: 1440px) {
  .s-store01_content .box {
    max-width: 870rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store01_content .box {
    max-width: 100%;
  }
}

.s-store02 .seccontain {
  position: relative;
  max-width: 1160px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-store02 .seccontain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02 .seccontain {
    max-width: 100%;
    padding-left: 75rem;
  }
}
.s-store02_box {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .s-store02_box {
    gap: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_box {
    gap: 0;
  }
}
.s-store02_left {
  max-width: 370px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-store02_left {
    max-width: 370rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left {
    max-width: 100%;
  }
}
.s-store02_left .storeinfo {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storeinfo {
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storeinfo {
    margin-bottom: 30rem;
  }
}
.s-store02_left .storeinfo:last-child {
  margin-bottom: 0;
}
.s-store02_left .storeinfo_head {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storeinfo_head {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storeinfo_head {
    font-size: 28rem;
  }
}
.s-store02_left .storeinfo_txt {
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storeinfo_txt {
    font-size: 15rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storeinfo_txt {
    font-size: 26rem;
    line-height: 36rem;
    margin-top: 15rem;
  }
}
.s-store02_left .storecontact {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storecontact {
    margin-top: 40rem;
  }
}
.s-store02_left .storecontact_item {
  margin-bottom: 15px;
  background: linear-gradient(rgba(235, 242, 246, 0.4784313725), rgba(216, 227, 233, 0.5019607843) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storecontact_item {
    max-width: 300rem;
    padding: 15rem;
    gap: 20rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storecontact_item {
    max-width: 400rem;
    padding: 15rem 30rem;
    justify-content: flex-start;
    gap: 15rem;
    margin-bottom: 10rem;
  }
}
.s-store02_left .storecontact_item img {
  width: 40px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storecontact_item img {
    width: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storecontact_item img {
    width: 65rem;
  }
}
.s-store02_left .storecontact_item_content .txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #242424;
  line-height: 1.5;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storecontact_item_content .txt {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storecontact_item_content .txt {
    font-size: 24rem;
  }
}
.s-store02_left .storecontact_item_content .number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-store02_left .storecontact_item_content .number {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_left .storecontact_item_content .number {
    font-size: 32rem;
  }
}
.s-store02_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .s-store02_title {
    margin-bottom: 30rem;
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_title {
    margin-top: 50rem;
    font-size: 34rem;
    margin-bottom: 40rem;
  }
}
.s-store02_right {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .s-store02_right {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_right {
    gap: 0;
  }
}
.s-store02_right .img01 {
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .s-store02_right .img01 {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_right .img01 {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.s-store02_right .img01 img {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-store02_right .img01 img {
    max-width: 360rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_right .img01 img {
    max-width: 300rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_right .img02 {
    position: absolute;
    right: 0;
    top: 410rem;
  }
}
.s-store02_right .img02 img {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-store02_right .img02 img {
    max-width: 360rem;
  }
}
@media screen and (max-width: 768px) {
  .s-store02_right .img02 img {
    max-width: 230rem;
  }
}

.storemap {
  max-width: 980px;
  margin: auto;
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 1440px) {
  .storemap {
    margin-top: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .storemap {
    max-width: 100%;
    margin-top: 20rem;
    padding-right: 75rem;
  }
}
.storemap iframe {
  width: 100%;
  height: 675px;
}
@media screen and (max-width: 1440px) {
  .storemap iframe {
    height: 675rem;
  }
}
@media screen and (max-width: 768px) {
  .storemap iframe {
    height: 460rem;
  }
}

.s-contract .seccontain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-contract .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-contract .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.s-contract__item {
  border-top: 1px solid #ccc;
  padding: 25px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1440px) {
  .s-contract__item {
    padding: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-contract__item {
    padding: 30rem;
    flex-direction: column;
    gap: 10rem;
  }
}
.s-contract__item:last-child {
  border-bottom: 1px solid #ccc;
}
.s-contract__item_head {
  min-width: 200px;
  max-width: 200px;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-contract__item_head {
    min-width: 20rem;
    max-width: 200rem;
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-contract__item_head {
    max-width: 100%;
    min-width: auto;
    font-size: 26rem;
  }
}
.s-contract__item_content {
  width: 100%;
}
.s-contract__item_content .txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-contract__item_content .txt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-contract__item_content .txt {
    font-size: 26rem;
    line-height: 60rem;
  }
}
.s-contract__item_content .txt02 {
  text-indent: -1em;
  padding-left: 1em;
}
.s-contract__item_content a {
  text-decoration: underline;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-contract__item_content a {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-contract__item_content a {
    font-size: 26rem;
    line-height: 60rem;
  }
}

.s-privacy .seccontain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-privacy .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.s-privacy_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .s-privacy_title {
    margin-bottom: 30rem;
    font-size: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_title {
    font-size: 34rem;
    margin-bottom: 40rem;
  }
}
.s-privacy_topbox {
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .s-privacy_topbox {
    margin-bottom: 40rem;
  }
}
.s-privacy_itembox {
  padding: 40px 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 1440px) {
  .s-privacy_itembox {
    padding: 40rem 0;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_itembox {
    padding: 80rem 0;
  }
}
.s-privacy_itembox_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .s-privacy_itembox_title {
    font-size: 17rem;
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_itembox_title {
    font-size: 30rem;
    margin-bottom: 40rem;
  }
}
.s-privacy_box .numtxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: left;
  color: #242424;
  text-indent: -2.1em;
  padding-left: 2.1em;
}
@media screen and (max-width: 1440px) {
  .s-privacy_box .numtxt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_box .numtxt {
    font-size: 26rem;
    line-height: 62rem;
  }
}
.s-privacy_box .txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-privacy_box .txt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_box .txt {
    font-size: 26rem;
    line-height: 62rem;
  }
}
.s-privacy_box .list li {
  list-style: disc;
  margin-left: 30px;
}
@media screen and (max-width: 1440px) {
  .s-privacy_box .list li {
    margin-left: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_box .list li {
    margin-left: 55rem;
  }
}
.s-privacy_box .list li::marker {
  font-size: 8px;
}
.s-privacy_box .numlist li {
  list-style: decimal;
  margin-left: 50px;
}
@media screen and (max-width: 1440px) {
  .s-privacy_box .numlist li {
    margin-left: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_box .numlist li {
    margin-left: 80rem;
  }
}
.s-privacy_box .morebtn {
  margin-top: 25px;
}
@media screen and (max-width: 1440px) {
  .s-privacy_box .morebtn {
    margin-top: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-privacy_box .morebtn {
    margin-top: 30rem;
  }
}

.s-company .seccontain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-company .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.s-company_itembox {
  margin-bottom: 70px;
}
.s-company_itembox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .s-company_itembox {
    margin-bottom: 70rem;
  }
}
.s-company_itembox_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .s-company_itembox_title {
    margin-bottom: 30rem;
    font-size: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company_itembox_title {
    font-size: 34rem;
    margin-bottom: 40rem;
  }
}
.s-company .storemap {
  margin-top: 0;
  padding-right: 0;
}
.s-company .storetime {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-company .storetime {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .storetime {
    font-size: 26rem;
  }
}
.s-company .storecontact {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .s-company .storecontact {
    gap: 35rem;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .storecontact {
    flex-direction: column;
    gap: 10rem;
  }
}
.s-company .storecontact_item {
  margin-bottom: 15px;
  background: linear-gradient(rgba(235, 242, 246, 0.4784313725), rgba(216, 227, 233, 0.5019607843) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-company .storecontact_item {
    max-width: 395rem;
    padding: 15rem;
    gap: 20rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .storecontact_item {
    max-width: 400rem;
    padding: 15rem 30rem;
    justify-content: flex-start;
    gap: 15rem;
    margin-bottom: 10rem;
  }
}
.s-company .storecontact_item img {
  width: 40px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .s-company .storecontact_item img {
    width: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .storecontact_item img {
    width: 65rem;
  }
}
.s-company .storecontact_item_content .txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #242424;
  line-height: 1.5;
}
@media screen and (max-width: 1440px) {
  .s-company .storecontact_item_content .txt {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .storecontact_item_content .txt {
    font-size: 24rem;
  }
}
.s-company .storecontact_item_content .number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-company .storecontact_item_content .number {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .storecontact_item_content .number {
    font-size: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .s-company .company-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.s-voicefv_box {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 95px;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_box {
    gap: 95rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_box {
    gap: 50rem;
    padding-right: 40rem;
    margin-bottom: 30rem;
  }
}
.s-voicefv_img {
  max-width: 1010px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_img {
    max-width: 1010rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_img {
    max-width: 550rem;
  }
}
.s-voicefv_sectitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_sectitle {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_sectitle {
    font-size: 36rem;
    line-height: 1.7;
    margin-top: 50rem;
  }
}
.s-voicefv_content {
  max-width: 780px;
  margin: auto;
  margin-right: 0;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_content {
    max-width: 780rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_content {
    max-width: 100%;
    margin-left: 40rem;
  }
}
.s-voicefv_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}
.s-voicefv_content .name {
  max-width: 150px;
  width: 100%;
  margin: auto;
  margin-right: 0;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_content .name {
    max-width: 150rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_content .name {
    max-width: 240rem;
    margin-top: 30rem;
  }
}
.s-voicefv_content .box {
  max-width: 870px;
  width: 100%;
  margin-left: 0;
}
@media screen and (max-width: 1440px) {
  .s-voicefv_content .box {
    max-width: 870rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voicefv_content .box {
    max-width: 100%;
  }
}

.s-voices_contain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-voices_contain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices_contain {
    max-width: 100%;
    padding: 0 75rem;
  }
}
.s-voices_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px 35px;
}
@media screen and (max-width: 1440px) {
  .s-voices_list {
    grid-gap: 60rem 35rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices_list {
    grid-template-columns: 1fr;
    grid-gap: 100rem;
  }
}
.s-voices__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .s-voices__item {
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 30rem;
  }
}
.s-voices__item_top {
  position: relative;
  z-index: 1;
  border: 1px solid #d0d0d0;
  max-height: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .s-voices__item_top {
    height: auto;
    max-height: none;
    max-width: 350rem;
    width: 100%;
  }
}
.s-voices__item_top::after {
  position: absolute;
  content: "";
  left: 30px;
  bottom: -12px;
  width: 21px;
  height: 17px;
  background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/voice/shape.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .s-voices__item_top::after {
    height: 17rem;
    width: 21rem;
    bottom: -12rem;
    left: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item_top::after {
    height: 25rem;
    width: 35rem;
    bottom: unset;
    left: unset;
    top: 40rem;
    right: -24rem;
    transform: rotate(-90deg);
  }
}
.s-voices__item_top .head {
  position: absolute;
  z-index: 3;
  background: #333;
  top: -10px;
  left: 50px;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  padding: 0 15px;
}
@media screen and (max-width: 1440px) {
  .s-voices__item_top .head {
    top: -10rem;
    left: 50rem;
    font-size: 13rem;
    padding: 0 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item_top .head {
    font-size: 24rem;
    padding: 0 20rem;
    left: 30rem;
    top: -20rem;
  }
}
.s-voices__item_top .customerimg {
  float: right;
  width: 70px;
  background-color: #E6E6E6;
  border-radius: 50%;
  margin-top: -30px;
}
@media screen and (max-width: 1440px) {
  .s-voices__item_top .customerimg {
    width: 70rem;
    margin-top: -30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item_top .customerimg {
    float: none;
    position: absolute;
    top: -30rem;
    right: 10rem;
    width: 120rem;
  }
}
.s-voices__item_top .content {
  padding: 17px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .s-voices__item_top .content {
    padding: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item_top .content {
    padding: 25rem;
    padding-top: 70rem;
  }
}
.s-voices__item_top .content::after {
  clear: both;
  content: "";
}
.s-voices__item_top .content .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: left;
  color: #242424;
  min-height: 45px;
}
@media screen and (max-width: 1440px) {
  .s-voices__item_top .content .title {
    font-size: 14rem;
    line-height: 23rem;
    min-height: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item_top .content .title {
    font-size: 26rem;
    line-height: 39rem;
    min-height: auto;
  }
}
.s-voices__item_top .content .txt {
  margin-top: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-voices__item_top .content .txt {
    margin-top: 10rem;
    font-size: 13rem;
    line-height: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item_top .content .txt {
    font-size: 24rem;
    line-height: 40rem;
  }
}
.s-voices__item .productitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-voices__item .productitem {
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item .productitem {
    max-width: 220rem;
    width: 100%;
    gap: 15rem;
  }
}
@media screen and (min-width: 768px) {
  .s-voices__item .productitem:hover img {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
.s-voices__item .productitem_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.s-voices__item .productitem_img img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.s-voices__item .productitem_content {
  max-width: 100%;
  width: 100%;
}
.s-voices__item .productitem_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-voices__item .productitem_title {
    font-size: 15rem;
    line-height: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item .productitem_title {
    font-size: 26rem;
    line-height: 40rem;
  }
}
.s-voices__item .productitem_price {
  margin-top: 5px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-voices__item .productitem_price {
    margin-top: 5rem;
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item .productitem_price {
    margin-top: 10rem;
    font-size: 22rem;
  }
}
.s-voices__item .productitem_price span {
  font-size: 17px;
  line-height: 1;
  margin: 0 5px;
}
@media screen and (max-width: 1440px) {
  .s-voices__item .productitem_price span {
    margin: 0 5rem;
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .s-voices__item .productitem_price span {
    font-size: 28rem;
  }
}

.s-guide_contain {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-guide_contain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_contain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.s-guide_itembox {
  margin-bottom: 70px;
}
.s-guide_itembox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox {
    margin-bottom: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox {
    margin-bottom: 80rem;
  }
}
.s-guide_itembox_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox_title {
    margin-bottom: 30rem;
    font-size: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox_title {
    font-size: 34rem;
    margin-bottom: 30rem;
  }
}
.s-guide_itembox_content .guidebox {
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox_content .guidebox {
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox_content .guidebox {
    margin-top: 20rem;
  }
}
.s-guide_itembox_content .guidebox_item {
  background: rgba(235, 242, 246, 0.3490196078);
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .s-guide_itembox_content .guidebox_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.s-guide_itembox_content .guidebox_item:last-child {
  border-bottom: 1px solid #ccc;
}
.s-guide_itembox_content .guidebox_item_head {
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  max-width: 250px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox_content .guidebox_item_head {
    padding: 20rem;
    font-size: 14rem;
    min-width: 250rem;
    max-width: 250rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox_content .guidebox_item_head {
    max-width: 100%;
    min-width: auto;
    font-size: 26rem;
    padding: 20rem 35rem;
    justify-content: flex-start;
  }
}
.s-guide_itembox_content .guidebox_item_head.head02 {
  max-width: 320px;
  min-width: 320px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox_content .guidebox_item_head.head02 {
    max-width: 320rem;
    min-width: 320rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox_content .guidebox_item_head.head02 {
    max-width: 100%;
    min-width: auto;
  }
}
.s-guide_itembox_content .guidebox_item_content {
  background-color: #fff;
  padding: 25px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox_content .guidebox_item_content {
    padding: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox_content .guidebox_item_content {
    padding: 30rem 35rem;
  }
}
.s-guide_itembox .cardimg {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox .cardimg {
    max-width: 250rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox .cardimg {
    max-width: 100%;
  }
}
.s-guide_itembox .txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox .txt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox .txt {
    font-size: 26rem;
    line-height: 62rem;
  }
}
.s-guide_itembox .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox .txt02 {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox .txt02 {
    font-size: 26rem;
    line-height: 62rem;
  }
}
.s-guide_itembox .list {
  margin-left: 25px;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox .list {
    margin-left: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox .list {
    margin-left: 40rem;
  }
}
.s-guide_itembox .list li {
  position: relative;
}
.s-guide_itembox .list li::before {
  position: absolute;
  content: "■";
  top: 7px;
  color: #a0a0a0;
  font-size: 10px;
  left: -20px;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox .list li::before {
    font-size: 10rem;
    top: 7rem;
    left: -20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-guide_itembox .list li::before {
    font-size: 18rem;
    left: -30rem;
    top: 3rem;
  }
}
.s-guide_itembox .dotlist {
  margin-left: 20px;
}
@media screen and (max-width: 1440px) {
  .s-guide_itembox .dotlist {
    margin-left: 20rem;
  }
}
.s-guide_itembox .dotlist li {
  list-style: disc;
}
.s-guide_itembox .col-red {
  color: #9f142a;
}

.product {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .product {
    margin-top: 150rem;
  }
}

.p-recentproducts_box {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .p-recentproducts_box {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recentproducts_box {
    padding: 0 75rem;
  }
}

.p-review .seccontain {
  max-width: 980px;
}
@media screen and (max-width: 1440px) {
  .p-review .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.p-review_title {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .p-review_title {
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review_title {
    margin-top: 40rem;
  }
}
.p-review_title .en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #9d9d9d;
}
@media screen and (max-width: 1440px) {
  .p-review_title .en {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review_title .en {
    font-size: 22rem;
  }
}
.p-review_title .jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-review_title .jp {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review_title .jp {
    font-size: 30rem;
  }
}
.p-review_itembox {
  margin-bottom: 15px;
  padding: 30px 55px;
  background: rgba(243, 246, 247, 0.6);
}
@media screen and (max-width: 1440px) {
  .p-review_itembox {
    margin-bottom: 15rem;
    padding: 30rem 55rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review_itembox {
    padding: 35rem;
    margin-bottom: 10rem;
  }
}
.p-review_itembox:last-child {
  margin-bottom: 0;
}
.p-review_itembox_head {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .p-review_itembox_head {
    gap: 20rem;
  }
}
.p-review_itembox_head .reviewer {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-review_itembox_head .reviewer {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review_itembox_head .reviewer {
    font-size: 26rem;
  }
}
.p-review_itembox_txt {
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-review_itembox_txt {
    margin-top: 20rem;
    font-size: 14rem;
    line-height: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review_itembox_txt {
    font-size: 26rem;
    line-height: 42rem;
    margin-top: 30rem;
  }
}

.p-productdetail .seccontain {
  max-width: 980px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .seccontain {
    max-width: 100%;
  }
}
.p-productdetail_main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_main {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_main {
    flex-direction: column;
    gap: 40rem;
  }
}
.p-productdetail_imgs {
  max-width: 450px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_imgs {
    max-width: 450rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_imgs {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_imgs .product_navimgs {
    padding: 0 40rem;
  }
}
.p-productdetail_imgs .product_navimgs .slick-slide {
  opacity: 0.8;
  margin: auto 5px;
}
.p-productdetail_imgs .product_navimgs .slick-slide.slick-current {
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_imgs .product_navimgs .slick-slide {
    margin: auto 5rem;
  }
}
.p-productdetail_content {
  max-width: 490px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_content {
    max-width: 490rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_content {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.p-productdetail_content .itemquantity {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_content .itemquantity {
    margin-top: 20rem;
    gap: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_content .itemquantity {
    margin-top: 40rem;
    align-items: center;
    gap: 20rem;
  }
}
.p-productdetail_content .itemquantity .head {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_content .itemquantity .head {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_content .itemquantity .head {
    font-size: 24rem;
  }
}
.p-productdetail_content .itemquantity input {
  width: 60px;
  height: 27px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: right;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_content .itemquantity input {
    width: 60rem;
    height: 27rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_content .itemquantity input {
    width: 100rem;
    height: 50rem;
    font-size: 24rem;
  }
}
.p-productdetail_itemtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemtitle {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemtitle {
    font-size: 34rem;
  }
}
.p-productdetail_itemtxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #242424;
  margin: 30px auto;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemtxt {
    font-size: 15rem;
    line-height: 25rem;
    margin: 30rem auto;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemtxt {
    font-size: 26rem;
    line-height: 62rem;
    margin: 40rem auto 60rem;
  }
}
.p-productdetail_itemprice {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemprice {
    gap: 10rem;
  }
}
.p-productdetail_itemprice .head {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemprice .head {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemprice .head {
    font-size: 24rem;
  }
}
.p-productdetail_itemprice .price {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemprice .price {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemprice .price {
    font-size: 28rem;
  }
}
.p-productdetail_itemprice .price .value {
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemprice .price .value {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemprice .price .value {
    font-size: 42rem;
  }
}
.p-productdetail_itemprice .price .tax {
  font-size: 13px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemprice .price .tax {
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemprice .price .tax {
    font-size: 24rem;
  }
}
.p-productdetail_itemoption {
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption {
    margin-top: 30rem;
  }
}
.p-productdetail_itemoption .nameprint {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  display: none;
}
.p-productdetail_itemoption .nameprint:nth-of-type(1) {
  display: none;
}
.p-productdetail_itemoption .nameprint:nth-of-type(2) {
  display: none;
}
.p-productdetail_itemoption .nameprint:nth-of-type(3) {
  display: none;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .nameprint {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .nameprint {
    margin-bottom: 30rem;
  }
}
.p-productdetail_itemoption .nameprint input[type=text] {
  width: 100%;
  height: 30px;
  background: #fff;
  border: 1px solid #c4c4c4;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .nameprint input[type=text] {
    height: 30rem;
    padding: 10rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .nameprint input[type=text] {
    padding: 0 20rem;
    font-size: 24rem;
    height: 50rem;
  }
}
.p-productdetail_itemoption .nameprint textarea {
  width: 100%;
  height: 110px;
  background: #fff;
  border: 1px solid #c4c4c4;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .nameprint textarea {
    height: 110rem;
    font-size: 14rem;
    padding: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .nameprint textarea {
    padding: 10rem 20rem;
    font-size: 24rem;
    height: 200rem;
  }
}
.p-productdetail_itemoption .makeshop-option-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .makeshop-option-wrap {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .makeshop-option-wrap {
    margin-bottom: 30rem;
  }
}
.p-productdetail_itemoption .makeshop-option-wrap input[type=text] {
  width: 100%;
  height: 30px;
  background: #fff;
  border: 1px solid #c4c4c4;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .makeshop-option-wrap input[type=text] {
    height: 30rem;
    padding: 10rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .makeshop-option-wrap input[type=text] {
    padding: 0 20rem;
    font-size: 24rem;
    height: 50rem;
  }
}
.p-productdetail_itemoption .makeshop-option-wrap textarea {
  width: 100%;
  height: 110px;
  background: #fff;
  border: 1px solid #c4c4c4;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .makeshop-option-wrap textarea {
    height: 110rem;
    font-size: 14rem;
    padding: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .makeshop-option-wrap textarea {
    padding: 10rem 20rem;
    font-size: 24rem;
    height: 200rem;
  }
}
.p-productdetail_itemoption .makeshop-option-label {
  min-width: 120px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .makeshop-option-label {
    min-width: 120rem;
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .makeshop-option-label {
    font-size: 24rem;
    min-width: 190rem;
  }
}
.p-productdetail_itemoption .makeshop-option-select-wrap {
  max-width: 370px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .makeshop-option-select-wrap {
    max-width: 370rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .makeshop-option-select-wrap {
    max-width: 470rem;
  }
}
.p-productdetail_itemoption .makeshop-option-select {
  width: 100%;
  height: 30px;
  background: #fff;
  border: 1px solid #c4c4c4;
  padding: 0 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .makeshop-option-select {
    height: 30rem;
    padding: 0 10rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .makeshop-option-select {
    padding: 0 20rem;
    font-size: 24rem;
    height: 50rem;
  }
}
.p-productdetail_itemoption .noticetxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: left;
  color: #e00000;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .noticetxt {
    font-size: 13rem;
    line-height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .noticetxt {
    font-size: 24rem;
    line-height: 36rem;
  }
}
.p-productdetail_itemoption .messagebox {
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .messagebox {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .messagebox {
    margin-top: 20rem;
  }
}
.p-productdetail_itemoption .messagebox_btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  background: #2c2c2c;
  padding: 10px;
  border: none;
  outline: none;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .messagebox_btn {
    font-size: 14rem;
    gap: 10rem;
    padding: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .messagebox_btn {
    padding: 15rem;
    font-size: 24rem;
  }
}
.p-productdetail_itemoption .messagebox_btn img {
  max-width: 12px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .messagebox_btn img {
    max-width: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .messagebox_btn img {
    max-width: 20rem;
  }
}
.p-productdetail_itemoption .messageinputbox {
  display: none;
  margin-left: 120px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_itemoption .messageinputbox {
    margin-left: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_itemoption .messageinputbox {
    margin-left: 190rem;
  }
}
.p-productdetail .modal-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: rgba(36, 36, 36, 0.3);
}
.p-productdetail .modal-message_contain {
  max-width: 1000px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 60px 90px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain {
    max-width: 1000rem;
    padding: 60rem 90rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain {
    overflow-y: scroll;
    max-width: calc(100% - 80rem);
    top: 40rem;
    transform: translate(-50%, 0%);
    padding: 50rem 30rem;
  }
}
.p-productdetail .modal-message_contain .closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: auto;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .closebtn {
    top: 20rem;
    right: 20rem;
    width: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .closebtn {
    top: 40rem;
    right: 30rem;
    width: 40rem;
  }
}
.p-productdetail .modal-message_contain .boxtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .boxtitle {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .boxtitle {
    font-size: 30rem;
  }
}
.p-productdetail .modal-message_contain .tabs {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .tabs {
    grid-gap: 10rem;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .tabs {
    grid-template-columns: 1fr 1fr;
    margin-top: 30rem;
  }
}
.p-productdetail .modal-message_contain .tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #c4c4c4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
  padding: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .tabs li a {
    font-size: 16rem;
    padding: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .tabs li a {
    font-size: 26rem;
    padding: 20rem;
  }
}
.p-productdetail .modal-message_contain .tabs li a.active {
  background: #f4f7f8;
  border: 1px solid #f4f7f8;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-productdetail .modal-message_contain .tabs li a:hover {
    background: #f4f7f8;
    border: 1px solid #f4f7f8;
    font-weight: bold;
  }
}
.p-productdetail .modal-message_contain .noticetxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #e00000;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .noticetxt {
    font-size: 14rem;
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .noticetxt {
    font-size: 24rem;
    margin-top: 25rem;
    text-align: left;
  }
}
.p-productdetail .modal-message_contain .noticetxt .copybox {
  display: inline-block;
  border: 1px solid #e00000;
  border-radius: 5px;
  font-weight: 400;
  margin: auto 2px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .noticetxt .copybox {
    border-radius: 5rem;
    margin: auto 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .noticetxt .copybox {
    margin: auto 4rem;
  }
}
.p-productdetail .modal-message_contain .noticetxt .copybox_contain {
  display: flex;
  align-items: center;
  padding: 0 3px;
  gap: 5px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .noticetxt .copybox_contain {
    padding: 0 3rem;
    gap: 5rem;
  }
}
.p-productdetail .modal-message_contain .noticetxt .copybox img {
  max-width: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_contain .noticetxt .copybox img {
    max-width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_contain .noticetxt .copybox img {
    max-width: 24rem;
  }
}
.p-productdetail .modal-message_content {
  background: #f4f7f8;
  padding: 30px 40px;
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_content {
    margin-top: 15rem;
    padding: 30rem 40rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_content {
    margin-top: 25rem;
    padding: 40rem 30rem;
  }
}
.p-productdetail .modal-message_content .contenthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-productdetail .modal-message_content .contenthead .copybox {
  display: inline-block;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 400;
  margin: auto 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  text-align: left;
  color: #242424;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_content .contenthead .copybox {
    font-size: 13rem;
    margin: auto 2rem;
    border-radius: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_content .contenthead .copybox {
    font-size: 26rem;
  }
}
.p-productdetail .modal-message_content .contenthead .copybox_contain {
  display: flex;
  align-items: center;
  padding: 0px 8px;
  gap: 5px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_content .contenthead .copybox_contain {
    padding: 0 8rem;
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_content .contenthead .copybox_contain {
    padding: 5rem 15rem;
    gap: 10rem;
  }
}
.p-productdetail .modal-message_content .contenthead .copybox img {
  max-width: 12px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_content .contenthead .copybox img {
    max-width: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_content .contenthead .copybox img {
    max-width: 25rem;
  }
}
.p-productdetail .modal-message_content .contenttitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_content .contenttitle {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_content .contenttitle {
    font-size: 28rem;
  }
}
.p-productdetail .modal-message_content .contenttxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #242424;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .modal-message_content .contenttxt {
    font-size: 15rem;
    line-height: 25rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .modal-message_content .contenttxt {
    margin-top: 30rem;
    font-size: 26rem;
    line-height: 46rem;
  }
}
.p-productdetail .addcartbox {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .addcartbox {
    gap: 20rem;
    margin-top: 20rem;
  }
}
.p-productdetail .addcartbox .restock-btn {
  width: 100%;
  background: #8b8b8b;
  border: 1px solid #8b8b8b;
  width: 420px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .addcartbox .restock-btn {
    padding: 15rem;
    width: 420rem;
    gap: 20rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .addcartbox .restock-btn {
    font-size: 30rem;
    width: 600rem;
    padding: 25rem;
  }
}
.p-productdetail .addcartbox .restock-btn.off {
  display: none;
}
.p-productdetail .addcartbox .restock-btn.on {
  display: flex;
}
.p-productdetail .addcartbox_btn .add-cart-btn {
  position: relative;
  width: 420px;
  background: #9f142a;
  border: 1px solid #9f142a;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .addcartbox_btn .add-cart-btn {
    padding: 15rem;
    width: 420rem;
    gap: 20rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .addcartbox_btn .add-cart-btn {
    font-size: 30rem;
    width: 600rem;
    padding: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-productdetail .addcartbox_btn .add-cart-btn:hover {
    background: #fff;
    color: #9f142a;
  }
  .p-productdetail .addcartbox_btn .add-cart-btn:hover span::before {
    background-image: url(../image/common/icon-cart-red.png);
  }
  .p-productdetail .addcartbox_btn .add-cart-btn:hover span::after {
    background-image: url(../image/common/icon-next-red.png);
  }
}
.p-productdetail .addcartbox_btn .add-cart-btn span {
  position: relative;
}
.p-productdetail .addcartbox_btn .add-cart-btn span::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 21px;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  background-image: url(../image/common/icon-cart.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .addcartbox_btn .add-cart-btn span::before {
    width: 21rem;
    height: 21rem;
    left: -25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .addcartbox_btn .add-cart-btn span::before {
    height: 35rem;
    width: 35rem;
    left: -45rem;
  }
}
.p-productdetail .addcartbox_btn .add-cart-btn span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  background-image: url(../image/common/icon-next.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .addcartbox_btn .add-cart-btn span::after {
    width: 8rem;
    height: 10rem;
    right: -25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .addcartbox_btn .add-cart-btn span::after {
    width: 18rem;
    height: 20rem;
    right: -40rem;
  }
}
.p-productdetail .addcartbox_btn .add-cart-btn.off {
  display: none;
}
.p-productdetail .addcartbox_btn .add-cart-btn.on {
  display: flex;
}
.p-productdetail .shoppingbag {
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag {
    margin-top: 60rem;
  }
}
.p-productdetail .shoppingbag_head {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag_head {
    font-size: 22rem;
    padding-bottom: 15rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag_head {
    font-size: 32rem;
    padding-bottom: 20rem;
    margin-bottom: 20rem;
  }
}
.p-productdetail .shoppingbag_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag_txt {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag_txt {
    font-size: 26rem;
    line-height: 46rem;
  }
}
.p-productdetail .shoppingbag_link {
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag_link {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag_link {
    margin-top: 40rem;
  }
}
.p-productdetail .shoppingbag_link a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #242424;
  outline: 1px solid #9f142a;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag_link a {
    height: 120rem;
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag_link a {
    height: 165rem;
    font-size: 28rem;
  }
}
.p-productdetail .shoppingbag_link a img {
  max-width: 240px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag_link a img {
    height: 120rem;
    max-width: 240rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag_link a img {
    height: 165rem;
    max-width: 335rem;
  }
}
.p-productdetail .shoppingbag_link a span {
  max-width: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .shoppingbag_link a span {
    max-width: 240rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .shoppingbag_link a span {
    max-width: 335rem;
  }
}
.p-productdetail .itemcontactbox {
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemcontactbox {
    margin-top: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemcontactbox {
    margin-top: 60rem;
  }
}
.p-productdetail .itemcontactbox a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #7b7b7b;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemcontactbox a {
    gap: 10rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemcontactbox a {
    font-size: 26rem;
    gap: 15rem;
  }
}
.p-productdetail .itemcontactbox a img {
  max-width: 5px;
  filter: invert(1);
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemcontactbox a img {
    max-width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemcontactbox a img {
    max-width: 10rem;
  }
}
.p-productdetail .itemriviewbox {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemriviewbox {
    margin-top: 15rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemriviewbox {
    margin-top: 20rem;
    gap: 20rem;
  }
}
.p-productdetail .itemriviewbox_head {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #7b7b7b;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemriviewbox_head {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemriviewbox_head {
    font-size: 26rem;
  }
}
.p-productdetail .itemriviewbox_info {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #7b7b7b;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemriviewbox_info {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemriviewbox_info {
    font-size: 26rem;
  }
}
.p-productdetail .itemriviewbox .reviewpost a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-decoration: underline;
  font-size: 14px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .itemriviewbox .reviewpost a {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .itemriviewbox .reviewpost a {
    font-size: 26rem;
  }
}
.p-productdetail .descriptionbox {
  margin-top: 30px;
  padding: 20px 10px;
  padding-left: 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox {
    margin-top: 30rem;
    padding: 20rem 10rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox {
    padding: 60rem 10rem 30rem 0;
    margin-top: 60rem;
  }
}
.p-productdetail .descriptionbox_head {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-productdetail .descriptionbox_head.active .descriptionbox_head_icon::after {
  height: 0;
}
.p-productdetail .descriptionbox_head_txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_head_txt {
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_head_txt {
    font-size: 28rem;
  }
}
.p-productdetail .descriptionbox_head_icon {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #dedede;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_head_icon {
    width: 20rem;
    height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_head_icon {
    width: 40rem;
    height: 40rem;
  }
}
.p-productdetail .descriptionbox_head_icon::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_head_icon::before {
    width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_head_icon::before {
    width: 20rem;
    height: 1rem;
  }
}
.p-productdetail .descriptionbox_head_icon::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #707070;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_head_icon::after {
    height: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_head_icon::after {
    height: 20rem;
    width: 1rem;
  }
}
.p-productdetail .descriptionbox_content {
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_content {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_content {
    margin-top: 25rem;
  }
}
.p-productdetail .descriptionbox_content p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: left;
  color: #242424;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_content p {
    font-size: 15rem;
    line-height: 25rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_content p {
    font-size: 26rem;
    line-height: 42rem;
    margin-bottom: 30rem;
  }
}
.p-productdetail .descriptionbox_content p:last-child {
  margin-bottom: 0;
}
.p-productdetail .descriptionbox_content span {
  font-weight: bold;
  color: #707070;
}
.p-productdetail .descriptionbox_content .free-ship {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #b42723;
  display: inline-block;
  padding: 0 5px;
  border-bottom: 1px solid #b42723;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .descriptionbox_content .free-ship {
    font-size: 14rem;
    padding: 0 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .descriptionbox_content .free-ship {
    font-size: 30rem;
    padding-bottom: 10rem;
  }
}
.p-productdetail .bagslinks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .bagslinks {
    margin-top: 30rem;
    grid-gap: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .bagslinks {
    grid-gap: 10rem;
    margin-top: 60rem;
  }
}
.p-productdetail .bagslinks_item.hidden {
  display: none;
}
.p-productdetail .bagslinks_item a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #242424;
  padding: 16px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedede;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .bagslinks_item a {
    font-size: 15rem;
    padding: 16rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .bagslinks_item a {
    font-size: 25rem;
    padding: 20rem 0rem;
  }
}
.p-productdetail_subscription .giftbox {
  margin: 50px auto;
  position: relative;
  border: 1px solid #9f142a;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox {
    margin: 50rem auto;
    padding: 15rem;
    gap: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox {
    margin: 80rem auto;
    padding: 25rem;
    gap: 15rem;
  }
}
.p-productdetail_subscription .giftbox .flexbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox .flexbox {
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox .flexbox {
    gap: 10rem;
  }
}
.p-productdetail_subscription .giftbox .bottomtxt {
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox .bottomtxt {
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox .bottomtxt {
    font-size: 22rem;
  }
}
.p-productdetail_subscription .giftbox .ribonimg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox .ribonimg {
    width: 30rem;
    top: -10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox .ribonimg {
    width: 43rem;
    top: -13rem;
  }
}
.p-productdetail_subscription .giftbox_img {
  max-width: 90px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox_img {
    max-width: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox_img {
    max-width: 125rem;
  }
}
.p-productdetail_subscription .giftbox_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox_content {
    gap: 10rem;
  }
}
.p-productdetail_subscription .giftbox_content .txt01 {
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox_content .txt01 {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox_content .txt01 {
    font-size: 24rem;
  }
}
.p-productdetail_subscription .giftbox_content .txt01 .col-red {
  color: #9F142A;
}
.p-productdetail_subscription .giftbox_content .txt02 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-productdetail_subscription .giftbox_content .txt02 {
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail_subscription .giftbox_content .txt02 {
    font-size: 30rem;
  }
}
.p-productdetail .tab-list {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .tab-list {
    margin-top: 50rem;
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .tab-list {
    margin-bottom: 50rem;
  }
}
.p-productdetail .tab-list-item {
  cursor: pointer;
  flex: 1;
  background: #fff;
  border: 1px solid #dedede;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #adadad;
  padding: 15px;
}
@media screen and (max-width: 1440px) {
  .p-productdetail .tab-list-item {
    padding: 15rem;
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-productdetail .tab-list-item {
    font-size: 24rem;
    padding: 25rem 0;
  }
}
.p-productdetail .tab-list-item.is-btn-active {
  color: #fff;
  background: linear-gradient(#222 0%, #414141 100%);
}
.p-productdetail .tab-contents {
  display: none;
}
.p-productdetail .is-contents-active {
  display: block;
}

body .side {
  display: none;
}
body .itemoptionbox {
  display: none;
}
body .showtxt01 {
  display: none;
}
body .showtxt02 {
  display: none;
}

.p-column {
  margin-top: 65px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .p-column {
    margin-top: 65rem;
    margin-bottom: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column {
    margin-top: 50rem;
    margin-bottom: 120rem;
  }
}
.p-column .seccontain {
  max-width: 980px;
}
@media screen and (max-width: 1440px) {
  .p-column .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.p-column_category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9e4e9;
  padding-bottom: 5px;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .p-column_category {
    padding-bottom: 5rem;
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column_category {
    flex-direction: column;
    align-items: flex-start;
    gap: 30rem;
  }
}
.p-column_category_head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #222;
  position: relative;
  min-width: 220px;
}
@media screen and (max-width: 1440px) {
  .p-column_category_head {
    font-size: 16rem;
    gap: 20rem;
    min-width: 220rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column_category_head {
    font-size: 26rem;
    gap: 10rem;
    min-width: auto;
  }
}
.p-column_category_head::after {
  content: "▶";
  font-size: 10px;
}
@media screen and (max-width: 1440px) {
  .p-column_category_head::after {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column_category_head::after {
    font-size: 18rem;
    content: "▼";
  }
}
.p-column_category_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 70px;
}
@media screen and (max-width: 1440px) {
  .p-column_category_list {
    gap: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column_category_list {
    gap: 40rem;
    justify-content: flex-start;
  }
}
.p-column_category_list li a {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #a8a8a8;
  padding: 5px;
  transition: 0.3s;
  position: relative;
  display: block;
  min-width: 100px;
}
.p-column_category_list li a::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background-color: #a8a8a8;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .p-column_category_list li a::after {
    bottom: -7rem;
  }
}
@media screen and (max-width: 1440px) {
  .p-column_category_list li a {
    font-size: 16rem;
    padding: 5rem;
    min-width: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column_category_list li a {
    font-size: 26rem;
    padding: 5rem;
    min-width: 140rem;
  }
}
@media screen and (min-width: 768px) {
  .p-column_category_list li a:hover {
    color: #222;
  }
  .p-column_category_list li a:hover::after {
    background-color: #242424;
  }
}
.p-column_category_list li a.current {
  color: #222;
}
.p-column_category_list li a.current::after {
  background-color: #242424;
}
.p-column_list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: baseline;
  grid-gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-column_list {
    margin-top: 50rem;
    grid-gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column_list {
    margin-top: 60rem;
    grid-gap: 40rem 15rem;
    grid-template-columns: 1fr 1fr;
  }
}
.p-column_list li {
  height: 100%;
}
.p-column__item {
  display: flex;
  height: 100%;
  flex-direction: column;
  transition: 0.3s;
  border: 1px solid #d0d0d0;
}
@media screen and (min-width: 768px) {
  .p-column__item:hover img {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
.p-column__item_category {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #242424;
  padding: 5px 25px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-column__item_category {
    font-size: 14rem;
    padding: 5rem 25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column__item_category {
    font-size: 22rem;
    padding: 5rem 25rem;
  }
}
.p-column__item_img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.p-column__item_img img {
  transition: 0.5s;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .p-column__item_img img {
    height: 200rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column__item_img img {
    height: 240rem;
  }
}
.p-column__item_content {
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-column__item_content {
    padding: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column__item_content {
    margin-top: 20rem;
    padding: 25rem 20rem;
  }
}
.p-column__item_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-column__item_title {
    font-size: 16rem;
    line-height: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column__item_title {
    font-size: 26rem;
    line-height: 40rem;
  }
}
.p-column__item_date {
  margin: 15px auto;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #8b8b8b;
}
@media screen and (max-width: 1440px) {
  .p-column__item_date {
    margin: 15rem auto;
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column__item_date {
    font-size: 24rem;
    margin: 20rem auto 30rem;
  }
}
.p-column__item_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-column__item_txt {
    font-size: 13rem;
    line-height: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .p-column__item_txt {
    font-size: 24rem;
    line-height: 40rem;
  }
}

.p-subfv03_content.breadcrumb_content {
  padding: 0;
}

.p-columndetail {
  margin: 100px auto;
}
@media screen and (max-width: 1440px) {
  .p-columndetail {
    margin: 100rem auto;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail {
    padding: 0 40rem;
  }
}
.p-columndetail .seccontain {
  max-width: 980px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .seccontain {
    max-width: 100%;
  }
}
.p-columndetail_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-columndetail_title {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail_title {
    font-size: 38rem;
    line-height: 60rem;
  }
}
.p-columndetail_info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail_info {
    gap: 15rem;
    margin-top: 30rem;
  }
}
.p-columndetail_date {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #8e8e8e;
}
@media screen and (max-width: 1440px) {
  .p-columndetail_date {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail_date {
    font-size: 24rem;
  }
}
.p-columndetail_category li {
  font-family: "Noto Sans JP", sans-serif;
  padding: 5px 10px;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: linear-gradient(#222 0%, #414141 100%);
}
@media screen and (max-width: 1440px) {
  .p-columndetail_category li {
    font-size: 12rem;
    padding: 5rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail_category li {
    font-size: 24rem;
    padding: 10rem;
  }
}
.p-columndetail_box {
  max-width: 800px;
  margin: auto;
  margin-top: 50px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail_box {
    max-width: 800rem;
    margin-top: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail_box {
    max-width: 100%;
  }
}
.p-columndetail .postcontent {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-columndetail .postcontent h2 {
  margin-top: 40px;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
  text-align: left;
  color: #242424;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9e4e9;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent h2 {
    font-size: 24rem;
    line-height: 42rem;
    padding-bottom: 15rem;
    margin-top: 40rem;
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent h2 {
    margin-top: 50rem;
    margin-bottom: 30rem;
    font-size: 34rem;
    line-height: 54rem;
    padding-bottom: 15rem;
  }
}
.p-columndetail .postcontent h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #427890;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent h3 {
    font-size: 20rem;
    margin-top: 30rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent h3 {
    font-size: 32rem;
    line-height: 50rem;
    margin-top: 35rem;
    margin-bottom: 30rem;
  }
}
.p-columndetail .postcontent h4 {
  padding-left: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  color: #222;
  margin-top: 25px;
  margin-top: 20px;
  position: relative;
}
.p-columndetail .postcontent h4::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../image/common/icon-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent h4::before {
    top: 10rem;
    width: 12rem;
    height: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent h4::before {
    top: 15rem;
    width: 24rem;
    height: 24rem;
  }
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent h4 {
    padding-left: 20rem;
    font-size: 18rem;
    margin-top: 25rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent h4 {
    font-size: 30rem;
    line-height: 48rem;
    padding-left: 35rem;
    margin-top: 30rem;
    margin-bottom: 25rem;
  }
}
.p-columndetail .postcontent p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 20px auto;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent p {
    margin: 20rem auto;
    font-size: 15rem;
    line-height: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent p {
    margin: 25rem auto;
    font-size: 26rem;
    line-height: 60rem;
  }
}
.p-columndetail .postcontent a {
  font-weight: 400;
  text-decoration: underline;
  font-size: 16px;
  text-align: left;
  color: #427890;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent a {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent a {
    font-size: 26rem;
  }
}
.p-columndetail .postcontent ul {
  margin-left: 15px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent ul {
    margin-left: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent ul {
    margin-left: 25rem;
  }
}
.p-columndetail .postcontent ul li {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 24px;
  text-align: left;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent ul li {
    font-size: 15rem;
    line-height: 24rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent ul li {
    font-size: 26rem;
    line-height: 48rem;
    margin-bottom: 20rem;
  }
}
.p-columndetail .postcontent ul li:last-child {
  margin-bottom: 0;
}
.p-columndetail .postcontent ul li::before {
  position: absolute;
  content: "";
  top: 12px;
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #427890;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent ul li::before {
    top: 12rem;
    left: -15rem;
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent ul li::before {
    top: 20rem;
    left: -25rem;
    width: 14rem;
    height: 14rem;
  }
}
.p-columndetail .postcontent ul li::marker {
  color: #427890;
}
.p-columndetail .postcontent ol {
  margin-left: 30px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent ol {
    margin-left: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent ol {
    margin-left: 40rem;
  }
}
.p-columndetail .postcontent ol li {
  list-style: decimal-leading-zero;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 24px;
  text-align: left;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent ol li {
    font-size: 15rem;
    line-height: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent ol li {
    font-size: 26rem;
    line-height: 48rem;
    margin-bottom: 20rem;
  }
}
.p-columndetail .postcontent ol li:last-child {
  margin-bottom: 0;
}
.p-columndetail .postcontent ol li::marker {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #427890;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent ol li::marker {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent ol li::marker {
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent .table {
    overflow-x: scroll;
    width: calc(100% + 40rem);
    margin-right: -40rem;
  }
}
.p-columndetail .postcontent .table table {
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 15px;
  text-align: center;
  color: #222;
  border-collapse: collapse;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent .table table {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent .table table {
    font-size: 26rem;
    width: -moz-max-content;
    width: max-content;
    margin: 0;
  }
}
.p-columndetail .postcontent .table table th {
  border-collapse: collapse;
  border: 1px solid #fff;
  background: #8e8e8e;
  padding: 10px;
  vertical-align: middle;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent .table table th {
    padding: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent .table table th {
    padding: 20rem 10rem;
  }
}
.p-columndetail .postcontent .table table td {
  border-collapse: collapse;
  border: 1px solid #e2e2e2;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postcontent .table table td {
    padding: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postcontent .table table td {
    padding: 20rem 10rem;
    width: 380rem;
  }
}
.p-columndetail .postcontent .table table td:first-child {
  width: 25%;
  background: #f5f6f7;
}
.p-columndetail .postlinks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postlinks {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postlinks {
    margin-top: 50rem;
  }
}
.p-columndetail .postlinks_item {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #222;
  border-bottom: 1px solid #242424;
  padding-bottom: 5px;
  min-width: 110px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-columndetail .postlinks_item:hover {
    opacity: 0.8 !important;
  }
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postlinks_item {
    font-size: 18rem;
    min-width: 110rem;
    padding-bottom: 5rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postlinks_item {
    font-size: 26rem;
    padding: 5rem 20rem;
    min-width: 120rem;
  }
}
.p-columndetail .postlinks_item.prev::before {
  content: "◀";
  font-size: 10px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postlinks_item.prev::before {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postlinks_item.prev::before {
    font-size: 16rem;
  }
}
.p-columndetail .postlinks_item.next::after {
  content: "▶";
  font-size: 10px;
}
@media screen and (max-width: 1440px) {
  .p-columndetail .postlinks_item.next::after {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-columndetail .postlinks_item.next::after {
    font-size: 16rem;
  }
}
.p-columndetail .postlinks_item.no-link {
  opacity: 0 !important;
}

.p-relatecolumn {
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .p-relatecolumn {
    margin-bottom: 120rem;
  }
}
.p-relatecolumn .seccontain {
  max-width: 980px;
}
@media screen and (max-width: 1440px) {
  .p-relatecolumn .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-relatecolumn .seccontain {
    max-width: 100%;
  }
}
.p-relatecolumn_list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 35px;
}
@media screen and (max-width: 1440px) {
  .p-relatecolumn_list {
    margin-top: 40rem;
    grid-gap: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .p-relatecolumn_list {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-relatecolumn_list .slick-slide {
    margin: auto 15rem;
    opacity: 0.6;
  }
}
.p-relatecolumn_list .slick-slide.slick-current {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-relatecolumn_list .slick-prev,
  .p-relatecolumn_list .slick-next {
    width: 80rem;
    height: 80rem;
    background: #242424 !important;
    z-index: 1;
    top: 135rem;
    transform: none;
  }
  .p-relatecolumn_list .slick-prev::before,
  .p-relatecolumn_list .slick-next::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15rem;
    height: 20rem;
    background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-prev.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .p-relatecolumn_list .slick-prev::after,
  .p-relatecolumn_list .slick-next::after {
    width: 0;
    height: 0;
  }
  .p-relatecolumn_list .slick-prev {
    left: 0;
  }
  .p-relatecolumn_list .slick-next {
    right: 0;
  }
  .p-relatecolumn_list .slick-next::before {
    background-image: url(https://gigaplus.makeshop.jp/takeuchinori/assets/image/common/icon-next.png);
  }
}
@media screen and (max-width: 768px) {
  .p-relatecolumn_list .p-column__item {
    min-height: 295rem;
  }
}

.p-contactform .seccontain {
  max-width: 980px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .seccontain {
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .seccontain {
    max-width: 100%;
    padding: 0 40rem;
  }
}
.p-contactform_txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-contactform_txt {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform_txt {
    font-size: 26rem;
    line-height: 42rem;
  }
}
.p-contactform_requiredtxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #e00000;
}
@media screen and (max-width: 1440px) {
  .p-contactform_requiredtxt {
    margin-top: 60rem;
    margin-bottom: 30rem;
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform_requiredtxt {
    margin-top: 80rem;
    margin-bottom: 40rem;
    font-size: 26rem;
  }
}
.p-contactform .formbox .snow-monkey-form[data-screen=confirm] .smf-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  padding: 25px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .snow-monkey-form[data-screen=confirm] .smf-item {
    padding: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .snow-monkey-form[data-screen=confirm] .smf-item {
    padding: 30rem;
  }
}
.p-contactform .formbox .snow-monkey-form[data-screen=confirm] .smf-item:first-child {
  border-top: 1px solid #ccc;
}
.p-contactform .formbox .snow-monkey-form[data-screen=confirm] .privacybox {
  display: none;
}
.p-contactform .formbox .snow-monkey-form[data-screen=complete] .p-contactform_txt {
  display: none;
}
.p-contactform .formbox .snow-monkey-form[data-screen=complete] .p-contactform_requiredtxt {
  display: none;
}
.p-contactform .formbox .smf-item {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-item {
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-item {
    margin-bottom: 40rem;
  }
}
.p-contactform .formbox .smf-item:nth-child(7) .smf-item__label__text::after {
  content: "";
}
.p-contactform .formbox .smf-item:nth-child(8) .smf-item__col--label {
  align-items: flex-start;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-item:nth-child(8) .smf-item__col--label {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-item:nth-child(8) .smf-item__col--label {
    margin-top: 0;
  }
}
.p-contactform .formbox .smf-item:last-child {
  margin-bottom: 0;
}
.p-contactform .formbox .smf-item__col--label {
  display: flex;
  align-items: center;
}
.p-contactform .formbox .smf-item__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-item__label {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-item__label {
    font-size: 26rem;
  }
}
.p-contactform .formbox .smf-item__label__text {
  position: relative;
}
.p-contactform .formbox .smf-item__label__text::after {
  content: "*";
  color: #e00000;
}
.p-contactform .formbox .smf-item__controls {
  width: 100%;
}
.p-contactform .formbox .smf-item__controls input,
.p-contactform .formbox .smf-item__controls textarea {
  width: 100%;
  height: 55px;
  background: #fff;
  border: 1px solid #c4c4c4;
  padding: 15px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-item__controls input,
  .p-contactform .formbox .smf-item__controls textarea {
    height: 55rem;
    padding: 15rem 20rem;
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-item__controls input,
  .p-contactform .formbox .smf-item__controls textarea {
    font-size: 26rem;
    padding: 20rem;
    height: 75rem;
  }
}
.p-contactform .formbox .smf-item__controls textarea {
  height: 140px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-item__controls textarea {
    height: 140rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-item__controls textarea {
    height: 220rem;
  }
}
.p-contactform .formbox .smf-item__controls .smf-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-contactform .formbox .smf-action {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-action {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-action {
    margin-top: 80rem;
  }
}
.p-contactform .formbox .smf-button-control__control {
  font-family: "Zen Old Mincho", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 425px;
  width: 100%;
  height: 60px;
  background: #555;
  padding: 15px;
  border: 1px solid #8b8b8b;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  margin: auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contactform .formbox .smf-button-control__control:hover {
    opacity: 0.8;
  }
}
.p-contactform .formbox .smf-button-control__control:disabled {
  cursor: not-allowed;
}
@media screen and (max-width: 1440px) {
  .p-contactform .formbox .smf-button-control__control {
    max-width: 425rem;
    height: 60rem;
    padding: 15rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .formbox .smf-button-control__control {
    max-width: 600rem;
    height: 100rem;
    font-size: 30rem;
  }
}
.p-contactform .privacybox {
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 27px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-contactform .privacybox {
    max-width: 800rem;
    margin-top: 40rem;
    font-size: 15rem;
    line-height: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .privacybox {
    max-width: 100%;
    margin-top: 60rem;
    font-size: 26rem;
    line-height: 46rem;
  }
}
.p-contactform .agreebox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .p-contactform .agreebox {
    gap: 5rem;
    margin-top: 40rem;
  }
}
.p-contactform .agreebox label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  color: #3e3a39;
}
@media screen and (max-width: 1440px) {
  .p-contactform .agreebox label {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-contactform .agreebox label {
    font-size: 26rem;
  }
}
.p-contactform .agreebox a {
  text-decoration: underline;
  color: #9F142A;
}

.p-thanks_box {
  max-width: 980px;
  margin: auto;
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .p-thanks_box {
    padding: 40rem 0;
    max-width: 980rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks_box {
    max-width: 100%;
    padding: 60rem 0;
  }
}
.p-thanks_box p.largetxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .p-thanks_box p.largetxt {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks_box p.largetxt {
    font-size: 28rem;
  }
}
.p-thanks_box p {
  margin-top: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 28px;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .p-thanks_box p {
    font-size: 15rem;
    line-height: 28rem;
    margin-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks_box p {
    text-align: left;
    font-size: 26rem;
    line-height: 42rem;
    margin-top: 35rem;
  }
}
.p-thanks .toplink {
  margin-top: 80px;
}
@media screen and (max-width: 1440px) {
  .p-thanks .toplink {
    margin-top: 80rem;
  }
}
.p-thanks .toplink a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 425px;
  width: 100%;
  height: 60px;
  background: #555;
  padding: 15px;
  border: 1px solid #8b8b8b;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .p-thanks .toplink a {
    max-width: 425rem;
    height: 60rem;
    padding: 15rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .toplink a {
    max-width: 600rem;
    height: 100rem;
    font-size: 30rem;
  }
}

.s-giftservice_title {
  font-weight: 400;
  font-size: 45px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-giftservice_title {
    font-size: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice_title {
    line-height: 1.3;
    font-size: 52rem;
  }
}
.s-giftservice_title .smalltxt {
  font-size: 26px;
}
@media screen and (max-width: 1440px) {
  .s-giftservice_title .smalltxt {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice_title .smalltxt {
    font-size: 30rem;
  }
}
.s-giftservice_txt {
  margin-top: 60px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-giftservice_txt {
    margin-top: 60rem;
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice_txt {
    margin-top: 40rem;
    font-size: 26rem;
    line-height: 62rem;
    text-align: left;
  }
}

.s-giftservice01_toptxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 42px;
  text-align: center;
  color: #242424;
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .s-giftservice01_toptxt {
    font-size: 15rem;
    line-height: 42rem;
    margin-bottom: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice01_toptxt {
    font-size: 26rem;
    line-height: 62rem;
    text-align: left;
    padding: 0 75rem;
  }
}
.s-giftservice01_box {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .s-giftservice01_box {
    max-width: 1200rem;
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice01_box {
    max-width: 100%;
    padding-left: 40rem;
    gap: 70rem;
  }
}
.s-giftservice01_img {
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-giftservice01_img {
    max-width: 1000rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice01_img {
    max-width: 590rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice01 .s-giftservice_txt {
    margin-right: 40rem;
  }
}

.s-giftservice02_box {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
@media screen and (max-width: 1440px) {
  .s-giftservice02_box {
    max-width: 1200rem;
    gap: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice02_box {
    max-width: 100%;
    padding-right: 40rem;
    gap: 70rem;
  }
}
.s-giftservice02 .s-giftservice_txt {
  margin-left: 140px;
}
@media screen and (max-width: 1440px) {
  .s-giftservice02 .s-giftservice_txt {
    margin-left: 140rem;
  }
}
@media screen and (max-width: 768px) {
  .s-giftservice02 .s-giftservice_txt {
    margin-left: 40rem;
  }
}

.giftbanner {
  max-width: 800px;
  width: 100%;
  margin: 120px auto;
}
@media screen and (max-width: 1440px) {
  .giftbanner {
    margin: 800rem;
    margin: 120rem auto;
  }
}
@media screen and (max-width: 768px) {
  .giftbanner {
    max-width: 600rem;
    margin: 120rem auto;
  }
}

.s-seaweed01_box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 95px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed01_box {
    gap: 95rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed01_box {
    flex-direction: column;
    gap: 60rem;
    margin-top: 150rem;
    margin-right: 75rem;
  }
}
.s-seaweed01_img {
  max-width: 1120px;
  width: 100%;
  margin-top: 70px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed01_img {
    max-width: 1120rem;
    margin-top: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed01_img {
    margin-top: 0;
    max-width: 100%;
  }
}
.s-seaweed01_sectitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: left;
  color: #242424;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .s-seaweed01_sectitle {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed01_sectitle {
    position: absolute;
    z-index: 2;
    top: -140rem;
    right: -60rem;
    font-size: 36rem;
  }
}
.s-seaweed01 .seaweed01_content {
  max-width: 970px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed01 .seaweed01_content {
    max-width: 970rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed01 .seaweed01_content {
    max-width: 100%;
    margin: 0 75rem;
    margin-top: 60rem;
  }
}
.s-seaweed01 .seaweed01_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-seaweed01 .seaweed01_content .txt02 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed01 .seaweed01_content .txt02 {
    font-size: 26rem;
    line-height: 63rem;
  }
}

.s-seaweed02_contain {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_contain {
    max-width: 1160rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_contain {
    max-width: 100%;
    margin: auto 40rem;
  }
}
.s-seaweed02_box {
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box {
    flex-direction: column;
  }
}
.s-seaweed02_img {
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_img {
    max-width: 800rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_img {
    max-width: 100%;
    padding-left: 35rem;
  }
}
.s-seaweed02_content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
  background: linear-gradient(#ebf2f6 0%, #d9e4e9 100%);
  padding: 45px 50px;
  margin-bottom: -70px;
  margin-right: -140px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_content {
    max-width: 500rem;
    padding: 45rem 50rem;
    margin-bottom: -70rem;
    margin-right: -140rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_content {
    padding: 40rem 50rem;
    max-width: 600rem;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: -70rem;
  }
}
.s-seaweed02_content .txt01 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_content .txt01 {
    font-size: 13rem;
    line-height: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_content .txt01 {
    font-size: 24rem;
    line-height: 45rem;
  }
}
.s-seaweed02_content .txt02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 25px auto 20px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_content .txt02 {
    font-size: 15rem;
    margin: 25rem auto 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_content .txt02 {
    margin: 50rem auto 35rem;
    font-size: 24rem;
  }
}
.s-seaweed02_content .txt02 span {
  position: relative;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_content .txt02 span {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_content .txt02 span {
    font-size: 36rem;
  }
}
.s-seaweed02_content .txt02 span::after {
  position: absolute;
  content: "かみや　よしえ";
  width: 110%;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_content .txt02 span::after {
    top: -20rem;
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_content .txt02 span::after {
    font-size: 22rem;
    top: -35rem;
  }
}
.s-seaweed02_box02 {
  max-width: 970px;
  margin: auto;
  margin-top: 130px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02 {
    max-width: 970rem;
    margin-top: 130rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02 {
    max-width: 100%;
    margin-top: 60rem;
  }
}
.s-seaweed02_box02 .contenttxt01 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02 .contenttxt01 {
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02 .contenttxt01 {
    font-size: 26rem;
    margin: 0 35rem;
    line-height: 63rem;
  }
}
.s-seaweed02_box02 .txt03 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 90px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #242424;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02 .txt03 {
    margin-top: 90rem;
    font-size: 15rem;
    line-height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02 .txt03 {
    font-size: 26rem;
    margin: 0 35rem;
    margin-top: 100rem;
    line-height: 63rem;
  }
}
.s-seaweed02_box02 .txt04 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 20px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #555;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02 .txt04 {
    font-size: 13rem;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02 .txt04 {
    font-size: 24rem;
    line-height: 48rem;
    margin-top: 50rem;
  }
}
.s-seaweed02_box02_content {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02_content {
    margin-top: 45rem;
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content {
    gap: 0;
    margin-top: 100rem;
  }
}
.s-seaweed02_box02_content .imgbox {
  position: relative;
  z-index: 3;
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02_content .imgbox {
    max-width: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content .imgbox {
    margin-top: 50rem;
    margin-right: -20rem;
  }
}
.s-seaweed02_box02_content .content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
  background: #fff;
  border: 1px solid #d0d0d0;
  padding: 40px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02_content .content {
    max-width: 850rem;
    padding: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content .content {
    max-width: 580rem;
    padding: 40rem;
  }
}
.s-seaweed02_box02_content .content::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 40px;
  left: -17px;
  background-image: url(../image/seaweed/icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02_content .content::before {
    width: 20rem;
    height: 20rem;
    top: 40rem;
    left: -17rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content .content::before {
    background-image: url(../image/seaweed/icon02.png);
    width: 75rem;
    height: 75rem;
    top: 154rem;
    left: -46rem;
  }
}
.s-seaweed02_box02_content .content .txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: left;
  color: #242424;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02_content .content .txt {
    font-size: 15rem;
    line-height: 32rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content .content .txt {
    font-size: 26rem;
    line-height: 45rem;
    font-weight: 600;
  }
}
.s-seaweed02_box02_content .content .txt:last-child {
  font-weight: 300;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content .content .txt:last-child {
    font-size: 24rem;
  }
}
.s-seaweed02_box02_content::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 680px;
  height: 180px;
  bottom: -40px;
  right: -230px;
  background: linear-gradient(to right, #ebf2f6 0%, #d9e4e9 100%);
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .s-seaweed02_box02_content::after {
    width: 680rem;
    height: 180rem;
    bottom: -40rem;
    right: -230rem;
  }
}
@media screen and (max-width: 768px) {
  .s-seaweed02_box02_content::after {
    width: 420rem;
    height: 180rem;
    border-bottom: -50rem;
    right: -40rem;
  }
}
.p-giftsec__item02 {
  position: relative;
}
.p-giftsec__item02:after {
  position: absolute;
  content: "オンラインショップ限定";
  display: block;
  background: #9F142A;
  color: #fff;
  width: 224px;
  height: 30px;
  text-align: center;
  padding: 4px 0 6px;
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  top: -15px;
  right: 0;
}
@media screen and (max-width: 1440px) {
.p-giftsec__item02:after {
  width: 224rem;
  height: 30rem;
  padding: 4rem 0 6rem;
  font-size: 14rem;
  top: -15rem;
  right: 0;
}
}
@media screen and (max-width: 768px) {
.p-giftsec__item02:after {
  width: 334rem;
  height: 48rem;
  padding: 4rem 0 6rem;
  font-size: 24rem;
  top: -30rem;
  right: 0;
}
}


.floating-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  background-color: #242424;
  opacity: 0.95;
  color: #fff;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-banner a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px 33px 12px 98px;
}

.float-img img {
  width: 98px;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.float-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.float-text-top {
  font-size: 12px;
  line-height: 1;
  opacity: 1;
  margin-bottom: 4px;
  padding: 5px 8px;
  border: 1px solid #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  display: inline-block;
  width: max-content;
}

.float-text-bot {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.float-text-bot span {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
}

.floating-banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 37px;
  right: 0;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
/* hover */
.floating-banner:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-banner:hover:after {
  width: 0;
  transition: width 0.3s ease;
}

@media screen and (max-width: 1440px) {
.floating-banner {
  right: 20rem;
  bottom: 20rem;
}

.floating-banner a {
  padding: 10rem 33rem 12rem 98rem;
}

.float-img img {
  width: 98rem;
}

.float-text-top {
  font-size: 12rem;
  margin-bottom: 4rem;
  padding: 5rem 8rem;
}

.float-text-bot {
  font-size: 18rem;
}

.float-text-bot span {
  font-size: 13rem;
}

.floating-banner:after {
  top: 37rem;
  width: 18rem;
  height: 1rem;
}
}


/* ===============================
   SP
=============================== */
@media screen and (max-width: 768px) {
.floating-banner {
  right: 15rem;
  bottom: 30rem;
}

.floating-banner a {
  padding: 18rem 19rem 29rem 95rem;
}

.float-img img {
  width: 138rem;
  z-index: 2;
  bottom: 7rem;
  left: -10rem;
}

.float-text-top {
  font-size: 20rem;
  margin-bottom: 14rem;
  padding: 5rem 8rem 5rem;
}

.float-text-bot {
  font-size: 32rem;
  margin-left: 30rem;
}

.float-text-bot span {
  display: none;
}

.floating-banner:after {
  top: 73rem;
  width: 24rem;
  height: 1rem;
}
}

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