@charset "utf-8";

/*----------------------------------------------------
	ベースの設定
----------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
  /* 16px */
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  position: static !important;
}

@media screen and (max-width: 480px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

body.home {
  font-family: "Noto Serif JP", serif;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

_::-webkit-full-page-media,
_:future,
:root p {
  font-feature-settings: "pkna" 1;
}

input,
textarea,
select,
button {
  font-family: "Noto Serif JP", serif;
}

*,
*:before,
*:after {
  word-wrap: break-word;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@keyframes fadeInmain {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInmain {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* リンク
----------------------------------------------------*/
a,
a img {
  color: #333;
  text-decoration: none;
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}

/* a:visited {
	color: #666;
} */
a:hover,
a:hover img {
  /* opacity: .6;*/
}

a:hover.opacitynone {
  opacity: 1;
}

/* フォント
----------------------------------------------------*/
.wf-sawarabimincho {
  font-family: "Sawarabi Mincho";
}

/* ボタン
----------------------------------------------------*/
.button,
.button::before,
.button::after {
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.button {
  background-color: #fff;
  border: 1px solid #cccccc;
  color: #333;
  display: inline-block;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  height: 44px;
  line-height: 44px;
  padding: 0 50px 0 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 12px;
  width: 190px;
}

.button::before,
.button::after {
  content: "";
  display: block;
  z-index: -1;
}

.button::before {
  background-color: #ddd;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
}

@media (min-width: 768px) {
  .button:hover {
    opacity: 1;
  }

  .button:hover::before {
    left: 0;
  }
}

.button::after {
  background: url(../images/next_arrow_bk.png) no-repeat;
  height: 20px;
  top: 40%;
  right: 20px;
  margin-top: -5px;
  width: 23px;
  background-size: 40%;
  position: absolute;
}

.btn__arrowNone {
  padding-right: 40px;
}

.btn__arrowNone::after {
  display: none;
}

.btn__large {
  font-size: 2rem;
  height: 50px;
  line-height: 50px;
}

/* 共通設定
----------------------------------------------------*/
.alignright {
  float: right;
  margin: 0 0 20px 30px;
}

.alignleft {
  float: left;
  margin: 0 30px 20px 0;
}

.aligncenter {
  margin: 0 auto;
}

.imgMiddle {
  vertical-align: middle;
  margin: 0px 3px;
}

.imgTitle {
  font-size: 0px;
  line-height: 0px;
  margin: 0px;
}

.textAlignLeft {
  text-align: left;
}

.textAlignRight {
  text-align: right;
}

.floatR {
  float: right;
}

.floatL {
  float: left;
}

@media (max-width: 767px) {
  .alignright,
  .alignleft,
  .floatR,
  .floatL {
    float: none;
    display: block;
    text-align: center;
    margin: 0 auto 20px;
  }
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.attention {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5em !important;
}

blockquote {
  border: 1px solid #666;
  padding: 20px;
  margin: 0 0 30px;
}

blockquote p:last-child {
  margin-bottom: 0;
}

code {
  font-weight: normal;
}

hr.line {
  clear: both;
  display: block;
  border: 0;
  border-bottom: 1px solid #666;
  height: 0;
  margin: 15px 0;
}

img {
  max-width: 100%;
  height: auto;
}

img.cover,
video.cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

#page_index {
  position: relative;
  height: 100%;
}

.wrap {
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .wrap {
    margin: 0 auto;
    width: 100%;
  }
}

/* PCとスマホの表示切替 */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#globalFooter {
  background: #f3f3f3;
}

/* フッターナビ */
.globalFooter__nav {
  margin-bottom: 45px;
}

.parentList {
  /* font-family: "Times New Roman", Times, "serif"; */
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.parentList__item {
  flex-basis: 138px;
  font-size: 1.7rem;
  padding: 25px 0 0;
}

.parentList__item > a {
  display: block;
  padding: 0 0 0 5px;
}

.parentList__item:last-child {
  border-left: 1px solid #212121;
  flex-basis: 170px;
  text-align: center;
}

@media (max-width: 767px) {
  .parentList {
    flex-wrap: wrap;
  }

  .parentList__item {
    flex-basis: auto;
    font-size: 1.5rem;
    width: 100%;
    padding: 20px 5px;
    position: relative;
  }

  .parentList__item p span {
    display: block;
    background: url(../images/open_arrow_bk.png) no-repeat right;
    background-size: 20px;
    font-size: 13px;
  }

  .parentList__item p span.open {
    display: block;
    background: url(../images/close_arrow_bk.png) no-repeat right;
    background-size: 20px;
  }

  .parentList__item:nth-child(2n)::before {
    content: "";
    border-left: none;
    width: 0;
    height: calc(100% - 14px);
    position: absolute;
    top: 7px;
    left: 0;
  }

  .parentList__item > a {
    padding: 0;
    color: #fff;
    font-size: 13px;
  }

  .spMenu__inner .sale__item > a {
    color: #990000 !important;
  }

  .parentList__item:last-child {
    border-left: none;
    flex-basis: auto;
    width: 100%;
    text-align: center;
  }
}

.childList {
  border-left: 1px solid #333;
  padding: 0;
  margin-top: 25px;
  display: none;
  font-size: 0;
}

.childList li {
  display: inline-block;
  width: 100%;
  font-size: 12px;
}

.childList li a {
  padding: 5px 0;
  width: 100%;
  margin: 0 auto;
  background: url(../images/next_arrow_bk.png) no-repeat right;
  font-family: "Noto Serif JP", serif;
  background-size: 7px;
  font-size: 13px;
}

.childList a {
  display: block;
  color: #333;
}

@media (max-width: 767px) {
  .childList {
    border: none;
    margin-top: 15px;
  }
}

.childList .cat-item,
.childList__item {
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.childList .cat-item:last-child,
.childList__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .childList .cat-item,
  .childList__item {
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 30px;
  }

  .childList .cat-item:last-child,
  .childList__item:last-child {
    margin-bottom: 1em;
  }
}

.globalFooter__top {
  text-align: center;
  padding: 3% 0;
  background: rgba(35, 24, 21, 1);
  background-repeat: repeat-x !important;
  color: #ffffff;
}

@media (max-width: 767px) {
  .globalFooter__top {
  }
}

.globalFooter__top--logo {
  padding: 2% 0;
}

.globalFooter__top--logo img {
  display: inline;
  max-width: 119px;
}

@media (max-width: 767px) {
  .globalFooter__top--logo img {
    max-width: 100%;
  }

  .globalFooter__top--logo {
    margin: 1% 0;
  }
}

.globalFooter__top--nav nav {
  font-size: 0;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .globalFooter__top--nav nav {
    margin: 4% 0;
  }
}

.globalFooter__top--nav nav .globalFooter__top--navMenu {
  display: inline-block;
  font-size: min(16px, 1.2vw);
  margin: 0 20px 5px;
}

@media (max-width: 767px) {
  .globalFooter__top--nav nav .globalFooter__top--navMenu {
    width: 24%;
    margin: 0 auto 10px;
  }
}

.globalFooter__top--nav nav .globalFooter__top--navMenu a {
  color: #fff;
  display: block;
  font-size: min(16px, 1.2vw);
  line-height: 1em;
}

@media (max-width: 767px) {
  .globalFooter__top--nav nav .globalFooter__top--navMenu a {
    font-size: min(2vw, 10px);
  }
}

/* 背景付き */
.globalFooter__bottom {
  display: table;
  color: #fff;
  width: 100%;
  /* height: 250px; */
  text-align: center;
  /* padding: 150px 0 10px; */
  padding: 0;
}

@media (max-width: 767px) {
  .globalFooter__bottom {
    /* height: 160px; */
    /* padding: 100px 0 10px; */
    padding: 0;
  }
}

.globalFooter__bottom .wrap {
  display: table-cell;
  vertical-align: middle;
}

.globalFooter__bottom--logo {
  margin-bottom: 25px;
}

.globalFooter__bottom--logo img {
  width: 140px;
}

@media (max-width: 767px) {
  .globalFooter__bottom--logo {
    margin-bottom: 10px;
  }

  .globalFooter__bottom--logo img {
    width: 120px;
  }
}

.globalFooter__bottom--socialBtnList {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .globalFooter__bottom--socialBtnList {
    margin-bottom: 15px;
  }
}

.socialBtnList {
  margin: 0 auto;
}

.socialBtnList__item {
  display: inline-block;
  margin: 0 5px;
}

.socialBtnList__item a {
  background: transparent;
  display: block;
  color: #333;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.socialBtnList__item a .fa {
  font-size: 1.4rem;
  line-height: 29px;
  width: 27px;
  text-align: center;
}

@media (max-width: 767px) {
  .socialBtnList__item a {
    width: 36px;
    height: 36px;
  }

  .socialBtnList__item a .fa {
    font-size: 2.2rem;
    line-height: 36px;
  }
}

/* fix */
.fix-socialBtnList {
  position: fixed;
  top: 40%;
  left: 15px;
  margin-top: -40px;
  z-index: 5000;
  display: none;
}

@media (max-width: 767px) {
  .fix-socialBtnList {
    display: none;
  }
}

.fix-socialBtnList .socialBtnList__item {
  display: block;
  margin: 0;
  padding: 10px 0;
}

.fix-socialBtnList .socialBtnList__item {
  border-bottom: 1px solid #333;
}

.fix-socialBtnList .socialBtnList__item:last-child {
  border-bottom: none;
}

.fix-socialBtnList .socialBtnList__item a {
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  height: auto;
}

.fix-socialBtnList .socialBtnList__item a .fa {
  font-size: 2rem;
}

.fix-socialBtnList .socialBtnList__item a .fa-fw {
  width: 100%;
}

.copyright {
  /* color: #fff; */
  width: 100%;
  text-align: center;
  font-size: min(16px, 1.2vw);
  padding: 0 !important;
  border: none !important;
}

@media (max-width: 767px) {
  .copyright {
    width: auto;
    /* color: #FFF; */
    font-size: 10px !important;
    position: static;
    top: 0;
    margin-right: 0;
    transform: rotate(0deg);
    z-index: 1;
  }
}

/* ページの先頭へボタン */
#pageTop {
  display: none;
  width: 62px;
  margin: 0 0 0 -31px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
}

#pageTop a {
  display: block;
  padding: 20px 0 0;
  position: relative;
  margin: 0 0 0 0.2em;
}

@media (max-width: 767px) {
  #pageTop {
    width: 35px;
    margin: 0 0 0 -30px;
    bottom: 15px;
    right: 15px;
    font-size: 12px;
  }

  #pageTop a {
    padding: 10px 0 0;
  }

  #pageTop a::after {
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
  }
}

/*----------------------------------------------------
	メインコンテンツ
----------------------------------------------------*/
body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(https://gigaplus.makeshop.jp/fukakinet/top/images/back.jpg) center no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  body:before {
    background: url(https://gigaplus.makeshop.jp/fukakinet/top/images/back_sp.jpg) center repeat;
  }
}

#mainContents .wrap {
  /*max-width: 1100px;*/
  margin: 0 auto;
}

