@charset "UTF-8";
/* 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;
}

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