@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  vertical-align: middle;
  border: none;
}

input {
  outline: 0;
}

button,
input {
  *overflow: visible;
  line-height: normal;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

label,
select,
button,
input[type=button],
input[type=reset],
input[type=submit],
input[type=radio],
input[type=checkbox] {
  cursor: pointer;
}

textarea {
  overflow: auto;
  vertical-align: top;
  font-family: sans-serif;
}

/* DEFAULT_VARIABLE */
/*
 * 機能：clamp関数の文字列を返す
 * 引数：$size-at-min-width サイズ(フォントサイズなど)の最小値(pxやremなどの単位は必須)
 * 　　　$size-at-max-width サイズ(フォントサイズなど)の最大値(pxやremなどの単位は必須)
 * 　　　$min-width [省略可]サイズが最小値に到達する画面幅
 * 　　　$max-width [省略可]サイズが最大値に到達する画面幅
 * 使用方法：
 *　　デフォルトの最小画面幅$min-width-defaultと最大画面幅$max-width-defaultを事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
.hover_img:hover {
  opacity: 0.5;
}

html, body {
  overscroll-behavior: none; /* Chrome, Firefox, Edge */
  overscroll-behavior-y: none;
}

body {
  color: #102B3E;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-size: calc(14 / 10) rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.m-btn01 {
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(clamp(2.1942857143px, 0px + 0.286vw, 4px) clamp(2.1942857143px, 0px + 0.286vw, 4px) 0 rgb(156, 113, 113));
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .m-btn01 {
    filter: drop-shadow(1.25vw 1.25vw 0 rgb(156, 113, 113));
  }
}
.m-btn01:hover {
  transform: translate3d(clamp(2.1942857143px, 0px + 0.286vw, 4px), clamp(2.1942857143px, 0px + 0.286vw, 4px), 0);
  filter: drop-shadow(0 0 0 rgb(156, 113, 113));
}
@media screen and (max-width: 768px) {
  .m-btn01:hover {
    transform: translate3d(1.25vw, 1.25vw, 0);
  }
}
.m-btn01.is-default {
  width: clamp(186.5142857143px, 0px + 24.286vw, 340px);
  height: clamp(43.8857142857px, 0px + 5.714vw, 80px);
}
@media screen and (max-width: 768px) {
  .m-btn01.is-default {
    width: 50vw;
    height: 12.5vw;
  }
}
.m-btn01.is-default .moduleInner {
  height: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .m-btn01.is-default .moduleInner {
    height: 5vw;
  }
}
.m-btn01.is-default .moduleInner img {
  height: 100%;
}
.m-btn01 .moduleWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #9B0D0D;
  border-radius: clamp(4.3885714286px, 0px + 0.571vw, 8px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-btn01 .moduleWrapper {
    border-radius: 2.5vw;
  }
}
.m-btn01 .moduleWrapper:before, .m-btn01 .moduleWrapper:after {
  content: "";
  display: inline-block;
  position: absolute;
  pointer-events: none;
}
.m-btn01 .moduleWrapper:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture01_paper01.webp);
  background-size: clamp(242.688px, 0px + 31.6vw, 442.4px);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .m-btn01 .moduleWrapper:before {
    background-size: 138.25vw;
  }
}
.m-btn01 .moduleWrapper:after {
  top: 0;
  right: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  bottom: 0;
  width: clamp(6.0342857143px, 0px + 0.786vw, 11px);
  height: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  margin: auto 0;
  background-image: url(../images/common/module_bg_btn01_arrow01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .m-btn01 .moduleWrapper:after {
    right: 2.1875vw;
    width: 2.40625vw;
    height: 3.5vw;
  }
}
.m-btn01 .moduleWrapper .moduleInner {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.m-btn01 .moduleWrapper .moduleInner img {
  pointer-events: none;
}

#l-contentsTop {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto; /* スクロールはこの中でのみ許可 */
  -webkit-overflow-scrolling: touch; /* iOS スムーススクロール */
}

.l-mainContents {
  position: relative;
  padding-bottom: clamp(87.7714285714px, 0px + 11.429vw, 160px);
  background-color: #EDEDED;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-mainContents.is-open {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .l-mainContents {
    padding-bottom: 15.625vw;
  }
}
.l-mainContents:before, .l-mainContents:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-mainContents:before {
  background-image: url(../images/common/texture01_paper01.webp);
  background-size: clamp(303.36px, 0px + 39.5vw, 553px);
  opacity: 0.4;
}
.l-mainContents:after {
  background-image: url(../images/common/pagetitle_bg01.webp);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: clamp(768px, 0px + 100vw, 1400px);
}
@media screen and (max-width: 768px) {
  .l-mainContents:after {
    background-image: url(../images/common/pagetitle_bg01_sp.webp);
    background-size: 100vw;
  }
}
.l-mainContents.is-home {
  padding-bottom: 0;
  background-color: #fff;
}
.l-mainContents.is-home:before, .l-mainContents.is-home:after {
  display: none;
}

.l-contentsBody {
  position: relative;
  margin-top: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l-contentsBody {
    margin-top: 0;
    min-width: 0;
  }
}

.l-contentsBlock {
  margin-bottom: clamp(35.6571428571px, 0px + 4.643vw, 65px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-contentsBlock {
    margin-bottom: 9.375vw;
  }
}
.l-contentsBlock.is-primary {
  margin-bottom: 0 !important;
}
.l-contentsBlock:last-child {
  margin-bottom: 0 !important;
}

.l-contentsArea {
  margin-bottom: clamp(27.4285714286px, 0px + 3.571vw, 50px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-contentsArea {
    margin-bottom: 7.8125vw;
  }
}
.l-contentsArea:last-child {
  margin-bottom: 0 !important;
}

.l-contentsBox {
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .l-contentsBox {
    margin-bottom: 9.375vw;
  }
}
.l-contentsBox:last-child {
  margin-bottom: 0 !important;
}

.l-contentsWidth {
  margin: 0 auto;
  max-width: clamp(548.5714285714px, 0px + 71.429vw, 1000px);
  width: 100%;
}
.l-contentsWidth.is-wide {
  max-width: clamp(658.2857142857px, 0px + 85.714vw, 1200px);
}
.l-contentsWidth.is-narrow {
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .l-contentsWidth {
    max-width: 100% !important;
    width: 100% !important;
  }
}

.l-mqWrapper {
  padding: 0 clamp(10.9714285714px, 0px + 1.429vw, 20px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-mqWrapper {
    padding: 0 3.125vw;
  }
}

.l-bgBlock01 {
  display: flex;
  flex-direction: column;
  gap: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  width: 100%;
  position: relative;
  background-color: #EDEDED;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-bgBlock01 {
    gap: 17.1875vw;
  }
}
.l-bgBlock01:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture01_paper01.webp);
  opacity: 0.4;
  pointer-events: none;
}
.l-bgBlock01 > * {
  position: relative;
  z-index: 1;
}

.l-bgBlock02 {
  padding: clamp(43.8857142857px, 0px + 5.714vw, 80px) 0;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-bgBlock02 {
    padding: 18.75vw 0;
  }
}