@media (max-width: 999px) {
  #mainContents .wrap {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  #mainContents .wrap {
    margin: 0 auto;
  }
}

/* 見出し */
.section__title_01 {
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  font-size: min(28px, 7vw);
  padding: 0 0 0% 0;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 3px;
}

.section__title_02 {
  width: 100%;
  max-width: 564px;
  margin: -0.5% auto 0;
  font-size: min(12px, 1.2vw);
  padding: 0% 0 0% 0;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .section__title_01 {
    font-size: min(7vw, 24px);
    padding: 0 0 0% 0;
  }

  .section__title_02 {
    margin: -0.5% auto 0;
    font-size: min(1.2vw, 10px);
    padding: 0% 0 0% 0;
  }
}

/* セクション
----------------------------------------------------*/
.section__wrap {
  margin: 0 0 70px;
}

@media (max-width: 767px) {
  .section__wrap {
    margin: 0 0 50px;
  }
}

.postList__inner {
  font-size: 0;
}

.postList__item_4column {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 94%;
  margin: 0 3% 60px;
}

.postList__item_3column {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 90%;
  margin: 0 5% 60px;
}

@media (max-width: 767px) {
  .postList__item_3column {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 96%;
    margin: 0 2% 60px;
  }
}

.postList__item_5column {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 18%;
  margin: 0 1% 60px;
}

