@charset "UTF-8";
:root {
  --main-font-color:#1A1311;
  --sub-font-color:#C9A295;
}

/* -------------------------
px => rem
------------------------- */
/* ===================================
Reset
=================================== */
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, strong, sub, sup, tt, var,
b, 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.8;
}

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

/* input textarea reset
============================== */
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

/* テキスト
============================== */
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
============================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* ===================================
base
=================================== */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  overscroll-behavior: none;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: strict;
  color: var(--color-black);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.6;
  font-size: min(1.25vw, 16px);
}
@media screen and (width <= 1024px) {
  body {
    font-size: clamp(14px, 1.5625vw, 16px);
  }
}
@media screen and (width <= 767px) {
  body {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}

@media (hover: hover) and (pointer: fine) {
  ::-moz-selection {
    background-color: var(--color-main);
    color: var(--color-base);
  }
  ::selection {
    background-color: var(--color-main);
    color: var(--color-base);
  }
}
.bl_bgColor {
  background-color: #F1EDE8;
}

.bl_bgWhite {
  background-color: #fff;
}

/* ===================================
layout
=================================== */
.ly_inner {
  box-sizing: content-box;
  max-width: min(95.31vw, 1220px);
  margin: 0 auto;
  padding: 0 min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .ly_inner {
    max-width: 100%;
    padding: 0 min(4.67vw, 20px);
  }
}

.ly_inner_s {
  max-width: min(81.25vw, 1040px);
  margin-inline: auto;
  padding: 0 min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .ly_inner_s {
    max-width: 100%;
    padding: 0 min(4.67vw, 20px);
  }
}

/* ===================================
device
=================================== */
@media screen and (width <= 767px) {
  .un_pc {
    display: none;
  }
}

.un_sp {
  display: none;
}
@media screen and (width <= 767px) {
  .un_sp {
    display: block;
  }
}

.bl_commonContentsSection {
  box-sizing: border-box;
  padding-inline: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .bl_commonContentsSection {
    padding-inline: min(4.67vw, 20px);
  }
}
.bl_commonContentsSection .bl_commonContentsSection_inner {
  max-width: min(95.31vw, 1220px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_commonContentsSection .bl_commonContentsSection_inner {
    max-width: 100%;
  }
}

.bl_topContents_allViewbtn {
  position: relative;
  display: grid;
  grid-template-columns: auto min(1.88vw, 24px);
  align-items: center;
  gap: min(1.41vw, 18px);
  padding-bottom: min(0.31vw, 4px);
}
@media screen and (width <= 767px) {
  .bl_topContents_allViewbtn {
    grid-template-columns: auto min(5.61vw, 24px);
    gap: min(4.21vw, 18px);
    padding-bottom: min(0.93vw, 4px);
  }
}
.bl_topContents_allViewbtn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--main-font-color);
  transition: width 0.5s ease;
}
@media (any-hover: hover) {
  .bl_topContents_allViewbtn:hover::after {
    width: 100%;
    transition: width 0.5s ease;
  }
}
.bl_topContents_allViewbtn .el_topContents_allViewbtn_txt {
  color: var(--main-font-color);
  font-family: "Noto Sans JP";
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_topContents_allViewbtn .el_topContents_allViewbtn_txt {
    font-size: min(3.74vw, 16px);
  }
}

