@charset "UTF-8";
:root {
  --base_wid: 1440;
  --header_h: 120px;
}
@media screen and (max-width: 999px) {
  :root {
    --header_h: 74px;
  }
}
@media (max-width: 767px) {
  :root {
    --base_wid: 390;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #2F2F2F;
  font-family: "Zen Kaku Gothic New", sans-serif;
  word-break: break-all;
  line-height: 1;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

main {
  margin-top: 120px;
}
@media (max-width: 767px) {
  main {
    margin-top: 74px;
  }
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  margin: 0 auto;
  width: 80%;
  max-width: 1120px;
}
@media (max-width: 767px) {
  .inner {
    width: 400px;
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .u-inner-800 {
    width: 800px;
  }
}

@media (min-width: 768px) {
  .u-inner-1360 {
    width: 94.4%;
    max-width: 1400px;
  }
}
@media (min-width: 768px) {
  .u-inner--left {
    width: 100%;
    max-width: 1440px;
    padding-right: min(5.5%, 80px);
  }
}
@media (max-width: 767px) {
  .u-inner--left {
    max-width: 90%;
    width: 400px;
    margin: 0 auto;
    padding-right: 0;
  }
}

/* カテゴリードット装飾
------------------------------*/
.c-dot-item {
  display: flex;
  align-items: center;
}

.c-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

/* タイトル
------------------------------*/
.c-section-title {
  font-size: min(4rem, 3.90625vw);
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #828282;
  position: relative;
  padding-left: 1.1em;
}
.c-section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/img_title-decoration.png) no-repeat center center/contain;
  width: 1.4em;
  aspect-ratio: 144/144;
  z-index: -1;
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: min(2.4rem, 6.1538461538vw);
    padding-left: 1.7em;
  }
  .c-section-title::before {
    transform: translate(-10%, -50%);
    width: 2.5em;
  }
}

.c-border-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  color: #828282;
  padding-bottom: 16px;
  border-bottom: 1px solid #828282;
}

/* リード文
------------------------------*/
.c-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 3em; /* sy */
  color: #828282;
}
@media (max-width: 767px) {
  .c-lead {
    font-size: 1.6rem;
    margin-top: 34px; /* sy */
  }
}

/* テキスト色
------------------------------*/
.u-text-red {
  color: #FF3A3A;
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  background: #F6F6F6;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 40px 0;
  }
}

.c-page-title {
  text-align: center;
  line-height: 1;
  color: #828282;
  font-family: "Shippori Mincho", serif;
}

.c-page-title__ja {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: 1.4rem;
  }
}

.c-page-title__en {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: 2.4rem;
  }
}

/* 下層ページコンテンツ
------------------------------*/
.c-page-container {
  padding: 80px 0 180px;
}
@media (max-width: 767px) {
  .c-page-container {
    padding: 40px 0 90px;
  }
}

/* 絞り込み
------------------------------*/
.c-category-filter {
  border: 1px solid #828282;
  width: 400px;
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 4px;
  position: relative;
}
.c-category-filter::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: url(../img/icon_arrow1.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 1/1;
}
.c-category-filter select {
  border: none;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 4px;
  letter-spacing: 0.2em;
}

/* ボタン
------------------------------*/
.c-button {
  display: inline-block;
  max-width: 100%;
  width: 320px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 1em 0;
  border: 1px solid #2F2F2F;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 767px) {
  .c-button {
    width: 230px; /* sy_base */
  }
}

.c-button--arrow::after {
  display: inline-block;
  content: "";
  position: relative;
  background: #2F2F2F;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 10px;
  aspect-ratio: 10/10;
  margin-left: 12px;
}

.c-button--disable {
  background: #E8E8E8;
  pointer-events: none;
}

/* ドット装飾
------------------------------*/
.u-dot {
  position: relative;
  padding-left: 1em;
}
.u-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  aspect-ratio: 8/8;
  border-radius: 50%;
}

.u-dot--yel::before {
  background: #FFF1A1;
}

.u-dot--orange::before {
  background: #FFE0C2;
}

.u-dot--pink::before {
  background: #FFD0D5;
}

.u-dot--purple::before {
  background: #D8D0F8;
}

.u-dot--blue::before {
  background: #C2E3FF;
}

.u-dot--green::before {
  background: #C6F6CB;
}

/* ページネーション
------------------------------*/
.pagination {
  margin-top: 120px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 60px;
  }
}

.page-numbers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #E8E8E8;
  border-radius: 50%;
  text-align: center;
  transition: all 0.2s;
}
@media (hover: hover) {
  .page-numbers:hover {
    background-color: #eee;
  }
}
.page-numbers.current {
  background-color: #828282;
  color: #fff;
}
.page-numbers.dots {
  pointer-events: none;
  border: none;
  background: none;
  color: #828282;
}
.page-numbers.next {
  transform: scale(-1, 1) rotate(90deg);
}
.page-numbers.prev {
  transform: rotate(90deg);
}
.page-numbers img {
  width: 16px;
}
@media (max-width: 767px) {
  .page-numbers {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 1.4rem;
  }
}