.postList__item_6column {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 14.6666%;
  margin: 0 1% 60px;
}

.postList__item:nth-child(4n) {
  margin-right: 0;
}

.postList__item:nth-child(4n + 1) {
  clear: both;
}

@media (max-width: 767px) {
  .postList__item_4column {
    width: 96%;
    width: calc(315px / 670px * 100%);
    margin: 0 2% 20px;
  }

  .postList__item:nth-child(2n) {
    margin-right: 0;
  }

  .postList__item:nth-child(2n + 1) {
    clear: both;
  }

  .postList {
    margin: 0 0 40px;
  }
}

.postList__img {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .postList__img {
    margin-bottom: 10px;
  }
}

.postList__img img {
  display: block;
  margin: 0 auto;
}

.postList__text {
}

.item__text {
  font-size: 12px;
  margin-bottom: 0.2em !important;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2em;
}

.text_line_through {
  text-decoration: line-through;
}

.item__text s {
  font-size: 0.8rem;
}

.postList__title {
  font-size: 12px;
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2em;
}

.postList__meta__remaining {
  color: #6d95d1;
}

@media (max-width: 767px) {
  .postList__title {
    /* font-size: 0.9rem; */
    margin-bottom: 5px;
    /* display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		text-overflow: clip;
		white-space: normal; */
  }
}

.postList__meta {
  color: #666;
  font-size: 1.2rem;
}

.postList__meta a {
  color: #666;
}

.postList__meta__date {
  display: block;
}

.postList__meta__term {
  display: block;
}

.postList__meta__term a {
  display: inline-block;
  margin-right: 1em;
}

.more {
  clear: both;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .more {
    margin-top: 20px;
  }
}

article.post {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  article.post {
    margin-bottom: 10px;
  }
}

article a {
  display: block;
  /* margin-bottom: 50px; */
}

article.page {
  margin-bottom: 50px;
}

/* リスト
----------------------------------------------------*/
.list li {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.list ul {
  margin: 0 0 2em 20px;
}

.list ul li {
  list-style-type: disc;
}

.list ol {
  margin: 0 0 2em 20px;
}

.list ol li {
  list-style-type: decimal;
}

.list ul ul,
.list ul ol,
.list ol ul,
.list ol ol {
  margin-top: 0.5em;
}

.list li ul li {
  list-style-type: circle;
}

.list li ol li {
  list-style-type: decimal;
}

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.home #globalHedder {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  background: rgba(35, 24, 21, 0.8);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home #globalHedder {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12000;
    background: none;
  }
}

.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
}

.is-animation {
  padding: 0 !important;
  /* background: rgba(0, 0, 0, 0.37)!important; */
  /* top: -20px!important; */
}

@media (max-width: 767px) {
  .is-animation {
    top: -20px !important;
  }
}

.is-animation .globalNav__item a,
.globalNav__item .search__btn {
  /* height: 50px; */
}

.is-animation .globalNav {
  border: none;
}

.is-animation h1 {
  color: #333;
}

.is-animation .searchBlock {
  top: 70px;
}

.sp__header__comment {
  color: #fff;
  text-align: left;
  padding: 3px 0 5px;
  background: #333;
  font-size: 12px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .sp__header__comment {
    text-align: center;
    padding: 0 0 3px;
  }
}

.globalNav__item span.pc__header__comment {
  /* color: #fff; */
  text-align: center;
  /* background: #333; */
  font-size: 12px;
  margin: 0;
  padding: 3px 0 7px;
  /* text-shadow: 0px 0px 5px black; */
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 200%;
  background: none;
  z-index: 2;
  line-height: 1em;
}

.pc__header__comment2 {
  color: #333;
  text-align: right;
  font-size: 12px;
  width: 100%;
  margin: 0;
  padding: 3px 60px;
  text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff 0px 2px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px,
    #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 10;
}

.home .globalNav__item a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  margin: 0 auto;
}

.globalNav__item span.pc__header__comment a {
  display: inline;
  font-size: 10px !important;
  line-height: 1em;
}

.home .globalNav__item--logo a {
  height: 60px;
}

@media (max-width: 767px) {
  .home .globalNav__item--logo a {
    display: block;
    height: 30px;
    width: 100%;
  }
}

.home #globalHedder .icon_cart {
  background-size: 100%;
}

.home #globalHedder .icon_mypage {
  background-size: 100%;
}

.home #globalHedder .icon_search {
  background-size: 100%;
}

.target.background--light {
  color: #333;
}

.target.background--dark,
.target.background--dark a {
  color: #fff;
}

.target.background--dark .socialBtnList__item {
  border-color: #333;
}

.socialBtnList__item img {
  width: 70%;
  margin-top: 4px;
}