/* ===================================
Contact
=================================== */
.ly_commonContactSection {
  width: 100%;
  background-color: #D08A73;
}
.ly_commonContactSection .bl_commonContactSection_inner {
  padding-top: min(4.69vw, 60px);
  padding-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .ly_commonContactSection .bl_commonContactSection_inner {
    padding-block: min(14.02vw, 60px);
    padding-inline: min(4.67vw, 20px);
  }
}
.ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_ttlWrapper {
  margin-bottom: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_ttlWrapper {
    margin-bottom: min(4.67vw, 20px);
  }
}
.ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_ttlWrapper .el_commonContactSection_ttlWrapper_ttl {
  width: fit-content;
  margin-inline: auto;
  color: #FFF;
  font-family: "Noto Serif Display";
  font-size: min(7.81vw, 100px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_ttlWrapper .el_commonContactSection_ttlWrapper_ttl {
    margin-bottom: min(4.67vw, 20px);
    font-size: min(14.02vw, 60px);
  }
}
.ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_ttlWrapper .el_commonContactSection_ttlWrapper_txt {
  color: #1A1311;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_ttlWrapper .el_commonContactSection_ttlWrapper_txt {
    font-size: min(3.74vw, 16px);
  }
}
.ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_linkBtnList {
  max-width: min(62.5vw, 800px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, min(12.81vw, 164px));
  justify-content: flex-end;
  gap: min(3.13vw, 40px);
  padding-top: min(3.13vw, 40px);
  margin-top: min(3.13vw, 40px);
  border-top: 1px solid #fff;
}
@media screen and (width <= 767px) {
  .ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_linkBtnList {
    max-width: 100%;
    grid-template-columns: repeat(2, min(38.32vw, 164px));
    justify-content: flex-end;
    gap: min(9.35vw, 40px);
    padding-top: min(9.35vw, 40px);
    margin-top: min(9.35vw, 40px);
  }
}
.ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_linkBtnList .el_commonContactSection_linkBtnList_btn {
  display: grid;
  grid-template-columns: auto min(2.5vw, 32px);
  align-items: center;
  gap: min(0.78vw, 10px);
  color: #FFF;
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media screen and (width <= 767px) {
  .ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_linkBtnList .el_commonContactSection_linkBtnList_btn {
    grid-template-columns: auto min(7.48vw, 32px);
    gap: min(2.34vw, 10px);
    font-size: min(3.74vw, 16px);
  }
}
@media (any-hover: hover) {
  .ly_commonContactSection .bl_commonContactSection_inner .bl_commonContactSection_linkBtnList .el_commonContactSection_linkBtnList_btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

.bl_commonContactSection_ctaWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1.56vw, 20px);
  max-width: min(62.5vw, 800px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_commonContactSection_ctaWrapper {
    grid-template-columns: 1fr;
    gap: min(4.67vw, 20px);
    max-width: 100%;
  }
}
.bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(0.16vw, 2px);
  padding-block: min(1.48vw, 19px);
  border-radius: min(7.81vw, 100px);
  background-color: #FFF;
  color: var(--main-font-color);
  border: 1px solid transparent;
  transition: all 0.5s ease;
  color: var(--sub-font-color);
  font-size: min(2.19vw, 28px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn {
    font-size: min(4.67vw, 20px);
    gap: min(0.47vw, 2px);
    padding-block: min(4.44vw, 19px);
    border-radius: min(23.36vw, 100px);
  }
  .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn p {
    min-height: min(5.61vw, 24px);
    align-content: center;
  }
}
.bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon {
  max-width: min(2.5vw, 32px);
  width: 100%;
}
@media screen and (width <= 767px) {
  .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon {
    max-width: min(5.61vw, 24px);
    height: auto;
  }
}
.bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon svg {
  width: 100%;
  height: auto;
}
.bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon svg path {
  fill: var(--sub-font-color);
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn:hover {
    border: 1px solid #FFF;
    background-color: var(--sub-font-color);
    color: #fff;
    transition: all 0.3s ease;
  }
  .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn:hover .el_commonContactSection_ctaWrapper_btn_icon svg path {
    transition: all 0.2s ease;
    fill: #fff;
  }
}

/*---------
下層タイトル
-----------*/
/* ===================================
common
=================================== */
/* el_bread_list
============================== */
.el_bread {
  position: relative;
  background-color: #fff;
  margin-top: min(9.38vw, 120px);
  padding: 10px 40px;
}
@media screen and (width <= 767px) {
  .el_bread {
    margin-top: min(28.04vw, 120px);
  }
}
.el_bread.un_none {
  margin-top: 0;
}
.el_bread_list {
  overflow: auto;
  word-break: keep-all;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: #1A1311;
}
.el_bread_list li {
  position: relative;
  z-index: 2;
  display: block;
  font-size: min(0.94vw, 12px);
  font-weight: 400;
}
@media screen and (width <= 767px) {
  .el_bread_list li {
    font-size: min(2.8vw, 12px);
  }
}
.el_bread_list li.un_link {
  display: flex;
  align-items: center;
}
.el_bread_list .un_slash {
  display: block;
  width: min(0.08vw, 1px);
  height: min(1.56vw, 20px);
  background-color: #CEC9C1;
  transform: rotate(25deg);
  margin: 0 15px;
}
@media screen and (width <= 767px) {
  .el_bread_list .un_slash {
    width: min(0.23vw, 1px);
    height: min(4.67vw, 20px);
  }
}

/* el_pageTtl
============================== */
.el_pageTtl {
  padding-top: min(13.75vw, 176px);
  padding-bottom: min(7.81vw, 100px);
  padding-inline: min(1.88vw, 24px);
  max-width: min(97.66vw, 1250px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .el_pageTtl {
    max-width: 100%;
    padding-top: min(28.04vw, 120px);
    padding-bottom: min(18.69vw, 80px);
    padding-inline: min(4.67vw, 20px);
  }
}
.el_pageTtl_en {
  font-family: "Noto Serif Display";
  font-size: min(12.5vw, 160px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.000125em;
}
@media screen and (width <= 767px) {
  .el_pageTtl_en {
    font-size: min(18.69vw, 80px);
  }
}
.el_pageTtl .el_pageTtl_txtwrapper .el_pageTtl_ja {
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(1.88vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .el_pageTtl .el_pageTtl_txtwrapper .el_pageTtl_ja {
    font-size: min(4.67vw, 20px);
  }
}
.el_pageTtl .el_pageTtl_txtwrapper .el_pageTtl_txtwrapper_txt {
  color: #1A1311;
  font-family: "Noto Sans JP";
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .el_pageTtl .el_pageTtl_txtwrapper .el_pageTtl_txtwrapper_txt {
    font-size: min(3.27vw, 14px);
  }
}

/* el_btn
============================== */
.el_btn {
  border-radius: min(15.63vw, 200px);
  border: 1px solid #333;
  color: #333;
  text-align: center;
  font-size: min(1.09vw, 14px);
  font-weight: 700;
  line-height: 1;
  display: block;
  width: min(1.09vw, 14px);
  margin-inline: auto;
  padding: min(1.09vw, 14px) min(2.03vw, 26px);
}
@media screen and (width <= 767px) {
  .el_btn {
    border-radius: min(46.73vw, 200px);
    font-size: min(3.27vw, 14px);
    width: min(51.4vw, 220px);
    padding: min(3.27vw, 14px) min(6.07vw, 26px);
  }
}
@media (hover: hover) {
  .el_btn {
    transition: 0.5s;
  }
  .el_btn:hover {
    background: #333;
    color: #fff;
  }
}
.el_btn.un_black {
  border: 1px solid #fff;
  color: #fff;
}
@media (hover: hover) {
  .el_btn.un_black:hover {
    background: #fff;
    color: #333;
  }
}
.el_btn.un_white {
  border: 1px solid #fff;
  background: #fff;
  color: #333;
}
@media (hover: hover) {
  .el_btn.un_white:hover {
    background: #333;
    color: #fff;
  }
}
.el_btn.un_404 {
  margin-top: min(4.69vw, 60px);
}
@media screen and (width <= 767px) {
  .el_btn.un_404 {
    margin-top: min(14.02vw, 60px);
  }
}

.ly_renewalHeaderSection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: min(2.34vw, 30px);
  z-index: 100;
}
@media screen and (width <= 767px) {
  .ly_renewalHeaderSection {
    padding-inline: min(4.67vw, 20px);
  }
}
.ly_renewalHeaderSection .ly_renewalHeaderSection_inner {
  display: grid;
  grid-template-columns: min(13.28vw, 170px) auto;
  justify-content: space-between;
  align-items: center;
  padding-block: min(1.8vw, 23px);
}
@media screen and (width <= 767px) {
  .ly_renewalHeaderSection .ly_renewalHeaderSection_inner {
    grid-template-columns: min(39.72vw, 170px) auto;
    padding-block: min(7.48vw, 32px);
  }
}
.ly_renewalHeaderSection .ly_renewalHeaderSection_inner .bl_renewalHeaderSection_inner_logo {
  z-index: 1;
}
.ly_renewalHeaderSection .ly_renewalHeaderSection_inner .bl_renewalHeaderSection_inner_logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.ly_renewalHeaderSection .ly_renewalHeaderSection_inner .bl_renewalHeaderSection_inner_logo .el_renewalHeaderSection_inner_logo_icon path {
  fill: #1A1311;
  transition: fill 0.3s ease-in;
}
.ly_renewalHeaderSection .ly_renewalHeaderSection_inner .bl_renewalHeaderSection_inner_logo .is_active path {
  fill: #fff;
  transition: fill 0.3s ease-in;
}

.bl_renewalHeaderSection_right {
  display: grid;
  grid-template-columns: auto min(2.34vw, 30px);
  align-items: center;
  gap: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_right {
    display: block;
    height: 100%;
    gap: min(4.67vw, 20px);
  }
}
.bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper {
  grid-template-columns: repeat(3, min(12.5vw, 160px));
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper {
    position: fixed;
    left: 0;
    bottom: env(safe-area-inset-bottom);
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    width: 100%;
    padding-inline: min(4.67vw, 20px);
    padding-bottom: min(3.74vw, 16px);
  }
}
.bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn {
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  padding-block: min(1.09vw, 14px);
  border: 1px solid #FFF;
  background-color: #D08A73;
  transition: all 0.3s ease;
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn {
    font-size: min(2.8vw, 12px);
    padding-block: min(3.27vw, 14px);
  }
}
.bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon {
  max-width: min(1.25vw, 16px);
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon {
    max-width: min(3.74vw, 16px);
  }
}
.bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon svg {
  width: 100%;
  height: auto;
}
.bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn .el_commonContactSection_ctaWrapper_btn_icon svg path {
  fill: #fff;
}
@media (any-hover: hover) {
  .bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn:hover {
    border: 1px solid #D08A73;
    background-color: #fff;
    color: #D08A73;
    transition: all 0.3s ease;
  }
  .bl_renewalHeaderSection_right .bl_commonContactSection_ctaWrapper .el_commonContactSection_ctaWrapper_btn:hover svg path {
    fill: #D08A73;
  }
}

.el_renewalHeaderSection_menuBtn {
  cursor: pointer;
  position: relative;
  width: 100%;
  min-height: min(1.56vw, 20px);
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .el_renewalHeaderSection_menuBtn {
    min-height: min(4.67vw, 20px);
    min-width: min(7.01vw, 30px);
  }
}
.el_renewalHeaderSection_menuBtn .el_renewalHeaderSection_menuBtn_line {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #1A1311;
  left: 0;
  transition: all 0.3s ease;
}
.el_renewalHeaderSection_menuBtn .el_renewalHeaderSection_menuBtn_line:nth-child(1) {
  top: 0;
}
.el_renewalHeaderSection_menuBtn .el_renewalHeaderSection_menuBtn_line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.el_renewalHeaderSection_menuBtn .el_renewalHeaderSection_menuBtn_line:nth-child(3) {
  bottom: 0;
}
.el_renewalHeaderSection_menuBtn.is_colorWhite .el_renewalHeaderSection_menuBtn_line {
  background-color: #fff;
  transition: all 0.3s ease;
}

.el_renewalHeaderSection_menuBtn.is_active .el_renewalHeaderSection_menuBtn_line {
  background-color: #fff;
  transition: all 0.3s ease;
}
.el_renewalHeaderSection_menuBtn.is_active .el_renewalHeaderSection_menuBtn_line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.el_renewalHeaderSection_menuBtn.is_active .el_renewalHeaderSection_menuBtn_line:nth-child(2) {
  opacity: 0;
}
.el_renewalHeaderSection_menuBtn.is_active .el_renewalHeaderSection_menuBtn_line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.bl_renewalHeaderSection_nav {
  position: fixed;
  background-color: #3E2E1E;
  max-width: min(33.44vw, 428px);
  height: 100lvh;
  width: 100%;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translateX(200%);
  overflow-y: auto;
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_nav {
    max-width: 100%;
  }
}
.bl_renewalHeaderSection_nav .bl_renewalHeaderSection_nav_inner {
  padding-top: min(9.38vw, 120px);
  padding-inline: min(2.34vw, 30px);
  padding-bottom: min(12.5vw, 160px);
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_nav .bl_renewalHeaderSection_nav_inner {
    padding-top: min(28.04vw, 120px);
    padding-inline: min(7.01vw, 30px);
    padding-bottom: min(37.38vw, 160px);
  }
}
.bl_renewalHeaderSection_nav .bl_renewalHeaderSection_nav_inner .bl_renewalHeaderSection_nav_inner_list .bl_renewalHeaderSection_nav_inner_list_item .bl_renewalHeaderSection_nav_inner_list_item_link {
  display: block;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: min(1.41vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-block: min(1.41vw, 18px);
  border-bottom: 1px solid #fff;
}
@media screen and (width <= 767px) {
  .bl_renewalHeaderSection_nav .bl_renewalHeaderSection_nav_inner .bl_renewalHeaderSection_nav_inner_list .bl_renewalHeaderSection_nav_inner_list_item .bl_renewalHeaderSection_nav_inner_list_item_link {
    font-size: min(3.74vw, 16px);
    padding-block: min(4.21vw, 18px);
  }
}
.bl_renewalHeaderSection_nav .bl_renewalHeaderSection_nav_inner .bl_renewalHeaderSection_nav_inner_list .bl_renewalHeaderSection_nav_inner_list_item:first-child .bl_renewalHeaderSection_nav_inner_list_item_link {
  border-top: 1px solid #fff;
}

.ly_fixedLineBtnContainer {
  position: fixed;
  bottom: min(2.34vw, 30px);
  right: min(2.34vw, 30px);
  z-index: 100;
  max-width: min(11.72vw, 150px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ly_fixedLineBtnContainer {
    right: 0;
    bottom: min(28.04vw, 120px);
    width: fit-content;
    max-width: min(14.02vw, 60px);
  }
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #61C38F;
  width: 100%;
  height: auto;
  padding: min(1.56vw, 20px);
  aspect-ratio: 1/1;
  box-shadow: 0 0 8px 0 rgba(210, 174, 139, 0.4);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc:hover {
    background-color: #4BAA77;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc {
    display: none;
  }
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc .bl_fixedLineBtnContainer_btnPc_lineTxtwrapper {
  display: grid;
  grid-template-columns: min(1.02vw, 13px) auto min(1.02vw, 13px);
  gap: min(0.78vw, 10px);
  align-items: flex-end;
  justify-content: center;
  padding-bottom: min(0.08vw, 1px);
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc .bl_fixedLineBtnContainer_btnPc_lineTxtwrapper .el_fixedLineBtnContainer_btnPc_lineTxtwrapper_txt {
  color: #FFF;
  width: fit-content;
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc .bl_fixedLineBtnContainer_btnPc_lineTxtwrapper svg {
  display: block;
  width: 100%;
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc .el_fixedLineBtnContainer_btnPc_lineTxtwrapper_txt {
  width: fit-content;
  margin-inline: auto;
  color: #FFF;
  font-size: min(1.09vw, 14px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnPc .el_fixedLineBtnContainer_btnPc_lineTxtwrapper_lineLogo {
  display: block;
  max-width: min(3.75vw, 48px);
  width: 100%;
  margin-inline: auto;
  height: auto;
  margin-top: min(0.39vw, 5px);
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnSp {
  display: none;
  border-radius: min(2.34vw, 10px) 0 0 min(2.34vw, 10px);
  background-color: #4BAA77;
  box-shadow: 0 0 8px 0 rgba(210, 174, 139, 0.4);
  padding-left: min(2.34vw, 10px);
  padding-right: 14px;
  padding-block: min(3.04vw, 13px);
  max-width: min(14.02vw, 60px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnSp {
    display: block;
  }
}
.ly_fixedLineBtnContainer .bl_fixedLineBtnContainer_btnSp svg {
  display: block;
  width: 100%;
  height: auto;
}

.ly_renewalFooterSection {
  background-color: #3E2E1E;
  padding-inline: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection {
    padding-inline: min(4.67vw, 20px);
  }
}
.ly_renewalFooterSection .bl_renewalFooterSection_inner {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: center;
  padding-block: min(2.11vw, 27px);
  max-width: min(107.81vw, 1380px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_inner {
    grid-template-columns: 1fr;
    padding-top: min(9.35vw, 40px);
    padding-bottom: min(23.36vw, 100px);
    max-width: 100%;
    gap: min(9.35vw, 40px);
  }
}
.ly_renewalFooterSection .bl_renewalFooterSection_inner .bl_renewalFooterSection_inner_left {
  display: grid;
  grid-template-columns: min(12.19vw, 156px) auto;
  gap: min(2.34vw, 30px);
  align-items: center;
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_inner .bl_renewalFooterSection_inner_left {
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: min(7.01vw, 30px);
  }
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_inner .bl_renewalFooterSection_inner_left .el_renewalFooterSection_inner_left_logo {
    max-width: min(36.45vw, 156px);
    margin-inline: auto;
  }
}
.ly_renewalFooterSection .bl_renewalFooterSection_inner .bl_renewalFooterSection_inner_left .el_renewalFooterSection_inner_left_logo img {
  width: 100%;
  height: auto;
}
.ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list {
  display: flex;
  align-items: center;
  gap: min(2.34vw, 30px);
  color: #FFF;
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list .bl_renewalFooterSection_nav_list_item {
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  .ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list .bl_renewalFooterSection_nav_list_item:first-child {
    border-top: 1px solid #fff;
  }
}
.ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list .bl_renewalFooterSection_nav_list_item .el_renewalFooterSection_nav_list_item_btn {
  display: block;
  width: fit-content;
  transition: all 0.3s ease;
  color: #FFF;
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list .bl_renewalFooterSection_nav_list_item .el_renewalFooterSection_nav_list_item_btn {
    width: 100%;
    color: #FFF;
    font-size: min(3.74vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list .bl_renewalFooterSection_nav_list_item .el_renewalFooterSection_nav_list_item_btn {
    padding-block: min(4.21vw, 18px);
  }
}
@media (any-hover: hover) {
  .ly_renewalFooterSection .bl_renewalFooterSection_nav .bl_renewalFooterSection_nav_list .bl_renewalFooterSection_nav_list_item .el_renewalFooterSection_nav_list_item_btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}
.ly_renewalFooterSection .el_renewalFooterSection_copy {
  color: #FFF;
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (width <= 767px) {
  .ly_renewalFooterSection .el_renewalFooterSection_copy {
    font-size: min(3.27vw, 14px);
    width: fit-content;
    margin-inline: auto;
  }
}

.ly_foot.un_contact {
  background-color: #3E2E1E;
  padding-inline: min(2.58vw, 33px);
  padding-block: min(1.41vw, 18px);
}
.ly_foot.un_contact .ly_foot_inner {
  justify-content: center;
  align-items: center;
}
@media screen and (width <= 767px) {
  .ly_foot.un_contact {
    padding-inline: min(7.71vw, 33px);
    padding-block: min(4.21vw, 18px);
  }
}
.ly_foot.un_contact .el_foot_copy {
  color: #FFF;
  text-align: center;
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (width <= 767px) {
  .ly_foot.un_contact .el_foot_copy {
    font-size: min(3.27vw, 14px);
  }
}

/* ===================================
FV
=================================== */
.ly_fvSection {
  background-image: url(../renewal/img/top-fv-pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-inline: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .ly_fvSection {
    padding-inline: min(4.67vw, 20px);
    background-image: url(../renewal/img/top-fv-sp.jpg);
  }
}
.ly_fvSection .ly_fvSection_inner {
  max-width: min(93.75vw, 1200px);
  margin-inline: auto;
  padding-top: min(14.22vw, 182px);
  padding-bottom: min(13.28vw, 170px);
}
@media screen and (width <= 767px) {
  .ly_fvSection .ly_fvSection_inner {
    max-width: 100%;
    padding-top: min(22.2vw, 95px);
    padding-bottom: min(23.6vw, 101px);
  }
}

.bl_fvSection_mainCopy {
  margin-bottom: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .bl_fvSection_mainCopy {
    margin-bottom: min(2.34vw, 10px);
  }
}
.bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt {
  color: #FFF;
  font-family: "Noto Serif JP";
  font-size: min(3.13vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media screen and (width <= 767px) {
  .bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt {
    font-size: min(7.48vw, 32px);
  }
}
.bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt .el_fvSection_mainCopy_mainTxt_dotted {
  position: relative;
  display: inline;
}
.bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt .el_fvSection_mainCopy_mainTxt_dotted::before {
  content: "";
  display: block;
  width: min(0.55vw, 7px);
  height: min(0.55vw, 7px);
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
}
@media screen and (width <= 767px) {
  .bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt .el_fvSection_mainCopy_mainTxt_dotted::before {
    width: min(1.64vw, 7px);
    height: min(1.64vw, 7px);
  }
}
.bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt .spBr {
  display: none;
}
@media screen and (width <= 767px) {
  .bl_fvSection_mainCopy .bl_fvSection_mainCopy_mainTxt .spBr {
    display: block;
  }
}

.bl_fvSection_subCopy {
  border-left: 4px solid var(--main-font-color);
  padding-left: min(2.34vw, 30px);
  margin-bottom: min(2.58vw, 33px);
}
@media screen and (width <= 767px) {
  .bl_fvSection_subCopy {
    padding-left: min(7.01vw, 30px);
    margin-bottom: min(2.34vw, 10px);
    border-color: #fff;
  }
}
.bl_fvSection_subCopy .el_fvSection_subCopy_txt {
  color: var(--main-font-color);
  font-feature-settings: "palt" on;
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_fvSection_subCopy .el_fvSection_subCopy_txt {
    color: #fff;
    font-size: min(2.8vw, 12px);
  }
}

.bl_fvSection_pointList {
  display: grid;
  grid-template-columns: min(21.88vw, 280px) min(21.88vw, 280px) min(24.22vw, 310px);
  gap: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .bl_fvSection_pointList {
    grid-template-columns: 1fr;
    gap: min(2.34vw, 10px);
    display: flex;
    overflow: auto;
    white-space: nowrap;
  }
}
.bl_fvSection_pointList .bl_fvSection_pointList_item {
  background-color: #E7DED4;
  padding: min(1.56vw, 20px);
  border-radius: min(1.09vw, 14px);
  border: 1px solid #F1EDE8;
}
@media screen and (width <= 767px) {
  .bl_fvSection_pointList .bl_fvSection_pointList_item {
    display: grid;
    grid-template-columns: auto 1fr;
    padding-inline: min(4.67vw, 20px);
    padding-block: min(4.67vw, 20px);
    align-items: center;
    gap: min(4.67vw, 20px);
  }
}
.bl_fvSection_pointList .bl_fvSection_pointList_item .bl_fvSection_pointList_item_num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .bl_fvSection_pointList .bl_fvSection_pointList_item .bl_fvSection_pointList_item_num {
    margin-bottom: min(2.34vw, 10px);
  }
}
.bl_fvSection_pointList .bl_fvSection_pointList_item .bl_fvSection_pointList_item_num .el_fvSection_pointList_item_num_en {
  color: rgba(26, 19, 17, 0.6);
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media screen and (width <= 767px) {
  .bl_fvSection_pointList .bl_fvSection_pointList_item .bl_fvSection_pointList_item_num .el_fvSection_pointList_item_num_en {
    font-size: min(3.27vw, 14px);
  }
}
.bl_fvSection_pointList .bl_fvSection_pointList_item .bl_fvSection_pointList_item_num .el_fvSection_pointList_item_num_txt {
  color: rgba(26, 19, 17, 0.6);
  font-size: min(3.13vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_fvSection_pointList .bl_fvSection_pointList_item .bl_fvSection_pointList_item_num .el_fvSection_pointList_item_num_txt {
    font-size: min(9.35vw, 40px);
  }
}
.bl_fvSection_pointList .bl_fvSection_pointList_item .el_fvSection_pointList_item_txt {
  color: #1A1311;
  text-align: center;
  font-feature-settings: "palt" on;
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_fvSection_pointList .bl_fvSection_pointList_item .el_fvSection_pointList_item_txt {
    font-size: min(3.74vw, 16px);
    text-align: left;
  }
}

/* ===================================
トップページ共通 - タイトル
=================================== */
.bl_topContents_ttlContainer {
  display: grid;
  grid-template-columns: min(47.66vw, 610px) auto;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (width <= 767px) {
  .bl_topContents_ttlContainer {
    display: contents;
  }
}
.bl_topContents_ttlContainer .bl_topContents_ttlContainer_ttlWrapper {
  width: fit-content;
  display: flex;
  flex-flow: column;
  gap: min(0.78vw, 10px);
}
.bl_topContents_ttlContainer .bl_topContents_ttlContainer_ttlWrapper .el_topContents_ttlWrapper_ttl_hgroup_en {
  width: fit-content;
  color: var(--sub-font-color);
  font-family: "Noto Serif Display";
  font-size: min(1.56vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-bottom: min(0.47vw, 6px);
}
@media screen and (width <= 767px) {
  .bl_topContents_ttlContainer .bl_topContents_ttlContainer_ttlWrapper .el_topContents_ttlWrapper_ttl_hgroup_en {
    font-size: min(4.67vw, 20px);
    padding-bottom: min(1.4vw, 6px);
  }
}
.bl_topContents_ttlContainer .bl_topContents_ttlContainer_ttlWrapper .el_topContents_ttlWrapper_ttl_hgroup_ja {
  width: fit-content;
  color: var(--main-font-color);
  font-family: "Noto Serif JP";
  font-size: min(3.13vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  border-top: min(0.04vw, 0.5px) solid var(--sub-font-color);
}
@media screen and (width <= 767px) {
  .bl_topContents_ttlContainer .bl_topContents_ttlContainer_ttlWrapper .el_topContents_ttlWrapper_ttl_hgroup_ja {
    font-size: min(7.01vw, 30px);
    border-top: min(0.12vw, 0.5px) solid var(--sub-font-color);
  }
}
.bl_topContents_ttlContainer .el_topContents_ttlContainer_txt {
  color: var(--main-font-color);
  font-family: "Noto Sans JP";
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_topContents_ttlContainer .el_topContents_ttlContainer_txt {
    font-size: min(3.74vw, 16px);
  }
}

.bl_featureSection_featureList_item_right {
  grid-row: span 2;
  gap: min(3.13vw, 40px);
  padding-block: min(3.13vw, 40px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList_item_right {
    gap: min(9.35vw, 40px);
    padding-block: min(9.35vw, 40px);
  }
}

.bl_featureSection_featureList_item_right_txt {
  color: var(--main-font-color);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: min(1.41vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList_item_right_txt {
    font-size: min(4.21vw, 18px);
    margin-bottom: min(9.35vw, 40px);
  }
}

@media screen and (width <= 767px) {
  .bl_featureSection_featureList_item_right_txt {
    font-size: min(4.21vw, 18px);
  }
}
.el_featureSection_featureList_item_right_txt_medium {
  color: var(--main-font-color);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: min(1.88vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .el_featureSection_featureList_item_right_txt_medium {
    font-size: min(5.61vw, 24px);
  }
}

@media screen and (width <= 767px) {
  .el_featureSection_featureList_item_right_txt_medium {
    font-size: min(5.61vw, 24px);
  }
}
.el_featureSection_featureList_item_right_txt_large {
  color: var(--main-font-color);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: min(2.5vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .el_featureSection_featureList_item_right_txt_large {
    font-size: min(7.48vw, 32px);
  }
}

@media screen and (width <= 767px) {
  .el_featureSection_featureList_item_right_txt_large {
    font-size: min(7.48vw, 32px);
  }
}
.bl_featureSection_featureList_item_right_bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.88vw, 24px);
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList_item_right_bottom {
    grid-template-columns: 1fr;
    gap: min(2.34vw, 10px);
  }
}

.bl_featureSection_featureList_item_right_inner {
  border: #D08A73 1px solid;
  border-radius: 100%;
  padding: min(3.28vw, 42px) min(1.09vw, 14px);
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList_item_right_inner {
    padding: min(9.81vw, 42px) min(3.27vw, 14px);
    border-radius: min(23.36vw, 100px);
    aspect-ratio: auto;
  }
}

.bl_featureSection_featureList_item_right_ttl {
  color: var(--main-font-color);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: min(1.88vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList_item_right_ttl {
    font-size: min(2.8vw, 12px);
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .bl_featureSection_featureList_item_right_ttl {
    font-size: min(4.67vw, 20px);
    letter-spacing: 0.05em;
  }
}
/* ===================================
Works
=================================== */
.bl_worksSection {
  padding-block: min(7.81vw, 100px);
}
@media screen and (width <= 767px) {
  .bl_worksSection {
    padding-block: min(18.69vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_contentsWrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
    margin-bottom: min(18.69vw, 80px);
  }
}
.bl_worksSection .bl_worksSection_ttlContainer {
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_ttlContainer {
    display: contents;
    margin-bottom: 0;
  }
}
.bl_worksSection .bl_worksSection_worksList {
  display: grid;
  grid-template-columns: repeat(2, min(43.75vw, 560px));
  column-gap: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_worksList {
    grid-template-columns: 1fr;
  }
}
.bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link {
  display: grid;
  grid-template-columns: 1fr min(20.31vw, 260px);
  gap: min(3.13vw, 40px);
  align-items: center;
  padding-block: min(2.34vw, 30px);
  border-bottom: 1px solid #F1EDE8;
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link {
    grid-template-columns: 1fr min(32.71vw, 140px);
    gap: min(9.35vw, 40px);
    padding-block: min(4.67vw, 20px);
  }
}
.bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link .el_worksSection_worksList_item_ttl {
  width: fit-content;
  color: var(--main-font-color);
  font-size: min(1.88vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link .el_worksSection_worksList_item_ttl {
    font-size: min(4.21vw, 18px);
  }
}
.bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link .el_worksSection_worksList_item_ttl .el_worksSection_worksList_item_ttl_txt {
  background: linear-gradient(transparent 40%, var(--main-font-color) 100%);
  background-size: 0 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-in-out;
  padding-bottom: min(0.16vw, 2px);
}
.bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link .bl_worksSection_worksList_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (hover: hover) {
  .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item .bl_worksSection_worksList_item_link:hover .el_worksSection_worksList_item_ttl .el_worksSection_worksList_item_ttl_txt {
    background-size: 100% 1px;
  }
}
.bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item:first-child, .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item:nth-child(2) {
  border-top: 1px solid #F1EDE8;
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item:first-child, .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item:nth-child(2) {
    border-top: none;
  }
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_worksSection_worksList .bl_worksSection_worksList_item:first-child {
    border-top: 1px solid #F1EDE8;
  }
}
@media screen and (width <= 767px) {
  .bl_worksSection .bl_topContents_allViewbtn {
    width: fit-content;
    margin-inline: auto;
    order: 3;
  }
}

/* ===================================
Feature
=================================== */
.bl_featureSection {
  padding-top: min(7.81vw, 100px);
  padding-bottom: min(9.38vw, 120px);
  background-color: #F1EDE8;
}
@media screen and (width <= 767px) {
  .bl_featureSection {
    padding-block: min(18.69vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .bl_featureSection .bl_featureSection_inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
  }
}
.bl_featureSection .bl_featureSection_inner .bl_featureSection_ttlContainer {
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_featureSection .bl_featureSection_inner .bl_featureSection_ttlContainer {
    margin-bottom: 0;
  }
}
.bl_featureSection .bl_featureSection_inner .bl_topContents_allViewbtn {
  order: 3;
  width: fit-content;
  margin-inline: auto;
}

.bl_featureSection_featureList {
  display: grid;
  grid-template-columns: repeat(2, min(35.94vw, 460px));
  justify-content: space-between;
  max-width: min(81.25vw, 1040px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }
}
.bl_featureSection_featureList .bl_featureSection_featureList_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: min(3.13vw, 40px);
  padding-block: min(3.13vw, 40px);
  border-block: 1px solid #A9A9A9;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList .bl_featureSection_featureList_item {
    display: flex;
    flex-flow: column;
    gap: min(9.35vw, 40px);
    padding-block: min(9.35vw, 40px);
  }
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList .bl_featureSection_featureList_item:last-child {
    border-top: none;
  }
}
.bl_featureSection_featureList .bl_featureSection_featureList_item .el_featureSection_featureList_item_ttl {
  color: var(--main-font-color);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: min(2.5vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList .bl_featureSection_featureList_item .el_featureSection_featureList_item_ttl {
    font-size: min(5.61vw, 24px);
    letter-spacing: 0.08em;
  }
}
.bl_featureSection_featureList .bl_featureSection_featureList_item .bl_featureSection_featureList_item_txtWrapper_txt {
  color: var(--main-font-color);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_featureSection_featureList .bl_featureSection_featureList_item .bl_featureSection_featureList_item_txtWrapper_txt {
    font-size: min(3.74vw, 16px);
    letter-spacing: 0.05em;
  }
}
.bl_featureSection_featureList .bl_featureSection_featureList_item .bl_featureSection_featureList_item_txtWrapper_txt .el_featureSection_featureList_item_txtWrapper_txt_bold {
  font-weight: 700;
}

/* ===================================
Service
=================================== */
.bl_topServiceSection {
  padding-top: min(7.81vw, 100px);
  padding-bottom: min(9.38vw, 120px);
  padding-inline: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .bl_topServiceSection {
    padding-block: min(18.69vw, 80px);
    padding-inline: min(4.67vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .bl_topServiceSection .bl_featureSection_inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
  }
  .bl_topServiceSection .bl_featureSection_inner .bl_topContents_allViewbtn {
    width: fit-content;
    margin-inline: auto;
    order: 3;
  }
}
.bl_topServiceSection .bl_featureSection_ttlContainer {
  width: 100%;
  max-width: min(93.75vw, 1200px);
  margin-inline: auto;
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_topServiceSection .bl_featureSection_ttlContainer {
    max-width: 100%;
    margin-bottom: 0;
  }
}

.bl_serviceCircleList {
  position: relative;
  min-height: min(23.44vw, 300px);
  width: 100%;
  max-width: min(106.25vw, 1360px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList {
    display: flex;
    flex-flow: column;
    gap: min(4.67vw, 20px);
    min-height: auto;
    max-width: 100%;
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(23.44vw, 300px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 1px solid #C9A295;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item {
    position: relative;
    max-width: 100%;
    aspect-ratio: auto;
    border-radius: min(23.36vw, 100px);
    padding-block: min(4.67vw, 20px);
    padding-inline: min(5.61vw, 24px);
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner {
    gap: min(0.78vw, 10px);
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner .bl_serviceCircleList_item_inner_sub {
  color: #C9A295;
  text-align: center;
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5%;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner .bl_serviceCircleList_item_inner_sub {
    font-size: min(3.27vw, 14px);
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner .bl_serviceCircleList_item_inner_ttl {
  color: #1A1311;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: min(1.56vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner .bl_serviceCircleList_item_inner_ttl {
    font-size: min(4.67vw, 20px);
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner .bl_serviceCircleList_item_inner_ttl_sub {
  display: block;
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(0.94vw, 12px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item .bl_serviceCircleList_item_inner .bl_serviceCircleList_item_inner_ttl_sub {
    font-size: min(2.8vw, 12px);
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item:nth-child(1) {
  top: 0;
  left: 0;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item:nth-child(1) {
    top: auto;
    left: auto;
    right: auto;
    translate: 0 0;
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item:nth-child(2) {
  top: 0;
  left: min(20.7vw, 265px);
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item:nth-child(2) {
    top: auto;
    left: auto;
    right: auto;
    translate: 0 0;
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item:nth-child(3) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item:nth-child(3) {
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item:nth-child(4) {
  top: 0;
  right: min(20.7vw, 265px);
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item:nth-child(4) {
    top: auto;
    left: auto;
    right: auto;
    translate: 0 0;
  }
}
.bl_serviceCircleList .bl_serviceCircleList_item:nth-child(5) {
  top: 0;
  right: 0;
}
@media screen and (width <= 767px) {
  .bl_serviceCircleList .bl_serviceCircleList_item:nth-child(5) {
    top: auto;
    left: auto;
    right: auto;
    translate: 0 0;
  }
}

/* ===================================
Reporting
=================================== */
.bl_topReportingSection {
  padding-top: min(7.81vw, 100px);
  padding-bottom: min(9.38vw, 120px);
  padding-inline: min(1.56vw, 20px);
  background-color: #F1EDE8;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection {
    padding-block: min(18.69vw, 80px);
    padding-inline: min(4.67vw, 20px);
  }
}
.bl_topReportingSection .bl_topReportingSection_inner {
  max-width: min(93.75vw, 1200px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection .bl_topReportingSection_inner {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: min(9.35vw, 40px);
  }
  .bl_topReportingSection .bl_topReportingSection_inner .bl_topContents_allViewbtn {
    order: 3;
  }
}
.bl_topReportingSection .bl_topReportingSection_inner .bl_topContents_ttlContainer {
  grid-template-columns: max-content auto;
  margin-bottom: min(6.25vw, 80px);
}

.bl_topReportingSection_contents {
  width: 100%;
  display: grid;
  grid-template-columns: min(21.25vw, 272px) 1fr;
  gap: min(5.47vw, 70px);
  align-items: flex-start;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents {
    display: flex;
    flex-flow: column;
    gap: min(9.35vw, 40px);
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_illust {
  width: 100%;
  height: auto;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_illust {
    max-width: min(90.65vw, 388px);
    width: 90%;
    margin-inline: auto;
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_pointList {
  display: flex;
  flex-flow: column;
  gap: min(2.5vw, 32px);
  width: 100%;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_pointList {
    gap: min(7.48vw, 32px);
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: min(1.56vw, 20px);
  align-items: flex-start;
  border-top: 1px solid #A9A9A9;
  padding-top: min(2.5vw, 32px);
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item {
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr;
    padding-top: min(7.48vw, 32px);
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item:last-child {
  border-bottom: 1px solid #A9A9A9;
  padding-bottom: min(2.5vw, 32px);
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item:last-child {
    padding-bottom: min(7.48vw, 32px);
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item .el_topReportingSection_contents_pointList_item_num {
  color: #C9A295;
  font-family: "Noto Serif Display";
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-top: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item .el_topReportingSection_contents_pointList_item_num {
    text-align: center;
    font-size: min(3.74vw, 16px);
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item .el_topReportingSection_contents_pointList_item_txt {
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.56vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item .el_topReportingSection_contents_pointList_item_txt {
    font-size: min(4.67vw, 20px);
    text-align: center;
  }
}
.bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item .el_topReportingSection_contents_pointList_item_txt .spBr {
  display: none;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .bl_topReportingSection_contents_pointList .bl_topReportingSection_contents_pointList_item .el_topReportingSection_contents_pointList_item_txt .spBr {
    display: block;
  }
}
.bl_topReportingSection_contents .el_topReportingSection_contents_note {
  color: #ABAAAA;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(0.94vw, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-left: auto;
  grid-column: 2;
}
@media screen and (width <= 767px) {
  .bl_topReportingSection_contents .el_topReportingSection_contents_note {
    font-size: min(2.8vw, 12px);
  }
}

/* ===================================
Column（お役立ち情報 新着3件）
※カード自体のスタイルは object/page/_column.scss の .bl_columnList を共用
=================================== */
.bl_topColumnSection {
  padding-top: min(7.81vw, 100px);
  padding-bottom: min(4.69vw, 60px);
}
@media screen and (width <= 767px) {
  .bl_topColumnSection {
    padding-top: min(18.69vw, 80px);
    padding-bottom: min(11.68vw, 50px);
  }
}
@media screen and (width <= 767px) {
  .bl_topColumnSection .bl_commonContentsSection_inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
  }
}
@media screen and (width <= 767px) {
  .bl_topColumnSection .bl_commonContentsSection_inner .bl_topContents_allViewbtn {
    width: fit-content;
    margin-inline: auto;
    order: 3;
  }
}
.bl_topColumnSection .bl_topColumnSection_ttlContainer {
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_topColumnSection .bl_topColumnSection_ttlContainer {
    margin-bottom: 0;
  }
}

/* ===================================
Instagram
=================================== */
.bl_instagramSection {
  padding-top: min(7.81vw, 100px);
  padding-bottom: min(9.38vw, 120px);
  background-color: #F1EDE8;
}
@media screen and (width <= 767px) {
  .bl_instagramSection {
    padding-block: min(18.69vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .bl_instagramSection .bl_commonContentsSection_inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
  }
}
@media screen and (width <= 767px) {
  .bl_instagramSection .bl_commonContentsSection_inner .bl_topContents_allViewbtn {
    width: fit-content;
    margin-inline: auto;
    order: 3;
  }
}
.bl_instagramSection .bl_instagramSection_ttlContainer {
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_instagramSection .bl_instagramSection_ttlContainer {
    margin-bottom: 0;
  }
}

.bl_magazineSection {
  padding-block: min(7.81vw, 100px);
}
@media screen and (width <= 767px) {
  .bl_magazineSection {
    padding-block: min(18.69vw, 80px);
  }
}
.bl_magazineSection .bl_topContents_ttlContainer_ttlWrapper {
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  .bl_magazineSection .bl_topContents_ttlContainer_ttlWrapper {
    margin-bottom: min(9.35vw, 40px);
  }
}
.bl_magazineSection .bl_topContents_ttlContainer {
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_magazineSection .bl_topContents_ttlContainer {
    margin-bottom: min(9.35vw, 40px);
  }
}
.bl_magazineSection .bl_magazineSection_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3.13vw, 40px);
  align-items: flex-start;
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_magazineSection .bl_magazineSection_list {
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
    margin-bottom: min(9.35vw, 40px);
  }
}
.bl_magazineSection .bl_magazineSection_list .bl_magazineSection_list_item .el_magazineSection_list_item_ttl {
  color: #FFF;
  font-size: min(1.56vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: min(11.02vw, 141px);
  width: 100%;
  background-color: #C9A295;
  border-radius: min(0.31vw, 4px);
  margin-bottom: min(0.78vw, 10px);
  text-align: center;
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_magazineSection .bl_magazineSection_list .bl_magazineSection_list_item .el_magazineSection_list_item_ttl {
    max-width: min(32.94vw, 141px);
    font-size: min(4.67vw, 20px);
    border-radius: min(0.93vw, 4px);
    margin-bottom: min(2.34vw, 10px);
  }
}
.bl_magazineSection .bl_magazineSection_list .bl_magazineSection_list_item .bl_magazineSection_list_item_img {
  width: 100%;
  height: auto;
  margin-bottom: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .bl_magazineSection .bl_magazineSection_list .bl_magazineSection_list_item .bl_magazineSection_list_item_img {
    margin-bottom: min(4.67vw, 20px);
  }
}
.bl_magazineSection .bl_magazineSection_list .bl_magazineSection_list_item .bl_magazineSection_list_item_txt {
  color: #1A1311;
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.0625em;
}
@media screen and (width <= 767px) {
  .bl_magazineSection .bl_magazineSection_list .bl_magazineSection_list_item .bl_magazineSection_list_item_txt {
    font-size: min(3.74vw, 16px);
  }
}

.bl_magazineSection_worksList {
  overflow: hidden;
}
.bl_magazineSection_worksList .swiper-wrapper {
  align-items: flex-end;
}
.bl_magazineSection_worksList .bl_magazineSection_worksList_item {
  height: auto;
}
.bl_magazineSection_worksList .bl_magazineSection_worksList_item .el_magazineSection_worksList_item_ttl {
  color: #1A1311;
  font-family: "Noto Serif Display";
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (width <= 767px) {
  .bl_magazineSection_worksList .bl_magazineSection_worksList_item .el_magazineSection_worksList_item_ttl {
    font-size: min(3.27vw, 14px);
  }
}
.bl_magazineSection_worksList .bl_magazineSection_worksList_item .el_magazineSection_worksList_item_img {
  aspect-ratio: 124/175;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ACA293;
  overflow: hidden;
}

.bl_magazineSection_worksList_pagination {
  margin-top: min(3.13vw, 40px);
  display: flex;
  justify-content: center;
  gap: min(2.34vw, 30px);
}
@media screen and (width <= 767px) {
  .bl_magazineSection_worksList_pagination {
    gap: min(4.67vw, 20px);
    margin-top: min(4.67vw, 20px);
  }
}
.bl_magazineSection_worksList_pagination .swiper-pagination-bullet {
  width: min(0.63vw, 8px);
  height: min(0.63vw, 8px);
  aspect-ratio: 1/1;
  height: auto;
  background-color: #1A1311;
}
@media screen and (width <= 767px) {
  .bl_magazineSection_worksList_pagination .swiper-pagination-bullet {
    width: min(1.87vw, 8px);
    height: min(1.87vw, 8px);
  }
}
.bl_magazineSection_worksList_pagination .swiper-pagination-bullet-active {
  background-color: #C9A295;
}

.flow_box .flow_box_inner .flow_list li .num,
body {
  background: #FAF7F6;
}

/* ===================================
  一覧
  =================================== */
.page_fv_sec {
  margin-inline: auto;
  box-sizing: content-box;
  max-width: min(96.88vw, 1240px);
  padding: min(6.25vw, 80px) min(1.88vw, 24px) min(10.16vw, 130px);
}
@media screen and (width <= 767px) {
  .page_fv_sec {
    max-width: 100% l;
    padding: min(18.69vw, 80px) min(5.61vw, 24px) min(30.37vw, 130px);
  }
}

.page_ttl_wrap {
  margin-bottom: min(7.03vw, 90px);
}
@media screen and (width <= 767px) {
  .page_ttl_wrap {
    margin-bottom: min(7.03vw, 90px);
  }
}

.bl_cat_inner {
  margin-bottom: min(6.25vw, 80px);
}
.bl_cat_inner .el_cat_txt {
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(1.41vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: min(2.34vw, 30px);
}
@media screen and (width <= 767px) {
  .bl_cat_inner .el_cat_txt {
    font-size: min(3.74vw, 16px);
    margin-bottom: min(7.01vw, 30px);
  }
}
.bl_cat_inner .el_cat_txt::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin: 0 0.278em -0.25em 0;
  background-image: url(../img/works/ico-star.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.bl_cat_inner .bl_cat .bl_cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.56vw, 20px) min(0.78vw, 10px);
}
.bl_cat_inner .bl_cat .bl_cat_list .el_cat_item.select a {
  background: #333;
  border-color: #333;
  color: #FFF;
}
.bl_cat_inner .bl_cat .bl_cat_list .el_cat_item a {
  font-size: min(1.09vw, 14px);
  display: block;
  width: fit-content;
  padding: min(0.7vw, 9px) min(2.5vw, 32px);
  border: 1px solid #ACA293;
  border-radius: min(23.44vw, 300px);
  background: rgba(206, 201, 193, 0.2);
  transition: 0.3s;
}
.bl_cat_inner .bl_cat .bl_cat_list .el_cat_item a:hover {
  background: #333;
  border-color: #333;
  color: #FFF;
}
@media screen and (max-width: 599px) {
  .bl_cat_inner {
    margin-bottom: min(14.02vw, 60px);
  }
  .bl_cat_inner .el_cat_txt {
    font-size: min(3.74vw, 16px);
  }
  .bl_cat_inner .bl_cat .bl_cat_list {
    gap: min(2.34vw, 10px);
  }
  .bl_cat_inner .bl_cat .bl_cat_list .el_cat_item a {
    font-size: min(2.8vw, 12px);
    padding: min(1.64vw, 7px) min(4.67vw, 20px);
  }
}

.bl_page_inner .bl_post_list {
  display: flex;
  flex-wrap: wrap;
  gap: min(11.72vw, 150px) min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list {
    gap: min(35.05vw, 150px) min(18.69vw, 80px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item {
  width: calc((100% - min(18.69vw, 80px)) / 2);
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb {
  margin-bottom: min(3.13vw, 40px);
  position: relative;
  box-shadow: 10px 10px 20px 0 rgba(41, 37, 34, 0.15);
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb {
    margin-bottom: min(9.35vw, 40px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail {
  position: absolute;
  right: 5%;
  bottom: 5%;
  height: min(3.91vw, 50px);
  width: min(3.91vw, 50px);
  overflow: hidden;
  transition: 0.1s;
  border-radius: min(15.63vw, 200px);
  background: #000;
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail {
    height: min(11.68vw, 50px);
    width: min(11.68vw, 50px);
    border-radius: min(46.73vw, 200px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner {
  padding: 0 min(1.17vw, 15px);
  height: 100%;
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner {
    padding: 0 min(3.5vw, 15px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text {
  font-size: min(1.25vw, 16px);
  position: absolute;
  top: 50%;
  left: min(0.39vw, 5px);
  transform: translateY(-50%);
  color: #fff;
  display: block;
  color: #fff;
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text {
    font-size: min(3.74vw, 16px);
    left: min(1.17vw, 5px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text img {
  width: min(1.56vw, 20px);
  display: inline-block;
  margin-left: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text img {
    margin-left: min(2.34vw, 10px);
    width: min(4.67vw, 20px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text:nth-child(2) {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  left: min(5.47vw, 70px);
  width: min(9.77vw, 125px);
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text:nth-child(2) {
    left: min(16.36vw, 70px);
    width: min(29.21vw, 125px);
    grid-template-columns: auto min(4.67vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail {
    width: min(9.35vw, 40px);
    height: min(9.35vw, 40px);
  }
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text {
    font-size: min(3.27vw, 14px);
  }
  .bl_page_inner .bl_post_list .bl_post_item .el_thumb .el_detail .el_detail_inner .btn__text img {
    margin-left: min(1.4vw, 6px);
    width: min(3.74vw, 16px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_top .el_ttl {
  margin-bottom: min(1.25vw, 16px);
  font-size: min(2.34vw, 30px);
  line-height: 1;
  position: relative;
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_top .el_ttl {
    margin-bottom: min(3.74vw, 16px);
    font-size: min(7.01vw, 30px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_top .el_copy {
  font-size: min(1.09vw, 14px);
  line-height: 1.5;
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_top .el_copy {
    font-size: min(3.27vw, 14px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_bottom {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.63vw, 8px) min(1.72vw, 22px);
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_bottom {
    gap: min(1.87vw, 8px) min(5.14vw, 22px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_bottom .el_cat {
  display: inline-block;
  font-size: min(0.94vw, 12px);
  color: #ACA293;
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_bottom .el_cat {
    font-size: min(2.8vw, 12px);
  }
}
.bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_bottom .el_cat::before {
  content: "#";
  font-size: 1em;
}
@media (hover: hover) {
  .bl_page_inner .bl_post_list .bl_post_item:hover .el_thumb::before {
    opacity: 0.6;
  }
  .bl_page_inner .bl_post_list .bl_post_item:hover .el_thumb .el_detail {
    transition: 0.1s;
    width: min(13.28vw, 170px);
  }
}
@media screen and (hover: hover) and (width <= 767px) {
  .bl_page_inner .bl_post_list .bl_post_item:hover .el_thumb .el_detail {
    width: min(39.72vw, 170px);
  }
}
@media (hover: hover) {
  .bl_page_inner .bl_post_list .bl_post_item:hover .el_thumb .el_detail .el_detail_inner {
    transform: translateX(min(-2.73vw, -35px));
  }
}
@media screen and (hover: hover) and (max-width: 599px) {
  .bl_page_inner .bl_post_list .bl_post_item:hover .el_thumb .el_detail {
    width: min(35.05vw, 150px);
  }
  .bl_page_inner .bl_post_list .bl_post_item:hover .el_thumb .el_detail .el_detail_inner {
    transform: translateX(min(-3.13vw, -40px));
  }
}
@media screen and (width <= 767px) {
  .bl_page_inner .bl_post_list {
    gap: min(23.36vw, 100px) min(9.35vw, 40px);
  }
  .bl_page_inner .bl_post_list .bl_post_item {
    width: calc((100% - min(9.35vw, 40px)) / 2);
  }
}
@media screen and (max-width: 767px) {
  .bl_page_inner .bl_post_list {
    gap: min(6.25vw, 80px);
  }
  .bl_page_inner .bl_post_list .bl_post_item {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .bl_page_inner .bl_post_list .bl_post_item .bl_txt_box .bl_txt_box_top .el_ttl {
    font-size: 24px;
  }
}

.flow_sec {
  border-top: 1px solid #CEC9C1;
}

/* ===================================
  詳細ページ
  =================================== */
article {
  overflow: hidden;
}

.un_worksSinge {
  margin-top: min(12.97vw, 166px);
}
@media screen and (width <= 767px) {
  .un_worksSinge {
    margin-top: min(38.79vw, 166px);
  }
}

.single .page_fv_sec {
  padding: 0 min(1.88vw, 24px);
}
@media screen and (width <= 767px) {
  .single .page_fv_sec {
    padding: 0 min(5.61vw, 24px);
  }
}

.sec .page_inner {
  max-width: unset;
}

.page_inner {
  padding-bottom: 0;
}
.page_inner .bl_ttl_wrap {
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .page_inner .bl_ttl_wrap {
    margin-bottom: min(18.69vw, 80px);
  }
}
.page_inner .bl_ttl_wrap .el_cont_ttl {
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(1.88vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .page_inner .bl_ttl_wrap .el_cont_ttl {
    margin-bottom: min(9.35vw, 40px);
  }
}
.page_inner .bl_ttl_wrap .el_page_ttl {
  color: #1A1311;
  text-align: center;
  font-family: "Noto Serif Display";
  font-size: min(12.5vw, 160px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (width <= 767px) {
  .page_inner .bl_ttl_wrap .el_page_ttl {
    font-size: min(37.38vw, 160px);
  }
}
.page_inner .bl_ttl_wrap .el_page_ttl.jp {
  font-size: min(5.47vw, 70px);
  margin: min(3.91vw, 50px) auto min(2.42vw, 31px);
}
@media screen and (width <= 767px) {
  .page_inner .bl_ttl_wrap .el_page_ttl.jp {
    font-size: min(16.36vw, 70px);
    margin: min(11.68vw, 50px) auto min(7.24vw, 31px);
  }
}
.page_inner .bl_ttl_wrap .el_copy {
  color: #1A1311;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.6px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .page_inner .bl_ttl_wrap .el_copy {
    font-size: min(4.67vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .page_inner .bl_ttl_wrap .el_cont_ttl {
    font-size: min(4.67vw, 20px);
  }
  .page_inner .bl_ttl_wrap .el_page_ttl {
    font-size: min(11.68vw, 50px);
    text-align: start;
  }
  .page_inner .bl_ttl_wrap .el_page_ttl.jp {
    font-size: min(10.28vw, 44px);
  }
  .page_inner .bl_ttl_wrap .el_copy {
    font-size: min(3.27vw, 14px);
  }
}

.el_worksSide_img {
  max-width: min(70.31vw, 900px);
  margin-inline: auto;
  position: relative;
  aspect-ratio: 1000/616;
  height: auto;
}
@media screen and (width <= 767px) {
  .el_worksSide_img {
    max-width: 100%;
  }
}
@media screen and (width <= 767px) {
  .el_worksSide_img {
    max-width: 100%;
  }
}
.el_worksSide_img .el_worksSide_img_pc {
  width: 99.4%;
  height: auto;
  aspect-ratio: 994/612;
}
.el_worksSide_img .el_worksSide_img_pc .el_img {
  position: absolute;
  overflow: hidden;
  width: 81.5%;
  height: auto;
  aspect-ratio: 814/532;
  top: 50%;
  left: 50%;
  transform: translate(-50.5%, -55.5%);
  border-radius: 0.8vw 0.8vw 0 0;
}
@media screen and (min-width: 1001px) {
  .el_worksSide_img .el_worksSide_img_pc .el_img {
    border-radius: 8px 8px 0 0;
  }
}
.el_worksSide_img .el_worksSide_img_pc .el_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_worksSide_img .el_worksSide_img_pc:before {
  width: 99.4%;
  height: 100%;
  content: "";
  background: url(../img/works/img_pc.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}
.el_worksSide_img .el_worksSide_img_sp {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  width: 21.6%;
  height: auto;
  aspect-ratio: 216/446;
}
.el_worksSide_img .el_worksSide_img_sp .el_img {
  position: absolute;
  overflow: hidden;
  border-radius: 2vw;
  width: 91%;
  height: 96.5%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1001px) {
  .el_worksSide_img .el_worksSide_img_sp .el_img {
    border-radius: 20px;
  }
}
.el_worksSide_img .el_worksSide_img_sp .el_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_worksSide_img .el_worksSide_img_sp:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/works/img_sp.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

.ly_worksSingle {
  margin-top: min(11.72vw, 150px);
  max-width: min(93.75vw, 1200px);
  margin-inline: auto;
  box-sizing: content-box;
  padding: 0 min(1.56vw, 20px);
}
.ly_worksSingle .el_ttl {
  position: relative;
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(2.81vw, 36px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  padding-block: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .ly_worksSingle .el_ttl {
    font-size: min(8.41vw, 36px);
    padding-block: min(9.35vw, 40px);
  }
}
.ly_worksSingle .el_ttl .tll_font {
  font-size: min(2.81vw, 36px);
}
@media screen and (width <= 767px) {
  .ly_worksSingle .el_ttl .tll_font {
    font-size: min(8.41vw, 36px);
  }
}
.ly_worksSingle .el_ttl .sec_ttl_en {
  pointer-events: none;
  position: absolute;
  line-height: 1;
  top: 50%;
  transform: translateY(-40%);
  left: 0;
  color: rgba(206, 201, 193, 0.2);
  text-align: center;
  font-family: "Noto Serif Display";
  font-size: min(12.5vw, 160px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .ly_worksSingle .el_ttl .sec_ttl_en {
    font-size: min(37.38vw, 160px);
  }
}
@media screen and (width <= 767px) {
  .ly_worksSingle .el_ttl {
    margin-bottom: min(5.84vw, 25px);
  }
  .ly_worksSingle .el_ttl .sec_ttl_en {
    font-size: min(32.71vw, 140px);
  }
}
.ly_worksSingle .bl_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.ly_worksSingle .bl_wrap img {
  box-shadow: 10px 10px 20px 0px rgba(41, 37, 34, 0.15);
}
@media screen and (max-width: 599px) {
  .ly_worksSingle .bl_wrap img {
    box-shadow: 5px 5px 15px 0px rgba(41, 37, 34, 0.15);
  }
}
.ly_worksSingle.ly_web {
  margin-top: min(14.06vw, 180px);
}
.ly_worksSingle.ly_web .bl_wrap.pc {
  gap: 60px;
  margin-bottom: min(7.81vw, 100px);
}
.ly_worksSingle.ly_web .bl_wrap.pc img {
  width: calc((100% - 60px) / 2);
}
.ly_worksSingle.ly_web .bl_wrap.sp {
  gap: min(11.68vw, 50px) min(7.48vw, 32px);
}
.ly_worksSingle.ly_web .bl_wrap.sp img {
  width: calc((100% - 96px) / 4);
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_web {
    margin-top: min(35.05vw, 150px);
  }
  .ly_worksSingle.ly_web .bl_wrap.pc {
    gap: min(2.34vw, 30px);
  }
  .ly_worksSingle.ly_web .bl_wrap.pc img {
    width: calc((100% - 30px) / 2);
  }
  .ly_worksSingle.ly_web .bl_wrap.sp {
    flex-wrap: wrap;
    gap: min(7.01vw, 30px);
  }
  .ly_worksSingle.ly_web .bl_wrap.sp img {
    width: calc((100% - 90px) / 4);
  }
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_web .bl_wrap.sp {
    flex-wrap: wrap;
  }
  .ly_worksSingle.ly_web .bl_wrap.sp img {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_web {
    margin-top: min(18.69vw, 80px);
  }
  .ly_worksSingle.ly_web .bl_wrap {
    flex-wrap: wrap;
  }
  .ly_worksSingle.ly_web .bl_wrap.pc {
    gap: min(11.68vw, 50px);
  }
  .ly_worksSingle.ly_web .bl_wrap.pc img {
    width: 100%;
  }
  .ly_worksSingle.ly_web .bl_wrap.sp {
    gap: min(7.48vw, 32px) min(4.67vw, 20px);
  }
  .ly_worksSingle.ly_web .bl_wrap.sp img {
    width: calc((100% - 20px) / 2);
  }
}
.ly_worksSingle.ly_logo .swiper, .ly_worksSingle.ly_schema .swiper {
  overflow: initial;
}
.ly_worksSingle.ly_logo .swiper .swiper-slide, .ly_worksSingle.ly_schema .swiper .swiper-slide {
  box-shadow: 10px 10px 20px 0px rgba(41, 37, 34, 0.15);
}
@media screen and (max-width: 599px) {
  .ly_worksSingle.ly_logo .swiper .swiper-slide, .ly_worksSingle.ly_schema .swiper .swiper-slide {
    box-shadow: 5px 5px 15px 0px rgba(41, 37, 34, 0.15);
  }
}
.ly_worksSingle.ly_credit {
  max-width: unset;
  padding: min(6.25vw, 80px) min(1.88vw, 24px) min(7.81vw, 100px);
  margin-top: min(11.72vw, 150px);
  background: #ffffff;
  color: #1A1311;
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_credit {
    padding: min(18.69vw, 80px) min(5.61vw, 24px) min(23.36vw, 100px);
    margin-top: min(35.05vw, 150px);
  }
}
.ly_worksSingle.ly_credit .bl_inner {
  max-width: min(46.88vw, 600px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_credit .bl_inner {
    max-width: 100%;
  }
}
.ly_worksSingle.ly_credit .bl_inner .el_ttl {
  color: #1A1311;
  font-family: "Noto Serif Display";
  font-size: min(4.69vw, 60px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: min(4.69vw, 60px);
  width: fit-content;
  margin-inline: auto;
  padding: 0;
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_credit .bl_inner .el_ttl {
    font-size: min(14.02vw, 60px);
    margin-bottom: min(14.02vw, 60px);
  }
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap {
  display: block;
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl {
  padding: min(2.34vw, 30px) 0;
  border-top: 1px solid #A9A9A9;
  display: flex;
  gap: min(2.34vw, 30px) min(2.34vw, 30px);
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl:last-child {
  border-bottom: 1px solid #A9A9A9;
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dt {
  width: 100%;
  max-width: min(8.59vw, 110px);
  flex-shrink: 0;
  font-weight: 700;
  font-size: min(1.09vw, 14px);
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dt {
    font-size: min(3.27vw, 14px);
    max-width: min(25.7vw, 110px);
  }
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dd {
  font-size: min(1.09vw, 14px);
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dd {
    font-size: min(3.27vw, 14px);
  }
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dd a {
  text-decoration: underline;
  transition: 0.3s;
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dd a.blank::after {
  content: "";
  display: inline-block;
  width: min(1.02vw, 13px);
  height: min(1.02vw, 13px);
  margin: 0 0 min(-0.08vw, -1px) min(0.39vw, 5px);
  background-image: url(../img/common/external_icon.svg);
}
.ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dd a:hover {
  opacity: 0.6;
}
@media screen and (width <= 767px) {
  .ly_worksSingle.ly_credit .bl_inner .bl_wrap dl {
    padding: min(4.67vw, 20px) 0;
    flex-direction: column;
  }
  .ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dt {
    width: 100%;
  }
  .ly_worksSingle.ly_credit .bl_inner .bl_wrap dl dd {
    width: 100%;
  }
}

/* ===================================
common
=================================== */
/* ttl
============================== */
.el_ttl_border {
  font-family: "Shippori Mincho", serif;
  font-size: min(2.5vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
@media screen and (width <= 767px) {
  .el_ttl_border {
    font-size: min(6.54vw, 28px);
  }
}
.el_ttl_border span {
  background: #F1EDE8;
  display: inline-block;
  position: relative;
  padding-right: min(1.09vw, 14px);
}
.el_ttl_border::before {
  content: "";
  width: min(29.06vw, 372px);
  height: 1px;
  background: #333;
  position: absolute;
  top: min(1.56vw, 20px);
  left: min(11.33vw, 145px);
}
@media screen and (width <= 767px) {
  .el_ttl_border::before {
    display: none;
  }
}

.el_ttl_ico {
  font-style: normal;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: min(0.78vw, 10px);
  position: relative;
  padding-left: min(2.81vw, 36px);
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(1.56vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .el_ttl_ico {
    font-size: min(4.67vw, 20px);
    padding-left: min(7.01vw, 30px);
  }
}
.el_ttl_ico::before {
  content: "";
  display: inline-block;
  width: min(2.5vw, 32px);
  height: min(2.5vw, 32px);
  background-image: url(../img/works/ico-star.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: min(-0.16vw, -2px);
  left: 0;
}
@media screen and (width <= 767px) {
  .el_ttl_ico::before {
    width: min(7.48vw, 32px);
    height: min(7.48vw, 32px);
    top: min(-0.47vw, -2px);
  }
}

/* text
============================== */
.el_topText {
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 200%;
}
@media screen and (width <= 767px) {
  .el_topText {
    font-size: min(3.27vw, 14px);
  }
}

.el_dotList {
  margin-top: min(0.63vw, 8px);
}
@media screen and (width <= 767px) {
  .el_dotList {
    margin-top: min(1.87vw, 8px);
  }
}
.el_dotList li {
  position: relative;
  padding-left: min(2.34vw, 30px);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
  line-height: 200%;
}
@media screen and (width <= 767px) {
  .el_dotList li {
    font-size: min(3.74vw, 16px);
    padding-left: min(7.01vw, 30px);
  }
}
.el_dotList li + li {
  margin-top: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .el_dotList li + li {
    margin-top: min(2.34vw, 10px);
  }
}
.el_dotList li:before {
  content: "";
  width: min(0.86vw, 11px);
  height: min(0.86vw, 11px);
  border-radius: 50%;
  background: #ACA293;
  position: absolute;
  top: min(0.78vw, 10px);
  left: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .el_dotList li:before {
    width: min(2.57vw, 11px);
    height: min(2.57vw, 11px);
    top: min(2.34vw, 10px);
    left: min(2.34vw, 10px);
  }
}

/* ===================================
Service
=================================== */
.el_worksList {
  display: flex;
  flex-wrap: wrap;
  gap: min(4.69vw, 60px);
  margin-top: min(3.13vw, 40px);
}
@media screen and (width <= 1024px) {
  .el_worksList {
    gap: min(14.02vw, 60px);
    margin-top: min(9.35vw, 40px);
  }
}
@media screen and (width <= 767px) {
  .el_worksList {
    flex-wrap: wrap;
  }
}
.el_worksList li {
  width: calc((100% - min(9.38vw, 120px)) / 3);
}
@media screen and (width <= 1024px) {
  .el_worksList li {
    width: calc((100% - min(3.91vw, 40px)) / 3);
  }
}
@media screen and (width <= 767px) {
  .el_worksList li {
    width: 100%;
  }
}
.el_worksList_ttl {
  margin-top: min(1.56vw, 20px);
  font-family: "Shippori Mincho", serif;
  font-size: min(1.56vw, 20px);
  font-weight: 400;
  line-height: 140%;
}
@media screen and (width <= 767px) {
  .el_worksList_ttl {
    margin-top: min(4.67vw, 20px);
    font-size: min(4.67vw, 20px);
  }
}
.el_worksList_copy {
  margin-top: min(1.56vw, 20px);
  color: #BBB;
  font-size: min(0.94vw, 12px);
  font-weight: 400;
  line-height: 100%;
}
@media screen and (width <= 767px) {
  .el_worksList_copy {
    margin-top: min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}
.el_worksList a {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .el_worksList a .el_worksList_img {
    overflow: hidden;
  }
  .el_worksList a .el_worksList_img img {
    transition: 0.5s;
  }
  .el_worksList a:hover .el_worksList_img img {
    scale: 1.1;
  }
}

.el_service_agency {
  display: flex;
  justify-content: space-between;
  gap: min(4.69vw, 60px);
  margin-top: min(4.69vw, 60px);
}
@media screen and (width <= 767px) {
  .el_service_agency {
    flex-wrap: wrap;
    gap: min(9.35vw, 40px);
    margin-top: min(9.35vw, 40px);
  }
}
.el_service_agency_wrap {
  width: 50%;
}
@media screen and (width <= 767px) {
  .el_service_agency_wrap {
    width: 100%;
  }
}

.el_worksList_creative {
  margin-top: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .el_worksList_creative {
    margin-top: min(9.35vw, 40px);
  }
}

.table_box {
  margin-top: min(3.13vw, 40px);
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (width <= 767px) {
  .table_box {
    margin-top: min(9.35vw, 40px);
  }
}
.table_box figure {
  width: min(87.5vw, 1120px);
}
@media screen and (width <= 767px) {
  .table_box figure {
    width: min(87.62vw, 375px);
  }
}

/* ===================================
Feature
=================================== */
.el_featureList_wrap {
  display: flex;
  gap: min(4.69vw, 60px);
}
@media screen and (width <= 1024px) {
  .el_featureList_wrap {
    gap: min(1.95vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .el_featureList_wrap {
    display: block;
  }
}
.el_featureList_wrap + .el_featureList_wrap {
  margin-top: min(9.38vw, 120px);
}
.el_featureList dt {
  width: min(42.19vw, 540px);
  margin-top: min(-1.09vw, -14px);
}
@media screen and (width <= 1024px) {
  .el_featureList dt {
    width: min(86.45vw, 370px);
    margin-top: 0;
  }
}
@media screen and (width <= 767px) {
  .el_featureList dt {
    width: 100%;
  }
}
.el_featureList dd {
  width: calc(100% - min(46.88vw, 600px));
}
@media screen and (width <= 1024px) {
  .el_featureList dd {
    width: calc(100% - min(91.12vw, 390px));
  }
}
@media screen and (width <= 767px) {
  .el_featureList dd {
    width: 100%;
    margin-top: min(9.35vw, 40px);
  }
}
.el_featureList_ttl {
  position: sticky;
  top: min(7.81vw, 100px);
  font-family: "Noto Serif JP";
  font-size: min(2.5vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 146%;
}
@media screen and (width <= 1024px) {
  .el_featureList_ttl {
    font-size: min(2.34vw, 24px);
  }
}
@media screen and (width <= 767px) {
  .el_featureList_ttl {
    font-size: min(6.54vw, 28px);
  }
  .el_featureList_ttl br {
    display: none;
  }
}
.el_featureList_ttl span {
  background-color: #f1ede7;
  display: inline-block;
  position: relative;
  padding-right: min(3.13vw, 40px);
}
@media screen and (width <= 1024px) {
  .el_featureList_ttl span {
    padding-right: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .el_featureList_ttl span {
    padding-right: 0;
  }
}
.el_featureList_ttl:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (width <= 767px) {
  .el_featureList_ttl:before {
    display: none;
  }
}
.el_featureList .el_img {
  max-width: min(34.53vw, 442px);
  margin-top: min(2.34vw, 30px);
}
@media screen and (width <= 767px) {
  .el_featureList .el_img {
    max-width: 100%;
    margin-top: min(7.01vw, 30px);
  }
}
.el_featureList .el_text {
  margin-top: min(1.72vw, 22px);
  font-size: min(1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (width <= 767px) {
  .el_featureList .el_text {
    font-size: min(3.74vw, 16px);
    margin-top: min(4.67vw, 20px);
  }
  .el_featureList .el_text br {
    display: none;
  }
}
.el_featureList * + .el_ttl_ico {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: min(1.56vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: min(5.47vw, 70px);
}
@media screen and (width <= 767px) {
  .el_featureList * + .el_ttl_ico {
    font-size: min(4.67vw, 20px);
    margin-top: min(9.35vw, 40px);
  }
}

/* ===================================
flow
=================================== */
.el_flowList {
  position: relative;
}
@media screen and (width <= 767px) {
  .el_flowList {
    padding-left: min(7.01vw, 30px);
    margin-top: 0;
  }
}
.el_flowList > div {
  display: flex;
}
@media screen and (width <= 767px) {
  .el_flowList > div {
    display: block;
    position: relative;
  }
  .el_flowList > div::before {
    content: "";
    width: min(1.87vw, 8px);
    height: min(1.87vw, 8px);
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: min(9.35vw, 40px);
    left: min(-4.67vw, -20px);
  }
  .el_flowList > div::after {
    content: "";
    width: 1px;
    height: calc(100% + min(18.69vw, 80px));
    background: #333;
    position: absolute;
    top: min(10.51vw, 45px);
    left: min(-3.97vw, -17px);
  }
}
.el_flowList > div + div {
  margin-top: min(3.52vw, 45px);
}
@media screen and (width <= 767px) {
  .el_flowList > div + div {
    margin-top: min(18.69vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .el_flowList > div:nth-last-of-type(1):after {
    display: none;
  }
}
.el_flowList > div:nth-last-of-type(1) dd:after {
  opacity: 0;
}
.el_flowList > div dt {
  width: 50%;
  padding-right: min(2.03vw, 26px);
  margin-top: min(-0.47vw, -6px);
}
@media screen and (width <= 767px) {
  .el_flowList > div dt {
    width: 100%;
    margin-top: 0;
    padding-right: 0;
  }
}
.el_flowList > div dt br.un_sp {
  display: none;
}
@media screen and (width <= 1024px) {
  .el_flowList > div dt br.un_sp {
    display: block;
  }
}
.el_flowList > div dd {
  width: 50%;
  padding: min(4.22vw, 54px) 0 0 min(2.03vw, 26px);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.32px;
  position: relative;
}
@media screen and (width <= 767px) {
  .el_flowList > div dd {
    width: 100%;
    font-size: min(3.74vw, 16px);
    padding: min(7.01vw, 30px) 0 0 0;
  }
}
.el_flowList > div dd::before {
  content: "";
  width: min(0.78vw, 10px);
  height: min(0.78vw, 10px);
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: min(4.22vw, 54px);
  left: min(-0.31vw, -4px);
}
@media screen and (width <= 767px) {
  .el_flowList > div dd::before {
    display: none;
  }
}
.el_flowList > div dd::after {
  content: "";
  width: 1px;
  height: calc(100% + min(3.52vw, 45px));
  background: #333;
  position: absolute;
  top: min(4.69vw, 60px);
  left: 0;
}
@media screen and (width <= 767px) {
  .el_flowList > div dd::after {
    display: none;
  }
}
.el_flowList_ttl {
  position: sticky;
  top: min(7.81vw, 100px);
}
@media screen and (width <= 767px) {
  .el_flowList_ttl {
    display: flex;
    align-items: center;
  }
}
.el_flowList_ttl:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (width <= 767px) {
  .el_flowList_ttl:before {
    display: none;
  }
}
.el_flowList_ttl_num {
  font-family: "Noto Serif Display";
  font-size: min(4.69vw, 60px);
  font-weight: 400;
  line-height: min(3.13vw, 40px);
  position: absolute;
  top: min(0.63vw, 8px);
  left: min(-0.47vw, -6px);
  z-index: 11;
  line-height: 1;
}
@media screen and (width <= 767px) {
  .el_flowList_ttl_num {
    font-size: min(14.02vw, 60px);
    position: relative;
    top: auto;
    left: auto;
    line-height: 1;
    margin-top: min(-2.34vw, -10px);
  }
}
.el_flowList_ttl_text {
  display: block;
  font-family: "Shippori Mincho";
  font-size: min(2.5vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-top: min(1.56vw, 20px);
  padding: 0 min(1.56vw, 20px) 0 min(3.91vw, 50px);
  background: #F1EDE8;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 10;
  min-height: min(7.03vw, 90px);
  display: flex;
  align-items: center;
}
@media screen and (width <= 767px) {
  .el_flowList_ttl_text {
    min-height: auto;
    font-size: min(5.61vw, 24px);
    margin-top: 0;
    padding: 0 0 0 min(2.34vw, 10px);
  }
}
.el_flowList .el_text_sub {
  font-size: min(1.09vw, 14px);
  margin-top: min(1.25vw, 16px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_text_sub {
    margin-top: min(3.74vw, 16px);
    font-size: min(3.27vw, 14px);
  }
}
.el_flowList .el_text_results {
  margin-top: min(2.5vw, 32px);
  font-size: min(1.25vw, 16px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.32px;
}
@media screen and (width <= 767px) {
  .el_flowList .el_text_results {
    margin-top: min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}
.el_flowList .el_text_results span {
  color: #FFF;
  text-align: justify;
  font-size: min(0.94vw, 12px);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.24px;
  padding: min(0.23vw, 3px) min(0.31vw, 4px) min(0.31vw, 4px) min(0.31vw, 4px);
  background: #333;
  display: inline-block;
  margin-right: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_text_results span {
    display: block;
    width: fit-content;
    margin-bottom: min(1.4vw, 6px);
    font-size: min(2.8vw, 12px);
  }
}
.el_flowList .el_img {
  margin-top: min(2.81vw, 36px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img {
    margin-top: min(8.41vw, 36px);
  }
}
.el_flowList .el_img.un_sitemap {
  max-width: min(38.05vw, 487px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img.un_sitemap {
    max-width: min(113.79vw, 487px);
  }
}
.el_flowList .el_img.un_wireframe {
  max-width: min(32.5vw, 416px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img.un_wireframe {
    max-width: min(97.2vw, 416px);
  }
}
.el_flowList .el_img.un_topdesign {
  max-width: min(19.53vw, 250px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img.un_topdesign {
    max-width: min(58.41vw, 250px);
  }
}
.el_flowList .el_img.un_underdesign {
  max-width: min(39.53vw, 506px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img.un_underdesign {
    max-width: min(118.22vw, 506px);
  }
}
.el_flowList .el_img.un_testsite {
  max-width: min(29.69vw, 380px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img.un_testsite {
    max-width: min(88.79vw, 380px);
  }
}
.el_flowList .el_img.un_site {
  max-width: min(26.88vw, 344px);
}
@media screen and (width <= 767px) {
  .el_flowList .el_img.un_site {
    max-width: min(80.37vw, 344px);
  }
}

/* ===================================
price
=================================== */
.el_price_list > div {
  display: flex;
  justify-content: space-between;
  padding: min(1.88vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (width <= 767px) {
  .el_price_list > div {
    padding: min(5.61vw, 24px) 0;
    font-size: min(3.74vw, 16px);
  }
}
.el_price_sub {
  margin-top: min(1.56vw, 20px);
  font-size: min(0.94vw, 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (width <= 767px) {
  .el_price_sub {
    margin-top: min(4.67vw, 20px);
    font-size: min(2.8vw, 12px);
  }
}

/* ===================================
about
=================================== */
.el_company_list > div {
  display: flex;
  justify-content: space-between;
  padding: min(1.88vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (width <= 767px) {
  .el_company_list > div {
    padding: min(5.61vw, 24px) 0;
    font-size: min(3.74vw, 16px);
  }
}
.el_company_list dt {
  width: 26%;
}
@media screen and (width <= 767px) {
  .el_company_list dt {
    width: min(25.7vw, 110px);
  }
}
.el_company_list dd {
  width: 74%;
}
@media screen and (width <= 767px) {
  .el_company_list dd {
    width: calc(100% - min(25.7vw, 110px));
  }
}
.el_company a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .el_company a {
    transition: 0.5s;
  }
  .el_company a:hover {
    opacity: 0.5;
  }
}

.el_member {
  margin-top: min(9.38vw, 120px);
}
@media screen and (width <= 767px) {
  .el_member {
    margin-top: min(18.69vw, 80px);
  }
}
.el_member_wrap {
  margin-top: min(3.91vw, 50px);
}
.el_member_wrap + .el_member_wrap {
  margin-top: min(4.69vw, 60px);
}
@media screen and (width <= 767px) {
  .el_member_wrap + .el_member_wrap {
    margin-top: min(18.69vw, 80px);
  }
}
.el_member_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: min(3.13vw, 40px);
  gap: min(3.13vw, 40px) min(1.95vw, 25px);
}
@media screen and (width <= 1024px) {
  .el_member_list {
    gap: min(3.91vw, 40px) min(1.95vw, 20px);
  }
}
.el_member_list li {
  width: calc((100% - min(7.81vw, 100px)) / 5);
}
@media screen and (width <= 1024px) {
  .el_member_list li {
    width: calc((100% - min(5.86vw, 60px)) / 4);
  }
}
@media screen and (width <= 767px) {
  .el_member_list li {
    width: calc((100% - min(4.67vw, 20px)) / 2);
  }
}
.el_member_ico {
  max-width: min(10.94vw, 140px);
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .el_member_ico {
    max-width: min(32.71vw, 140px);
  }
}
.el_member_job {
  color: #000;
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: min(0.94vw, 12px);
}
@media screen and (width <= 767px) {
  .el_member_job {
    font-size: min(2.8vw, 12px);
  }
}
.el_member_name {
  color: #000;
  font-size: min(1.56vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: min(1.09vw, 14px);
  word-break: break-all;
}
@media screen and (width <= 767px) {
  .el_member_name {
    font-size: min(4.21vw, 18px);
    margin-top: min(1.4vw, 6px);
  }
}

/* ===================================
共通
=================================== */
.form_wrap {
  padding: 0 min(1.56vw, 20px);
  padding-bottom: min(11.72vw, 150px);
}
@media screen and (width <= 767px) {
  .form_wrap {
    padding: 0 min(4.67vw, 20px);
    padding-bottom: min(35.05vw, 150px);
  }
}
.form_wrap .form_inner {
  position: relative;
  display: flex;
  gap: min(7.81vw, 100px);
  z-index: 2;
  max-width: min(96.88vw, 1240px);
  margin: auto;
}
@media screen and (width <= 1024px) {
  .form_wrap .form_inner {
    gap: min(9.77vw, 100px);
    max-width: min(121.09vw, 1240px);
  }
}
@media screen and (width <= 767px) {
  .form_wrap .form_inner {
    display: block;
    gap: 0;
    max-width: 100%;
  }
}

.form_ttl_wrap {
  position: sticky;
  top: min(4.69vw, 60px);
  height: fit-content;
  width: fit-content;
}
@media screen and (width <= 767px) {
  .form_ttl_wrap {
    position: inherit;
    top: 0;
  }
}
.form_ttl_wrap .form_ttl {
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1A1311;
  font-family: "Noto Serif Display";
  font-size: min(9.38vw, 120px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.02em;
}
@media screen and (width <= 767px) {
  .form_ttl_wrap .form_ttl {
    font-size: min(32.71vw, 140px);
  }
}
@media screen and (width <= 600px) {
  .form_ttl_wrap .form_ttl {
    font-size: min(24vw, 120px);
  }
}
@media screen and (width <= 375px) {
  .form_ttl_wrap .form_ttl {
    font-size: min(26.67vw, 100px);
  }
}
.form_ttl_wrap .form_ttl_sub {
  color: #1A1311;
  font-family: "Noto Serif JP";
  font-size: min(1.88vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (width <= 1024px) {
  .form_ttl_wrap .form_ttl_sub {
    margin-top: min(2.34vw, 24px);
    font-size: min(2.34vw, 24px);
  }
}
@media screen and (width <= 767px) {
  .form_ttl_wrap .form_ttl_sub {
    margin-top: min(5.61vw, 24px);
    font-size: min(5.14vw, 22px);
  }
}
@media screen and (width <= 600px) {
  .form_ttl_wrap .form_ttl_sub {
    margin-top: 0;
    font-size: min(4vw, 20px);
  }
}
@media screen and (width <= 375px) {
  .form_ttl_wrap .form_ttl_sub {
    font-size: min(4.8vw, 18px);
  }
}

@media screen and (max-width: 400px) {
  .form_ttl_wrap .form_ttl.en {
    font-size: min(24vw, 90px);
  }
  .form_ttl_wrap .form_ttl_sub {
    font-size: min(4.27vw, 16px);
  }
}
/* ===================================
  フォーム
  =================================== */
.pg_contact {
  padding-top: min(7.81vw, 100px);
}
@media screen and (width <= 1024px) {
  .pg_contact {
    padding-top: min(7.81vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .pg_contact {
    padding-top: min(23.36vw, 100px);
  }
}

.mw_wp_form_input {
  width: min(62.5vw, 800px);
}
@media screen and (width <= 1024px) {
  .mw_wp_form_input {
    width: min(78.13vw, 800px);
  }
}
@media screen and (width <= 767px) {
  .mw_wp_form_input {
    width: 100%;
    margin-top: min(23.36vw, 100px);
  }
}
@media screen and (width <= 600px) {
  .mw_wp_form_input {
    margin-top: min(10vw, 50px);
  }
}
.mw_wp_form_input .form_item {
  margin-bottom: min(4.69vw, 60px);
}
@media screen and (width <= 1024px) {
  .mw_wp_form_input .form_item {
    margin-bottom: min(5.86vw, 60px);
  }
}
@media screen and (width <= 767px) {
  .mw_wp_form_input .form_item {
    margin-bottom: min(14.02vw, 60px);
  }
}

.f_error {
  margin-top: min(0.78vw, 10px);
}
@media screen and (width <= 1024px) {
  .f_error {
    margin-top: min(0.98vw, 10px);
  }
}
@media screen and (width <= 767px) {
  .f_error {
    margin-top: min(2.34vw, 10px);
  }
}
.f_error .error {
  color: #F53F33 !important;
}

.form_item .f_ttl {
  display: flex;
  margin-bottom: min(1.56vw, 20px);
  align-items: center;
  font-size: min(1.25vw, 16px);
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (width <= 1024px) {
  .form_item .f_ttl {
    margin-bottom: min(1.95vw, 20px);
    font-size: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .form_item .f_ttl {
    margin-bottom: min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}
.form_item .f_ttl .required_txt {
  display: block;
  background-color: #F53F33;
  border-radius: min(1.56vw, 20px);
  margin-left: min(0.78vw, 10px);
  padding: min(0.39vw, 5px) min(0.78vw, 10px);
  color: #fff;
  font-size: min(0.78vw, 10px);
  font-weight: 400;
  line-height: 1;
}
@media screen and (width <= 1024px) {
  .form_item .f_ttl .required_txt {
    border-radius: min(1.95vw, 20px);
    margin-left: min(0.98vw, 10px);
    padding: min(0.49vw, 5px) min(0.98vw, 10px);
    font-size: min(0.98vw, 10px);
  }
}
@media screen and (width <= 767px) {
  .form_item .f_ttl .required_txt {
    border-radius: min(4.67vw, 20px);
    margin-left: min(2.34vw, 10px);
    padding: min(1.17vw, 5px) min(2.34vw, 10px);
    font-size: min(2.34vw, 10px);
  }
}
.form_item .f_ttl .option_txt {
  display: block;
  background-color: #b4b3b1;
  border-radius: min(1.56vw, 20px);
  margin-left: min(0.78vw, 10px);
  padding: min(0.39vw, 5px) min(0.78vw, 10px);
  color: #fff;
  font-size: min(0.78vw, 10px);
  font-weight: 400;
  line-height: 1;
}
@media screen and (width <= 1024px) {
  .form_item .f_ttl .option_txt {
    border-radius: min(1.95vw, 20px);
    margin-left: min(0.98vw, 10px);
    padding: min(0.49vw, 5px) min(0.98vw, 10px);
    font-size: min(0.98vw, 10px);
  }
}
@media screen and (width <= 767px) {
  .form_item .f_ttl .option_txt {
    border-radius: min(4.67vw, 20px);
    margin-left: min(2.34vw, 10px);
    padding: min(1.17vw, 5px) min(2.34vw, 10px);
    font-size: min(2.34vw, 10px);
  }
}

.check_input_wrap .f_input > span {
  margin-bottom: min(1.48vw, 19px);
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input > span {
    margin-bottom: min(1.86vw, 19px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input > span {
    margin-bottom: min(4.44vw, 19px);
  }
}
.check_input_wrap .f_input label input[type=checkbox],
.check_input_wrap .f_input label input[type=radio] {
  display: none;
}
.check_input_wrap .f_input label input[type=checkbox] + span,
.check_input_wrap .f_input label input[type=radio] + span {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 1px;
  padding-left: min(2.66vw, 34px);
  word-break: break-all;
  line-height: 1.4em;
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input label input[type=checkbox] + span,
  .check_input_wrap .f_input label input[type=radio] + span {
    padding-left: min(3.32vw, 34px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input label input[type=checkbox] + span,
  .check_input_wrap .f_input label input[type=radio] + span {
    padding-left: min(7.94vw, 34px);
  }
}
.check_input_wrap .f_input label input[type=checkbox] + span::before,
.check_input_wrap .f_input label input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: min(1.72vw, 22px);
  height: min(1.72vw, 22px);
  border-radius: 100%;
  border: 1px solid #CEC9C1;
  background-color: #fff;
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input label input[type=checkbox] + span::before,
  .check_input_wrap .f_input label input[type=radio] + span::before {
    width: min(2.15vw, 22px);
    height: min(2.15vw, 22px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input label input[type=checkbox] + span::before,
  .check_input_wrap .f_input label input[type=radio] + span::before {
    width: min(5.14vw, 22px);
    height: min(5.14vw, 22px);
  }
}
.check_input_wrap .f_input label input[type=checkbox] + span::after,
.check_input_wrap .f_input label input[type=radio] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: min(0.39vw, 5px);
  left: min(0.39vw, 5px);
  transform: unset;
  width: min(1.09vw, 14px);
  height: min(1.09vw, 14px);
  border-radius: 100%;
  background-color: #ED8423;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input label input[type=checkbox] + span::after,
  .check_input_wrap .f_input label input[type=radio] + span::after {
    top: min(0.49vw, 5px);
    left: min(0.49vw, 5px);
    width: min(1.37vw, 14px);
    height: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input label input[type=checkbox] + span::after,
  .check_input_wrap .f_input label input[type=radio] + span::after {
    top: min(1.17vw, 5px);
    left: min(1.17vw, 5px);
    width: min(3.27vw, 14px);
    height: min(3.27vw, 14px);
  }
}
.check_input_wrap .f_input label input[type=checkbox]:checked + span,
.check_input_wrap .f_input label input[type=radio]:checked + span {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 1px;
  padding-left: min(2.66vw, 34px);
  line-height: 1.4em;
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input label input[type=checkbox]:checked + span,
  .check_input_wrap .f_input label input[type=radio]:checked + span {
    padding-left: min(3.32vw, 34px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input label input[type=checkbox]:checked + span,
  .check_input_wrap .f_input label input[type=radio]:checked + span {
    padding-left: min(7.94vw, 34px);
  }
}
.check_input_wrap .f_input label input[type=checkbox]:checked + span::before,
.check_input_wrap .f_input label input[type=radio]:checked + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: min(1.72vw, 22px);
  height: min(1.72vw, 22px);
  border-radius: 100%;
  border: 1px solid #CEC9C1;
  background-color: #fff;
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input label input[type=checkbox]:checked + span::before,
  .check_input_wrap .f_input label input[type=radio]:checked + span::before {
    width: min(2.15vw, 22px);
    height: min(2.15vw, 22px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input label input[type=checkbox]:checked + span::before,
  .check_input_wrap .f_input label input[type=radio]:checked + span::before {
    width: min(5.14vw, 22px);
    height: min(5.14vw, 22px);
  }
}
.check_input_wrap .f_input label input[type=checkbox]:checked + span::after,
.check_input_wrap .f_input label input[type=radio]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: min(0.39vw, 5px);
  left: min(0.39vw, 5px);
  transform: unset;
  width: min(1.09vw, 14px);
  height: min(1.09vw, 14px);
  border-radius: 100%;
  background-color: #ED8423;
  opacity: 1;
}
@media screen and (width <= 1024px) {
  .check_input_wrap .f_input label input[type=checkbox]:checked + span::after,
  .check_input_wrap .f_input label input[type=radio]:checked + span::after {
    top: min(0.49vw, 5px);
    left: min(0.49vw, 5px);
    width: min(1.37vw, 14px);
    height: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .check_input_wrap .f_input label input[type=checkbox]:checked + span::after,
  .check_input_wrap .f_input label input[type=radio]:checked + span::after {
    top: min(1.17vw, 5px);
    left: min(1.17vw, 5px);
    width: min(3.27vw, 14px);
    height: min(3.27vw, 14px);
  }
}

.form_item .f_input_wrap .f_input input[type=text],
.form_item .f_input_wrap .f_input input[type=tel] {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: min(0.63vw, 8px);
  background-color: #fff;
  padding: min(1.17vw, 15px) min(1.56vw, 20px);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .form_item .f_input_wrap .f_input input[type=text],
  .form_item .f_input_wrap .f_input input[type=tel] {
    border-radius: min(0.78vw, 8px);
    padding: min(1.46vw, 15px) min(1.95vw, 20px);
    font-size: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .form_item .f_input_wrap .f_input input[type=text],
  .form_item .f_input_wrap .f_input input[type=tel] {
    border-radius: min(1.87vw, 8px);
    padding: min(3.5vw, 15px) min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}
.form_item .f_input_wrap .f_input input[type=text]::placeholder,
.form_item .f_input_wrap .f_input input[type=tel]::placeholder {
  color: #b4b3b1;
}
.form_item .f_input_wrap .f_input textarea {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: min(0.63vw, 8px);
  background-color: #fff;
  width: 100%;
  padding: min(1.17vw, 15px) min(1.56vw, 20px);
  resize: vertical;
  font-size: min(1.25vw, 16px);
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .form_item .f_input_wrap .f_input textarea {
    border-radius: min(0.78vw, 8px);
    padding: min(1.46vw, 15px) min(1.95vw, 20px);
    font-size: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .form_item .f_input_wrap .f_input textarea {
    border-radius: min(1.87vw, 8px);
    padding: min(3.5vw, 15px) min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}
.form_item .f_input_wrap .f_input textarea::placeholder {
  color: #b4b3b1;
}
.form_item .f_input_wrap .f_select select {
  width: 100%;
  max-width: min(27.34vw, 350px);
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: min(0.63vw, 8px);
  background-color: #fff;
  padding: min(1.17vw, 15px) min(1.56vw, 20px);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .form_item .f_input_wrap .f_select select {
    max-width: min(34.18vw, 350px);
    border-radius: min(0.78vw, 8px);
    padding: min(1.46vw, 15px) min(1.95vw, 20px);
    font-size: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .form_item .f_input_wrap .f_select select {
    max-width: min(81.78vw, 350px);
    border-radius: min(1.87vw, 8px);
    padding: min(3.5vw, 15px) min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}
.form_item .f_input_wrap .f_select select::placeholder {
  color: #b4b3b1;
}

.form_submit {
  margin-top: min(6.25vw, 80px);
}
@media screen and (width <= 1024px) {
  .form_submit {
    margin-top: min(7.81vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .form_submit {
    margin-top: min(18.69vw, 80px);
  }
}
.form_submit .form_caution_txt {
  text-align: center;
  color: #D08A73;
  font-size: min(1.09vw, 14px);
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .form_submit .form_caution_txt {
    font-size: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .form_submit .form_caution_txt {
    font-size: min(3.27vw, 14px);
  }
}
.form_submit .form_caution_txt a {
  text-decoration: underline;
  transition: 0.3s;
}
.form_submit .form_caution_txt a::after {
  content: "";
  display: inline-block;
  width: min(1.09vw, 14px);
  height: min(1.09vw, 14px);
  vertical-align: text-bottom;
  margin: 0 min(0.16vw, 2px);
  background-image: url(../img/common/external_icon_o.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (width <= 1024px) {
  .form_submit .form_caution_txt a::after {
    width: min(1.37vw, 14px);
    height: min(1.37vw, 14px);
    margin: 0 min(0.2vw, 2px);
  }
}
@media screen and (width <= 767px) {
  .form_submit .form_caution_txt a::after {
    width: min(3.27vw, 14px);
    height: min(3.27vw, 14px);
    margin: 0 min(0.47vw, 2px);
  }
}
@media (any-hover: hover) {
  .form_submit .form_caution_txt a:hover {
    opacity: 0.6;
  }
}
.form_submit input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: min(1.56vw, 20px);
  padding: min(1.41vw, 18px) min(1.09vw, 14px);
  width: 100%;
  border: 1px solid #D08A73;
  border-radius: min(15.63vw, 200px);
  background-color: #D08A73;
  color: #fff;
  font-size: min(1.41vw, 18px);
  font-weight: 700;
  transition: 0.3s;
}
@media screen and (width <= 1024px) {
  .form_submit input[type=submit] {
    margin-top: min(1.95vw, 20px);
    padding: min(1.76vw, 18px) min(1.37vw, 14px);
    border-radius: min(19.53vw, 200px);
    font-size: min(1.76vw, 18px);
  }
}
@media screen and (width <= 767px) {
  .form_submit input[type=submit] {
    margin-top: min(4.67vw, 20px);
    padding: min(4.21vw, 18px) min(3.27vw, 14px);
    border-radius: min(46.73vw, 200px);
    font-size: min(4.21vw, 18px);
  }
}
@media (any-hover: hover) {
  .form_submit input[type=submit]:hover {
    background-color: #fff;
    color: #D08A73;
  }
}

/* ===================================
  サンクスページ
  =================================== */
body {
  background: #FBFBFB;
}

.noise_bg::after {
  display: none !important;
}

.thaks_wrap {
  min-height: 85vh;
  position: relative;
  padding-bottom: min(5.86vw, 75px);
  box-sizing: border-box;
  padding: min(4.69vw, 60px) min(1.56vw, 20px) min(11.72vw, 150px);
  text-align: center;
}
@media screen and (width <= 1024px) {
  .thaks_wrap {
    padding-bottom: min(7.32vw, 75px);
    padding: min(5.86vw, 60px) min(1.95vw, 20px) min(14.65vw, 150px);
  }
}
@media screen and (width <= 767px) {
  .thaks_wrap {
    padding-bottom: min(17.52vw, 75px);
    padding: min(14.02vw, 60px) min(4.67vw, 20px) min(35.05vw, 150px);
  }
}
.thaks_wrap .notice {
  font-size: 90%;
}

.thanks_heading {
  margin-bottom: min(3.13vw, 40px);
  font-family: "Shippori Mincho", serif;
  font-size: min(2.5vw, 32px);
  letter-spacing: 0.05em;
}
@media screen and (width <= 1024px) {
  .thanks_heading {
    margin-bottom: min(3.91vw, 40px);
    font-size: min(3.13vw, 32px);
  }
}
@media screen and (width <= 767px) {
  .thanks_heading {
    margin-bottom: min(4.67vw, 20px);
    font-size: min(5.61vw, 24px);
  }
}

.back_btn a {
  display: block;
  width: fit-content;
  margin: min(3.13vw, 40px) auto;
  padding: min(0.78vw, 10px) min(3.13vw, 40px) min(0.7vw, 9px);
  border-radius: min(15.63vw, 200px);
  background: #333;
  border: 1px solid #333;
  color: #fff;
  font-size: min(1.09vw, 14px);
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}
@media screen and (width <= 1024px) {
  .back_btn a {
    margin: min(3.91vw, 40px) auto;
    padding: min(0.98vw, 10px) min(3.91vw, 40px) min(0.88vw, 9px);
    border-radius: min(19.53vw, 200px);
    font-size: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .back_btn a {
    margin: min(9.35vw, 40px) auto;
    padding: min(2.34vw, 10px) min(9.35vw, 40px) min(2.1vw, 9px);
    border-radius: min(46.73vw, 200px);
    font-size: min(3.27vw, 14px);
  }
}
@media (any-hover: hover) {
  .back_btn a:hover {
    background: #FBFBFB;
    color: #111;
  }
}

.thanls_footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: min(1.95vw, 25px) min(2.34vw, 30px);
  background-color: #111111;
}
@media screen and (width <= 1024px) {
  .thanls_footer {
    padding: min(2.44vw, 25px) min(2.93vw, 30px);
  }
}
@media screen and (width <= 767px) {
  .thanls_footer {
    padding: min(5.84vw, 25px) min(7.01vw, 30px);
  }
}

@media screen and (max-width: 767px) {
  .thanks_text {
    text-align: left;
    font-size: min(3.27vw, 14px);
  }
}
@media screen and (max-width: 599px) {
  footer .footer_inner {
    flex-direction: inherit;
    align-items: inherit;
  }
  footer .footer_inner .copy_txt {
    padding: 0;
  }
}
/* ===================================
  資料請求
  =================================== */
.ly_reqTtlWrapper {
  padding-top: min(6.25vw, 80px);
  padding-inline: min(1.88vw, 24px);
  margin-bottom: min(12.5vw, 160px);
  max-width: min(96.88vw, 1240px);
  margin-inline: auto;
}
@media screen and (width <= 1024px) {
  .ly_reqTtlWrapper {
    padding-top: min(7.81vw, 80px);
    padding-inline: min(2.34vw, 24px);
    margin-bottom: min(15.63vw, 160px);
    max-width: min(121.09vw, 1240px);
  }
}
@media screen and (width <= 767px) {
  .ly_reqTtlWrapper {
    padding-top: min(18.69vw, 80px);
    padding-inline: min(5.61vw, 24px);
    margin-bottom: min(23.36vw, 100px);
    max-width: min(289.72vw, 1240px);
  }
}
@media screen and (width <= 600px) {
  .ly_reqTtlWrapper {
    margin-bottom: min(20vw, 100px);
  }
}
.ly_reqTtlWrapper .el_reqTtlEn {
  font-size: min(12.5vw, 160px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Italiana", "Shippori Mincho", serif;
  font-style: normal;
}
@media screen and (width <= 1024px) {
  .ly_reqTtlWrapper .el_reqTtlEn {
    font-size: min(15.63vw, 160px);
  }
}
@media screen and (width <= 767px) {
  .ly_reqTtlWrapper .el_reqTtlEn {
    font-size: min(21.03vw, 90px);
  }
}
@media screen and (width <= 375px) {
  .ly_reqTtlWrapper .el_reqTtlEn {
    font-size: min(16vw, 60px);
  }
}
.ly_reqTtlWrapper .el_reqSybTtl {
  margin-top: min(2.27vw, 29px);
  font-size: min(1.88vw, 24px);
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (width <= 1024px) {
  .ly_reqTtlWrapper .el_reqSybTtl {
    margin-top: min(2.83vw, 29px);
    font-size: min(2.34vw, 24px);
  }
}
@media screen and (width <= 767px) {
  .ly_reqTtlWrapper .el_reqSybTtl {
    margin-top: min(6.78vw, 29px);
    font-size: min(3.74vw, 16px);
  }
}

.bl_reqSticky {
  position: sticky;
  top: min(4.69vw, 60px);
  max-width: min(40.47vw, 518px);
  height: fit-content;
}
@media screen and (width <= 1024px) {
  .bl_reqSticky {
    top: min(5.86vw, 60px);
    max-width: min(50.59vw, 518px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqSticky {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}
.bl_reqSticky .el_reqAboutTxt {
  color: #333;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: min(3.59vw, 46px);
}
@media screen and (width <= 1024px) {
  .bl_reqSticky .el_reqAboutTxt {
    margin-bottom: min(4.49vw, 46px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqSticky .el_reqAboutTxt {
    margin-bottom: min(10.75vw, 46px);
  }
}
.bl_reqSticky .ly_reqImgList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(0.78vw, 10px);
}
@media screen and (width <= 1024px) {
  .bl_reqSticky .ly_reqImgList {
    gap: min(0.98vw, 10px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqSticky .ly_reqImgList {
    gap: min(2.34vw, 10px);
  }
}

.f_clinic_selectBox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: min(0.63vw, 8px);
  background-color: #fff;
  padding: min(1.17vw, 15px) min(1.56vw, 20px);
  font-size: min(1.25vw, 16px);
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .f_clinic_selectBox {
    border-radius: min(0.78vw, 8px);
    padding: min(1.46vw, 15px) min(1.95vw, 20px);
    font-size: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .f_clinic_selectBox {
    border-radius: min(1.87vw, 8px);
    padding: min(3.5vw, 15px) min(4.67vw, 20px);
    font-size: min(3.74vw, 16px);
  }
}

.form_submit input[type=submit] {
  margin-bottom: min(1.56vw, 20px);
}
@media screen and (width <= 1024px) {
  .form_submit input[type=submit] {
    margin-bottom: min(1.95vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .form_submit input[type=submit] {
    margin-bottom: min(4.67vw, 20px);
  }
}

.el_requestAgreeTxt {
  width: fit-content;
  margin-inline: auto;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
}
.el_requestAgreeTxt a {
  color: #1D9BF0;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  text-decoration-line: underline;
}

/*===================================== 
  Thanks
  ====================================== */
.ly_reqThanksWrapper {
  padding-bottom: min(14.84vw, 190px);
  padding-inline: min(1.56vw, 20px);
}
@media screen and (width <= 1024px) {
  .ly_reqThanksWrapper {
    padding-bottom: min(18.55vw, 190px);
    padding-inline: min(1.95vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .ly_reqThanksWrapper {
    padding-bottom: min(44.39vw, 190px);
    padding-inline: min(4.67vw, 20px);
  }
}
.ly_reqThanksWrapper .ly_reqThanksWrapper_inner {
  max-width: min(96.88vw, 1240px);
  margin-inline: auto;
}
@media screen and (width <= 1024px) {
  .ly_reqThanksWrapper .ly_reqThanksWrapper_inner {
    max-width: min(121.09vw, 1240px);
  }
}
@media screen and (width <= 767px) {
  .ly_reqThanksWrapper .ly_reqThanksWrapper_inner {
    max-width: min(289.72vw, 1240px);
  }
}

.bl_reqThanksTxtWrapper {
  display: flex;
  flex-flow: column;
  gap: min(3.75vw, 48px);
  margin-bottom: min(7.81vw, 100px);
}
@media screen and (width <= 1024px) {
  .bl_reqThanksTxtWrapper {
    gap: min(4.69vw, 48px);
    margin-bottom: min(9.77vw, 100px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqThanksTxtWrapper {
    gap: min(11.21vw, 48px);
    margin-bottom: min(23.36vw, 100px);
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
  text-align: center;
  color: #333;
  font-family: "Shippori Mincho";
  font-size: min(3.28vw, 42px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (width <= 1024px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    font-size: min(4.1vw, 42px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    font-size: min(7.48vw, 32px);
    line-height: 1.5;
  }
}
@media screen and (width <= 600px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    font-size: min(4.8vw, 24px);
  }
}
@media screen and (width <= 375px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    font-size: min(6.4vw, 24px);
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt br {
  display: none;
}
@media screen and (width <= 767px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt br {
    display: block;
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (width <= 1024px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt {
    font-size: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt {
    font-size: min(3.27vw, 14px);
  }
}
@media screen and (width <= 375px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt {
    font-size: min(3.2vw, 12px);
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .spBr {
  display: none;
}
@media screen and (width <= 600px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .spBr {
    display: block;
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .min_spBr {
  display: none;
}
@media screen and (width <= 375px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .min_spBr {
    display: block;
  }
}

.ly_requestList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: min(2.03vw, 26px);
  margin-bottom: min(6.25vw, 80px);
}
@media screen and (width <= 1024px) {
  .ly_requestList {
    gap: min(2.54vw, 26px);
    margin-bottom: min(7.81vw, 80px);
  }
}
@media screen and (width <= 767px) {
  .ly_requestList {
    gap: min(6.07vw, 26px);
    margin-bottom: min(18.69vw, 80px);
  }
}
@media screen and (width <= 600px) {
  .ly_requestList {
    width: fit-content;
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ly_requestList .ly_requestList_item .bl_requestItem_ttl {
  display: grid;
  grid-template-columns: min(2.5vw, 32px) auto;
  align-items: center;
  gap: min(0.78vw, 10px);
  padding-block: min(0.78vw, 10px);
}
@media screen and (width <= 1024px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_ttl {
    grid-template-columns: min(3.13vw, 32px) auto;
    gap: min(0.98vw, 10px);
    padding-block: min(0.98vw, 10px);
  }
}
@media screen and (width <= 767px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_ttl {
    grid-template-columns: min(7.48vw, 32px) auto;
    gap: min(2.34vw, 10px);
    padding-block: min(2.34vw, 10px);
  }
}
.ly_requestList .ly_requestList_item .bl_requestItem_ttl .bl_requestItemTtl_img {
  display: block;
}
.ly_requestList .ly_requestList_item .bl_requestItem_ttl .bl_requestItemTtl_txt {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: min(1.56vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (width <= 1024px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_ttl .bl_requestItemTtl_txt {
    font-size: min(1.95vw, 20px);
  }
}
@media screen and (width <= 767px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_ttl .bl_requestItemTtl_txt {
    font-size: min(4.67vw, 20px);
  }
}
.ly_requestList .ly_requestList_item .bl_requestItem_img {
  display: block;
  margin-bottom: min(1.41vw, 18px);
}
@media screen and (width <= 1024px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_img {
    margin-bottom: min(1.76vw, 18px);
  }
}
@media screen and (width <= 767px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_img {
    margin-bottom: min(4.21vw, 18px);
  }
}
.ly_requestList .ly_requestList_item .bl_requestItem_button {
  cursor: pointer;
  width: calc(100% - min(1.41vw, 18px) * 2);
  display: grid;
  grid-template-columns: auto min(0.78vw, 10px);
  justify-content: center;
  align-items: center;
  gap: min(1.09vw, 14px);
  margin-inline: min(1.41vw, 18px);
  padding-block: min(1.09vw, 14px);
  border-radius: min(15.63vw, 200px);
  border: none;
  background-color: #333;
  transition: all 0.5s ease;
}
@media screen and (width <= 1024px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button {
    width: calc(100% - min(1.76vw, 18px) * 2);
    grid-template-columns: auto min(0.98vw, 10px);
    gap: min(1.37vw, 14px);
    margin-inline: min(1.76vw, 18px);
    padding-block: min(1.37vw, 14px);
    border-radius: min(19.53vw, 200px);
  }
}
@media screen and (width <= 767px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button {
    width: calc(100% - min(4.21vw, 18px) * 2);
    grid-template-columns: auto min(2.34vw, 10px);
    gap: min(3.27vw, 14px);
    margin-inline: min(4.21vw, 18px);
    padding-block: min(3.27vw, 14px);
    border-radius: min(46.73vw, 200px);
  }
}
.ly_requestList .ly_requestList_item .bl_requestItem_button .el_requestButton_txt {
  display: block;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (width <= 1024px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button .el_requestButton_txt {
    font-size: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button .el_requestButton_txt {
    font-size: min(3.27vw, 14px);
  }
}
@media screen and (width <= 600px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button .el_requestButton_txt {
    font-size: min(2.4vw, 12px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button {
    opacity: 0.8;
  }
}

.bl_reqBakcBtn {
  position: relative;
  display: grid;
  width: fit-content;
  margin-inline: auto;
  grid-template-columns: min(0.94vw, 12px) auto;
  align-items: center;
  gap: min(0.63vw, 8px);
  padding-inline: min(1.25vw, 16px);
  transition: all 0.5s ease;
}
@media screen and (width <= 1024px) {
  .bl_reqBakcBtn {
    grid-template-columns: min(1.17vw, 12px) auto;
    gap: min(0.78vw, 8px);
    padding-inline: min(1.56vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqBakcBtn {
    grid-template-columns: min(2.8vw, 12px) auto;
    gap: min(1.87vw, 8px);
    padding-inline: min(3.74vw, 16px);
  }
}
.bl_reqBakcBtn ::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(0.63vw, 8px);
  border-block: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (width <= 1024px) {
  .bl_reqBakcBtn ::after {
    width: min(0.78vw, 8px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqBakcBtn ::after {
    width: min(1.87vw, 8px);
  }
}
.bl_reqBakcBtn ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(0.63vw, 8px);
  border-block: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (width <= 1024px) {
  .bl_reqBakcBtn ::before {
    width: min(0.78vw, 8px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqBakcBtn ::before {
    width: min(1.87vw, 8px);
  }
}
.bl_reqBakcBtn .bl_reqBakcBtn_icon {
  display: block;
}
.bl_reqBakcBtn .bl_reqBakcBtn_txt {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: min(1.09vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-decoration-line: underline;
}
@media screen and (width <= 1024px) {
  .bl_reqBakcBtn .bl_reqBakcBtn_txt {
    font-size: min(1.37vw, 14px);
  }
}
@media screen and (width <= 767px) {
  .bl_reqBakcBtn .bl_reqBakcBtn_txt {
    font-size: min(3.27vw, 14px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .bl_reqBakcBtn {
    opacity: 0.8;
  }
}

.bl_featureSection_upperSection {
  padding-inline: min(1.56vw, 20px);
  padding-bottom: min(9.38vw, 120px);
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner {
  max-width: min(93.75vw, 1200px);
  margin-inline: auto;
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_ttlWrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: min(1.56vw, 20px);
  align-items: center;
  margin-bottom: min(4.22vw, 54px);
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_ttlWrapper {
    grid-template-columns: 1fr;
    gap: min(4.67vw, 20px);
  }
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_ttlWrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--main-font-color);
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_ttlWrapper::after {
    display: none;
  }
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_ttlWrapper .el_featureSection_upperSection_ttlWrapper_ttl {
  color: var(--main-font-color);
  font-size: min(2.5vw, 32px);
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_ttlWrapper .el_featureSection_upperSection_ttlWrapper_ttl {
    font-size: min(7.48vw, 32px);
    letter-spacing: 0.08em;
    margin-bottom: min(9.35vw, 40px);
  }
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_contentWrapper {
  display: grid;
  grid-template-columns: min(37.5vw, 480px) 1fr;
  gap: min(8.59vw, 110px);
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_contentWrapper {
    grid-template-columns: 1fr;
    gap: min(9.35vw, 40px);
  }
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_contentWrapper_item {
  display: flex;
  flex-flow: column;
  gap: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .bl_featureSection_upperSection_contentWrapper_item {
    gap: min(9.35vw, 40px);
  }
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .el_img {
  margin-bottom: min(1.95vw, 25px);
  max-width: min(32.81vw, 420px);
  margin-top: min(1.56vw, 20px);
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .el_img {
    margin-bottom: min(5.84vw, 25px);
    margin-top: min(4.67vw, 20px);
    max-width: min(98.13vw, 420px);
  }
}
.bl_featureSection_upperSection .bl_featureSection_upperSection_inner .el_text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.25vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (width <= 767px) {
  .bl_featureSection_upperSection .bl_featureSection_upperSection_inner .el_text {
    font-size: min(3.74vw, 16px);
  }
}

.el_service_wrap:not(:last-child) {
  margin-bottom: 6.25rem;
}
.el_service_wrap .el_ttl_border {
  margin-bottom: 2.5rem;
}
@media screen and (width <= 1024px) {
  .el_service_wrap .el_ttl_border {
    margin-bottom: 1.25rem;
  }
}

.bl_problemSection {
  padding-inline: 1.25rem;
  margin-bottom: 6.25rem;
}
.bl_problemSection .bl_problemSection_inner {
  max-width: 75rem;
  margin-inline: auto;
}
.bl_problemSection .bl_problemSection_inner .el_problemSection_ttl {
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0256em;
  margin-bottom: 3.375rem;
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
@media screen and (width <= 1024px) {
  .bl_problemSection .bl_problemSection_inner .bl_problemSection_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    max-width: 43.75rem;
    margin-inline: auto;
  }
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list li {
  background-color: #fff;
  border: 4px solid #F2EEE9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  padding: 1rem;
}
@media screen and (width <= 1024px) {
  .bl_problemSection .bl_problemSection_inner .bl_problemSection_list li {
    max-width: 33.3333333333%;
  }
}
@media screen and (width <= 767px) {
  .bl_problemSection .bl_problemSection_inner .bl_problemSection_list li {
    max-width: 44vw;
    width: 100%;
    padding-inline: min(0.93vw, 4px);
  }
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list li:before, .bl_problemSection .bl_problemSection_inner .bl_problemSection_list li:after {
  content: "";
  position: relative;
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list li:nth-child(3):after {
  display: none;
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list li .el_problemSection_list_item_txt {
  color: #1A1311;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media screen and (width <= 767px) {
  .bl_problemSection .bl_problemSection_inner .bl_problemSection_list li .el_problemSection_list_item_txt {
    font-size: min(3.27vw, 14px);
  }
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list li .el_problemSection_list_item_txt sup {
  color: var(--color-grey-67, #ABAAAA);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.096em;
}
.bl_problemSection .bl_problemSection_inner .bl_problemSection_list li .el_problemSection_list_item_txt_sup {
  color: var(--color-grey-67, #ABAAAA);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.096em;
  text-align: center;
}

.bl_reportingPointSection {
  padding-inline: 1.25rem;
  margin-bottom: 6.25rem;
}
.bl_reportingPointSection .bl_reportingPointSection_inner {
  max-width: 75rem;
  margin-inline: auto;
}
.bl_reportingPointSection .bl_reportingPointSection_inner .el_reportingPointSection_ttl {
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0256em;
  margin-bottom: 3.375rem;
}

.bl_reportingTxtSection {
  padding-inline: 1.25rem;
}
.bl_reportingTxtSection .bl_reportingTxtSection_inner {
  display: flex;
  flex-direction: column;
  gap: min(1.56vw, 20px);
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .bl_reportingTxtSection .bl_reportingTxtSection_inner {
    gap: min(7.01vw, 30px);
  }
}
.bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt {
  color: #1A1311;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.192em;
}
@media screen and (width <= 767px) {
  .bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt {
    font-size: min(4.67vw, 20px);
  }
}
.bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt .el_reportingTxtSection_txt_span_span {
  color: #D08A73;
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.224em;
}
@media screen and (width <= 767px) {
  .bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt .el_reportingTxtSection_txt_span_span {
    font-size: min(5.61vw, 24px);
  }
}
.bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt .spBr {
  display: none;
}
@media screen and (width <= 767px) {
  .bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt .spBr {
    display: block;
  }
}
.bl_reportingTxtSection .bl_reportingTxtSection_inner .el_reportingTxtSection_txt .el_reportingTxtSection_txt_span {
  background: linear-gradient(transparent 70%, #E6D7D0 60%);
}

/* ===================================
  Column 一覧（/column/ ・ カテゴリー別）
  =================================== */
.un_column .bl_columnArchive {
  margin-top: min(4.69vw, 60px);
  padding-bottom: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .un_column .bl_columnArchive {
    margin-top: min(9.35vw, 40px);
    padding-bottom: min(7.01vw, 30px);
  }
}
.un_column {
  /* カテゴリー絞り込み（works と共通の bl_cat_inner を利用） */
}
.un_column .bl_cat_inner {
  margin-bottom: min(4.69vw, 60px);
}
@media screen and (width <= 767px) {
  .un_column .bl_cat_inner {
    margin-bottom: min(11.68vw, 50px);
  }
}

/* 記事リスト
============================== */
.bl_columnList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(6.25vw, 80px) min(3.13vw, 40px);
}
@media screen and (width <= 1024px) {
  .bl_columnList {
    grid-template-columns: repeat(2, 1fr);
    gap: min(5.86vw, 60px) min(2.93vw, 30px);
  }
}
@media screen and (width <= 767px) {
  .bl_columnList {
    grid-template-columns: 1fr;
    gap: min(14.02vw, 60px);
  }
}
.bl_columnList_item_link {
  display: block;
  height: 100%;
}
.bl_columnList_item_thumb {
  overflow: hidden;
  background-color: #fff;
  box-shadow: 6px 6px 20px 0 rgba(41, 37, 34, 0.1);
}
@media screen and (width <= 767px) {
  .bl_columnList_item_thumb {
    box-shadow: 4px 4px 15px 0 rgba(41, 37, 34, 0.1);
  }
}
.bl_columnList_item_thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  transition: scale 0.5s ease;
}
.bl_columnList_item_body {
  margin-top: min(1.88vw, 24px);
}
@media screen and (width <= 767px) {
  .bl_columnList_item_body {
    margin-top: min(4.67vw, 20px);
  }
}
.bl_columnList_item_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.31vw, 4px) min(1.25vw, 16px);
}
@media screen and (width <= 767px) {
  .bl_columnList_item_meta {
    gap: min(0.93vw, 4px) min(3.74vw, 16px);
  }
}
.bl_columnList_item_cats {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.31vw, 4px) min(1.09vw, 14px);
}
@media screen and (width <= 767px) {
  .bl_columnList_item_cats {
    gap: min(0.93vw, 4px) min(3.27vw, 14px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .bl_columnList .bl_columnList_item_link:hover .bl_columnList_item_thumb img {
    scale: 1.06;
  }
  .bl_columnList .bl_columnList_item_link:hover .el_columnList_item_ttl {
    color: #D08A73;
  }
}

.el_columnList_item_date {
  display: block;
  color: #ACA293;
  font-size: min(0.94vw, 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .el_columnList_item_date {
    font-size: min(2.8vw, 12px);
  }
}

.el_columnList_item_cat {
  color: #ACA293;
  font-size: min(0.94vw, 12px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (width <= 767px) {
  .el_columnList_item_cat {
    font-size: min(2.8vw, 12px);
  }
}
.el_columnList_item_cat::before {
  content: "#";
  font-size: 1em;
}

.el_columnList_item_ttl {
  margin-top: min(0.94vw, 12px);
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.41vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
@media screen and (width <= 767px) {
  .el_columnList_item_ttl {
    margin-top: min(2.8vw, 12px);
    font-size: min(4.21vw, 18px);
  }
}

/* ページャー（WP の the_posts_pagination）
============================== */
.bl_pager {
  margin-top: min(7.81vw, 100px);
}
@media screen and (width <= 767px) {
  .bl_pager {
    margin-top: min(16.36vw, 70px);
  }
}
.bl_pager .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.bl_pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: min(0.78vw, 10px);
}
@media screen and (width <= 767px) {
  .bl_pager .nav-links {
    gap: min(1.87vw, 8px);
  }
}
.bl_pager .page-numbers {
  display: grid;
  place-items: center;
  min-width: min(3.44vw, 44px);
  height: min(3.44vw, 44px);
  padding-inline: min(0.78vw, 10px);
  border: 1px solid #ACA293;
  border-radius: min(23.44vw, 300px);
  background: rgba(206, 201, 193, 0.2);
  color: #1A1311;
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .bl_pager .page-numbers {
    min-width: min(9.35vw, 40px);
    height: min(9.35vw, 40px);
    padding-inline: min(2.34vw, 10px);
    border-radius: min(70.09vw, 300px);
    font-size: min(3.04vw, 13px);
  }
}
.bl_pager .page-numbers.prev, .bl_pager .page-numbers.next {
  padding-inline: min(1.88vw, 24px);
}
@media screen and (width <= 767px) {
  .bl_pager .page-numbers.prev, .bl_pager .page-numbers.next {
    padding-inline: min(4.21vw, 18px);
  }
}
.bl_pager .page-numbers.current {
  border-color: #333;
  background: #333;
  color: #fff;
}
.bl_pager .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .bl_pager a.page-numbers:hover {
    border-color: #333;
    background: #333;
    color: #fff;
  }
}

/* ===================================
  Column 記事詳細
  =================================== */
.un_columnSingle {
  padding-top: min(12.97vw, 166px);
}
@media screen and (width <= 767px) {
  .un_columnSingle {
    padding-top: min(35.05vw, 150px);
  }
}
.un_columnSingle .bl_columnSingle_inner {
  padding-bottom: min(9.38vw, 120px);
}
@media screen and (width <= 767px) {
  .un_columnSingle .bl_columnSingle_inner {
    padding-bottom: min(21.03vw, 90px);
  }
}

/* 記事見出し
============================== */
.bl_columnSingle_head_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.31vw, 4px) min(1.25vw, 16px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_head_meta {
    gap: min(0.93vw, 4px) min(3.74vw, 16px);
  }
}

.bl_columnSingle_head_cats {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.31vw, 4px) min(1.09vw, 14px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_head_cats {
    gap: min(0.93vw, 4px) min(3.27vw, 14px);
  }
}

.el_columnSingle_date {
  display: block;
  color: #ACA293;
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .el_columnSingle_date {
    font-size: min(2.8vw, 12px);
  }
}

.el_columnSingle_cat {
  color: #ACA293;
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (width <= 767px) {
  .el_columnSingle_cat {
    font-size: min(2.8vw, 12px);
  }
}
.el_columnSingle_cat::before {
  content: "#";
  font-size: 1em;
}

.el_columnSingle_ttl {
  margin-top: min(1.56vw, 20px);
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: min(3.13vw, 40px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .el_columnSingle_ttl {
    margin-top: min(3.74vw, 16px);
    font-size: min(6.07vw, 26px);
  }
}

.bl_columnSingle_eyecatch {
  margin-top: min(3.91vw, 50px);
  background-color: #fff;
  box-shadow: 10px 10px 20px 0 rgba(41, 37, 34, 0.12);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_eyecatch {
    margin-top: min(8.41vw, 36px);
    box-shadow: 5px 5px 15px 0 rgba(41, 37, 34, 0.12);
  }
}
.bl_columnSingle_eyecatch img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

/* 本文（エディター出力）
============================== */
.bl_columnSingle_body {
  margin-top: min(5.47vw, 70px);
  color: #1A1311;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body {
    margin-top: min(11.68vw, 50px);
  }
}
.bl_columnSingle_body > *:first-child {
  margin-top: 0;
}
.bl_columnSingle_body h2 {
  margin-top: min(7.03vw, 90px);
  padding-bottom: min(1.25vw, 16px);
  border-bottom: 1px solid #CEC9C1;
  font-family: "Noto Serif JP", serif;
  font-size: min(2.19vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body h2 {
    margin-top: min(16.36vw, 70px);
    padding-bottom: min(2.8vw, 12px);
    font-size: min(5.14vw, 22px);
  }
}
.bl_columnSingle_body h3 {
  position: relative;
  margin-top: min(4.69vw, 60px);
  padding-left: min(1.41vw, 18px);
  font-family: "Noto Serif JP", serif;
  font-size: min(1.72vw, 22px);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body h3 {
    margin-top: min(10.51vw, 45px);
    padding-left: min(3.27vw, 14px);
    font-size: min(4.21vw, 18px);
  }
}
.bl_columnSingle_body h3::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: min(0.31vw, 4px);
  height: 1em;
  background-color: #D08A73;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body h3::before {
    width: min(0.7vw, 3px);
  }
}
.bl_columnSingle_body h4 {
  margin-top: min(3.52vw, 45px);
  font-size: min(1.41vw, 18px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body h4 {
    margin-top: min(8.18vw, 35px);
    font-size: min(3.74vw, 16px);
  }
}
.bl_columnSingle_body p {
  margin-top: min(2.34vw, 30px);
  font-size: min(1.25vw, 16px);
}
@media screen and (width <= 1024px) {
  .bl_columnSingle_body p {
    font-size: clamp(14px, 1.5625vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body p {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
.bl_columnSingle_body p {
  line-height: 1.9;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body p {
    margin-top: min(5.61vw, 24px);
  }
}
.bl_columnSingle_body a {
  color: #D08A73;
  text-decoration: underline;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .bl_columnSingle_body a:hover {
    opacity: 0.7;
  }
}
.bl_columnSingle_body strong,
.bl_columnSingle_body b {
  font-weight: 700;
}
.bl_columnSingle_body em {
  font-style: italic;
}
.bl_columnSingle_body ul,
.bl_columnSingle_body ol {
  margin-top: min(2.34vw, 30px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body ul,
  .bl_columnSingle_body ol {
    margin-top: min(5.61vw, 24px);
  }
}
.bl_columnSingle_body ul li,
.bl_columnSingle_body ol li {
  position: relative;
  padding-left: 1.4em;
  font-size: min(1.25vw, 16px);
}
@media screen and (width <= 1024px) {
  .bl_columnSingle_body ul li,
  .bl_columnSingle_body ol li {
    font-size: clamp(14px, 1.5625vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body ul li,
  .bl_columnSingle_body ol li {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
.bl_columnSingle_body ul li,
.bl_columnSingle_body ol li {
  line-height: 1.9;
}
.bl_columnSingle_body ul li + li,
.bl_columnSingle_body ol li + li {
  margin-top: min(0.63vw, 8px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body ul li + li,
  .bl_columnSingle_body ol li + li {
    margin-top: min(1.87vw, 8px);
  }
}
.bl_columnSingle_body ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.3em;
  width: min(0.55vw, 7px);
  height: min(0.55vw, 7px);
  border-radius: 50%;
  background-color: #ACA293;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body ul li::before {
    width: min(1.64vw, 7px);
    height: min(1.64vw, 7px);
  }
}
.bl_columnSingle_body ol {
  counter-reset: columnOl;
}
.bl_columnSingle_body ol li {
  counter-increment: columnOl;
}
.bl_columnSingle_body ol li::before {
  content: counter(columnOl) ".";
  position: absolute;
  left: 0;
  color: #ACA293;
  font-weight: 700;
}
.bl_columnSingle_body blockquote {
  margin-top: min(3.13vw, 40px);
  padding: min(2.34vw, 30px) min(2.81vw, 36px);
  border-left: min(0.31vw, 4px) solid #CEC9C1;
  background-color: #fff;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body blockquote {
    margin-top: min(7.01vw, 30px);
    padding: min(5.61vw, 24px) min(4.67vw, 20px);
    border-left-width: min(0.7vw, 3px);
  }
}
.bl_columnSingle_body blockquote > *:first-child {
  margin-top: 0;
}
.bl_columnSingle_body figure,
.bl_columnSingle_body .wp-block-image {
  margin-top: min(3.91vw, 50px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body figure,
  .bl_columnSingle_body .wp-block-image {
    margin-top: min(8.41vw, 36px);
  }
}
.bl_columnSingle_body figure img,
.bl_columnSingle_body .wp-block-image img {
  width: 100%;
}
.bl_columnSingle_body figure figcaption,
.bl_columnSingle_body figure .wp-element-caption,
.bl_columnSingle_body .wp-block-image figcaption,
.bl_columnSingle_body .wp-block-image .wp-element-caption {
  margin-top: min(0.78vw, 10px);
  color: #ACA293;
  font-size: min(0.94vw, 12px);
  line-height: 1.6;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body figure figcaption,
  .bl_columnSingle_body figure .wp-element-caption,
  .bl_columnSingle_body .wp-block-image figcaption,
  .bl_columnSingle_body .wp-block-image .wp-element-caption {
    margin-top: min(2.34vw, 10px);
    font-size: min(2.8vw, 12px);
  }
}
.bl_columnSingle_body .wp-block-table,
.bl_columnSingle_body table {
  margin-top: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body .wp-block-table,
  .bl_columnSingle_body table {
    margin-top: min(7.01vw, 30px);
  }
}
.bl_columnSingle_body table {
  width: 100%;
  background-color: #fff;
}
.bl_columnSingle_body table th,
.bl_columnSingle_body table td {
  padding: min(1.09vw, 14px) min(1.56vw, 20px);
  border: 1px solid #CEC9C1;
  font-size: min(1.09vw, 14px);
  line-height: 1.7;
  text-align: left;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body table th,
  .bl_columnSingle_body table td {
    padding: min(2.8vw, 12px) min(3.27vw, 14px);
    font-size: min(3.04vw, 13px);
  }
}
.bl_columnSingle_body table th {
  background-color: rgba(206, 201, 193, 0.2);
  font-weight: 700;
}
.bl_columnSingle_body .wp-block-table {
  overflow-x: auto;
}
.bl_columnSingle_body .has-small-font-size {
  font-size: min(0.94vw, 12px) !important;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body .has-small-font-size {
    font-size: min(2.8vw, 12px) !important;
  }
}
.bl_columnSingle_body #toc_container {
  margin-top: min(3.91vw, 50px);
  padding: min(2.34vw, 30px) min(2.81vw, 36px);
  border: 1px solid #CEC9C1;
  background-color: #fff;
  width: auto;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body #toc_container {
    margin-top: min(8.41vw, 36px);
    padding: min(5.61vw, 24px) min(4.67vw, 20px);
  }
}
.bl_columnSingle_body #toc_container .toc_title {
  margin-bottom: min(1.25vw, 16px);
  padding-bottom: min(0.94vw, 12px);
  border-bottom: 1px solid #CEC9C1;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.41vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body #toc_container .toc_title {
    margin-bottom: min(3.27vw, 14px);
    padding-bottom: min(2.34vw, 10px);
    font-size: min(3.74vw, 16px);
  }
}
.bl_columnSingle_body #toc_container ul {
  margin-top: 0;
}
.bl_columnSingle_body #toc_container li {
  padding-left: 0;
}
.bl_columnSingle_body #toc_container li::before {
  display: none;
}
.bl_columnSingle_body #toc_container li + li {
  margin-top: min(0.47vw, 6px);
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body #toc_container li + li {
    margin-top: min(1.4vw, 6px);
  }
}
.bl_columnSingle_body #toc_container ul ul {
  margin-top: min(0.47vw, 6px);
  padding-left: 1.2em;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body #toc_container ul ul {
    margin-top: min(1.4vw, 6px);
  }
}
.bl_columnSingle_body #toc_container a {
  color: #1A1311;
  text-decoration: none;
  font-size: min(1.17vw, 15px);
  line-height: 1.8;
}
@media screen and (width <= 767px) {
  .bl_columnSingle_body #toc_container a {
    font-size: min(3.27vw, 14px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .bl_columnSingle_body #toc_container a:hover {
    color: #D08A73;
    opacity: 1;
  }
}

/* 記事内 CTA
============================== */
.bl_columnCta {
  margin-top: min(9.38vw, 120px);
  padding: min(3.91vw, 50px) min(4.69vw, 60px) min(4.69vw, 60px);
  background-color: #fff;
  box-shadow: 4px 4px 20px 0 rgba(41, 37, 34, 0.08);
}
@media screen and (width <= 767px) {
  .bl_columnCta {
    margin-top: min(21.03vw, 90px);
    padding: min(8.41vw, 36px) min(5.61vw, 24px) min(9.35vw, 40px);
  }
}

.el_columnCta_ttl {
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: min(2.03vw, 26px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .el_columnCta_ttl {
    font-size: min(4.67vw, 20px);
  }
}

.el_columnCta_txt {
  margin-top: min(1.88vw, 24px);
  font-size: min(1.25vw, 16px);
}
@media screen and (width <= 1024px) {
  .el_columnCta_txt {
    font-size: clamp(14px, 1.5625vw, 16px);
  }
}
@media screen and (width <= 767px) {
  .el_columnCta_txt {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
.el_columnCta_txt {
  line-height: 1.9;
}
@media screen and (width <= 767px) {
  .el_columnCta_txt {
    margin-top: min(4.67vw, 20px);
  }
}

.bl_columnCta_btnList {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.56vw, 20px);
  margin-top: min(3.13vw, 40px);
}
@media screen and (width <= 767px) {
  .bl_columnCta_btnList {
    flex-direction: column;
    gap: min(3.27vw, 14px);
    margin-top: min(7.01vw, 30px);
  }
}

.el_columnCta_btn {
  display: grid;
  place-items: center;
  min-width: min(21.88vw, 280px);
  padding: min(1.25vw, 16px) min(2.5vw, 32px);
  border: 1px solid #D08A73;
  border-radius: min(15.63vw, 200px);
  background-color: #D08A73;
  color: #fff;
  font-size: min(1.09vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .el_columnCta_btn {
    min-width: 100%;
    padding: min(3.5vw, 15px) min(5.61vw, 24px);
    border-radius: min(46.73vw, 200px);
    font-size: min(3.27vw, 14px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .el_columnCta_btn:hover {
    background-color: #fff;
    color: #D08A73;
  }
}
.el_columnCta_btn.un_sub {
  border-color: #333;
  background-color: transparent;
  color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .el_columnCta_btn.un_sub:hover {
    background-color: #333;
    color: #fff;
  }
}

/* 前後記事ページャー
============================== */
.bl_columnSinglePager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: min(1.56vw, 20px);
  margin-top: min(6.25vw, 80px);
}
@media screen and (width <= 767px) {
  .bl_columnSinglePager {
    gap: min(3.27vw, 14px);
    margin-top: min(14.02vw, 60px);
  }
}
.bl_columnSinglePager_item.un_prev {
  justify-self: start;
}
.bl_columnSinglePager_item.un_next {
  justify-self: end;
}

.el_columnSinglePager_link {
  display: inline-block;
  color: #1A1311;
  font-size: min(1.09vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .el_columnSinglePager_link {
    font-size: min(3.04vw, 13px);
  }
}
.el_columnSinglePager_link.un_prev::before {
  content: "←";
  margin-right: 0.5em;
}
.el_columnSinglePager_link.un_next::after {
  content: "→";
  margin-left: 0.5em;
}
@media (hover: hover) and (pointer: fine) {
  .el_columnSinglePager_link:hover {
    color: #D08A73;
  }
}

.el_columnSinglePager_back {
  display: grid;
  place-items: center;
  padding: min(1.09vw, 14px) min(2.81vw, 36px);
  border: 1px solid #333;
  border-radius: min(15.63vw, 200px);
  color: #333;
  font-size: min(1.09vw, 14px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .el_columnSinglePager_back {
    padding: min(3.04vw, 13px) min(4.67vw, 20px);
    border-radius: min(46.73vw, 200px);
    font-size: min(3.04vw, 13px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .el_columnSinglePager_back:hover {
    background-color: #333;
    color: #fff;
  }
}

/* 関連記事
============================== */
.bl_columnRelated {
  padding-top: min(7.81vw, 100px);
  padding-bottom: min(10.94vw, 140px);
  border-top: 1px solid #CEC9C1;
}
@media screen and (width <= 767px) {
  .bl_columnRelated {
    padding-top: min(16.36vw, 70px);
    padding-bottom: min(23.36vw, 100px);
  }
}

.el_columnRelated_ttl {
  margin-bottom: min(3.13vw, 40px);
  color: #1A1311;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.88vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 767px) {
  .el_columnRelated_ttl {
    margin-bottom: min(7.01vw, 30px);
    font-size: min(4.67vw, 20px);
  }
}