/* ニュース共通
------------------------------*/
.c-news-meta {
  display: flex;
  align-items: center;
}

.c-news-meta__date {
  font-size: clamp(1.2rem, 16 / var(--base_wid) * 100vw, 1.6rem);
  font-weight: 500;
  color: #828282;
}

.c-news-meta__category {
  font-size: clamp(1.2rem, 16 / var(--base_wid) * 100vw, 1.6rem);
  font-weight: 500;
  margin-left: 2.4em;
}

/* サロン一覧
------------------------------*/
.c-salon {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-salon {
    display: block;
  }
}

.c-salon__item {
  width: 28.54%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .c-salon__item:not(:nth-child(3n)) {
    margin-right: 7.14%;
  }
  .c-salon__item:nth-child(n+4) {
    margin-top: 7.14%;
  }
}
@media (max-width: 767px) {
  .c-salon__item {
    width: 100%;
  }
  .c-salon__item:nth-child(n+2) {
    margin-top: 80px; /* sy */
  }
}

.c-salon__thumbnail {
  width: 100%;
  aspect-ratio: 320/200;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.c-salon__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-salon__thumbnail {
    aspect-ratio: 320/180; /* sy base */
  }
}

.c-salon__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  aspect-ratio: 1/1;
}

.c-salon__name {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-salon__name {
    font-size: 2rem;
  }
}

.c-salon__info {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-salon__cta__wrap {
  width: 100%;
}

.c-salon__cta {
  margin-top: 40px;
}
.c-salon__cta a:nth-child(n+2) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .c-salon__cta {
    margin-top: 40px; /* sy base */
  }
  .c-salon__cta a {
    width: 100%;
  }
}

.c-salon-info__item {
  display: flex;
  margin: 10px 0 0;
}
.c-salon-info__item dt {
  width: 3em;
  display: flex;
  justify-content: space-between;
}

.c-salon__button {
  margin-top: 80px;
  text-align: center;
}

/* ブロックエディターデフォルト
------------------------------*/
.c-default-style {
  font-size: 160%;
}
.c-default-style h1, .c-default-style h2, .c-default-style h3, .c-default-style h4, .c-default-style h5, .c-default-style h6, .c-default-style strong {
  font-weight: bold;
  margin: 1em 0;
}
.c-default-style h2 {
  font-size: 1.5em;
}
.c-default-style h3 {
  font-size: 1.17em;
}
.c-default-style h4 {
  font-size: 100%;
}
.c-default-style h5 {
  font-size: 0.83em;
}
.c-default-style h6 {
  font-size: 0.67em;
}
.c-default-style figure a {
  width: 100%;
}
.c-default-style p {
  margin: 1em 0;
}
.c-default-style a {
  color: #2271b1;
  text-decoration: underline;
}
.c-default-style ol {
  counter-reset: count 0;
}
.c-default-style ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-default-style ol li::before {
  content: counter(count) ".";
  counter-increment: count 1;
}
.c-default-style ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-default-style ul li::before {
  content: "・";
}
.c-default-style h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 16px 0;
}
.c-default-style h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 16px 0;
  padding-left: 16px;
  border-left: 8px solid #828282;
}
.c-default-style p {
  font-weight: 500;
  line-height: 2.4;
}
.c-default-style figure {
  margin: 20px 0;
  aspect-ratio: 720/478;
}
.c-default-style figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-default-style figure {
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  :where(.wp-block-columns.is-layout-flex) {
    gap: 0;
  }
}

/*------------------------------
RECRUIT
------------------------------*/
.recruit__inner {
  margin-right: auto;
  margin-left: unset;
}

.recruit__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .recruit__wrapper {
    display: block;
  }
}

.recruit__image {
  width: 50%;
}
@media (max-width: 767px) {
  .recruit__image {
    width: 100%;
  }
  .recruit__image img {
    border-radius: 8px;
  }
}

.recruit__content {
  width: 44%;
}
@media (max-width: 767px) {
  .recruit__content {
    width: 100%;
    margin-top: 50px; /* sy */
  }
}

.recruit__heading {
  font-size: min(4rem, 2.8645833333vw);
  font-weight: 500;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  margin-top: 0.9em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .recruit__heading {
    font-size: 2.4rem;
    margin-top: 1.4em; /* sy */
  }
}

.recruit__message {
  font-size: min(1.6rem, 1.5625vw);
  font-weight: 500;
  line-height: 2.4;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .recruit__message {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 2; /* sy */
  }
}

.recruit__button {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .recruit__button {
    margin-top: 40px;
    text-align: center;
  }
}