.socialBtnList__item img {
  width: 20px;
}

@media (max-width: 767px) {
  .socialBtnList__item img {
    width: 70%;
    margin-top: 6px;
  }
}

/* スライドショー
----------------------------------------------------*/
.full {
  position: relative;
  background: #ffffff;
}

.full div:not(.scrolldown1) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  margin: 0;
}

.full div.img02 {
  background-image: url(../images/slide_02_2025.jpg);
}

.full div.img03 {
  background-image: url(../images/slide_03_2025.jpg);
}

.full div.img04 {
  background-image: url(../images/slide_04_2025.jpg);
}

.full div.img05 {
  background-image: url(../images/slide_05_2025.jpg);
}

.full div.img06 {
  background-image: url(../images/slide_06_2025.jpg);
}

.full div.img07 {
  background-image: url(../images/slide_07_2025.jpg);
}

@media screen and (max-width: 767px) {
  .full div.img02 {
    background-image: url(../images/slide_sp_02_2025.jpg);
  }

  .full div.img03 {
    background-image: url(../images/slide_sp_03_2025.jpg);
  }

  .full div.img04 {
    background-image: url(../images/slide_sp_04_2025.jpg);
  }

  .full div.img05 {
    background-image: url(../images/slide_sp_05_2025.jpg);
  }

  .full div.img06 {
    background-image: url(../images/slide_sp_06_2025.jpg);
  }

  .full div.img07 {
    background-image: url(../images/slide_sp_07_2025.jpg);
  }
}

.full .slick-dots {
  bottom: 4%;
  z-index: +1;
}