.l-bgBox01 {
  padding: clamp(32.9142857143px, 0px + 4.286vw, 60px);
  border-radius: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  filter: drop-shadow(0 0 clamp(10.9714285714px, 0px + 1.429vw, 20px) rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 768px) {
  .l-bgBox01 {
    padding: 6.25vw 3.125vw;
    filter: drop-shadow(0 0 6.25vw rgba(0, 0, 0, 0.05));
  }
}
.l-bgBox01.is-white {
  background-color: #fff;
}
.l-bgBox01.is-primary {
  padding: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .l-bgBox01.is-primary {
    padding: 6.25vw 3.125vw;
  }
}

.l-positionWrapper01 {
  display: flex;
  width: 100%;
}
.l-positionWrapper01.is-left {
  justify-content: flex-start;
}
.l-positionWrapper01.is-center {
  justify-content: center;
}
.l-positionWrapper01.is-right {
  justify-content: flex-end;
}
.l-positionWrapper01 .contentBox {
  flex-shrink: 0;
}

.c-globalHeader01 {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  transition: all 0.3s;
}
.c-globalHeader01.is-hidden > .componentWrapper .block.is-logo {
  pointer-events: none;
  opacity: 0;
}
.c-globalHeader01.is-hidden > .componentWrapper .block.is-nav {
  transform: translate3d(150%, 0, 0);
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-open > .componentWrapper::before, .c-globalHeader01.is-open > .componentWrapper::after {
    content: "";
    pointer-events: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-open > .componentWrapper::before {
    background-image: url(../images/common/texture_dot01.webp);
    background-size: 1.25vw;
    opacity: 0.2;
  }
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-open > .componentWrapper::after {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-open > .componentWrapper .block.is-logo {
    opacity: 0 !important;
  }
  .c-globalHeader01.is-open > .componentWrapper .block.is-logo .logo {
    pointer-events: none !important;
  }
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-open > .componentWrapper .block.is-nav {
    transform: translate3d(-59.375vw, 0, 0) !important;
  }
  .c-globalHeader01.is-open > .componentWrapper .block.is-nav .area.is-menu .btn {
    background-color: #333 !important;
  }
  .c-globalHeader01.is-open > .componentWrapper .block.is-nav .area.is-menu .btn img:nth-of-type(1) {
    display: none;
  }
  .c-globalHeader01.is-open > .componentWrapper .block.is-nav .area.is-menu .btn img:nth-of-type(2) {
    display: block;
  }
}
.c-globalHeader01.is-open > .componentWrapper .block.is-spNav {
  pointer-events: all;
  transform: translate3d(0, 0, 0);
}
.c-globalHeader01.is-scrolled > .componentWrapper .block.is-logo .logo .is-top img:nth-of-type(1) {
  pointer-events: none;
  opacity: 0;
}
.c-globalHeader01.is-scrolled > .componentWrapper .block.is-logo .logo .is-top img:nth-of-type(2) {
  pointer-events: all;
  opacity: 1;
}
.c-globalHeader01.is-home > .componentWrapper:before {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-home > .componentWrapper:before {
    display: inline-block;
  }
}
.c-globalHeader01.is-home > .componentWrapper .block.is-logo {
  width: clamp(181.0285714286px, 0px + 23.571vw, 330px);
}
.c-globalHeader01.is-home > .componentWrapper .block.is-logo .logo {
  filter: drop-shadow(0 0 clamp(2.7428571429px, 0px + 0.357vw, 5px) rgba(255, 255, 255, 0.9));
}
@media screen and (max-width: 768px) {
  .c-globalHeader01.is-home > .componentWrapper .block.is-logo .logo {
    filter: none;
  }
}
.c-globalHeader01 > .componentWrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px) clamp(10.9714285714px, 0px + 1.429vw, 20px) 0;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper {
    padding: 3.125vw 3.125vw 0;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-spNav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60svw;
  height: 100svh;
  background-color: #413C33;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s ease-in-out;
  z-index: 9000;
}
.c-globalHeader01 > .componentWrapper .block.is-spNav::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture_japanese01.webp);
  background-size: 12.5vw;
  opacity: 0.02;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-spNav {
    pointer-events: all;
    display: block;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-spNav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4.6875vw;
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.c-globalHeader01 > .componentWrapper .block.is-spNav ul li img {
  height: 6.25vw;
}
.c-globalHeader01 > .componentWrapper .block.is-logo {
  position: relative;
  z-index: 1;
  width: clamp(192px, 0px + 25vw, 350px);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-logo {
    width: 28.125vw !important;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo {
  position: relative;
  width: 100%;
  pointer-events: all;
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo a {
  display: block;
  transition: opacity 0.3s;
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo a:hover {
  opacity: 0.7;
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo img {
  width: 100%;
  transition: opacity 0.3s ease;
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo img.is-normal {
  display: none;
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo img.is-white {
  display: block;
}
.c-globalHeader01 > .componentWrapper .block.is-logo .logo .is-top img:nth-of-type(2) {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.c-globalHeader01 > .componentWrapper .block.is-nav {
  display: flex;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  position: relative;
  pointer-events: all;
  transition: transform 0.4s ease-in-out;
  z-index: 8000;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav {
    gap: 1.875vw;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  right: clamp(-20px, 0px + -1.429vw, -10.9714285714px);
  width: calc(100% + clamp(16.4571428571px, 0px + 2.143vw, 30px));
  height: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  background-color: #782F06;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px) 0 0 clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav:before {
    top: 1.5625vw;
    right: -3.125vw;
    width: calc(100% + 6.25vw);
    height: 1.5625vw;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area {
  position: relative;
  z-index: 1;
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-menu {
    display: block;
  }
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-menu .btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3.75vw 0;
    width: 9.375vw;
    background-color: #fff;
    border-radius: 1.875vw;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
  }
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-menu .btn img {
    width: 100%;
    max-width: 4.0625vw;
  }
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-menu .btn img:nth-of-type(2) {
    display: none;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav {
  display: flex;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list {
  width: clamp(32.3657142857px, 0px + 4.214vw, 59px);
  filter: drop-shadow(0 0 clamp(5.4857142857px, 0px + 0.714vw, 10px) rgba(0, 0, 0, 0.05));
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: clamp(9.8742857143px, 0px + 1.286vw, 18px) 0;
  width: 100%;
  min-height: clamp(76.8px, 0px + 10vw, 140px);
  background-color: #fff;
  box-sizing: border-box;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a {
    padding: 3.75vw 0;
    min-height: 0;
    border-radius: 1.875vw;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a:hover {
  background-color: #333;
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a:hover img:nth-of-type(1) {
  opacity: 0;
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a:hover img:nth-of-type(2) {
  opacity: 1;
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a img {
  width: 100%;
  max-width: clamp(12.6171428571px, 0px + 1.643vw, 23px);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a img {
    max-width: 4.0625vw;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav .list a img:nth-of-type(2) {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type01 {
    display: none;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list {
  width: clamp(40.0457142857px, 0px + 5.214vw, 73px);
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list {
    width: 10vw;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list a {
  padding: clamp(13.7142857143px, 0px + 1.786vw, 25px) 0;
  background-color: #9B0D0D;
  border-radius: clamp(4.3885714286px, 0px + 0.571vw, 8px);
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list a:hover {
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list a {
    padding: 3.125vw 0;
    border-radius: 2.5vw;
  }
}
.c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list a img {
  max-width: clamp(13.7142857143px, 0px + 1.786vw, 25px);
}
@media screen and (max-width: 768px) {
  .c-globalHeader01 > .componentWrapper .block.is-nav .area.is-nav.is-type02 .list a img {
    max-width: 3.75vw;
  }
}

.c-globalFooter01 {
  position: relative;
  background-image: url(../images/common/footer_bg01.webp);
  background-size: cover;
  background-position: center;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01.is-open {
    pointer-events: none;
  }
}
.c-globalFooter01:before, .c-globalFooter01:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-globalFooter01:before {
  background-color: #000;
  opacity: 0.4;
}
.c-globalFooter01:after {
  background-image: url(../images/common/texture_dot01.webp);
  background-size: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01:after {
    background-size: 1.875vw;
  }
}
.c-globalFooter01 .componentWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32.9142857143px, 0px + 4.286vw, 60px) clamp(21.9428571429px, 0px + 2.857vw, 40px);
  height: clamp(548.5714285714px, 0px + 71.429vw, 1000px);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper {
    gap: 40.625vw;
    padding: 9.375vw 6.25vw;
    height: auto;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top {
    flex-direction: column;
    align-items: center;
    gap: 9.375vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-logo {
  width: clamp(181.0285714286px, 0px + 23.571vw, 330px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-logo {
    width: 56.25vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-logo .logo {
  width: 100%;
  filter: drop-shadow(0 0 clamp(2.7428571429px, 0px + 0.357vw, 5px) rgba(255, 255, 255, 0.9));
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-logo .logo {
    filter: drop-shadow(0 0 0.56875vw rgba(255, 255, 255, 0.9));
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-logo .logo a {
  display: block;
  transition: opacity 0.3s;
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-logo .logo a:hover {
  opacity: 0.7;
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-logo .logo a img {
  width: 100%;
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav {
  display: flex;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-nav {
    justify-content: space-between;
    gap: auto;
    width: 100%;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu {
  display: flex;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu {
    justify-content: space-between;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu .list {
  width: clamp(17.0057142857px, 0px + 2.214vw, 31px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu .list {
    width: 6.25vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu .list a {
  display: block;
  transition: opacity 0.3s;
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu .list a:hover {
  opacity: 0.7;
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu .list a img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu.is-type01 {
    width: 83.675%;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu.is-type02 {
  flex-direction: column;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu.is-type02 {
    gap: 3.125vw;
    justify-content: flex-start;
    align-items: center;
  }
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu.is-type02 img {
  width: 100%;
}
.c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu.is-type02 .list {
  width: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-top .area.is-nav .box.is-menu.is-type02 .list {
    width: 9.375vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(8.7771428571px, 0px + 1.143vw, 16px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-bottom {
    gap: 5vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-bottom .area.is-logo .logo {
  width: clamp(54.8571428571px, 0px + 7.143vw, 100px);
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-bottom .area.is-logo .logo {
    width: 31.25vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-bottom .area.is-logo .logo img {
  width: 100%;
}
.c-globalFooter01 .componentWrapper .block.is-bottom .area.is-address p.text {
  color: #fff;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-bottom .area.is-address p.text {
    font-size: 14px;
    font-size: 4.375vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-bottom .area.is-copy p.copy {
  color: #fff;
  font-size: 14px;
  font-size: clamp(7.68px, 0px + 1vw, 14px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-bottom .area.is-copy p.copy {
    font-size: 13px;
    font-size: 4.0625vw;
  }
}
.c-globalFooter01 .componentWrapper .block.is-btn {
  display: none;
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  position: fixed;
  right: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  bottom: clamp(54.8571428571px, 0px + 7.143vw, 100px);
  z-index: 9998;
}
@media screen and (max-width: 768px) {
  .c-globalFooter01 .componentWrapper .block.is-btn {
    display: none !important;
  }
}
.c-globalFooter01 .componentWrapper .block.is-btn .btn {
  width: 100%;
  transition: opacity 0.3s;
}
.c-globalFooter01 .componentWrapper .block.is-btn .btn:hover {
  opacity: 0.7;
}
.c-globalFooter01 .componentWrapper .block.is-btn .btn {
  cursor: pointer;
}
.c-globalFooter01 .componentWrapper .block.is-btn .btn img {
  width: 100%;
}

.c-pageTitle01 .componentWrapper {
  padding-top: clamp(90.5142857143px, 0px + 11.786vw, 165px);
}
@media screen and (max-width: 768px) {
  .c-pageTitle01 .componentWrapper {
    padding-top: 27.1875vw;
  }
}
.c-pageTitle01 .componentWrapper .block.is-title .title {
  margin-left: clamp(-30px, 0px + -2.143vw, -16.4571428571px);
  height: clamp(55.4057142857px, 0px + 7.214vw, 101px);
}
@media screen and (max-width: 768px) {
  .c-pageTitle01 .componentWrapper .block.is-title .title {
    margin-left: 0;
    height: auto;
  }
}
.c-pageTitle01 .componentWrapper .block.is-title .title span, .c-pageTitle01 .componentWrapper .block.is-title .title img {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-pageTitle01 .componentWrapper .block.is-title .title span, .c-pageTitle01 .componentWrapper .block.is-title .title img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-pageTitle01 .componentWrapper .block.is-title .title img.is-pc {
    display: none;
  }
}
.c-pageTitle01 .componentWrapper .block.is-title .title img.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-pageTitle01 .componentWrapper .block.is-title .title img.is-sp {
    display: inline-block;
  }
}

.c-detailSet01 .componentWrapper .block.is-date {
  margin-bottom: clamp(8.2285714286px, 0px + 1.071vw, 15px);
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-date {
    margin-bottom: 3.125vw;
  }
}
.c-detailSet01 .componentWrapper .block.is-date .date {
  color: #737373;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-date .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-detailSet01 .componentWrapper .block.is-title {
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-title {
    margin-bottom: 4.6875vw;
  }
}
.c-detailSet01 .componentWrapper .block.is-title .title {
  font-size: 32px;
  font-size: clamp(17.5542857143px, 0px + 2.286vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-title .title {
    font-size: 22px;
    font-size: 6.875vw;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-detailSet01 .componentWrapper .block.is-contents > *:not(:last-child) {
  margin-bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-contents > *:not(:last-child) {
    margin-bottom: 6.25vw;
  }
}
.c-detailSet01 .componentWrapper .block.is-contents p {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-contents p {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-detailSet01 .componentWrapper .block.is-contents p a {
  color: #9B0D0D;
  text-decoration: underline;
}
.c-detailSet01 .componentWrapper .block.is-contents p s {
  color: #737373;
  text-decoration: line-through;
}
.c-detailSet01 .componentWrapper .block.is-contents p sup {
  font-size: 0.8em;
  vertical-align: super;
}
.c-detailSet01 .componentWrapper .block.is-contents p sub {
  font-size: 0.8em;
  vertical-align: sub;
}
.c-detailSet01 .componentWrapper .block.is-contents img {
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-contents img {
    border-radius: 3.125vw;
  }
}
.c-detailSet01 .componentWrapper .block.is-contents .wp-block-media-text {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-detailSet01 .componentWrapper .block.is-contents .wp-block-media-text {
    gap: 4.6875vw;
    grid-template-columns: 1fr;
  }
}
.c-detailSet01 .componentWrapper .block.is-contents .wp-block-media-text__content {
  padding: 0;
}

.c-pagenationSet01 .componentWrapper .block.is-pagenation {
  display: flex;
  justify-content: center;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-pagenationSet01 .componentWrapper .block.is-pagenation {
    gap: 3.125vw;
  }
}
.c-pagenationSet01 .componentWrapper .block.is-pagenation li {
  width: clamp(32.9142857143px, 0px + 4.286vw, 60px);
  height: clamp(32.9142857143px, 0px + 4.286vw, 60px);
}
@media screen and (max-width: 768px) {
  .c-pagenationSet01 .componentWrapper .block.is-pagenation li {
    width: 12.5vw;
    height: 12.5vw;
  }
}
.c-pagenationSet01 .componentWrapper .block.is-pagenation li span, .c-pagenationSet01 .componentWrapper .block.is-pagenation li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: #9B0D0D;
  color: white;
  border-radius: clamp(4.3885714286px, 0px + 0.571vw, 8px);
  text-decoration: none;
  box-shadow: clamp(2.1942857143px, 0px + 0.286vw, 4px) clamp(2.1942857143px, 0px + 0.286vw, 4px) 0 #9D7171;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-pagenationSet01 .componentWrapper .block.is-pagenation li span, .c-pagenationSet01 .componentWrapper .block.is-pagenation li a {
    padding: 4.0625vw;
    font-size: 16px;
    font-size: 5vw;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    border-radius: 1.5625vw;
    box-shadow: 0.78125vw 0.78125vw 0 #9D7171;
  }
}
.c-pagenationSet01 .componentWrapper .block.is-pagenation li span.current, .c-pagenationSet01 .componentWrapper .block.is-pagenation li a.current {
  background-color: gray;
  color: white;
  pointer-events: none;
  box-shadow: none;
}

.c-tableSet01 .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-title {
    margin-bottom: 9.375vw;
  }
}
.c-tableSet01 .componentWrapper .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-title .title {
    height: 12.890625vw;
  }
}
.c-tableSet01 .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-tableSet01 .componentWrapper .block.is-title .title span img {
  display: inline-block;
  height: 100%;
  vertical-align: bottom;
}
.c-tableSet01 .componentWrapper .block.is-table.is-center table tr th {
  vertical-align: middle;
}
.c-tableSet01 .componentWrapper .block.is-table table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr {
    display: flex;
    flex-direction: column;
    gap: 3.125vw;
    padding: 3.125vw 0;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr:not(:last-child) {
  border-bottom: clamp(0.5485714286px, 0px + 0.071vw, 1px) solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr:not(:last-child) {
    border-bottom-width: 0.3125vw;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr:nth-child(1) th, .c-tableSet01 .componentWrapper .block.is-table table tr:nth-child(1) td {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr:nth-child(1) {
    padding-top: 0;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr:last-child th, .c-tableSet01 .componentWrapper .block.is-table table tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr:last-child {
    padding-bottom: 0;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr th, .c-tableSet01 .componentWrapper .block.is-table table tr td {
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr th, .c-tableSet01 .componentWrapper .block.is-table table tr td {
    padding: 0;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr th {
  width: clamp(120.6857142857px, 0px + 15.714vw, 220px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr th {
    width: 100%;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr th .title {
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr th .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr td .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr td .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr td .text + .text {
  margin-top: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr td .text + .text {
    margin-top: 6.25vw;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr td .map {
  margin-top: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr td .map {
    margin-top: 6.25vw;
  }
}
.c-tableSet01 .componentWrapper .block.is-table table tr td .map iframe {
  width: 100%;
  height: clamp(175.5428571429px, 0px + 22.857vw, 320px);
}
@media screen and (max-width: 768px) {
  .c-tableSet01 .componentWrapper .block.is-table table tr td .map iframe {
    height: 62.5vw;
  }
}

.c-contactSet01 {
  background: linear-gradient(rgba(13, 54, 100, 0.98)), url(../images/common/texture_japanese01.webp);
  background-color: rgb(13, 54, 100);
  background-size: 5%;
}
.c-contactSet01 .componentWrapper {
  padding: clamp(32.9142857143px, 0px + 4.286vw, 60px) 0;
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper {
    padding: 12.5vw 0;
  }
}
.c-contactSet01 .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-title {
    margin-bottom: 9.375vw;
  }
}
.c-contactSet01 .componentWrapper .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-title .title {
    height: 24.140625vw;
  }
}
.c-contactSet01 .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-contactSet01 .componentWrapper .block.is-title .title span img {
  height: 100%;
  vertical-align: bottom;
}
.c-contactSet01 .componentWrapper .block.is-contents {
  display: flex;
  align-items: center;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  padding: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  max-width: clamp(415.8171428571px, 0px + 54.143vw, 758px);
  margin: 0 auto;
  background-color: #fff;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-contents {
    flex-direction: column;
    gap: 6.25vw;
    padding: 9.375vw 6.25vw;
    border-radius: 3.125vw;
  }
}
.c-contactSet01 .componentWrapper .block.is-contents .area.is-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-contents .area.is-info {
    gap: 3.125vw;
  }
}
.c-contactSet01 .componentWrapper .block.is-contents .area.is-info .box.is-tel .tel {
  color: #9B0D0D;
  font-size: 44px;
  font-size: clamp(24.1371428571px, 0px + 3.143vw, 44px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-contents .area.is-info .box.is-tel .tel {
    font-size: 28px;
    font-size: 8.75vw;
  }
}
.c-contactSet01 .componentWrapper .block.is-contents .area.is-info .box.is-time .time {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-contents .area.is-info .box.is-time .time {
    font-size: 14px;
    font-size: 4.375vw;
  }
}
.c-contactSet01 .componentWrapper .block.is-contents .area.is-btn {
  width: clamp(192px, 0px + 25vw, 350px);
}
@media screen and (max-width: 768px) {
  .c-contactSet01 .componentWrapper .block.is-contents .area.is-btn {
    width: 100%;
  }
}
.c-contactSet01 .componentWrapper .block.is-contents .area.is-btn .m-btn01 {
  width: 100%;
}

.c-topMainvisualSet01 {
  position: relative;
  min-height: 760px;
  max-height: 900px;
  height: calc(100svh - 40px);
  background-color: #F00;
  z-index: 1;
  padding: 0 clamp(27.4285714286px, 0px + 3.571vw, 50px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet01 {
    max-height: 100%;
    min-height: 60svw;
    height: auto;
    padding: 12.5vw 3.125vw 3.125vw;
  }
}
.c-topMainvisualSet01 > .componentWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.c-topMainvisualSet01 > .componentWrapper > .block.is-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url(../images/common/texture_japanese03_mv.webp);
  background-position: center;
  background-size: 50px;
  z-index: 0;
}
.c-topMainvisualSet01 > .componentWrapper > .block.is-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/top_mainvisual_bg.webp);
  background-size: 2800px;
  background-position: center;
  animation: bgLoop 600s linear infinite;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet01 > .componentWrapper > .block.is-bg::after {
    background-size: 1800px;
    animation: bgLoop 2000s linear infinite;
  }
}
@keyframes bgLoop {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -2800px;
  }
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet01 > .componentWrapper > .block.is-bg {
    background-size: 36px;
  }
}
.c-topMainvisualSet01 > .componentWrapper > .block.is-contents {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet01 > .componentWrapper > .block.is-contents {
    width: 90%;
  }
}

.c-topMainvisualSet__slider {
  width: 100%;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider {
    overflow: visible;
  }
}
.c-topMainvisualSet__slider > .componentWrapper {
  width: 100%;
}
.c-topMainvisualSet__slider > .componentWrapper a {
  display: block;
}
.c-topMainvisualSet__slider > .componentWrapper a:hover .area.is-image::before {
  opacity: 0.4;
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-image {
  overflow: hidden;
  position: relative;
  padding-top: 56.667%;
  width: 100%;
  background-color: #fff;
  border-radius: clamp(27.4285714286px, 0px + 3.571vw, 50px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider > .componentWrapper .area.is-image {
    padding-top: 100%;
    border-radius: 9.375vw;
  }
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-image:before, .c-topMainvisualSet__slider > .componentWrapper .area.is-image:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: clamp(27.4285714286px, 0px + 3.571vw, 50px);
  z-index: 10;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider > .componentWrapper .area.is-image:before, .c-topMainvisualSet__slider > .componentWrapper .area.is-image:after {
    border-radius: 9.375vw;
  }
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-image:before {
  height: 100%;
  border: clamp(3.2914285714px, 0px + 0.429vw, 6px) solid #fff;
  box-sizing: border-box;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider > .componentWrapper .area.is-image:before {
    border-width: 1.875vw;
  }
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-image:after {
  height: clamp(112.4571428571px, 0px + 14.643vw, 205px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.4;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider > .componentWrapper .area.is-image:after {
    height: 64.0625vw;
  }
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-copy {
  display: inline-block;
  width: 9.65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 10;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider > .componentWrapper .area.is-copy {
    top: 10%;
    width: 20%;
    transform: translate3d(-50%, 0%, 0);
  }
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-copy .copy {
  filter: drop-shadow(0 0 clamp(4.8493714286px, 0px + 0.631vw, 8.84px) rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__slider > .componentWrapper .area.is-copy .copy {
    filter: drop-shadow(0 0 1.79375vw rgba(0, 0, 0, 0.5));
  }
}
.c-topMainvisualSet__slider > .componentWrapper .area.is-copy .copy img {
  width: 100%;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.c-topMainvisual_childSlider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.c-topMainvisual_childSlider > .componentWrapper .block.is-image:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture_dot01.webp);
  background-size: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  opacity: 0.1;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisual_childSlider > .componentWrapper .block.is-image:after {
    background-size: 0.9375vw;
  }
}
.c-topMainvisual_childSlider > .componentWrapper .block.is-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s 2s ease;
}
.c-topMainvisual_childSlider .swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide-active .c-topMainvisual_childSlider .swiper-slide.swiper-slide-prev img, .swiper-slide-active .c-topMainvisual_childSlider .swiper-slide.swiper-slide-active img {
  animation-name: zoomIn !important;
  animation-duration: 20s !important;
  animation-delay: 0s !important;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.c-topMainvisual_childSlider .swiper-slide.swiper-slide-next {
  transform: scale(1);
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents {
  display: flex;
  align-items: center;
  gap: clamp(9.3257142857px, 0px + 1.214vw, 17px);
  position: absolute;
  left: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  z-index: 10;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents {
    gap: 1.875vw;
    left: -4.6875vw;
    bottom: 1.5625vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left {
  width: clamp(43.8857142857px, 0px + 5.714vw, 80px);
  height: clamp(43.8857142857px, 0px + 5.714vw, 80px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left {
    width: 18.75vw;
    height: 18.75vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left .logoBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left .logoBlock .logo {
  display: inline-block;
  position: relative;
  width: clamp(34.0114285714px, 0px + 4.429vw, 62px);
  height: clamp(34.0114285714px, 0px + 4.429vw, 62px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left .logoBlock .logo {
    width: 12.5vw;
    height: 12.5vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left .logoBlock .logo img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-left .logoBlock .logo img.is-active {
  opacity: 1;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right {
  position: relative;
  width: clamp(186.5142857143px, 0px + 24.286vw, 340px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right {
    width: 62.5vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-name {
  position: relative;
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: 100%;
  height: clamp(13.1657142857px, 0px + 1.714vw, 24px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-name {
    margin-bottom: 4.6875vw;
    height: 4.375vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-name .name {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 22px;
  font-size: clamp(12.0685714286px, 0px + 1.571vw, 22px);
  font-family: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  line-height: 1.1;
  opacity: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-name .name {
    font-size: 11px;
    font-size: 3.4375vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-name .name.is-active {
  opacity: 1;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress {
  position: relative;
  width: 100%;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: clamp(2.1942857143px, 0px + 0.286vw, 4px);
  background-color: #D9D9D9;
  border-radius: 100px;
  z-index: 0;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress::after {
    height: 0.9375vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar {
  pointer-events: none;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar.is-active {
  opacity: 1;
  pointer-events: all;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  height: clamp(2.1942857143px, 0px + 0.286vw, 4px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button {
    height: 0.9375vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button.is-active span {
  width: 100%;
  transition: all 3s linear;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button.is-animated span {
  width: 100%;
  transition: none;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button:first-child {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button:last-child {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button:last-child::after {
  display: none;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #9B0D0D;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-progress .bar button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(1.6457142857px, 0px + 0.214vw, 3px);
  height: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  background-color: #FFF;
  transform: translateY(-50%);
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(28.5257142857px, 0px + 3.714vw, 52px);
  height: 7.5vw;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow {
    width: 11.875vw;
    height: 5.3125vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow {
  display: inline-block;
  position: relative;
  width: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  height: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  background-color: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow {
    width: 5.3125vw;
    height: 5.3125vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow:before, .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  height: clamp(4.3885714286px, 0px + 0.571vw, 8px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow:before, .c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow:after {
    width: 1.25vw;
    height: 1.875vw;
  }
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow.swiper-arrow-prev:after {
  background-image: url(../images/common/btn_arrow03_left.webp);
}
.c-topMainvisualSet__progress > .componentWrapper .block.is-contents .area.is-right .box.is-arrow .arrow.swiper-arrow-next:after {
  background-image: url(../images/common/btn_arrow03_right.webp);
}

.c-topMainvisualSet__scroll {
  position: absolute;
  bottom: clamp(-30px, 0px + -2.143vw, -16.4571428571px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  z-index: 100;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__scroll {
    display: none;
  }
}
.c-topMainvisualSet__scroll .block.is-contents .btn {
  width: 100%;
  filter: drop-shadow(clamp(2.1942857143px, 0px + 0.286vw, 4px) clamp(2.1942857143px, 0px + 0.286vw, 4px) 0 rgba(0, 0, 0, 0.2));
}
.c-topMainvisualSet__scroll .block.is-contents .btn a {
  display: block;
}
.c-topMainvisualSet__scroll .block.is-contents .btn img {
  width: 100%;
}

@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup {
    width: 80%;
    margin: 0 auto;
    margin-top: 3.125vw;
  }
}
.c-topMainvisualSet__pickup > .componentWrapper {
  position: absolute;
  right: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  display: inline-block;
  width: clamp(186.5142857143px, 0px + 24.286vw, 340px);
  z-index: 1;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup > .componentWrapper {
    position: static;
    width: calc(100% - 6.25vw);
    margin-top: 3.125vw;
    margin-left: 3.125vw;
  }
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup {
  display: inline-block;
  width: 100%;
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .inner {
  display: block;
  position: relative;
  width: 100%;
  color: inherit;
  transition: opacity 0.3s;
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .inner:hover {
  opacity: 0.7;
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .pickupTitle {
  display: inline-block;
  position: absolute;
  top: clamp(-30px, 0px + -2.143vw, -16.4571428571px);
  left: clamp(-34px, 0px + -2.429vw, -18.6514285714px);
  width: clamp(54.8571428571px, 0px + 7.143vw, 100px);
  z-index: 10;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .pickupTitle {
    top: -5vw;
    left: -4.6875vw;
    width: 13.75vw;
  }
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .pickupTitle img {
  width: 100%;
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .link {
  display: inline-block;
  width: 100%;
  color: inherit;
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .image {
  display: inline-block;
  position: relative;
  padding-top: 58.824%;
  width: 100%;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .image {
    border-radius: 3.125vw;
  }
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .image:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: clamp(2.1942857143px, 0px + 0.286vw, 4px) solid #fff;
  box-sizing: border-box;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .image:after {
    border-width: 0.9375vw;
    border-radius: 3.125vw;
  }
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .image img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .title {
  display: inline-block;
  position: absolute;
  bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  left: clamp(-20px, 0px + -1.429vw, -10.9714285714px);
  padding: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  max-width: 100%;
  background-color: #fff;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  box-sizing: border-box;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .title {
    padding: 2.5vw;
    left: -3.125vw;
    bottom: 3.125vw;
    border-radius: 1.875vw;
  }
}
.c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .title span {
  color: #102B3E;
  font-size: 14px;
  font-size: clamp(7.68px, 0px + 1vw, 14px);
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMainvisualSet__pickup > .componentWrapper .block.is-pickup .title span {
    font-size: 12px;
    font-size: 3.75vw;
  }
}

.c-topEventSet {
  position: relative;
  background-color: #413C33;
  z-index: 1;
}
.c-topEventSet:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture_japanese01.webp);
  background-size: clamp(38.4px, 0px + 5vw, 70px);
  opacity: 0.02;
}
@media screen and (max-width: 768px) {
  .c-topEventSet:before {
    background-size: 21.875vw;
  }
}
.c-topEventSet .componentWrapper {
  padding: clamp(43.8857142857px, 0px + 5.714vw, 80px) 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper {
    padding: 12.5vw 0;
  }
}
.c-topEventSet .componentWrapper .group.is-parts {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-top {
  position: absolute;
  top: clamp(-50px, 0px + -3.571vw, -27.4285714286px);
  left: 0;
  width: 100%;
  height: clamp(82.8342857143px, 0px + 10.786vw, 151px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group.is-parts .block.is-top {
    top: -7.8125vw;
    height: 23.75vw;
  }
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-top:before, .c-topEventSet .componentWrapper .group.is-parts .block.is-top:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-top:before {
  top: 0;
  left: clamp(-15px, 0px + -1.071vw, -8.2285714286px);
  width: clamp(174.9942857143px, 0px + 22.786vw, 319px);
  height: clamp(75.1542857143px, 0px + 9.786vw, 137px);
  background-image: url(../images/top/top_event_parts_top_left.webp);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group.is-parts .block.is-top:before {
    top: 3.540625vw;
    left: -3.90625vw;
    width: 34.521875vw;
    height: 14.91875vw;
  }
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-top:after {
  top: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  right: clamp(-15px, 0px + -1.071vw, -8.2285714286px);
  width: clamp(178.2857142857px, 0px + 23.214vw, 325px);
  height: clamp(80.0914285714px, 0px + 10.429vw, 146px);
  background-image: url(../images/top/top_event_parts_top_right.webp);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group.is-parts .block.is-top:after {
    top: 4.0875vw;
    right: -4.0625vw;
    width: 35.16875vw;
    height: 15.96875vw;
  }
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(81.1885714286px, 0px + 10.571vw, 148px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group.is-parts .block.is-bottom {
    height: 21.5625vw;
  }
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-bottom:before, .c-topEventSet .componentWrapper .group.is-parts .block.is-bottom:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-bottom:before {
  top: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  left: clamp(-245px, 0px + -17.5vw, -134.4px);
  width: clamp(401.0057142857px, 0px + 52.214vw, 731px);
  height: clamp(152.5028571429px, 0px + 19.857vw, 278px);
  background-image: url(../images/top/top_event_parts_bottom_left.webp);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group.is-parts .block.is-bottom:before {
    top: 9.171875vw;
    left: -30.6vw;
    width: 79.953125vw;
    height: 30.40625vw;
  }
}
.c-topEventSet .componentWrapper .group.is-parts .block.is-bottom:after {
  top: 0;
  right: clamp(-247px, 0px + -17.643vw, -135.4971428571px);
  width: clamp(389.4857142857px, 0px + 50.714vw, 710px);
  height: clamp(154.1485714286px, 0px + 20.071vw, 281px);
  background-image: url(../images/top/top_event_parts_bottom_right.webp);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group.is-parts .block.is-bottom:after {
    top: 6.984375vw;
    right: -33.75vw;
    width: 77.65625vw;
    height: 30.734375vw;
  }
}
.c-topEventSet .componentWrapper .group.is-contents {
  position: relative;
  z-index: 1;
}
.c-topEventSet .componentWrapper .group .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-title {
    margin-bottom: 6.25vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-title .title {
  height: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-title .title {
    height: 9.375vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-title .title img {
  height: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-title .title img {
    height: 9.375vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents {
    margin-bottom: 6.25vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb {
  width: 100%;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .swiper-wrapper {
  padding-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .swiper-wrapper {
    padding-bottom: 6.25vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: clamp(76.8px, 0px + 10vw, 140px) !important;
  height: clamp(76.8px, 0px + 10vw, 140px) !important;
  background-color: #fff;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  cursor: pointer;
  filter: drop-shadow(0 0 clamp(5.4857142857px, 0px + 0.714vw, 10px) rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop {
    width: 21.875vw !important;
    height: 21.875vw !important;
    border-radius: 0.9375vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop:hover .inner {
  border-color: #9B0D0D;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: clamp(-11px, 0px + -0.786vw, -6.0342857143px);
  right: 0;
  left: 0;
  margin: 0 auto;
  width: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  height: clamp(8.2285714286px, 0px + 1.071vw, 15px);
  background-image: url(../images/top/top_event_thumb_parts01.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop:after {
    bottom: -1.5625vw;
    width: 2.5vw;
    height: 2.5vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop .inner {
  display: inline-block;
  padding: clamp(2.1942857143px, 0px + 0.286vw, 4px);
  width: clamp(71.3142857143px, 0px + 9.286vw, 130px);
  height: clamp(71.3142857143px, 0px + 9.286vw, 130px);
  border: clamp(2.1942857143px, 0px + 0.286vw, 4px) solid #fff;
  box-sizing: border-box;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop .inner {
    width: 20.3125vw;
    height: 20.3125vw;
    border-width: 0.625vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop .inner img {
  width: 100%;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop.swiper-slide-active:after {
  opacity: 1;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-thumb .shop.swiper-slide-active .inner {
  border-color: #9B0D0D;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents {
  padding: 0 clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents {
    padding: 0 3.125vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content {
  display: none;
  margin: 0 auto;
  max-width: clamp(548.5714285714px, 0px + 71.429vw, 1000px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content {
    max-width: 100%;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content.is-active {
  display: block;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock {
  display: block;
  width: 100%;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .inner {
  display: flex;
  position: relative;
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px) 0;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  color: inherit;
  background-color: #fff;
  border-radius: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  transition: opacity 0.3s;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .inner {
    flex-direction: column;
    gap: 3.125vw;
    padding: 3.125vw 3.125vw;
    margin-bottom: 6.25vw;
    border-radius: 3.125vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  bottom: 0;
  margin: auto 0;
  width: clamp(6.0342857143px, 0px + 0.786vw, 11px);
  height: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  background-image: url(../images/top/top_event_arrow01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .inner:after {
    display: none;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  width: clamp(109.7142857143px, 0px + 14.286vw, 200px);
  border-right: clamp(0.5485714286px, 0px + 0.071vw, 1px) solid #D9D9D9;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea {
    flex-direction: row;
    padding: 0vw 7.5vw 3.125vw;
    gap: 0.9375vw;
    width: 100%;
    border-right: none;
    border-bottom: 0.3125vw solid #D9D9D9;
  }
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    width: 2.40625vw;
    height: 3.5vw;
    background-image: url(../images/top/top_event_arrow01.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .logo {
  width: clamp(54.8571428571px, 0px + 7.143vw, 100px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .logo {
    width: 18.75vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .logo img {
  width: 100%;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  font-family: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text {
    flex-direction: row;
    align-items: end;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text span {
  line-height: 1;
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text span.small {
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text span.small {
    font-size: 10px;
    font-size: 3.125vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text span.large {
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .shopArea .text span.large {
    font-size: 14px;
    font-size: 4.375vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  padding: 0 0 0 clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: calc(100% - clamp(131.6571428571px, 0px + 17.143vw, 240px));
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea {
    gap: 3.125vw;
    padding: 0;
    width: 100%;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea .list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: 100%;
  background-color: #f9f9f9;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea .list {
    gap: 1.5625vw;
    padding: 3.125vw;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea .list .date {
  color: #737373;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea .list .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea .list .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topEventSet .componentWrapper .group .block.is-contents .area.is-contents .content .eventBlock .listArea .list .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-topEventSet .componentWrapper .group .block.is-contents .area.is-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.c-topMovieSet {
  pointer-events: none;
  overflow: hidden;
}
.c-topMovieSet .componentWrapper {
  position: relative;
  height: 30svw;
  max-height: 540px;
  width: 100%;
}
.c-topMovieSet .componentWrapper:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/texture_dot01.webp);
  background-size: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.3;
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .c-topMovieSet .componentWrapper:after {
    background-size: 0.9375vw;
  }
}
@media screen and (max-width: 768px) {
  .c-topMovieSet .componentWrapper {
    height: 60svw;
  }
}
.c-topMovieSet .componentWrapper .block.is-movie {
  width: 100%;
  height: 100%;
}
.c-topMovieSet .componentWrapper .block.is-movie video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-topIntroductionSet {
  padding: clamp(164.5714285714px, 0px + 21.429vw, 300px) 0;
  position: relative;
  background: linear-gradient(180deg, rgb(235, 243, 246) 0%, rgb(247, 239, 174) 100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet {
    padding: 31.25vw 0 31.25vw;
  }
}
.c-topIntroductionSet:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture01_paper02.webp);
  background-size: clamp(262.4365714286px, 0px + 34.171vw, 478.4px);
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet:before {
    background-size: 149.5vw;
  }
}
.c-topIntroductionSet .componentWrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(32.9142857143px, 0px + 4.286vw, 60px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper {
    gap: 6.25vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts {
  display: block;
  max-width: clamp(768px, 0px + 100vw, 1400px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts {
    max-width: 100%;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item {
  display: inline-block;
  position: absolute;
  transform-origin: center;
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(1) {
  top: clamp(-53px, 0px + -3.786vw, -29.0742857143px);
  left: clamp(281.4171428571px, 0px + 36.643vw, 513px);
  width: clamp(205.1657142857px, 0px + 26.714vw, 374px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(1) {
    top: 1.809375vw;
    left: 44.734375vw;
    width: 34.81875vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(2) {
  top: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  right: clamp(77.8971428571px, 0px + 10.143vw, 142px);
  width: clamp(153.0514285714px, 0px + 19.929vw, 279px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(2) {
    top: 20.33125vw;
    right: -1.5625vw;
    width: 25.96875vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(3) {
  top: clamp(104.2285714286px, 0px + 13.571vw, 190px);
  right: clamp(-34px, 0px + -2.429vw, -18.6514285714px);
  width: clamp(179.9314285714px, 0px + 23.429vw, 328px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(3) {
    top: 42.690625vw;
    right: -6.5625vw;
    width: 30.540625vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(4) {
  top: clamp(206.8114285714px, 0px + 26.929vw, 377px);
  right: clamp(-39px, 0px + -2.786vw, -21.3942857143px);
  width: clamp(131.1085714286px, 0px + 17.071vw, 239px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(4) {
    top: 75.821875vw;
    right: -5.9375vw;
    width: 22.278125vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(5) {
  top: clamp(420.2057142857px, 0px + 54.714vw, 766px);
  right: clamp(-170px, 0px + -12.143vw, -93.2571428571px);
  width: clamp(184.32px, 0px + 24vw, 336px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(5) {
    top: 121.321875vw;
    right: -15vw;
    width: 31.28125vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(6) {
  bottom: clamp(163.4742857143px, 0px + 21.286vw, 298px);
  right: clamp(-66px, 0px + -4.714vw, -36.2057142857px);
  width: clamp(126.72px, 0px + 16.5vw, 231px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(6) {
    bottom: 45.3125vw;
    right: -5.3125vw;
    width: 21.509375vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(7) {
  bottom: clamp(74.6057142857px, 0px + 9.714vw, 136px);
  right: clamp(-73px, 0px + -5.214vw, -40.0457142857px);
  width: clamp(194.1942857143px, 0px + 25.286vw, 354px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(7) {
    bottom: 18.125vw;
    right: -9.0625vw;
    width: 32.953125vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(8) {
  bottom: clamp(-76px, 0px + -5.429vw, -41.6914285714px);
  right: clamp(139.8857142857px, 0px + 18.214vw, 255px);
  width: clamp(233.1428571429px, 0px + 30.357vw, 425px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(8) {
    bottom: 7.8125vw;
    right: 27.8125vw;
    width: 39.49375vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(9) {
  bottom: clamp(-77px, 0px + -5.5vw, -42.24px);
  left: clamp(206.2628571429px, 0px + 26.857vw, 376px);
  width: clamp(126.72px, 0px + 16.5vw, 231px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(9) {
    bottom: 10.9375vw;
    left: -2.5vw;
    width: 21.509375vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(10) {
  bottom: clamp(-43px, 0px + -3.071vw, -23.5885714286px);
  left: clamp(109.7142857143px, 0px + 14.286vw, 200px);
  width: clamp(145.92px, 0px + 19vw, 266px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(10) {
    bottom: 46.25vw;
    left: 0vw;
    width: 24.775vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(11) {
  bottom: clamp(139.8857142857px, 0px + 18.214vw, 255px);
  left: clamp(-18px, 0px + -1.286vw, -9.8742857143px);
  width: clamp(170.0571428571px, 0px + 22.143vw, 310px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(11) {
    bottom: 79.375vw;
    left: -12.6125vw;
    width: 28.8625vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(12) {
  bottom: clamp(222.1714285714px, 0px + 28.929vw, 405px);
  left: clamp(-170px, 0px + -12.143vw, -93.2571428571px);
  width: clamp(246.8571428571px, 0px + 32.143vw, 450px);
  transform: rotate(-2.56deg);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(12) {
    bottom: 113.4375vw;
    left: -20.84375vw;
    width: 41.93125vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(13) {
  top: clamp(320.3657142857px, 0px + 41.714vw, 584px);
  left: clamp(-69px, 0px + -4.929vw, -37.8514285714px);
  width: clamp(160.1828571429px, 0px + 20.857vw, 292px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(13) {
    top: 65.625vw;
    left: -4.8625vw;
    width: 27.21875vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(14) {
  top: clamp(229.3028571429px, 0px + 29.857vw, 418px);
  left: clamp(-69px, 0px + -4.929vw, -37.8514285714px);
  width: clamp(167.3142857143px, 0px + 21.786vw, 305px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(14) {
    top: 42.04375vw;
    left: -12.675vw;
    width: 28.396875vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(15) {
  top: clamp(9.3257142857px, 0px + 1.214vw, 17px);
  left: clamp(30.1714285714px, 0px + 3.929vw, 55px);
  width: clamp(197.4857142857px, 0px + 25.714vw, 360px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-parts .item:nth-child(15) {
    top: 6.26875vw;
    left: 3.315625vw;
    width: 33.475vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-parts .item img {
  width: 100%;
}
.c-topIntroductionSet .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.c-topIntroductionSet .componentWrapper .block.is-title .title {
  display: inline-block;
  width: clamp(473.9657142857px, 0px + 61.714vw, 864px);
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-title .title {
    width: 100%;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-title .title span {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.c-topIntroductionSet .componentWrapper .block.is-title .title span img {
  width: 100%;
}
.c-topIntroductionSet .componentWrapper .block.is-text {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-text {
    gap: 3.125vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-text p.text {
  font-size: 32px;
  font-size: clamp(17.5542857143px, 0px + 2.286vw, 32px);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-topIntroductionSet .componentWrapper .block.is-text p.text {
    font-size: 13px;
    font-size: 4.0625vw;
  }
}
.c-topIntroductionSet .componentWrapper .block.is-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.c-topShopSet {
  position: relative;
  padding: clamp(54.8571428571px, 0px + 7.143vw, 100px) 0 clamp(87.7714285714px, 0px + 11.429vw, 160px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-topShopSet {
    padding: 12.5vw 0 12.5vw;
  }
}
.c-topShopSet:before {
  content: "";
  display: inline-block;
  width: 200vw;
  height: 200vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
  background-image: url(../images/common/texture_nasu01.webp);
  background-size: clamp(148.1142857143px, 0px + 19.286vw, 270px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-topShopSet:before {
    width: 400vw;
    height: 400vw;
    background-size: 47.8125vw;
  }
}
.c-topShopSet .componentWrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper {
    gap: 6.25vw;
  }
}
.c-topShopSet .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
}
.c-topShopSet .componentWrapper .block.is-title .title {
  display: inline-block;
  height: clamp(68.5714285714px, 0px + 8.929vw, 125px);
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-title .title {
    height: 16.034375vw;
  }
}
.c-topShopSet .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-topShopSet .componentWrapper .block.is-title .title span img {
  height: 100%;
}
.c-topShopSet .componentWrapper .block.is-slider {
  width: 100%;
  position: relative;
  overflow: visible;
}
.c-topShopSet .componentWrapper .block.is-slider:before, .c-topShopSet .componentWrapper .block.is-slider:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: clamp(27.4285714286px, 0px + 3.571vw, 50px);
  left: clamp(-40px, 0px + -2.857vw, -21.9428571429px);
  width: 200vw;
  height: clamp(384px, 0px + 50vw, 700px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider:before, .c-topShopSet .componentWrapper .block.is-slider:after {
    top: 67.1875vw;
    left: -4.6875vw;
    width: 100vw;
    height: 60vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider:before {
  background-color: #E5CEA9;
}
.c-topShopSet .componentWrapper .block.is-slider:after {
  background-image: url(../images/common/texture_japanese02.webp);
  background-size: clamp(28.5257142857px, 0px + 3.714vw, 52px);
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider:after {
    background-size: 16.25vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .swiper-wrapper {
  padding-top: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .swiper-wrapper {
    padding-top: 1.875vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .arrowArea {
  display: flex;
  justify-content: space-between;
  width: calc(clamp(658.2857142857px, 0px + 85.714vw, 1200px) + clamp(87.7714285714px, 0px + 11.429vw, 160px));
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .arrowArea {
    width: 100%;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-prev, .c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-next {
  display: inline-block;
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  height: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-prev, .c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-next {
    width: 12.5vw;
    height: 12.5vw;
    transform: translate3d(0, -100%, 0);
  }
}
.c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-prev {
  background-image: url(../images/top/top_shop_btn_prev01.webp);
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-prev {
    opacity: 0;
    pointer-events: none;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .swiper-arrow-next {
  background-image: url(../images/top/top_shop_btn_next01.webp);
}
.c-topShopSet .componentWrapper .block.is-slider .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.c-topShopSet .componentWrapper .block.is-slider .shop {
  width: clamp(208.4571428571px, 0px + 27.143vw, 380px);
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop {
    width: auto;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type01 .copyBlock {
  background-color: #02636A !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type02 .copyBlock {
  background-color: #9A2900 !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type03 .copyBlock {
  background-color: #9B0B0D !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type04 .copyBlock {
  background-color: #16044E !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type05 .copyBlock {
  background-color: #7F5011 !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type06 .copyBlock {
  background-color: #02466A !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type07 .copyBlock {
  background-color: #550049 !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type08 .copyBlock {
  background-color: #AC430B !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop.is-type09 .copyBlock {
  background-color: #426F26 !important;
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(13.7142857143px, 0px + 1.786vw, 25px);
  width: 100%;
  position: relative;
  color: inherit;
  transition: opacity 0.3s;
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner {
    gap: 6.25vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .imageBlock {
  width: 100%;
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .imageBlock .image {
  width: 100%;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
  filter: drop-shadow(clamp(4.3885714286px, 0px + 0.571vw, 8px) clamp(4.3885714286px, 0px + 0.571vw, 8px) 0 rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .imageBlock .image {
    aspect-ratio: 1/1;
    border-radius: 3.125vw;
    filter: drop-shadow(1.25vw 1.25vw 0 rgba(0, 0, 0, 0.2));
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .imageBlock .image img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .imageBlock .image img {
    height: 100%;
    object-fit: cover;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .logoBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: clamp(-20px, 0px + -1.429vw, -10.9714285714px);
  right: clamp(-20px, 0px + -1.429vw, -10.9714285714px);
  width: clamp(76.8px, 0px + 10vw, 140px);
  height: clamp(76.8px, 0px + 10vw, 140px);
  background-color: #fff;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  filter: drop-shadow(0 0 clamp(8.2285714286px, 0px + 1.071vw, 15px) rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .logoBlock {
    top: -1.875vw;
    right: -2.5vw;
    width: 32.8125vw;
    height: 32.8125vw;
    border-radius: 1.40625vw;
    filter: drop-shadow(0 0 3.515625vw rgba(0, 0, 0, 0.05));
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .logoBlock .logo {
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .logoBlock .logo {
    width: 28.125vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .logoBlock .logo img {
  width: 100%;
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px) 0;
  position: absolute;
  top: clamp(-40px, 0px + -2.857vw, -21.9428571429px);
  left: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  width: clamp(38.4px, 0px + 5vw, 70px);
  background-color: #333;
  box-sizing: border-box;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock {
    padding: 3.515625vw 0;
    top: -1.875vw;
    left: 3.221875vw;
    width: 12.30625vw;
    border-radius: 1.05625vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture_japanese03.webp);
  background-size: clamp(27.4285714286px, 0px + 3.571vw, 50px);
  background-position: center;
  opacity: 0.04;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock:before {
    background-size: 15.625vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock .copy {
  position: relative;
  max-width: clamp(22.4914285714px, 0px + 2.929vw, 41px);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock .copy {
    max-width: 6.25vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .copyBlock .copy img {
  width: 100%;
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .textBlock {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .textBlock {
    gap: 1.5625vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .textBlock .title {
  font-size: 22px;
  font-size: clamp(12.0685714286px, 0px + 1.571vw, 22px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .textBlock .title {
    font-size: 16px;
    font-size: 5vw;
  }
}
.c-topShopSet .componentWrapper .block.is-slider .shop .inner .textBlock .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-slider .shop .inner .textBlock .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-topShopSet .componentWrapper .block.is-btn {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.c-topShopSet .componentWrapper .block.is-reviews {
  margin-top: clamp(27.4285714286px, 0px + 3.571vw, 50px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
  max-width: clamp(548.5714285714px, 0px + 71.429vw, 1000px);
  width: 100%;
  margin: 0 auto;
  min-height: clamp(153.6px, 0px + 20vw, 280px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-topShopSet .componentWrapper .block.is-reviews {
    margin-top: 6.25vw;
    padding: 3.125vw;
    max-width: 100%;
    min-height: 87.5vw;
  }
}

.c-topRecommendSet {
  position: relative;
  padding: clamp(54.8571428571px, 0px + 7.143vw, 100px) 0;
  background-image: url(../images/top/top_recommend_bg01.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet {
    padding: 9.375vw 0 12.5vw;
    background-image: url(../images/top/top_recommend_bg01_sp.webp);
  }
}
.c-topRecommendSet .componentWrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper {
    gap: 6.25vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
}
.c-topRecommendSet .componentWrapper .block.is-title .title {
  display: inline-block;
  height: clamp(68.5714285714px, 0px + 8.929vw, 125px);
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-title .title {
    height: 16.034375vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-topRecommendSet .componentWrapper .block.is-title .title span img {
  height: 100%;
}
.c-topRecommendSet .componentWrapper .block.is-contents .content {
  position: relative;
  width: calc(33.3% - clamp(10.9714285714px, 0px + 1.429vw, 20px));
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content {
    width: 100%;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .inner {
  display: block;
  color: inherit;
  position: relative;
  padding-top: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.3s;
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .inner {
    padding-top: 6.25vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider {
  position: relative;
  width: 100%;
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .swiper-pagination {
  top: 0;
  right: auto;
  bottom: auto;
  left: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .swiper-pagination {
    left: 3.125vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .swiper-pagination .swiper-pagination-bullet {
  width: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  height: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  margin: 0 clamp(5.4857142857px, 0px + 0.714vw, 10px) 0 0;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .swiper-pagination .swiper-pagination-bullet {
    width: 1.875vw;
    height: 1.875vw;
    margin: 0 1.875vw 0 0;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9B0D0D;
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .menu a {
    align-items: center;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .imageArea {
  position: relative;
  margin-right: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: calc(100% - clamp(10.9714285714px, 0px + 1.429vw, 20px));
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .imageArea {
    margin-right: 0;
    width: 100%;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .imageArea .image {
  width: 100%;
  height: 100%;
  border-radius: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  overflow: hidden;
  filter: drop-shadow(clamp(4.3885714286px, 0px + 0.571vw, 8px) clamp(4.3885714286px, 0px + 0.571vw, 8px) 0 rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .imageArea .image {
    border-radius: 6.25vw;
    filter: drop-shadow(1.25vw 1.25vw 0 rgba(0, 0, 0, 0.2));
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .imageArea img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .textArea {
  display: inline-block;
  position: relative;
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  margin-top: clamp(-75px, 0px + -5.357vw, -41.1428571429px);
  width: calc(100% - clamp(10.9714285714px, 0px + 1.429vw, 20px));
  min-height: clamp(69.6685714286px, 0px + 9.071vw, 127px);
  background-color: #fff;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .textArea {
    padding: 3.125vw;
    margin-top: -13.125vw;
    width: calc(100% - 6.25vw);
    min-height: 0;
    border-radius: 3.125vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .textArea .text {
  font-size: 14px;
  font-size: clamp(7.68px, 0px + 1vw, 14px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider .textArea .text {
    font-size: 10px;
    font-size: 3.125vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .itemSlider img {
  width: 100%;
  vertical-align: bottom;
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .logoBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(76.8px, 0px + 10vw, 140px);
  height: clamp(76.8px, 0px + 10vw, 140px);
  background-color: #fff;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .logoBlock {
    width: 31.25vw;
    height: 31.25vw;
    border-radius: 1.60625vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .logoBlock .logo {
  display: inline-block;
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .content .logoBlock .logo {
    width: 25vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .content .logoBlock .logo img {
  width: 100%;
}
.c-topRecommendSet .componentWrapper .block.is-contents .arrowArea {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(clamp(658.2857142857px, 0px + 85.714vw, 1200px) + clamp(87.7714285714px, 0px + 11.429vw, 160px));
  height: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .arrowArea {
    width: 100%;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .swiper-arrow-prev, .c-topRecommendSet .componentWrapper .block.is-contents .swiper-arrow-next {
  display: inline-block;
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  height: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topRecommendSet .componentWrapper .block.is-contents .swiper-arrow-prev, .c-topRecommendSet .componentWrapper .block.is-contents .swiper-arrow-next {
    width: 12.5vw;
    height: 12.5vw;
  }
}
.c-topRecommendSet .componentWrapper .block.is-contents .swiper-arrow-prev {
  background-image: url(../images/top/top_shop_btn_prev01.webp);
}
.c-topRecommendSet .componentWrapper .block.is-contents .swiper-arrow-next {
  background-image: url(../images/top/top_shop_btn_next01.webp);
}
.c-topRecommendSet .componentWrapper .block.is-contents .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

@keyframes rotate-circle-right {
  0% {
    transform: rotate(0deg);
    background: #CAAEAE;
  }
  50% {
    transform: rotate(180deg);
    background: #CAAEAE;
  }
  50.01% {
    transform: rotate(360deg);
    background: #9B0D0D;
  }
  100% {
    transform: rotate(360deg);
    background: #9B0D0D;
  }
}
@keyframes rotate-circle-left {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.c-topImageSet {
  position: relative;
  width: 100%;
  height: 50svw;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-topImageSet {
    height: 100svw;
  }
}
.c-topImageSet.is-show .componentWrapper .block.is-image {
  opacity: 1;
}
.c-topImageSet .componentWrapper {
  width: 100%;
}
.c-topImageSet .componentWrapper .block.is-image {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c-topImageSet .componentWrapper .block.is-image .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-topImageSet .componentWrapper .block.is-image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .c-topImageSet .componentWrapper .block.is-image img.is-pc {
    display: none;
  }
}
.c-topImageSet .componentWrapper .block.is-image img.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-topImageSet .componentWrapper .block.is-image img.is-sp {
    display: inline-block;
  }
}

.c-topPickSet {
  position: relative;
  padding-top: clamp(27.4285714286px, 0px + 3.571vw, 50px);
}
@media screen and (max-width: 768px) {
  .c-topPickSet {
    padding-top: 11.25vw;
  }
}
.c-topPickSet .componentWrapper {
  position: relative;
  padding-top: clamp(60.3428571429px, 0px + 7.857vw, 110px);
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper {
    padding-top: 6.25vw;
  }
}
.c-topPickSet .componentWrapper .block.is-title {
  position: absolute;
  top: 0;
  left: clamp(-45px, 0px + -3.214vw, -24.6857142857px);
  width: clamp(134.4px, 0px + 17.5vw, 245px);
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-title {
    left: -1.875vw;
    width: 23.4375vw;
  }
}
.c-topPickSet .componentWrapper .block.is-title .title {
  width: 100%;
}
.c-topPickSet .componentWrapper .block.is-title .title span {
  display: inline-block;
  width: 100%;
}
.c-topPickSet .componentWrapper .block.is-title .title span img {
  width: 100%;
}
.c-topPickSet .componentWrapper .block.is-slider {
  margin-bottom: clamp(27.4285714286px, 0px + 3.571vw, 50px);
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider {
    margin-bottom: 6.25vw;
  }
}
.c-topPickSet .componentWrapper .block.is-slider .arrowArea {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(clamp(658.2857142857px, 0px + 85.714vw, 1200px) + clamp(87.7714285714px, 0px + 11.429vw, 160px));
  height: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .arrowArea {
    width: 100%;
  }
}
.c-topPickSet .componentWrapper .block.is-slider .swiper-arrow-prev, .c-topPickSet .componentWrapper .block.is-slider .swiper-arrow-next {
  display: inline-block;
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  height: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 1;
  transform: translate3d(0, -80%, 0);
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .swiper-arrow-prev, .c-topPickSet .componentWrapper .block.is-slider .swiper-arrow-next {
    width: 12.5vw;
    height: 12.5vw;
    transform: translate3d(0, -120%, 0);
  }
}
.c-topPickSet .componentWrapper .block.is-slider .swiper-arrow-prev {
  background-image: url(../images/top/top_shop_btn_prev01.webp);
}
.c-topPickSet .componentWrapper .block.is-slider .swiper-arrow-next {
  background-image: url(../images/top/top_shop_btn_next01.webp);
}
.c-topPickSet .componentWrapper .block.is-slider .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.c-topPickSet .componentWrapper .block.is-slider .item {
  width: clamp(252.3428571429px, 0px + 32.857vw, 460px);
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .item {
    width: 75vw;
  }
}
.c-topPickSet .componentWrapper .block.is-slider .item .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  color: inherit;
  transition: opacity 0.3s;
}
.c-topPickSet .componentWrapper .block.is-slider .item .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .item .inner {
    gap: 3.125vw;
  }
}
.c-topPickSet .componentWrapper .block.is-slider .item .imageBlock {
  width: 100%;
}
.c-topPickSet .componentWrapper .block.is-slider .item .imageBlock .image {
  position: relative;
  padding-top: 63.045%;
  width: 100%;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
  filter: drop-shadow(clamp(4.3885714286px, 0px + 0.571vw, 8px) clamp(4.3885714286px, 0px + 0.571vw, 8px) 0 rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .item .imageBlock .image {
    border-radius: 1.63125vw;
    filter: drop-shadow(0.625vw 0.625vw 0 rgba(0, 0, 0, 0.2));
  }
}
.c-topPickSet .componentWrapper .block.is-slider .item .imageBlock .image img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-topPickSet .componentWrapper .block.is-slider .item .textBlock {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .item .textBlock {
    gap: 1.5625vw;
  }
}
.c-topPickSet .componentWrapper .block.is-slider .item .textBlock .date {
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .item .textBlock .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-topPickSet .componentWrapper .block.is-slider .item .textBlock .title {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topPickSet .componentWrapper .block.is-slider .item .textBlock .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-topPickSet .componentWrapper .block.is-btn {
  display: flex;
  justify-content: center;
}

.c-topNewsBannerSet {
  position: relative;
}
.c-topNewsBannerSet .componentWrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper {
    flex-direction: column;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news {
  display: flex;
  flex-direction: column;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  width: 54%;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news {
    gap: 6.875vw;
    width: 100%;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-title {
  margin-top: clamp(-62px, 0px + -4.429vw, -34.0114285714px);
  margin-left: clamp(-60px, 0px + -4.286vw, -32.9142857143px);
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-title {
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-left: 0;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-title .title {
  height: clamp(72.4114285714px, 0px + 9.429vw, 132px);
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-title .title {
    height: 16.034375vw;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-title .title span img {
  height: 100%;
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list {
    gap: 1.5625vw;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  position: relative;
  padding: clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(21.9428571429px, 0px + 2.857vw, 40px) clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
  transition: opacity 0.3s;
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner {
    gap: 1.5625vw;
    padding: 4.6875vw 10.9375vw 4.6875vw 4.6875vw;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  bottom: 0;
  margin: auto 0;
  width: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  height: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  background-image: url(../images/common/btn_arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner:after {
    right: 3.125vw;
    width: 2.159375vw;
    height: 3.75vw;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner .date {
  color: #737373;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-list .item .inner .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-news .block.is-btn {
    display: flex;
    justify-content: center;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-banner {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .c-topNewsBannerSet .componentWrapper .group.is-banner {
    display: none;
  }
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item {
  width: 100%;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner {
  display: block;
  position: relative;
  color: inherit;
  width: 100%;
  border-radius: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  overflow: hidden;
  transition: opacity 0.3s;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner:hover {
  opacity: 0.7;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner:before, .c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  pointer-events: none;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner:before {
  right: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  width: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  height: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  background-color: #fff;
  border-radius: 50%;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner:after {
  right: clamp(10.4228571429px, 0px + 1.357vw, 19px);
  width: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  height: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  background-image: url(../images/common/btn_arrow02.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner .image {
  width: 100%;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner .image img {
  width: 100%;
  vertical-align: bottom;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner .text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(5.4857142857px, 0px + 0.714vw, 10px);
  min-width: clamp(82.2857142857px, 0px + 10.714vw, 150px);
  background-color: #700E75;
  box-sizing: border-box;
}
.c-topNewsBannerSet .componentWrapper .group.is-banner .block.is-list .item .inner .text span {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-size: clamp(7.68px, 0px + 1vw, 14px);
  font-weight: bold;
  line-height: 1;
}

.c-topInstagramSet {
  position: relative;
  padding-bottom: clamp(87.7714285714px, 0px + 11.429vw, 160px);
}
@media screen and (max-width: 768px) {
  .c-topInstagramSet {
    padding-bottom: 18.75vw;
  }
}
.c-topInstagramSet .componentWrapper .block.is-contents a {
  display: block;
  transition: all 0.3s ease;
}
.c-topInstagramSet .componentWrapper .block.is-contents a:hover {
  opacity: 0.8;
}
.c-topInstagramSet .componentWrapper .block.is-contents .image img {
  width: 100%;
  height: auto;
}

@keyframes move-left01 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes move-right01 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 50%, 0);
  }
}
@keyframes move-top01 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes move-bottom01 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(50%, 0, 0);
  }
}
.c-topRecruitSet {
  overflow: hidden;
  position: relative;
  height: 70svw;
  max-height: 1000px;
  background: linear-gradient(180deg, #313A5F 0%, #101C4D 100%);
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet {
    height: 150svw;
  }
}
.c-topRecruitSet::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 20%;
  background-image: url(../images/top/top_recruit_bg01.webp);
  background-repeat: repeat-x;
  background-size: 60%;
  background-position: bottom center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet::after {
    bottom: 18.75vw;
    padding-top: 60%;
    background-size: 160%;
  }
}
.c-topRecruitSet > .componentWrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
}
.c-topRecruitSet > .componentWrapper .block.is-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  position: relative;
  height: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-contents {
    gap: 6.25vw;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-contents .title {
  width: clamp(131.6571428571px, 0px + 17.143vw, 240px);
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-contents .title {
    width: 31.25vw;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-contents .title img {
  width: 100%;
  height: auto;
}
.c-topRecruitSet > .componentWrapper .block.is-contents .text {
  color: #fff;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-contents .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-right,
.c-topRecruitSet > .componentWrapper .block.is-left {
  position: absolute;
  z-index: 50;
  height: fit-content;
  width: clamp(197.4857142857px, 0px + 25.714vw, 360px);
  animation-duration: 500s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-right,
  .c-topRecruitSet > .componentWrapper .block.is-left {
    display: flex;
    width: 800svw;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-right ul,
.c-topRecruitSet > .componentWrapper .block.is-left ul {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-right ul,
  .c-topRecruitSet > .componentWrapper .block.is-left ul {
    width: 100%;
    flex-direction: row;
    gap: 3.125vw;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-right ul li,
.c-topRecruitSet > .componentWrapper .block.is-left ul li {
  overflow: hidden;
  position: relative;
  padding-top: 63.045%;
  border-radius: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-right ul li,
  .c-topRecruitSet > .componentWrapper .block.is-left ul li {
    width: 10%;
    padding-top: 3.6%;
    border-radius: 3.125vw;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-right img,
.c-topRecruitSet > .componentWrapper .block.is-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-topRecruitSet > .componentWrapper .block.is-right {
  bottom: 0;
  right: clamp(-40px, 0px + -2.857vw, -21.9428571429px);
  animation-name: move-right01;
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-right {
    top: auto;
    bottom: 3.125vw;
    right: 0;
    animation-name: move-bottom01;
  }
}
.c-topRecruitSet > .componentWrapper .block.is-left {
  top: 0;
  left: clamp(-40px, 0px + -2.857vw, -21.9428571429px);
  animation-name: move-left01;
}
@media screen and (max-width: 768px) {
  .c-topRecruitSet > .componentWrapper .block.is-left {
    top: 3.125vw;
    left: 0;
    animation-name: move-top01;
  }
}

.c-inquirySet > .componentWrapper > .block.is-form {
  width: 100%;
}
.c-inquirySet > .componentWrapper > .block .area.is-table {
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table {
    margin-bottom: 6.25vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table tbody {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table tbody {
    gap: 3.125vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table tr {
  display: flex;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table tr {
    flex-direction: column;
    gap: 3.125vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table tr th, .c-inquirySet > .componentWrapper > .block .area.is-table tr td {
  text-align: left;
}
.c-inquirySet > .componentWrapper > .block .area.is-table tr th {
  display: flex;
  align-items: center;
  width: clamp(109.7142857143px, 0px + 14.286vw, 200px);
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table tr th {
    width: 100%;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table tr th p.title {
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table tr th p.title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table tr td {
  width: calc(100% - clamp(120.6857142857px, 0px + 15.714vw, 220px));
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table tr td {
    width: 100%;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio {
  display: flex;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio {
    flex-direction: column;
    gap: 3.125vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  padding: clamp(8.2285714286px, 0px + 1.071vw, 15px);
  color: #9B0D0D;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background-color: #f9f9f9;
  border: clamp(1.0971428571px, 0px + 0.143vw, 2px) solid #D9D9D9;
  box-sizing: border-box;
  border-radius: clamp(2.1942857143px, 0px + 0.286vw, 4px);
  cursor: pointer;
  transition: border-color 0.3s;
}
.c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio .wpcf7-list-item label:hover, .c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio .wpcf7-list-item label.is-active {
  border-color: #9B0D0D;
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table .wpcf7-radio .wpcf7-list-item label {
    padding: 4.6875vw;
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    border-width: 0.625vw;
    border-radius: 1.25vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table input[type=text], .c-inquirySet > .componentWrapper > .block .area.is-table input[type=email], .c-inquirySet > .componentWrapper > .block .area.is-table input[type=tel] {
  padding: clamp(5.4857142857px, 0px + 0.714vw, 10px) clamp(8.2285714286px, 0px + 1.071vw, 15px);
  width: 100%;
  height: clamp(32.9142857143px, 0px + 4.286vw, 60px);
  background-color: #f9f9f9;
  border: clamp(1.0971428571px, 0px + 0.143vw, 2px) solid #EBEBEB;
  box-sizing: border-box;
  border-radius: clamp(2.1942857143px, 0px + 0.286vw, 4px);
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table input[type=text], .c-inquirySet > .componentWrapper > .block .area.is-table input[type=email], .c-inquirySet > .componentWrapper > .block .area.is-table input[type=tel] {
    height: 15.625vw;
    border-width: 0.625vw;
    border-radius: 1.25vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-table textarea {
  padding: clamp(5.4857142857px, 0px + 0.714vw, 10px) clamp(8.2285714286px, 0px + 1.071vw, 15px);
  width: 100%;
  height: clamp(115.2px, 0px + 15vw, 210px);
  background-color: #f9f9f9;
  border: clamp(1.0971428571px, 0px + 0.143vw, 2px) solid #EBEBEB;
  box-sizing: border-box;
  border-radius: clamp(2.1942857143px, 0px + 0.286vw, 4px);
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-table textarea {
    height: 46.875vw;
    border-width: 0.625vw;
    border-radius: 1.25vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-note {
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-note {
    margin-bottom: 6.25vw;
    padding: 6.25vw;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-note .note {
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-note .note {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.c-inquirySet > .componentWrapper > .block .area.is-btn .btn {
  width: clamp(131.6571428571px, 0px + 17.143vw, 240px);
  height: clamp(43.8857142857px, 0px + 5.714vw, 80px);
  background-image: url(../images/inquiry/inquiry_form_btn01.webp);
  background-size: contain;
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(clamp(2.1942857143px, 0px + 0.286vw, 4px) clamp(2.1942857143px, 0px + 0.286vw, 4px) 0 rgb(156, 113, 113));
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-btn .btn {
    width: 68.75vw;
    height: 15.625vw;
    background-image: url(../images/inquiry/inquiry_form_btn01_sp.webp);
    filter: drop-shadow(1.25vw 1.25vw 0 rgb(156, 113, 113));
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-btn .btn:hover {
  transform: translate3d(clamp(2.1942857143px, 0px + 0.286vw, 4px), clamp(2.1942857143px, 0px + 0.286vw, 4px), 0);
  filter: drop-shadow(0 0 0 rgb(156, 113, 113));
}
@media screen and (max-width: 768px) {
  .c-inquirySet > .componentWrapper > .block .area.is-btn .btn:hover {
    transform: translate3d(1.25vw, 1.25vw, 0);
  }
}
.c-inquirySet > .componentWrapper > .block .area.is-btn .btn input[type=submit] {
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.c-shopListSet01 {
  position: relative;
  z-index: 1;
}
.c-shopListSet01 > .componentWrapper > .block.is-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(43.8857142857px, 0px + 5.714vw, 80px);
  row-gap: clamp(32.9142857143px, 0px + 4.286vw, 60px);
}
@media screen and (max-width: 768px) {
  .c-shopListSet01 > .componentWrapper > .block.is-list {
    gap: 9.375vw;
  }
}

.c-shopListItem01 {
  width: calc(50% - clamp(21.9428571429px, 0px + 2.857vw, 40px));
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 {
    width: 100%;
  }
}
.c-shopListItem01.is-type01 p.copy {
  background-color: #02636A !important;
}
.c-shopListItem01.is-type02 p.copy {
  background-color: #9A2900 !important;
}
.c-shopListItem01.is-type03 p.copy {
  background-color: #9B0B0D !important;
}
.c-shopListItem01.is-type04 p.copy {
  background-color: #16044E !important;
}
.c-shopListItem01.is-type05 p.copy {
  background-color: #7F5011 !important;
}
.c-shopListItem01.is-type06 p.copy {
  background-color: #02466A !important;
}
.c-shopListItem01.is-type07 p.copy {
  background-color: #550049 !important;
}
.c-shopListItem01.is-type08 p.copy {
  background-color: #AC430B !important;
}
.c-shopListItem01.is-type09 p.copy {
  background-color: #426F26 !important;
}
.c-shopListItem01 > .componentWrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  color: inherit;
  transition: opacity 0.3s;
}
.c-shopListItem01 > .componentWrapper:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper {
    gap: 4.6875vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image {
  position: relative;
  width: 100%;
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-image {
  width: 100%;
  filter: drop-shadow(clamp(4.3885714286px, 0px + 0.571vw, 8px) clamp(4.3885714286px, 0px + 0.571vw, 8px) 0 rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-image .area.is-image {
    filter: drop-shadow(1.340625vw 1.340625vw 0 rgba(0, 0, 0, 0.2));
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-image .image {
  width: 100%;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-image .area.is-image .image {
    border-radius: 1.675vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-image .image img {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-copy {
  display: inline-block;
  position: absolute;
  top: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  left: clamp(-10px, 0px + -0.714vw, -5.4857142857px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-image .area.is-copy {
    top: 3.125vw;
    left: -1.5625vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-copy p.copy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(6.5828571429px, 0px + 0.857vw, 12px) clamp(10.9714285714px, 0px + 1.429vw, 20px);
  height: clamp(32.9142857143px, 0px + 4.286vw, 60px);
  background-color: #333;
  box-sizing: border-box;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-image .area.is-copy p.copy {
    padding: 1.875vw 3.125vw;
    height: 9.375vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-copy p.copy img {
  display: inline-block;
  height: 100%;
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: clamp(-30px, 0px + -2.143vw, -16.4571428571px);
  bottom: clamp(-70px, 0px + -5vw, -38.4px);
  width: clamp(109.7142857143px, 0px + 14.286vw, 200px);
  height: clamp(109.7142857143px, 0px + 14.286vw, 200px);
  background-color: #fff;
  border-radius: clamp(4.7012571429px, 0px + 0.612vw, 8.57px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-image .area.is-logo {
    right: -3.125vw;
    bottom: -3.125vw;
    width: 31.25vw;
    height: 31.25vw;
    border-radius: 1.340625vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-logo .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(94.0416px, 0px + 12.245vw, 171.43px);
  height: clamp(94.0416px, 0px + 12.245vw, 171.43px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-image .area.is-logo .logo {
    width: 26.784375vw;
    height: 26.784375vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-image .area.is-logo .logo img {
  width: 100%;
}
.c-shopListItem01 > .componentWrapper > .block.is-text {
  display: flex;
  flex-direction: column;
  gap: clamp(8.2285714286px, 0px + 1.071vw, 15px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text {
    gap: 2.5vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-shop {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-shop {
    gap: 0.8375vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-shop .name {
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-shop .name {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-shop .address {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-shop .address {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info {
  padding: clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info {
    padding: 3.125vw 3.75vw;
    border-radius: 1.003125vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl {
    row-gap: 1.5625vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl dt, .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl dd {
  display: inline-block;
  box-sizing: border-box;
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl dt {
  width: clamp(46.6285714286px, 0px + 6.071vw, 85px);
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
  line-height: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl dt {
    width: 19.375vw;
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
    line-height: 6.875vw;
  }
}
.c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl dd {
  padding-left: clamp(8.2285714286px, 0px + 1.071vw, 15px);
  width: calc(100% - clamp(46.6285714286px, 0px + 6.071vw, 85px));
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-left: clamp(0.5485714286px, 0px + 0.071vw, 1px) solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .c-shopListItem01 > .componentWrapper > .block.is-text .area.is-info dl dd {
    padding-left: 2.5vw;
    width: calc(100% - 19.375vw);
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    border-width: 0.3125vw;
  }
}

.c-shopTitle01 .componentWrapper {
  position: relative;
}
.c-shopTitle01 .componentWrapper .block.is-image {
  position: relative;
  width: 100vw;
}
.c-shopTitle01 .componentWrapper .block.is-image .area.is-image {
  width: 100%;
}
.c-shopTitle01 .componentWrapper .block.is-image .area.is-image .image {
  position: relative;
  width: 100%;
  aspect-ratio: 24/11;
}
@media screen and (max-width: 768px) {
  .c-shopTitle01 .componentWrapper .block.is-image .area.is-image .image {
    aspect-ratio: 16/33;
  }
}
.c-shopTitle01 .componentWrapper .block.is-image .area.is-image .image img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-shopTitle01 .componentWrapper .block.is-image .area.is-copy {
  display: inline-block;
  width: clamp(63.6342857143px, 0px + 8.286vw, 116px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-shopTitle01 .componentWrapper .block.is-image .area.is-copy {
    width: 18.125vw;
  }
}
.c-shopTitle01 .componentWrapper .block.is-image .area.is-copy p.copy {
  display: inline-block;
  width: 100%;
  filter: drop-shadow(0 0 clamp(4.8493714286px, 0px + 0.631vw, 8.84px) rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 768px) {
  .c-shopTitle01 .componentWrapper .block.is-image .area.is-copy p.copy {
    filter: drop-shadow(0 0 1.38125vw rgba(0, 0, 0, 0.5));
  }
}
.c-shopTitle01 .componentWrapper .block.is-image .area.is-copy p.copy img {
  display: inline-block;
  width: 100%;
}
.c-shopTitle01 .componentWrapper .block.is-logo {
  display: inline-block;
  width: clamp(137.1428571429px, 0px + 17.857vw, 250px);
  height: clamp(137.1428571429px, 0px + 17.857vw, 250px);
  position: absolute;
  bottom: clamp(39.4971428571px, 0px + 5.143vw, 72px);
  left: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-shopTitle01 .componentWrapper .block.is-logo {
    width: 39.0625vw;
    height: 39.0625vw;
    bottom: 15.625vw;
    left: 3.125vw;
  }
}
.c-shopTitle01 .componentWrapper .block.is-logo .area.is-logo {
  width: 100%;
  height: 100%;
  padding: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  background-color: #fff;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-shopTitle01 .componentWrapper .block.is-logo .area.is-logo {
    padding: 2.8125vw;
    border-radius: 1.5625vw;
  }
}
.c-shopTitle01 .componentWrapper .block.is-logo .area.is-logo .logo {
  display: block;
}
.c-shopTitle01 .componentWrapper .block.is-logo .area.is-logo .logo img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.c-shopEventSet02 {
  position: relative;
  background-color: #413C33;
  z-index: 1;
}
.c-shopEventSet02:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture_japanese01.webp);
  background-size: clamp(38.4px, 0px + 5vw, 70px);
  opacity: 0.02;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02:before {
    background-size: 21.875vw;
  }
}
.c-shopEventSet02 .componentWrapper {
  padding: clamp(43.8857142857px, 0px + 5.714vw, 80px) 0;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper {
    padding: 12.5vw 0;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-parts {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top {
  position: absolute;
  top: clamp(-50px, 0px + -3.571vw, -27.4285714286px);
  left: 0;
  width: 100%;
  height: clamp(82.8342857143px, 0px + 10.786vw, 151px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top {
    top: -7.8125vw;
    height: 23.75vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top:before, .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top:before {
  top: 0;
  left: clamp(-15px, 0px + -1.071vw, -8.2285714286px);
  width: clamp(174.9942857143px, 0px + 22.786vw, 319px);
  height: clamp(75.1542857143px, 0px + 9.786vw, 137px);
  background-image: url(../images/top/top_event_parts_top_left.webp);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top:before {
    top: 3.540625vw;
    left: -3.90625vw;
    width: 34.521875vw;
    height: 14.91875vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top:after {
  top: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  right: clamp(-15px, 0px + -1.071vw, -8.2285714286px);
  width: clamp(178.2857142857px, 0px + 23.214vw, 325px);
  height: clamp(80.0914285714px, 0px + 10.429vw, 146px);
  background-image: url(../images/top/top_event_parts_top_right.webp);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-top:after {
    top: 4.0875vw;
    right: -4.0625vw;
    width: 35.16875vw;
    height: 15.96875vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(81.1885714286px, 0px + 10.571vw, 148px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom {
    height: 21.5625vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom:before, .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom:before {
  top: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  left: clamp(-245px, 0px + -17.5vw, -134.4px);
  width: clamp(401.0057142857px, 0px + 52.214vw, 731px);
  height: clamp(152.5028571429px, 0px + 19.857vw, 278px);
  background-image: url(../images/top/top_event_parts_bottom_left.webp);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom:before {
    top: 9.171875vw;
    left: -30.6vw;
    width: 79.953125vw;
    height: 30.40625vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom:after {
  top: 0;
  right: clamp(-247px, 0px + -17.643vw, -135.4971428571px);
  width: clamp(389.4857142857px, 0px + 50.714vw, 710px);
  height: clamp(154.1485714286px, 0px + 20.071vw, 281px);
  background-image: url(../images/top/top_event_parts_bottom_right.webp);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-parts .block.is-bottom:after {
    top: 6.984375vw;
    right: -33.75vw;
    width: 77.65625vw;
    height: 30.734375vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title .title {
    height: 9.0625vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title .title img {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title .title img.is-pc {
    display: none;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title .title img.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-title .title img.is-sp {
    display: inline-block;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents {
  position: relative;
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
  box-sizing: border-box;
  border-radius: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list {
    gap: 3.125vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list {
    gap: 3.125vw;
    padding: 6.25vw 6.25vw;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list .date {
  color: #737373;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list .text {
  color: #000;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet02 .componentWrapper .group.is-contents .block.is-contents .area.is-list .list .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.c-shopSliderSet01 .componentWrapper .block.is-contents {
  width: 100vw;
  overflow: hidden;
}
.c-shopSliderSet01 .componentWrapper .block.is-contents .area.is-slider {
  display: flex;
  width: var(--slider-width-pc);
  animation: marquee 80s linear infinite;
}
@media screen and (max-width: 768px) {
  .c-shopSliderSet01 .componentWrapper .block.is-contents .area.is-slider {
    width: var(--slider-width-sp);
  }
}
.c-shopSliderSet01 .componentWrapper .block.is-contents .area.is-slider .box.is-slide {
  position: relative;
  width: 33.3333333333vw;
  aspect-ratio: 46/29;
}
@media screen and (max-width: 768px) {
  .c-shopSliderSet01 .componentWrapper .block.is-contents .area.is-slider .box.is-slide {
    width: 70vw;
  }
}
.c-shopSliderSet01 .componentWrapper .block.is-contents .area.is-slider .box.is-slide img {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-shopRecommendDishSet01.is-nasu_yoichi {
  background: linear-gradient(rgba(2, 99, 106, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #02636A;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-nasu_yoichi {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-chiritotechin {
  background: linear-gradient(rgba(154, 41, 0, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #9A2900;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-chiritotechin {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-kinchan {
  background: linear-gradient(rgba(155, 11, 13, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #9B0B0D;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-kinchan {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-aburiya {
  background: linear-gradient(rgba(22, 4, 78, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #16044E;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-aburiya {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-toriya {
  background: linear-gradient(rgba(127, 80, 17, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #7F5011;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-toriya {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-ise_yoichi {
  background: linear-gradient(rgba(2, 70, 106, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #02466A;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-ise_yoichi {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-yami_nishimaizuru {
  background: linear-gradient(rgba(85, 0, 73, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #550049;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-yami_nishimaizuru {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-marukei {
  background: linear-gradient(rgba(172, 67, 11, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #AC430B;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-marukei {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01.is-jubee {
  background: linear-gradient(rgba(66, 111, 38, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #426F26;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01.is-jubee {
    background-size: 18%;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper {
  padding: clamp(43.8857142857px, 0px + 5.714vw, 80px) 0 clamp(65.8285714286px, 0px + 8.571vw, 120px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper {
    padding: 18.75vw 0;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-title {
    margin-bottom: 9.375vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-title .title {
    height: 12.890625vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-title .title img {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-title .title img.is-pc {
    display: none;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-title .title img.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-title .title img.is-sp {
    display: inline-block;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-lead {
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-lead {
    margin-bottom: 3.125vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-lead .area.is-lead {
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #f9f9f9;
  box-sizing: border-box;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-lead .area.is-lead {
    padding: 6.25vw;
    border-radius: 3.125vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-lead .area.is-lead .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-lead .area.is-lead .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider {
  position: relative;
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-slider .swiper-slide {
  width: clamp(186.5142857143px, 0px + 24.286vw, 340px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-slider .swiper-slide {
    width: 81.25vw;
  }
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-slider .c-recommendThumbSet01 .componentWrapper .block.is-text .text {
    font-size: 10px;
    font-size: 3.125vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow {
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: 100%;
  position: absolute;
  top: clamp(60.3428571429px, 0px + 7.857vw, 110px);
  left: 0;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow {
    padding: 0 1.5625vw;
    top: 32.5vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow .box.is-arrow {
  display: inline-block;
  width: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  height: clamp(65.8285714286px, 0px + 8.571vw, 120px);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s;
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow .box.is-arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow .box.is-arrow {
    width: 18.75vw;
    height: 18.75vw;
  }
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow .box.is-arrow.is-prev {
  background-image: url(../images/shop/shop_recommend_arrow_prev01.webp);
}
.c-shopRecommendDishSet01 > .componentWrapper > .block.is-slider .area.is-arrow .box.is-arrow.is-next {
  background-image: url(../images/shop/shop_recommend_arrow_next01.webp);
}

.c-shopDetailSet01 .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-title {
    margin-bottom: 9.375vw;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-title .title {
    height: 12.890625vw;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-title .title img {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-title .title img.is-pc {
    display: none;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-title .title img.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-title .title img.is-sp {
    display: inline-block;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-contents {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-contents {
    gap: 3.125vw;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-contents .area.is-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  padding-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: calc(50% - clamp(5.4857142857px, 0px + 0.714vw, 10px));
  border-bottom: clamp(0.5485714286px, 0px + 0.071vw, 1px) solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-contents .area.is-detail {
    gap: 1.5625vw;
    padding-bottom: 3.125vw;
    width: 100%;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-contents .area.is-detail .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-contents .area.is-detail .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-shopDetailSet01 .componentWrapper .block.is-contents .area.is-detail .text {
  color: #000;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopDetailSet01 .componentWrapper .block.is-contents .area.is-detail .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.c-mapSet01 .componentWrapper .block.is-contents iframe {
  width: 100%;
  height: clamp(274.2857142857px, 0px + 35.714vw, 500px);
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .c-mapSet01 .componentWrapper .block.is-contents iframe {
    height: 156.25vw;
  }
}

.c-companyLinkSet01 > .componentWrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-companyLinkSet01 > .componentWrapper {
    flex-direction: column;
    gap: 12.5vw;
  }
}
.c-companyLinkSet01 > .componentWrapper .block.is-link {
  position: relative;
  transition: opacity 0.3s ease;
}
.c-companyLinkSet01 > .componentWrapper .block.is-link:hover .image {
  opacity: 0.9;
}
.c-companyLinkSet01 > .componentWrapper .block.is-link:hover .btn {
  background-color: #333;
}
.c-companyLinkSet01 > .componentWrapper .block.is-link:hover .btn .text {
  color: #fff;
}
.c-companyLinkSet01 > .componentWrapper .block.is-link .image {
  overflow: hidden;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  filter: drop-shadow(clamp(4.3885714286px, 0px + 0.571vw, 8px) clamp(4.3885714286px, 0px + 0.571vw, 8px) 0 rgba(0, 0, 0, 0.2));
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-companyLinkSet01 > .componentWrapper .block.is-link .image {
    position: relative;
    aspect-ratio: 3/2;
    filter: drop-shadow(1.25vw 1.25vw 0 rgba(0, 0, 0, 0.2));
    border-radius: 3.125vw;
  }
}
.c-companyLinkSet01 > .componentWrapper .block.is-link .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-companyLinkSet01 > .componentWrapper .block.is-link .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.c-companyLinkSet01 > .componentWrapper .block.is-link .btn {
  display: block;
  position: absolute;
  width: calc(100% - clamp(17.0057142857px, 0px + 2.214vw, 31px));
  right: clamp(-20px, 0px + -1.429vw, -10.9714285714px);
  bottom: clamp(-20px, 0px + -1.429vw, -10.9714285714px);
  z-index: 100;
  padding: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  background-color: #fff;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-companyLinkSet01 > .componentWrapper .block.is-link .btn {
    right: -4.6875vw;
    bottom: -4.6875vw;
    width: calc(100% - 9.375vw);
    padding: 3.125vw;
    border-radius: 1.875vw;
  }
}
.c-companyLinkSet01 > .componentWrapper .block.is-link .btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  bottom: 0;
  width: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  height: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  background-image: url(../images/common/btn_arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-companyLinkSet01 > .componentWrapper .block.is-link .btn:after {
    right: 3.125vw;
    width: 2.159375vw;
    height: 3.75vw;
  }
}
.c-companyLinkSet01 > .componentWrapper .block.is-link .btn .text {
  color: #102B3E;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-companyLinkSet01 > .componentWrapper .block.is-link .btn .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.c-philosophyvisualSet {
  position: relative;
}
.c-philosophyvisualSet .imageArea {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(362.0571428571px, 0px + 47.143vw, 660px);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .imageArea {
    height: 162.5vw;
  }
}
.c-philosophyvisualSet .imageArea .image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-philosophyvisualSet .imageArea .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-philosophyvisualSet .copyArea {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate3d(-50%, -50%, 0);
  width: clamp(63.6342857143px, 0px + 8.286vw, 116px);
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .copyArea {
    width: 25vw;
    transform: translate3d(-50%, -70%, 0);
  }
}
.c-philosophyvisualSet .copyArea .copy {
  filter: drop-shadow(0 0 clamp(4.8493714286px, 0px + 0.631vw, 8.84px) rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .copyArea .copy {
    filter: drop-shadow(0 0 1.79375vw rgba(0, 0, 0, 0.5));
  }
}
.c-philosophyvisualSet .copyArea .copy img {
  width: 100%;
  height: auto;
}
.c-philosophyvisualSet .navArea {
  position: relative;
  transform: translate3d(0, -50%, 0);
  width: clamp(548.5714285714px, 0px + 71.429vw, 1000px);
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .navArea {
    width: calc(100% - 10vw);
    transform: translate3d(0, -5vw, 0);
  }
}
.c-philosophyvisualSet .navArea ul {
  display: flex;
  justify-content: center;
  background-color: #02466A;
  border-radius: clamp(4.3885714286px, 0px + 0.571vw, 8px);
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .navArea ul {
    flex-direction: column;
  }
}
.c-philosophyvisualSet .navArea ul .item {
  position: relative;
}
.c-philosophyvisualSet .navArea ul .item:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(0.5485714286px, 0px + 0.071vw, 1px);
  height: clamp(13.7142857143px, 0px + 1.786vw, 25px);
  opacity: 0.1;
  background-color: #fff;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .navArea ul .item:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0.3125vw;
  }
}
.c-philosophyvisualSet .navArea ul .item .inner {
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  position: relative;
  padding: clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(27.4285714286px, 0px + 3.571vw, 50px);
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .navArea ul .item .inner {
    gap: 1.25vw;
    padding: 4.6875vw 4.6875vw;
  }
}
.c-philosophyvisualSet .navArea ul .item .inner .text {
  position: relative;
  padding-right: clamp(13.7142857143px, 0px + 1.786vw, 25px);
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .navArea ul .item .inner .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-philosophyvisualSet .navArea ul .item .inner .text::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(8.2285714286px, 0px + 1.071vw, 15px);
  height: clamp(9.3257142857px, 0px + 1.214vw, 17px);
  background-image: url(../images/philosophy/philosophy_nav_arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .c-philosophyvisualSet .navArea ul .item .inner .text::after {
    right: 1.25vw;
    width: 2.159375vw;
    height: 3.75vw;
  }
}

.c-philosophyCompanyfoundationSet {
  overflow: hidden;
  position: relative;
  align-items: center;
  background: linear-gradient(180deg, rgb(235, 243, 246) 0%, rgb(247, 239, 174) 100%);
}
.c-philosophyCompanyfoundationSet:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/texture01_paper02.webp);
  background-size: clamp(262.4365714286px, 0px + 34.171vw, 478.4px);
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet:before {
    background-size: 149.5vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper {
  position: relative;
  padding: clamp(175.5428571429px, 0px + 22.857vw, 320px) 0;
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper {
    gap: 6.25vw;
    padding: 34.375vw 0;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block {
  position: relative;
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts {
    max-width: 100%;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts.is-1 {
  position: absolute;
  top: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  left: clamp(-150px, 0px + -10.714vw, -82.2857142857px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts.is-1 {
    max-width: 100%;
    top: 12.5vw;
    left: -12.5vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts.is-2 {
  position: absolute;
  bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  left: clamp(-1730px, 0px + -123.571vw, -949.0285714286px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts.is-2 {
    max-width: 100%;
    left: -90.625vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item {
  display: inline-block;
  flex-shrink: 0;
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(1) {
  width: clamp(160.7314285714px, 0px + 20.929vw, 293px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(1) {
    width: 33.475vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(2) {
  width: clamp(183.7714285714px, 0px + 23.929vw, 335px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(2) {
    width: 34.81875vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(3) {
  width: clamp(201.3257142857px, 0px + 26.214vw, 367px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(3) {
    width: 39.49375vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(4) {
  width: clamp(197.4857142857px, 0px + 25.714vw, 360px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(4) {
    width: 32.953125vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(5) {
  width: clamp(143.1771428571px, 0px + 18.643vw, 261px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(5) {
    width: 25.96875vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(6) {
  width: clamp(160.7314285714px, 0px + 20.929vw, 293px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(6) {
    width: 30.540625vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(7) {
  width: clamp(166.2171428571px, 0px + 21.643vw, 303px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(7) {
    width: 31.28125vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(8) {
  width: clamp(165.12px, 0px + 21.5vw, 301px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(8) {
    width: 27.21875vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(9) {
  width: clamp(130.56px, 0px + 17vw, 238px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(9) {
    width: 24.775vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(10) {
  width: clamp(205.7142857143px, 0px + 26.786vw, 375px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item:nth-child(10) {
    width: 41.93125vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-parts .item img {
  width: 100%;
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-title {
    margin-bottom: 4.6875vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-title .title {
    height: 15.625vw;
  }
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-title .title span img {
  display: inline-block;
  height: 100%;
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-text {
  width: 100%;
  margin: auto 0;
}
.c-philosophyCompanyfoundationSet .componentWrapper .block.is-text .text {
  color: #102B3E;
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-text .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 14px;
    font-size: 4.375vw;
    line-height: 1.8;
    letter-spacing: 0em;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .c-philosophyCompanyfoundationSet .componentWrapper .block.is-text .text .is-pcOnly {
    display: none;
  }
}

.c-philosophyRepresentativemessageSet {
  background: #FFF;
}
.c-philosophyRepresentativemessageSet .componentWrapper {
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  padding: clamp(65.8285714286px, 0px + 8.571vw, 120px) 0;
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper {
    gap: 6.25vw;
    padding: 18.75vw 0;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .block.is-title {
    margin-bottom: 6.25vw;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .block.is-title .title {
    height: 15.625vw;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-title .title span img {
  display: inline-block;
  height: 100%;
}
.c-philosophyRepresentativemessageSet .componentWrapper .group.is-message {
  display: flex;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .group.is-message {
    display: block;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .group.is-message .imageBlock .person img {
  width: auto;
  height: clamp(192px, 0px + 25vw, 350px);
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .group.is-message .imageBlock .person img {
    width: 100%;
    height: auto;
    margin-bottom: 7.5vw;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-text {
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .block.is-text {
    gap: 3.125vw;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-text .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .block.is-text .text {
    margin-bottom: 3.125vw;
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-text .name .text {
  margin-bottom: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .block.is-text .name .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-philosophyRepresentativemessageSet .componentWrapper .block.is-text .name .imageName img {
  width: clamp(94.3542857143px, 0px + 12.286vw, 172px);
}
@media screen and (max-width: 768px) {
  .c-philosophyRepresentativemessageSet .componentWrapper .block.is-text .name .imageName img {
    width: 37.5vw;
  }
}

.c-philosophyOurphilosophySet {
  position: relative;
  align-items: center;
  background: none;
}
.c-philosophyOurphilosophySet .componentWrapper {
  position: relative;
  z-index: 1;
  padding: clamp(65.8285714286px, 0px + 8.571vw, 120px) 0;
}
@media screen and (max-width: 768px) {
  .c-philosophyOurphilosophySet .componentWrapper {
    padding: 18.75vw 0;
  }
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-title {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-philosophyOurphilosophySet .componentWrapper .block.is-title {
    margin-bottom: 6.25vw;
  }
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-philosophyOurphilosophySet .componentWrapper .block.is-title .title {
    height: 15.625vw;
  }
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-title .title span {
  display: inline-block;
  height: 100%;
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-title .title span img {
  display: inline-block;
  height: 100%;
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-text {
  width: 100%;
  text-align: center;
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-text .text {
  margin-bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  color: #102B3E;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-philosophyOurphilosophySet .componentWrapper .block.is-text .text {
    margin-bottom: 6.25vw;
    font-size: 14px;
    font-size: 4.375vw;
    text-align: left;
  }
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-text .figure {
  width: clamp(394.9714285714px, 0px + 51.429vw, 720px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-philosophyOurphilosophySet .componentWrapper .block.is-text .figure {
    width: 100%;
  }
}
.c-philosophyOurphilosophySet .componentWrapper .block.is-text .figure img {
  width: 100%;
  height: auto;
}

.c-historySet {
  margin: clamp(32.9142857143px, 0px + 4.286vw, 60px) 0;
}
@media screen and (max-width: 768px) {
  .c-historySet {
    margin-bottom: 9.375vw 0;
  }
}
.c-historySet li {
  display: flex;
  gap: clamp(43.8857142857px, 0px + 5.714vw, 80px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px) clamp(5.4857142857px, 0px + 0.714vw, 10px);
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .c-historySet li {
    flex-direction: column;
    gap: 0.625vw;
    padding: 3.125vw 0;
  }
}
.c-historySet li .title {
  width: clamp(54.8571428571px, 0px + 7.143vw, 100px);
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-historySet li .title {
    width: auto;
    font-size: 11px;
    font-size: 3.4375vw;
  }
}
.c-historySet li .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-historySet li .text {
    font-size: 11px;
    font-size: 3.4375vw;
  }
}

.c-oneshotListSet01 .componentWrapper .block.is-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list {
    gap: 6.25vw;
  }
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item {
  width: calc(50% - clamp(10.9714285714px, 0px + 1.429vw, 20px));
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item {
    width: 100%;
  }
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(13.7142857143px, 0px + 1.786vw, 25px);
  width: 100%;
  color: inherit;
  transition: opacity 0.3s;
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .inner {
    gap: 4.6875vw;
  }
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-thumb {
  width: 100%;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
  box-shadow: clamp(4.7725714286px, 0px + 0.621vw, 8.7px) clamp(4.7725714286px, 0px + 0.621vw, 8.7px) 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-thumb {
    border-radius: 3.125vw;
    box-shadow: 1.25vw 1.25vw 0 rgba(0, 0, 0, 0.2);
  }
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-thumb .image {
  aspect-ratio: 48/31;
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-thumb .image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-text {
  display: flex;
  flex-direction: column;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-text {
    gap: 1.5625vw;
  }
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-text .date {
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-text .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-text .title {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-oneshotListSet01 .componentWrapper .block.is-list .area.is-item .item.is-text .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.c-newsListSet01 .componentWrapper .block.is-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
@media screen and (max-width: 768px) {
  .c-newsListSet01 .componentWrapper .block.is-list {
    gap: 1.5625vw;
  }
}
.c-newsListSet01 .componentWrapper .block.is-list .item .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  position: relative;
  padding: clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(21.9428571429px, 0px + 2.857vw, 40px) clamp(8.2285714286px, 0px + 1.071vw, 15px) clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
  transition: opacity 0.3s;
}
.c-newsListSet01 .componentWrapper .block.is-list .item .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-newsListSet01 .componentWrapper .block.is-list .item .inner {
    gap: 1.5625vw;
    padding: 4.6875vw 10.9375vw 4.6875vw 4.6875vw;
  }
}
.c-newsListSet01 .componentWrapper .block.is-list .item .inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  bottom: 0;
  margin: auto 0;
  width: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  height: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  background-image: url(../images/common/btn_arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-newsListSet01 .componentWrapper .block.is-list .item .inner:after {
    right: 3.125vw;
    width: 2.159375vw;
    height: 3.75vw;
  }
}
.c-newsListSet01 .componentWrapper .block.is-list .item .inner .date {
  color: #737373;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-newsListSet01 .componentWrapper .block.is-list .item .inner .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-newsListSet01 .componentWrapper .block.is-list .item .inner .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-newsListSet01 .componentWrapper .block.is-list .item .inner .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.c-shopNameSet01.is-nasunoyoichi {
  background: linear-gradient(rgba(2, 99, 106, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #02636A;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-nasunoyoichi {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-chiritote {
  background: linear-gradient(rgba(154, 41, 0, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #9A2900;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-chiritote {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-kinchan {
  background: linear-gradient(rgba(155, 11, 13, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #9B0B0D;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-kinchan {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-aburiya {
  background: linear-gradient(rgba(22, 4, 78, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #16044E;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-aburiya {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-toriya {
  background: linear-gradient(rgba(127, 80, 17, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #7F5011;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-toriya {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-ise {
  background: linear-gradient(rgba(2, 70, 106, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #02466A;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-ise {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-yamiichi {
  background: linear-gradient(rgba(85, 0, 73, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #550049;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-yamiichi {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-marukei {
  background: linear-gradient(rgba(172, 67, 11, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #AC430B;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-marukei {
    background-size: 18%;
  }
}
.c-shopNameSet01.is-jubee {
  background: linear-gradient(rgba(66, 111, 38, 0.96)), url(../images/common/texture_japanese03.webp);
  background-color: #426F26;
  background-size: 4%;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01.is-jubee {
    background-size: 18%;
  }
}
.c-shopNameSet01 .componentWrapper .block.is-title {
  display: flex;
  align-items: center;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01 .componentWrapper .block.is-title {
    flex-direction: column;
    gap: 3.125vw;
    padding: 6.25vw 0;
  }
}
.c-shopNameSet01 .componentWrapper .block.is-title .area.is-logo {
  display: inline-block;
  padding: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  width: clamp(76.8px, 0px + 10vw, 140px);
  height: clamp(76.8px, 0px + 10vw, 140px);
  background-color: #fff;
  box-sizing: border-box;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01 .componentWrapper .block.is-title .area.is-logo {
    padding: 2.1875vw;
    width: 31.25vw;
    height: 31.25vw;
    border-radius: 1.25vw;
  }
}
.c-shopNameSet01 .componentWrapper .block.is-title .area.is-logo .logo {
  display: inline-block;
  width: 100%;
}
.c-shopNameSet01 .componentWrapper .block.is-title .area.is-logo .logo img {
  display: inline-block;
  width: 100%;
}
.c-shopNameSet01 .componentWrapper .block.is-title .area.is-title .title {
  color: #fff;
  font-size: 32px;
  font-size: clamp(17.5542857143px, 0px + 2.286vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopNameSet01 .componentWrapper .block.is-title .area.is-title .title {
    font-size: 22px;
    font-size: 6.875vw;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.c-shopEventSet01 .componentWrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper {
    gap: 6.25vw;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .block.is-contents {
  display: flex;
  flex-direction: column;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper .group.is-event .block.is-contents {
    gap: 6.25vw;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .area.is-list {
  display: flex;
  flex-direction: column;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper .group.is-event .area.is-list {
    gap: 3.125vw;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list {
    gap: 3.125vw;
    padding: 6.25vw 6.25vw;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list .date {
  color: #737373;
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list .date {
    font-size: 13px;
    font-size: 4.0625vw;
    font-weight: bolder;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list .text {
  color: #000;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopEventSet01 .componentWrapper .group.is-event .area.is-list .list .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopEventSet01 .componentWrapper .group.is-event .area.is-btn {
  display: flex;
  justify-content: center;
}

.c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link {
    justify-content: flex-start;
    gap: 3.125vw;
  }
}
.c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link .item.is-link {
  display: inline-block;
  width: clamp(120.6857142857px, 0px + 15.714vw, 220px);
}
@media screen and (max-width: 768px) {
  .c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link .item.is-link {
    width: calc(50% - 1.5625vw);
  }
}
.c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link .item.is-link .inner {
  display: inline-block;
  padding: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
  box-shadow: 0 0 clamp(8.7771428571px, 0px + 1.143vw, 16px) rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s;
}
.c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link .item.is-link .inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link .item.is-link .inner {
    padding: 3.125vw;
    border-radius: 1.875vw;
    box-shadow: 0 0 3.125vw rgba(0, 0, 0, 0.1);
  }
}
.c-shopLinkSet01 .componentWrapper .block.is-link .area.is-link .item.is-link .inner img {
  display: inline-block;
  width: 100%;
}

.c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title {
    margin-bottom: 9.375vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title .title {
  height: clamp(37.8514285714px, 0px + 4.929vw, 69px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title .title {
    height: 12.890625vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title .title img {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title .title img.is-pc {
    display: none;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title .title img.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-title .block.is-title .title img.is-sp {
    display: inline-block;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-shop {
  margin-bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-shop {
    margin-bottom: 6.25vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents {
    flex-direction: column;
    gap: 9.375vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents + .group.is-contents {
  margin-top: clamp(16.4571428571px, 0px + 2.143vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents + .group.is-contents {
    margin-top: 9.375vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: clamp(241.3714285714px, 0px + 31.429vw, 440px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image {
    width: 100%;
    gap: 4.6875vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-image {
  display: flex;
  flex-direction: column;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-image {
    gap: 3.125vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn {
  width: 100%;
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a {
  display: flex;
  flex-direction: column;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  align-items: center;
  padding: clamp(16.4571428571px, 0px + 2.143vw, 30px);
  background-color: #9B0D0D;
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  transition: opacity 0.3s;
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a {
    gap: 1.5625vw;
    padding: 6.25vw;
    border-radius: 3.125vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span.large {
  font-size: 44px;
  font-size: clamp(24.1371428571px, 0px + 3.143vw, 44px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span.large {
    font-size: 30px;
    font-size: 9.375vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span.large:before {
  content: "";
  display: inline-block;
  margin-right: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  width: clamp(17.5542857143px, 0px + 2.286vw, 32px);
  height: clamp(17.5542857143px, 0px + 2.286vw, 32px);
  background-image: url(../images/common/global_icon_tel01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span.large:before {
    margin-right: 3.125vw;
    width: 7.5vw;
    height: 7.5vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span.small {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-image .area.is-tel .telBtn a span.small {
    font-size: 14px;
    font-size: 4.375vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-text {
    gap: 6.25vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-title .courseTitle span {
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-title .courseTitle span {
    font-size: 16px;
    font-size: 5vw;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail {
    gap: 1.5625vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail:not(:last-child) {
  padding-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  border-bottom: clamp(0.5485714286px, 0px + 0.071vw, 1px) solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail:not(:last-child) {
    padding-bottom: 6.25vw;
    border-width: 0.3125vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .subTitle {
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #9B0D0D;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .subTitle {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .price {
  display: flex;
  align-items: flex-end;
  gap: clamp(2.1942857143px, 0px + 0.286vw, 4px);
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .price {
    gap: 1.25vw;
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .price strong {
  font-size: 28px;
  font-size: clamp(15.36px, 0px + 2vw, 28px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .price strong {
    font-weight: 500;
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .book {
  display: inline-block;
  padding: clamp(5.4857142857px, 0px + 0.714vw, 10px) clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
  border: clamp(1.0971428571px, 0px + 0.143vw, 2px) solid #000;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .book {
    padding: 3.125vw 4.6875vw;
    border-width: 0.625vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .book span {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .book span {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .comment {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block .area.is-detail .comment {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-precautions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  padding: clamp(16.4571428571px, 0px + 2.143vw, 30px) clamp(10.9714285714px, 0px + 1.429vw, 20px);
  width: 100%;
  background-color: #fff;
  border: clamp(3.2914285714px, 0px + 0.429vw, 6px) solid #9B0D0D;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-precautions {
    gap: 3.125vw;
    padding: 6.25vw 6.25vw;
    border-width: 1.875vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-precautions .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-precautions .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-precautions .text {
  color: #9B0D0D;
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-contents .block.is-precautions .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-none .block.is-contents .area.is-item {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-none .block.is-contents .area.is-item {
    gap: 3.125vw;
    padding: 6.25vw 6.25vw;
  }
}
.c-shopRecommendCourseSet01 .componentWrapper .group.is-none .block.is-contents .area.is-item .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-shopRecommendCourseSet01 .componentWrapper .group.is-none .block.is-contents .area.is-item .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.c-recommendListSet01 > .componentWrapper .group.is-shop {
  margin-bottom: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-recommendListSet01 > .componentWrapper .group.is-shop {
    margin-bottom: 6.25vw;
  }
}
.c-recommendListSet01 > .componentWrapper .group.is-contents {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-recommendListSet01 > .componentWrapper .group.is-contents {
    gap: 6.25vw;
  }
}
.c-recommendListSet01 > .componentWrapper .group.is-contents .c-recommendThumbSet01 {
  width: calc((100% - clamp(43.8857142857px, 0px + 5.714vw, 80px)) / 3);
}
@media screen and (max-width: 768px) {
  .c-recommendListSet01 > .componentWrapper .group.is-contents .c-recommendThumbSet01 {
    width: 100%;
  }
}
.c-recommendListSet01 > .componentWrapper .group.is-none .block.is-contents .area.is-item {
  display: flex;
  flex-direction: column;
  gap: clamp(2.7428571429px, 0px + 0.357vw, 5px);
  padding: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-recommendListSet01 > .componentWrapper .group.is-none .block.is-contents .area.is-item {
    gap: 3.125vw;
    padding: 6.25vw 6.25vw;
  }
}
.c-recommendListSet01 > .componentWrapper .group.is-none .block.is-contents .area.is-item .title {
  color: #9B0D0D;
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-recommendListSet01 > .componentWrapper .group.is-none .block.is-contents .area.is-item .title {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.c-recommendThumbSet01 .componentWrapper {
  position: relative;
  padding-bottom: clamp(15.36px, 0px + 2vw, 28px);
}
@media screen and (max-width: 768px) {
  .c-recommendThumbSet01 .componentWrapper {
    padding-bottom: 6.875vw;
  }
}
.c-recommendThumbSet01 .componentWrapper .block.is-image {
  width: 100%;
}
.c-recommendThumbSet01 .componentWrapper .block.is-image .image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: clamp(6.0342857143px, 0px + 0.786vw, 11px);
  overflow: hidden;
  box-shadow: clamp(3.2914285714px, 0px + 0.429vw, 6px) clamp(3.2914285714px, 0px + 0.429vw, 6px) 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .c-recommendThumbSet01 .componentWrapper .block.is-image .image {
    border-radius: 2.5vw;
    box-shadow: 0.9375vw 0.9375vw 0 rgba(0, 0, 0, 0.1);
  }
}
.c-recommendThumbSet01 .componentWrapper .block.is-image .image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.c-recommendThumbSet01 .componentWrapper .block.is-text {
  display: inline-block;
  padding: clamp(6.0342857143px, 0px + 0.786vw, 11px);
  position: absolute;
  right: clamp(-10px, 0px + -0.714vw, -5.4857142857px);
  bottom: 0;
  width: calc(100% - clamp(16.4571428571px, 0px + 2.143vw, 30px));
  background-color: #fff;
  box-sizing: border-box;
  border-radius: clamp(3.2914285714px, 0px + 0.429vw, 6px);
}
@media screen and (max-width: 768px) {
  .c-recommendThumbSet01 .componentWrapper .block.is-text {
    padding: 2.8125vw;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: calc(100% - 6.25vw);
    border-radius: 1.25vw;
  }
}
.c-recommendThumbSet01 .componentWrapper .block.is-text .text {
  font-size: 14px;
  font-size: clamp(7.68px, 0px + 1vw, 14px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-recommendThumbSet01 .componentWrapper .block.is-text .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.c-pointcardSet01 .componentWrapper {
  display: flex;
  align-items: center;
  gap: clamp(21.9428571429px, 0px + 2.857vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-pointcardSet01 .componentWrapper {
    flex-direction: column;
    gap: 6.25vw;
  }
}
.c-pointcardSet01 .componentWrapper .block.is-image {
  width: clamp(111.9085714286px, 0px + 14.571vw, 204px);
}
@media screen and (max-width: 768px) {
  .c-pointcardSet01 .componentWrapper .block.is-image {
    width: 63.75vw;
  }
}
.c-pointcardSet01 .componentWrapper .block.is-image .image {
  width: 100%;
}
.c-pointcardSet01 .componentWrapper .block.is-image .image img {
  width: 100%;
}
.c-pointcardSet01 .componentWrapper .block.is-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-pointcardSet01 .componentWrapper .block.is-text {
    gap: 3.125vw;
  }
}
.c-pointcardSet01 .componentWrapper .block.is-text .area.is-title .title {
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-pointcardSet01 .componentWrapper .block.is-text .area.is-title .title {
    font-size: 16px;
    font-size: 5vw;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.c-pointcardSet01 .componentWrapper .block.is-text .area.is-text .text {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-pointcardSet01 .componentWrapper .block.is-text .area.is-text .text {
    font-size: 14px;
    font-size: 4.375vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.m-middleTitle01 {
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-size: 24px;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: clamp(13.1657142857px, 0px + 1.714vw, 24px);
}
.m-middleTitle01:last-child {
  margin-bottom: 0;
}

.m-boldTitle01 {
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-size: 20px;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: clamp(10.9714285714px, 0px + 1.429vw, 20px);
}
.m-boldTitle01:last-child {
  margin-bottom: 0;
}

.m-baseText01 {
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
}
.m-baseText01:last-child {
  margin-bottom: 0;
}

.m-smallBoldTitle01 {
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  font-size: 16px;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: clamp(8.7771428571px, 0px + 1.143vw, 16px);
}
.m-smallBoldTitle01:last-child {
  margin-bottom: 0;
}

.m-uList01 {
  font-size: 18px;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: clamp(9.8742857143px, 0px + 1.286vw, 18px);
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  margin-left: 1.5em;
  list-style: disc;
}
.m-uList01:last-child {
  margin-bottom: 0;
}
.m-uList01 li {
  margin-bottom: clamp(2.7428571429px, 0px + 0.357vw, 5px);
}
.m-uList01 li:last-child {
  margin-bottom: 0;
}

.m-logoImage01 {
  display: block;
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  padding: clamp(5.4857142857px, 0px + 0.714vw, 10px);
}
.m-logoImage01:last-child {
  margin-bottom: 0;
}
.c-componentsSet01 .m-logoImage01 {
  max-width: 300px;
}
.m-logoImage01 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.m-imageSet01 {
  display: block;
  margin-bottom: clamp(10.9714285714px, 0px + 1.429vw, 20px);
  border-radius: clamp(5.4857142857px, 0px + 0.714vw, 10px);
  overflow: hidden;
}
.c-componentsSet01 .m-imageSet01 {
  max-width: 300px;
}
a .m-imageSet01 {
  filter: drop-shadow(clamp(2.1942857143px, 0px + 0.286vw, 4px) clamp(2.1942857143px, 0px + 0.286vw, 4px) 0 rgba(0, 0, 0, 0.2));
  transition: filter 0.1s ease;
}
a .m-imageSet01:hover {
  filter: drop-shadow(clamp(0px, 0px + 0vw, 0px) clamp(0px, 0px + 0vw, 0px) 0 rgba(0, 0, 0, 0.2));
}
.m-imageSet01:last-child {
  margin-bottom: 0;
}
.m-imageSet01 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}