/*------------------------------
サロン情報
------------------------------*/
.salon-info__wrapper {
  display: flex;
  justify-content: space-between;
  background: #F6F6F6;
  padding: 3.6%;
}
@media (max-width: 767px) {
  .salon-info__wrapper {
    display: block;
    padding: 20px;
  }
}

.salon-info__content {
  display: flex;
  width: calc(100% - 320px);
}
@media (max-width: 767px) {
  .salon-info__content {
    width: 100%;
    display: block;
  }
}

.salon-info__logo {
  width: 160px;
}
@media (max-width: 767px) {
  .salon-info__logo {
    width: 100px;
    margin: 0 auto;
  }
}

.salon-info__body {
  margin-left: 5.5%;
}
@media (max-width: 767px) {
  .salon-info__body {
    margin-left: 0;
    margin-top: 20px;
  }
}

.salon-info__name {
  font-size: min(3.2rem, 3.125vw);
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .salon-info__name {
    font-size: 2.4rem;
  }
}

.salon-info__details {
  margin-top: 24px;
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .salon-info__details {
    font-size: 1.4rem;
  }
}

.salon-info__item {
  display: flex;
  margin-top: 0.7em;
}
.salon-info__item dt {
  width: 3em;
  display: flex;
  justify-content: space-between;
}

.salon-info__cta {
  width: 30.5%;
}
@media (max-width: 767px) {
  .salon-info__cta {
    width: 100%;
    margin-top: 20px;
  }
}

.salon-info__buttons a:nth-child(n+2) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .salon-info__buttons a {
    width: 100%;
  }
}

.salon-info__sns {
  margin-top: 16px;
}

.salon-info__sns__list li:nth-child(n+2) {
  margin-left: 4.5%;
}

/* SNS
------------------------------*/
.c-sns-list {
  display: flex;
}
.c-sns-list a {
  display: inline-block;
  width: 32px;
}
.c-sns-list a:nth-child(n+2) {
  margin-left: 16px;
}

/*------------------------------
cta
------------------------------*/
.c-cta__box {
  background: #F6F6F6;
  padding: 40px 7.15%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-cta__box {
    margin-top: 40px;
    padding: 40px 4.5%;
  }
}