.s_logo {
  position: relative;
  top: 50vh;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 767px) {
  .s_logo {
    width: 25%;
    position: relative;
    top: 20vh;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}

.s_scroll {
  position: relative;
  top: 78vh;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 767px) {
  .s_scroll {
    position: relative;
    width: 4%;
    top: 70vh;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}

.slider_00 {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.slider_logo {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 1;
  justify-content: center;
  transform: translateY(-50%);
}

.slider_logo img {
  width: 10%;
  min-width: 72px;
}

@media screen and (max-width: 767px) {
  .slider_logo {
    position: absolute;
    top: 15%;
  }

  .slider_logo img {
    width: 25%;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 70px;
  /*全体の高さ*/
  height: 50px;
  z-index: 1;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -19px;
  top: -25px;
  /*テキストの形状*/
  color: #eee;
  /* color: #231815; */
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  z-index: 1;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  /* background: rgba(35, 24, 21, 0.5); */
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 2.5s ease-in-out infinite;
  animation: pathmove 2.5s ease-in-out infinite;
  opacity: 0;
  z-index: 1;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 10;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 60px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 10;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 60px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}

/**/

.slider_logo_02 {
  position: absolute;
  right: 40vw;
  top: 130vw;
  width: 10%;
  margin: auto;
}

.slider_logo_container_02 img {
  width: 10%;
  min-width: 12px;
}

/*テキスト変更*/
/* 通常時はホバー時の文字を非表示にする */
a .hover {
  display: none;
}

/* ホバー時は通常時の文字を非表示にする */
a:hover .nomal {
  display: none;
}

/* ホバー時に、ホバー時の文字を表示する */
a:hover .hover {
  display: inline;
}

/*お知らせ*/
.info {
  max-width: 1280px;
  width: 96%;
  margin: 5% auto 3%;
  /*
	 background: #FFFFFF;
	 box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;*/
}

.info_content {
  margin: 0 auto;
  width: 100%;
  padding: 5% 0 0;
  max-width: 1280px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.info_content:first-of-type {
  padding: 5% 0 0 0;
}

.info_content:last-of-type {
  padding: 5% 0 5% 0;
}

.info_item {
  margin: 0;
  width: calc(7% - 0px);
}

.info_item:nth-child(2n) {
  margin: 0 2% 0;
  width: calc(75% - 0px);
}

.info_item:nth-child(3n) {
  margin: 0 0px 0px 0;
  width: calc(8% - 0px);
}

@media screen and (max-width: 767px) {
  .info_item {
    margin: 0 2% 0;
    width: calc(100% - 0px);
  }

  .info_item:nth-child(2n) {
    margin: 3% 2% 0;
    width: calc(97% - 0px);
  }

  .info_item:nth-child(3n) {
    margin: 3% 2% 3%;
    width: calc(100% - 0px);
  }

  .info_item:nth-child(3n) img {
    width: 25%;
    float: right;
  }
}

.info_text {
  text-align: left;
  margin: 0 auto;
}

.info_text_02 {
  text-align: left;
  margin: 0 auto;
  font-size: min(1.3vw, 16px);
}

.info_text_03 {
  text-align: left;
  margin: 0 auto;
  font-size: min(1.3vw, 16px);
}

@media screen and (max-width: 767px) {
  .info_text_02 {
    text-align: left;
    margin: 0 auto;
    font-size: min(4vw, 14px);
  }

  .info_text_03 {
    text-align: left;
    margin: 0 auto;
    font-size: min(4vw, 14px);
  }
}

/*アローアイコン*/
.link_icon {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.round_arrow {
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  border: solid 1px #231815;
  background: #fff;
  padding: 30px;
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  transition: 0.3s;
  text-align: center;
  line-height: 80px;
}

.round_arrow:hover {
  background: #231815;
  color: #fff;
}

.arrow_top_right {
  position: relative;
  padding-left: 2vw;
}

.arrow_top_right::before {
  /* くの字の表示設定 */
  content: "";
  position: absolute;
  bottom: 45%;
  left: 42.7%;
  width: 2vw;
  height: 2vw;
  border-top: 2px solid #231815;
  border-right: 2px solid #231815;
}

.arrow_top_right::after {
  /* 棒の表示設定 */
  content: "";
  position: absolute;
  bottom: 48%;
  /* 要素の下からの距離 */
  left: 33%;
  width: 3vw;
  height: 2px;
  background: #231815;
  transform: rotate(135deg);
  /* 棒の角度調整 */
}

.arrow_top_right:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.arrow_top_right:hover::after {
  background: #fff;
}
.campaign_bnr {
  max-width: 960px;
  padding: 0 3.6%;
  margin: clamp(48px, calc(80 / 1200 * 100vw), 80px) auto 0;
}
.campaign_bnr a {
  display: block;
}
.campaign_bnr img {
  display: block;
}
.amazon_campaign_bnr {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .campaign_bnr {
    display: flex;
    -moz-column-gap: clamp(24px, calc(48 / 1200 * 100vw), 48px);
         column-gap: clamp(24px, calc(48 / 1200 * 100vw), 48px);
    padding: 0 1%;
  }
  .campaign_bnr > * {
    width: 50%;
  }
  .amazon_campaign_bnr {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .campaign_bnr {
    padding: 0;
  }
}

.amazon_campaign_bnr a {
  display: block;
  line-height: 1;
}

/*バナーコンテンツ*/
.banner_content {
  width: 100%;
  max-width: 1280px;
  /* バナーが複数枚の時はコメントアウトする */
  margin: 0 auto;
  padding: 3% 0% 5%;
  padding-left: 1%;
  padding-right: 1%;
  /* バナーが複数枚の時はコメントアウトする */
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .banner_content {
    padding-left: 3.6%;
    /* バナーが複数枚の時はコメントアウトする */
    padding-right: 3.6%;
    /* バナーが複数枚の時はコメントアウトする */
  }
}

.banner_content img {
  width: 100%;
  /* padding: 0 3%; */
}

/*バナーコンテンツ2*/
.banner_content_02 {
  width: 100%;
  margin: 0 auto;
  padding: 0% 1% 5%;
  overflow: hidden;
}

.banner_content_02 .swiper-container {
  overflow: hidden;
}

.banner_content_02 img {
  width: 100%;
  max-width: 500px;
  /* padding: 0 2%; */
}

/*ギフトコンテンツ*/
.gift_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 12%;
  padding-bottom: 5%;
  padding-left: 3.6%;
  padding-right: 3.6%;

}
.gift_contents_title {
  font-size: min(8vw, 24.5px);
  line-height: calc(36 / 24);
  margin-top: 26px;
  font-weight: 400;
}
.gift_contents_text {
  font-size: min(5vw, 14px);
  line-height: calc(25 / 14);
  margin-top: clamp(12px, calc(36 / 1200 * 100vw), 36px);
}

@media screen and (min-width: 768px) {
  .gift_contents {
    display: flex;
    align-items: center;
    -moz-column-gap: clamp(24px, calc(56 / 1200 * 100vw), 56px);
         column-gap: clamp(24px, calc(56 / 1200 * 100vw), 56px);
    padding-top: 3%;
    padding-bottom: 5%;
    padding-right: 1%;
    padding-left: 1%;
  }
  .gift_contents_image {
    display: block;
    width: calc(577 / 1200 * 100%);
  }
  .gift_contents_title {
    font-size: min(30px, 4vw);
  }
  .gift_contents_text {
    font-size: min(16px, 1.2vw);
    line-height: 2;
  }
}
@media screen and (min-width: 1024px) {
  .gift_contents {
    padding-right: 0;
    padding-left: 0;
  }
}

/*アイテムコンテンツ*/
.item_content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10% 0 0;
}

@media screen and (max-width: 767px) {
  .item_content {
    margin: 0 auto;
    padding: 10% 3% 0;
  }
}

.title_icon {
  margin: 0 auto;
  text-align: center;
}

.title_icon img {
  width: 100%;
  max-width: 440px;
}

@media screen and (max-width: 767px) {
  .title_icon img {
    width: 100%;
    max-width: 240px;
  }
}

.subtitle_icon_01 {
  margin: 0 auto;
  text-align: center;
  padding: 7% 0 5%;
}

.subtitle_icon_01 img {
  width: 100%;
  max-width: 320px;
}

@media screen and (max-width: 767px) {
  .subtitle_icon_01 img {
    width: 70%;
  }
}

.item_list {
  margin: 0 auto;
  width: 100%;
  padding: 5% 1% 2%;
  max-width: 1280px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item_list_01 {
  margin: 0% 2% 0 0;
  width: calc(65.499999% - 0px);
}

.item_list_01 img {
  width: 100%;
}

.item_list_01:nth-child(2n) {
  margin: 0 0 0 1%;
  width: calc(31.2% - 0px);
  display: inline-block;
  vertical-align: top;
  padding-top: 6.2vh;
}

.item_list_01:nth-child(2n) img {
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .item_list_01 {
    margin: 0%;
    width: calc(100% - 0px);
  }
}

.pickup_00 {
  position: relative;
}

.pickup_01 {
  position: absolute;
  width: 100%;
  top: -0.5vw;
}

.pickup_01 img {
  width: 30% !important;
  max-width: 188px;
}

@media screen and (max-width: 767px) {
  .pickup_01 {
    position: absolute;
    width: 100%;
    top: -7.5vw;
  }

  .pickup_01 img {
    width: 100% !important;
    max-width: 220px;
  }
}

.pickup_02 p {
  padding: 0 0 3vh 0;
  font-size: 12px;
}

.pickup_02 p span {
  font-size: 16px;
}

.item_list_slider_01 {
  position: relative;
}

.pickup_03 {
  position: absolute;
  width: 100%;
  top: 70%;
  left: 4%;
}

.pickup_03 img {
  width: 30% !important;
  max-width: 150px;
}

@media screen and (max-width: 767px) {
  .pickup_03 {
    position: absolute;
    width: 100%;
    top: 17%;
    left: 4%;
  }

  .pickup_03 img {
    width: 30% !important;
    max-width: 150px;
  }
}

.pickup_04 {
  position: absolute;
  width: 100%;
  top: 80%;
  left: 4%;
  color: #ffffff;
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pickup_04 {
    position: absolute;
    width: 100%;
    top: 80%;
    left: 4%;
    color: #ffffff;
    font-size: 10px;
    text-align: left;
  }
}

.pickup_05 {
  position: absolute;
  width: 100%;
  top: 86%;
  left: 89%;
}

@media screen and (max-width: 767px) {
  .pickup_05 {
    left: 85%;
  }
}

.pickup_05 img {
  width: 10% !important;
  max-width: 60px;
}

.img_padding_01 img {
  padding: 8% 0 0;
}

.item_list .slick-dots {
  bottom: 10px;
}

.item_list .slick-dots li button:before {
  content: "○";
  text-align: center;
  opacity: 0.5;
  color: #ffffff;
}

.item_list .slick-dots li.slick-active button:before {
  content: "●";
  opacity: 1;
  color: #ffffff;
}

.item_hover {
  position: relative;
}

.item_hover_02 {
  display: flex;
  justify-content: center;
  align-items: center;
  /*cursor: pointer;*/
  pointer-events: none;
  position: absolute;
  width: 60%;
  top: 30%;
  left: 20%;
}

.item_list_02 img {
  width: 100%;
}

.item_list_02 {
  margin: 0% 0% 0 0;
  width: calc(31.3333333% - 0px);
}

.item_list_02:nth-child(2n) {
  margin: 0 3% 0%;
  width: calc(31.3333333% - 0px);
}

@media screen and (max-width: 767px) {
  .item_list_02 {
    margin: 0% 0% 1% 0;
    width: calc(48.5% - 0px);
  }

  .item_list_02:nth-child(2n) {
    margin: 0 0% 0% 3%;
    width: calc(48.5% - 0px);
  }
}

.item_link {
  width: 100%;
}

.item_link img {
  float: right;
  padding-right: 1%;
}

@media screen and (max-width: 767px) {
  .item_link {
    width: 100%;
  }

  .item_link img {
    width: 50%;
    padding: 45% 0 0;
    float: inherit;
  }
}

/*ホバーブラック*/
.hover_black {
  transition: -webkit-filter 0.6s ease;
  transition: filter 0.6s ease;
  transition: filter 0.6s ease, -webkit-filter 0.6s ease;
}

.hover_black:hover {
  -webkit-filter: brightness(40%);
  filter: brightness(40%);
}

/*プロダクト*/
.products_01 {
  margin: 0 auto;
  width: 100%;
  padding: 5% 1%;
  max-width: 1280px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.products_list_01 {
  margin: 0% 2% 0 0;
  width: calc(46% - 0px);
}

.item_list_01 img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .products_list_01 {
    margin: 0%;
    width: calc(100% - 0px);
  }

  .hover_black {
    transition: none;
  }

  .hover_black:hover {
    -webkit-filter: none;
    filter: none;
  }
}

.products_text {
  text-align: left;
}

.products_text_01 {
  font-size: min(28px, 4vw);
}

.products_text_02 {
  font-size: min(12px, 1.1vw);
  padding: 0 0 6% 0;
}

.products_text_03 {
  font-size: min(16px, 1.2vw);
  padding: 0 0 6% 0;
}

@media screen and (max-width: 767px) {
  .products_text_01 {
    text-align: center;
    font-size: min(8vw, 24.5px);
  }

  .products_text_02 {
    font-size: min(3vw, 10.5px);
    text-align: center;
    padding: 0 0 0% 0;
  }

  .products_text_03 {
    font-size: min(5vw, 14px);
    padding: 0 0 6% 0;
  }
}

.read_more_01 {
  float: right;
}

.and_more_01 {
  margin: 0 auto;
  text-align: center;
}

.and_more_01 img {
  width: 100%;
  /* max-width: 129px; */
  max-width: 80px;
}

@media screen and (max-width: 767px) {
  .and_more_01 img {
    width: 100%;
    /* max-width: 90px; */
    max-width: 60px;
  }
}

/*コンセプト*/
.concept_01 {
  padding: 5% 1%;
}

.concept_02 {
  padding: 0% 1% 5%;
}

.concept_bg {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

.concept_bg_img {
  overflow: hidden;
  width: 100%;
}

.concept_bg_img img {
  display: block;
  transition: 1s all;
  width: 100%;
}

.concept_bg_img img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}

.concept_text {
  position: absolute;
  z-index: 1;
  width: 38%;
  color: #fff;
  top: 7%;
  right: 3.5%;
  pointer-events: none;
}

.concept_text img {
  width: 100%;
}

.concept_text_00 {
  position: absolute;
  z-index: 1;
  color: #fff;
  width: 38%;
  right: 3.5%;
  top: 21%;
  text-align: center;
  pointer-events: none;
}

.concept_text_01 {
  font-size: min(28px, 3vw);
  padding: 0 0 2% 0;
}

.concept_text_02 {
  font-size: 12px;
  padding: 0 0 6% 0;
}

.concept_text_03 {
  font-size: min(16px, 1.2vw);
  text-align: left;
  padding: 0 0 6% 0;
}

@media screen and (max-width: 767px) {
  .concept_text_sp_01 {
    text-align: center;
    font-size: min(8vw, 24.5px);
    ine-height: 1.7;
  }

  .concept_text_sp_02 {
    font-size: min(3vw, 10.5px);
    text-align: center;
    padding: 0 0 0% 0;
  }

  .concept_text_sp_02 span {
    font-size: min(5vw, 14px);
    text-align: center;
    padding: 0 0 0% 0;
  }

  .concept_text_sp_03 {
    font-size: min(3vw, 10.5px);
    text-align: center;
    padding: 0 0 5% 0;
  }

  .concept_text_sp_04 {
    font-size: min(5vw, 14px);
    padding: 5% 0 5% 0;
  }
}

.read_more_02 {
  float: right;
}

.concept_bg_link {
  position: absolute;
  z-index: 100;
  width: 9%;
  right: 17.5%;
  top: 88%;
  text-align: center;
}

.concept_bg_link:hover {
  opacity: 0.8;
}

/*アバウト*/
.about_text_01 {
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  font-size: min(16px, 1.2vw);
  padding: 0 0 6% 0;
  text-align: center;
}

.about_text_02 {
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  font-size: min(28px, 7vw);
  padding: 0 0 0% 0;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 3px;
}

.about_text_03 {
  width: 100%;
  max-width: 564px;
  margin: -0.5% auto 0;
  font-size: min(12px, 1.2vw);
  padding: 0% 0 6% 0;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .about_text_01 {
    font-size: min(7vw, 14px);
    padding: 0 0 6% 0;
    text-align: center;
  }

  .about_text_03 {
    font-size: min(12px, 1.2vw);
    padding: 0% 0 1% 0;
    text-align: center;
    font-feature-settings: "palt" 1;
    letter-spacing: 2px;
  }
}

.about_01 {
  margin: 0 auto;
  width: 100%;
  padding: 5% 1%;
  max-width: 1280px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.about_02 {
  margin: -6.5% auto;
  width: 100%;
  padding: 0% 1% 5%;
  max-width: 1280px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.about_03 {
  margin: 0 auto;
  width: 100%;
  padding: 0% 1% 5%;
  max-width: 1280px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.about_list_01 {
  margin: 0% 2% 0 0;
  width: calc(32% - 0px);
}

.about_list_01:nth-child(2) {
  margin: 0% 2% 0 0;
  width: calc(63% - 0px);
}

@media screen and (max-width: 767px) {
  .about_list_01 {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }

  .about_list_01:nth-child(2) {
    margin: 0% 0% 5% 0;
    width: calc(100% - 0px);
  }
}

.about_text {
  text-align: right;
}

.about_list_01 .read_more_01 {
  float: right;
}

.about_list_02 {
  margin: 0% 2% 0 0;
  width: calc(44% - 0px);
}

.about_list_02:nth-child(2) {
  margin: 0% 2% 0 0;
  width: calc(52% - 0px);
}

@media screen and (max-width: 767px) {
  .about_list_02 {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }

  .about_list_02:nth-child(2) {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }
}

.about_list_02 .about_text {
  text-align: left;
}

.about_list_02 .read_more_01 {
  float: left;
}

.about_list_03 {
  margin: 0% 2% 0 0;
  /* width: calc(16% - 0px); */
  width: calc(36% - 0px);
}

.about_list_03:nth-child(2) {
  margin: 0% 2% 0 0;
  /* width: calc(80% - 0px); */
  width: calc(60% - 0px);
}

@media screen and (max-width: 767px) {
  .about_list_03 {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }

  .about_list_03:nth-child(2) {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }
}

.about_list_04 {
  margin: 0% 2% 0 0;
  width: calc(62% - 0px);
}

.about_list_04:nth-child(2) {
  margin: 0% 2% 0 0;
  width: calc(34% - 0px);
}

@media screen and (max-width: 767px) {
  .about_list_04 {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }

  .about_list_04:nth-child(2) {
    margin: 0% 0% 0 0;
    width: calc(100% - 0px);
  }
}

.about_list_04 .about_text {
  text-align: left;
}

.about_list_04 .read_more_01 {
  float: left;
}

.about_text_04 {
  font-size: min(28px, 2.5vw);
}

.about_text_05 {
  font-size: min(12px, 1.2vw);
  padding: 0 0 2% 0;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}

.about_text_06 {
  font-size: min(16px, 1.2vw);
  padding: 0 0 6% 0;
}

@media screen and (max-width: 767px) {
  .about_text_04_f {
    font-size: min(10vw, 27px);
    text-align: center;
    padding: 0% 0 0 0;
  }

  .about_text_04 {
    font-size: min(10vw, 27px);
    text-align: center;
    padding: 15% 0 0 0;
  }

  .about_text_05 {
    font-size: min(5vw, 10px);
    padding: 0 0 2% 0;
    text-align: center;
    font-feature-settings: "palt" 1;
    letter-spacing: 2px;
  }

  .about_text_06 {
    font-size: min(6vw, 14px);
    padding: 3% 0 3% 0;
  }
}

.about_list_02 .about_text_04 {
  padding: 5% 0 0% 0;
  font-size: min(28px, 2.5vw);
}

.about_list_02 .about_text_05 {
  font-size: min(12px, 1.2vw);
  padding: 0 0 0% 0;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}

hr.style1 {
  border-top: 1px solid #231815;
  width: 50vw;
}

hr.style2 {
  border-top: 1px solid #231815;
  width: 60%;
  margin: 1em 0 1em -4.1%;
}

.about_list_04 hr.style2 {
  border-top: 1px solid #231815;
  width: 100%;
  margin: 1em 0 1em -5.7%;
}

hr.style3 {
  border-top: 0.1em solid #231815;
  margin: 3% calc(50% - 50vw) 5%;
  width: 100vw;
}

hr.style4 {
  border-top: 0.1em solid #231815;
  margin: 2% calc(50% - 50vw) 0%;
  width: 100vw;
}

hr.style5 {
  border-top: 1px solid #231815;
  width: 100%;
  margin: 2% 3% 0 3%;
}

/*加盟団体*/
.membership_text_01 {
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  font-size: min(28px, 7vw);
  padding: 0 0 0% 0;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 3px;
}

.membership_text_02 {
  width: 100%;
  max-width: 564px;
  margin: -0.5% auto 0;
  font-size: min(12px, 1.2vw);
  padding: 0% 0 6% 0;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}

.membership_text_03 {
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  font-size: min(16px, 1.2vw);
}

@media screen and (max-width: 767px) {
  .membership_text_01 {
    font-size: min(7vw, 24px);
    padding: 0 0 0% 0;
  }

  .membership_text_02 {
    margin: -0.5% auto 0;
    font-size: min(1.2vw, 10px);
    padding: 0% 0 3% 0;
  }

  .membership_text_03 {
    font-size: min(4vw, 14px);
    padding: 0 0 6% 0;
  }
}

.subtitle_icon_02 {
  margin: 0 auto;
  text-align: center;
}
.subtitle_icon_02 img {
  width: 100%;
  max-width: 220px;
  mix-blend-mode: multiply;
  transform: translate3d(0, 0, 0);
}
.subtitle_icon_02_wrapper + .subtitle_icon_02_wrapper {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .subtitle_icon_02 img {
    width: 55%;
  }
}
/* 2023/11/14 追加 */
@media screen and (min-width: 768px) {
  .subtitle_icon_02_wrapper {
    width: 42.1875%;
    max-width: 810px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 48px;
    column-gap: 48px;
  }
  .subtitle_icon_02 {
    width: 50%;
    margin: 0;
  }
  .membership_text_03 {
    margin: 0;
  }
}

.membership_text_04 {
  font-size: min(4vw, 14px);
  padding: 0 0 2% 0;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .membership_text_04 {
    font-size: min(5vw, 10px);
    padding: 0 0 2% 0;
  }
}

/*ヒストリー*/
.history_01 {
  margin: 0 auto;
  width: 100%;
  padding: 1.3% 1%;
  max-width: 810px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.history {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.line-vertical {
  left: 27%;
  width: 1px;
  top: 7%;
  height: 90%;
  background: #231815;
  position: absolute;
}

.history_list_01 {
  margin: 0% 2% 0 0;
  width: calc(22% - 0px);
}

.history_list_01:nth-child(2) {
  margin: 0% 2% 0 0;
  width: calc(73% - 0px);
}

@media screen and (max-width: 767px) {
  .history_list_01 {
    margin: 0% 1% 0 0;
    width: calc(49% - 0px);
  }

  .history_list_01:nth-child(2) {
    margin: 0% 0% 0 1%;
    width: calc(49% - 0px);
  }
}

.history_list_01 img {
  width: 100%;
  max-width: 160px;
}

@media screen and (max-width: 767px) {
  .history_list_01 img {
    min-width: 100%;
  }
}

.history_text_01 {
  width: 100%;
  margin: 0 auto;
  font-size: min(16px, 1.2vw);
  padding: 0 0 0% 3%;
  text-align: left;
  font-feature-settings: "palt" 1;
  letter-spacing: 3px;
  position: relative;
}

.history_text_01::before {
  content: "";
  display: inline-block;
  width: 0.5%;
  height: 70%;
  background-color: #000;
  position: absolute;
  top: 0.3vw;
  left: 0%;
}

.history_text_02 {
  width: 100%;
  margin: 0 auto;
  font-size: min(12px, 1.2vw);
  padding: 3% 0 0% 0%;
  text-align: left;
  font-feature-settings: "palt" 1;
  letter-spacing: 3px;
  position: relative;
}

/*アコーディオン*/
.faqwrper {
  margin: 0 auto 0;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .faqwrper {
    margin: -4.5vh auto 0;
  }
}

.fp-accordion .toggle-content {
  display: none;
}

.fp-accordion .icons {
  display: inline-block;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}

.fp-accordion .icons img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.fp-accordion .icons img:last-child {
  opacity: 0;
}

.fp-accordion.active .toggle-content {
  display: block;
}

.fp-accordion.active img:last-child {
  opacity: 1;
}

.fp-accordion.active img:first-child {
  opacity: 0;
}

.fp-accordion.style-1 {
  margin-bottom: 10px;
}

.fp-accordion.style-1 .toggle-content {
  padding-bottom: 15px;
}

.fp-accordion.style-1 .icons {
  width: 100%;
  padding: 15% 0 0;
}

.fp-accordion.style-1 .icons img {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.fp-accordion.style-1 .icons img:last-child {
  opacity: 0;
}

.fp-accordion.style-1.active .toggle-content {
  display: block;
}

.fp-accordion.style-1.active img:last-child {
  opacity: 1;
}

.fp-accordion.style-1.active img:first-child {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .fp-accordion.style-1 .icons {
    padding: 1% 0;
  }

  .fp-accordion.style-1 .icons img {
    top: -900%;
    left: 76%;
    width: 18%;
  }
}

/**/
#facebook_icon {
  width: 100%;
  max-width: 24px;
}

#instagram_icon {
  width: 100%;
  max-width: 24px;
}

/******************** 臨時バナー ********************/

.purse-bunner {
  width: 100%;
  max-width: 1280px;
  margin: 8em auto 0;
  padding: 0 1%;
}

.purse-bunner img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .purse-bunner {
    margin: 4em auto 2em;
    padding: 0 3.6%;
  }
}

/******************** 臨時バナー ********************/

.gift_contents_link {
  display: block;
  width: 100%;
  padding: 0.75em 2.5em;
  margin-top: 3em;
  color: #fff;
  background-color: #32312f;
  text-align: center;
  max-width: 348px;
}
.gift_contents_link:hover {
  opacity: .6;
}