.c-cta__message {
  font-size: min(2rem, 2.0833333333vw);
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-cta__message {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.c-cta__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-cta__buttons {
    display: block;
  }
}

.c-cta__button {
  display: inline-block;
  max-width: 460px;
  width: 48%;
  background: #fff;
  padding: 24px 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.c-cta__button strong {
  display: block;
  font-size: min(4rem, 3.90625vw);
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .c-cta__button {
    width: 100%;
  }
  .c-cta__button:nth-child(2) {
    margin-top: 40px;
  }
  .c-cta__button strong {
    font-size: 3.2rem;
  }
}

.c-cta__button--instagram strong {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cta__button--instagram strong::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_Instagram_bk.png) no-repeat center center/contain;
  width: 0.8em;
  aspect-ratio: 1/1;
  margin-right: 0.4em;
}

.c-cta__note {
  margin-top: 40px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #828282;
}
@media (max-width: 767px) {
  .c-cta__note {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}

/*------------------------------
header
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  height: 120px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 999px) {
  header {
    height: 74px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 6px 0;
  }
}

@media (max-width: 767px) {
  .header__inner {
    width: 100%;
  }
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: min(140px, 11.71875vw);
}
.header__logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .header__logo {
    width: 100px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: flex;
}

.header__item:nth-child(n+2) {
  margin-left: min(44px, 3.0555555556vw);
}
.header__item a {
  display: inline-block;
  font-size: min(1.6rem, 1.3020833333vw);
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}

.header__contact {
  margin-left: min(40px, 2.7777777778vw);
}
.header__contact a {
  display: inline-block;
  width: 12.25em;
  max-width: 100%;
  background: #2F2F2F;
  border-radius: 4px;
  font-size: min(1.6rem, 1.3020833333vw);
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  padding: 1em 0;
  color: #fff;
}
.header__contact a::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_link.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 32/32;
  margin-right: 0.75em;
}
@media (max-width: 767px) {
  .header__contact {
    margin-left: 0;
    margin-top: 40px;
  }
  .header__contact a {
    font-size: 1.6rem;
  }
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 32px;
  height: 4px;
  background: #2F2F2F;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 12px;
}

.drawer-icon__bar3 {
  top: 24px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: 100px 40px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-menu li:nth-child(n+2) {
  margin-top: 40px;
}
.drawer-menu li a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #2F2F2F;
  padding: 80px 0 16px;
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0 24px;
  }
}

.footer__banners {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__banners {
    display: block;
  }
}

.footer__banner {
  width: 46.5%;
}
@media (max-width: 767px) {
  .footer__banner {
    display: block;
    width: 100%;
  }
  .footer__banner:nth-child(2) {
    margin-top: 40px;
  }
}

.footer__block {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  color: #fff;
  padding: 2.5% 0;
}
@media (max-width: 999px) {
  .footer__block {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__block {
    padding: 7.5% 0 10%;
  }
}

.footer__menu {
  height: 4.1lh;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__menu li:nth-child(n+5) {
    margin-left: 5em;
  }
}
@media screen and (max-width: 1200px) {
  .footer__menu li:nth-child(n+5) {
    margin-left: 6%;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    height: 8.1lh;
    font-size: min(1.6rem, 4.1025641026vw);
  }
  .footer__menu li:nth-child(n) {
    margin-left: 0;
  }
  .footer__menu li:nth-child(n+9) {
    margin-left: 13%;
  }
}

.footer__cta {
  width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1% 0;
}
@media (max-width: 999px) {
  .footer__cta {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer__cta {
    width: 100%;
    margin-top: 7%;
  }
}

.footer__button a {
  color: #ccc;
  border: 1px solid #fff;
  background: transparent;
}
.footer__button a::after {
  background: #fff;
}
@media (max-width: 999px) {
  .footer__button:nth-child(2) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .footer__button a {
    width: 100%;
  }
}

.footer__app-title {
  font-size: 2.4rem;
  font-weight: 500;
}

.footer__app-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .footer__app-description {
    font-size: 1.4rem;
  }
}

.footer__app-buttons {
  display: flex;
}
@media (max-width: 999px) {
  .footer__app-buttons {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer__app-buttons {
    margin-top: 7%;
  }
}

.footer__app--mac {
  max-width: 310px;
  margin-right: 24px;
}

.footer__app--google {
  max-width: 270px;
}

.footer__info {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__info {
    display: block;
  }
}

.footer__logo {
  width: 128px;
}

.footer__address {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .footer__address {
    margin-left: 0;
    margin-top: 24px;
  }
}

.footer__sns {
  display: flex;
}
.footer__sns li:nth-child(n+2) {
  margin-left: 16px;
}
.footer__sns li img {
  height: 32px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 999px) {
  .footer__sns {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer__sns {
    justify-content: center;
    margin-top: 11%;
  }
}

.footer__copyright {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/*------------------------------
コラム一覧
------------------------------*/
.c-column {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-column {
    display: block;
  }
}

.c-column__thumbnail {
  width: 100%;
  aspect-ratio: 320/212;
}
.c-column__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-column__thumbnail {
    aspect-ratio: 320/192; /* sy */
  }
}

.c-column__content {
  padding: 16px;
}

.c-column__meta {
  display: flex;
  align-items: center;
}

.c-column__date {
  font-size: clamp(12px, 16 / var(--base_wid) * 100vw, 1.6rem);
  font-weight: 500;
  color: #828282;
}

.c-column__category {
  font-size: clamp(12px, 16 / var(--base_wid) * 100vw, 1.6rem);
  font-weight: 500;
  color: #fff;
  background: #828282;
  padding: 0.2em 0.3em;
  border-radius: 2px;
  margin-left: 1em;
}

.c-column__title {
  font-size: clamp(12px, 16 / var(--base_wid) * 100vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.5em;
  height: 2lh;
  overflow: hidden;
}

#ez-toc-container {
  width: 100%;
  background: transparent;
  border-left: none;
  border-right: none;
  box-shadow: none;
  border-color: #E8E8E8;
  padding: 20px 10px;
  padding-left: 0;
  margin-bottom: 2.6em;
}
#ez-toc-container .toggle {
  position: absolute;
  bottom: 10px;
  right: 20px;
  transform: rotate(180deg);
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../img/icon_arrow1.png) no-repeat center center/100%;
  transition: all 0.3s;
}
#ez-toc-container .toggle.act {
  transform: rotate(0deg);
}
#ez-toc-container .ezNav_title {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.15s;
}
#ez-toc-container .ezNav_title.act {
  opacity: 1;
}
#ez-toc-container a {
  font-size: 1.6rem;
  color: #828282;
}
#ez-toc-container .ez-toc-heading-level-2 > a {
  color: #2F2F2F;
}

.ez-toc-counter nav ul li a::before {
  content: counters(item, "-", decimal) ". ";
}

#ez-toc-container li, #ez-toc-container ul, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li {
  line-height: 2;
  text-indent: 0;
}
#ez-toc-container li::before, #ez-toc-container ul::before, #ez-toc-container ul li::before, div.ez-toc-widget-container::before, div.ez-toc-widget-container li::before {
  display: none;
}

.c-no__result {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}

/*------------------------------
anchor
------------------------------*/
.c-anc {
  scroll-margin-top: var(--header_h);
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}
/*# sourceMappingURL=common.css.map */