@charset "UTF-8";

/* ===============================================
  サイト全体で使用するスタイル
  共通のブレイクポイント：768px
=============================================== */


/* ===============================================
  変数
=============================================== */

:root {
  /* 余白 */
  --margin: 40px;
  --margin-xs: 10px;
  --margin-s: calc(var(--margin) / 2);
  --margin-l: calc(var(--margin) * 1.5);
  --margin-section: 100px;

  /* 文字サイズ */
  --font-xxl: 2.5rem; /* heading1 */
  --font-xl: 2.125rem; /* heading2 */
  --font-l: 1.5rem; /* heading3 */
  --font-m: 1.375rem; /* heading4 */
  --font-s: .85rem;
  --font-lead: 1.125rem;
  --font-xs: 12px;
  --font-caption: var(--font-xs);

  /* カラー */
  --color-flamingred: 236,98,86;
  --color-textblack: 40,40,40;
  --color-bgblack: 25,25,25;
  --color-gray: 213, 214, 216;
  --color-gray-light: 235, 235, 235;
  --color-gray-dark: 121, 121, 121;
  --color-border: 222, 222, 222;
  --color-link: 64, 98, 213;
  --color-shopify: 149, 191, 71;

  /* コンテンツ幅 */
  --aside: 300px;
  --contents-width-l: calc(1328px + var(--margin) * 2);
  --contents-width-m: calc(1140px + var(--margin) * 2);
  --contents-width-s: calc(860px + var(--margin) * 2);
  --contents-width-xs: calc(660px + var(--margin) * 2);

  /* ヘッダー高さ */
  --header-height: 140px;
}

@media (max-width: 768px) {
  :root {
    --margin: 20px;
    --margin-xs: 5px;
    --aside: 100%;
    --header-height: 96px;
  }
}


/* ===============================================
  リセット
=============================================== */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}
html {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(var(--color-textblack));
  font-family: 'Inter','Noto Sans JP', 'Helvetica Neue','Lucida Grande','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,'メイリオ',sans-serif;
  font-weight: 300;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: .1em;
  scroll-behavior: smooth;
}
html * {
  scroll-margin-top: var(--header-height);
}

p {
  margin-top: 0;
  margin-bottom: 0;
}
* + p {
  margin-top: 1.75em;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  display: inline-block;
}
hr {
  height: 0;
  margin-top: 1em;
  margin-bottom: 1em;
  border: 0;
  border-top: 1px solid #ccc;
}
a {
  color: rgb(var(--color-link));
  text-decoration: none;
}
a:focus,
a:hover {
  opacity: 0.5;
}
a,
button,
input,
textarea {
  transition: all .4s ease;
}
table {
  width: 100%;
}
ol,
ul {
  list-style: none;
}
li {
  /* text-align: left; */
  /* position: relative; */
}
picture {
  margin: 0;
  display: block;
}
* + picture {
  margin-top: 1em;
}
svg {
  vertical-align: bottom;
}
pre {
  white-space: pre-wrap;
}


/* ===============================================
  ブロック分割
=============================================== */

.gcol {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  gap: var(--margin);
  justify-content: flex-start;
  align-items: stretch;
}
* + .gcol {
  margin-top: var(--margin);
}

.gcol .col {
  width: 100%;
  margin: 0 !important;
  display: block;
  position: relative;
  list-style: none;
  box-sizing: border-box;
}
.gcol .col > :first-child {
  margin-top: 0 !important;
}
.gcol .col > :last-child {
  margin-bottom: 0 !important;
}

.gcol.align-left {
  justify-content: flex-start;
}
.gcol.valign-top {
  align-items: top;
}
.gcol.valign-middle {
  align-items: center;
}
.gcol.valign-bottom {
  align-items: flex-end;
}

/* ガター
------------------------------------- */
.gcol.space-none {
  gap: 0;
}
.gcol.space-xs {
  gap: var(--margin-xs);
}
.gcol.space-s {
  gap: var(--margin-s);
}
.gcol.space-l {
  gap: var(--margin-l);
}

/* 2カラム
------------------------------------- */
.gcol.split-2 > .col {
  width: calc((100% - var(--margin) )/2);
}
.gcol.split-2.space-none > .col {
  width: calc(100%/2);
}
.gcol.split-2.space-xs > .col {
  width: calc((100% - var(--margin-xs) )/2);
}
.gcol.split-2.space-s > .col {
  width: calc((100% - var(--margin-s) )/2);
}
.gcol.split-2.space-l > .col {
  width: calc((100% - var(--margin-l) )/2);
}

/* 3カラム
------------------------------------- */
.gcol.split-3 > .col {
  width: calc(( 100% - var(--margin)*2 )/3);
}
.gcol.split-3.space-none > .col {
  width: calc(100%/3);
}
.gcol.split-3.space-xs > .col {
  width: calc((100% - var(--margin-xs)*2 )/3);
}
.gcol.split-3.space-s > .col {
  width: calc((100% - var(--margin-s)*2 )/3);
}
.gcol.split-3.space-l > .col {
  width: calc((100% - var(--margin-l)*2 )/3);
}

/* 4カラム
------------------------------------- */
.gcol.split-4 > .col {
  width: calc(( 100% - var(--margin)*3 )/4);
}
.gcol.split-4.space-none > .col {
  width: calc(100%/4);
}
.gcol.split-4.space-xs > .col {
  width: calc((100% - var(--margin-xs)*3 )/4);
}
.gcol.split-4.space-s > .col {
  width: calc((100% - var(--margin-s)*3 )/4);
}
.gcol.split-4.space-l > .col {
  width: calc((100% - var(--margin-l)*3 )/4);
}

/* 5カラム
------------------------------------- */
.gcol.split-5 > .col {
  width: calc(( 100% - var(--margin)*4 )/5);
}
.gcol.split-5.space-none > .col {
  width: calc(100%/5);
}
.gcol.split-5.space-xs > .col {
  width: calc((100% - var(--margin-xs)*4 )/5);
}
.gcol.split-5.space-s > .col {
  width: calc((100% - var(--margin-s)*4 )/5);
}
.gcol.split-5.space-l > .col {
  width: calc((100% - var(--margin-l)*4 )/5);
}

/* 6カラム
------------------------------------- */
.gcol.split-6 > .col {
  width: calc(( 100% - var(--margin)*5 )/6);
}
.gcol.split-6.space-none > .col {
  width: calc(100%/6);
}
.gcol.split-6.space-xs > .col {
  width: calc((100% - var(--margin-xs)*5 )/6);
}
.gcol.split-6.space-s > .col {
  width: calc((100% - var(--margin-s)*5 )/6);
}
.gcol.split-6.space-l > .col {
  width: calc((100% - var(--margin-l)*5 )/6);
}

/* 2カラム - 左右違い
------------------------------------- */
[class*=" split-diff"].gcol > .col {
  width: calc(60% - var(--margin));
}
.gcol.split-diff-left > :nth-child(2n-1),
.gcol.split-diff-right > :nth-child(2n){
  width: 40% !important;
}
[class*=" split-diff"].gcol.space-none > .col {
  width: 60%;
}
[class*=" split-diff"].gcol.space-xs > .col {
  width: calc(60% - var(--margin-xs));
}
[class*=" split-diff"].gcol.space-s > .col {
  width: calc(60% - var(--margin-s));
}
[class*=" split-diff"].gcol.space-l > .col {
  width: calc(60% - var(--margin-l));
}

/* スマホ
------------------------------------- */
@media (max-width: 768px) {
  .gcol {
    /*gap: var(--margin) !important;*/
    justify-content: flex-start;
  }
  .gcol.space-none {
    gap: 0 !important;
  }
  .gcol.reverse {
    flex-direction: column-reverse;
  }
  .gcol:not([class*=" hold"]) > .col {
    width: 100% !important;
  }

  /* スマホ - 2カラム
  ------------------------------------- */
  .gcol.hold-2 > .col {
    width: calc((100% - var(--margin) )/2) !important;
  }
  .gcol.hold-2.space-none > .col {
    width: calc(100%/2) !important;
  }
  .gcol.hold-2.space-xs > .col {
    width: calc((100% - var(--margin-xs) )/2) !important;
  }
  .gcol.hold-2.space-s > .col {
    width: calc((100% - var(--margin-s) )/2) !important;
  }
  .gcol.hold-2.space-l > .col {
    width: calc((100% - var(--margin-l) )/2) !important;
  }

  /* スマホ - 3カラム
  ------------------------------------- */
  .gcol.hold-3 > .col {
    width: calc(( 100% - var(--margin)*2 )/3) !important;
  }
  .gcol.hold-3.space-none > .col {
    width: calc(100%/3) !important;
  }
  .gcol.hold-3.space-xs > .col {
    width: calc((100% - var(--margin-xs)*2 )/3) !important;
  }
  .gcol.hold-3.space-s > .col {
    width: calc((100% - var(--margin-s)*2 )/3) !important;
  }
  .gcol.hold-3.space-l > .col {
    width: calc((100% - var(--margin-l)*2 )/3) !important;
  }

  /* スマホ - 4カラム
  ------------------------------------- */
  .gcol.hold-4 > .col {
    width: calc(( 100% - var(--margin)*3 )/4) !important;
  }
  .gcol.hold-4.space-none > .col {
    width: calc(100%/4) !important;
  }
  .gcol.hold-4.space-xs > .col {
    width: calc((100% - var(--margin-xs)*3 )/4) !important;
  }
  .gcol.hold-4.space-s > .col {
    width: calc((100% - var(--margin-s)*3 )/4) !important;
  }
  .gcol.hold-4.space-l >.col {
    width: calc((100% - var(--margin-l)*3 )/4) !important;
  }

  /* スマホ - 5カラム
  ------------------------------------- */
  .gcol.hold-5 > .col {
    width: calc(( 100% - var(--margin)*4 )/5) !important;
  }
  .gcol.hold-5.space-none > .col {
    width: calc(100%/5) !important;
  }
  .gcol.hold-5.space-xs > .col {
    width: calc((100% - var(--margin-xs)*4 )/5) !important;
  }
  .gcol.hold-5.space-s > .col {
    width: calc((100% - var(--margin-s)*4 )/5) !important;
  }
  .gcol.hold-5.space-l > .col {
    width: calc((100% - var(--margin-l)*4 )/5) !important;
  }

  /* スマホ - 6カラム
  ------------------------------------- */
  .gcol.hold-6 > .col {
    width: calc(( 100% - var(--margin)*5 )/6) !important;
  }
  .gcol.hold-6.space-none > .col {
    width: calc(100%/6) !important;
  }
  .gcol.hold-6.space-xs > .col {
    width: calc((100% - var(--margin-xs)*5 )/6) !important;
  }
  .gcol.hold-6.space-s > .col {
    width: calc((100% - var(--margin-s)*5 )/6) !important;
  }
  .gcol.hold-6.space-l > .col {
    width: calc((100% - var(--margin-l)*5 )/6) !important;
  }
}


/* ===============================================
  コンテナー
=============================================== */
[class^="contents-"] > :first-child {
  margin-top: 0;
}
[class^="contents-"] > :last-child {
  margin-bottom: 0;
}

.contents-wrapper {
  min-height: 100vh;
  position: relative;
}

/* 投稿ページメインエリア
------------------------------------- */
.contents-main > .inner {
  width: 100%;
  max-width: var(--contents-width-m);
  margin: 0 auto;
  padding: var(--margin-l) var(--margin);
  display: grid;
  grid-template-columns: minmax( auto, calc(1280px - var(--aside)) ) var(--aside);
  gap: var(--margin-l);
}
.contents-main > .inner > .contents-header {
  grid-column: 1 / 3;
}
.contents-main > .inner > .main {
  grid-column: 1 / 2;
}
.contents-main > .inner > .main.full {
  grid-column: 1 / 3;
  max-width: none;
}
.contents-main > .inner > .aside {
  grid-column: 2 / 3;
  width: var(--aside);
}

@media (max-width: 768px) {
  .contents-main > .inner {
    display: block;
  }
  .contents-main > .inner > .contents-header {
    grid-column: auto;
  }
  .contents-main > .inner > .main {
    grid-column: auto;
  }
  .contents-main > .inner > .main.full {
    grid-column: auto;
  }
  .contents-main > .inner > .aside {
    grid-column: auto;
    width: 100%;
  }
}

/* セクション
------------------------------------- */
.section {
  width: 100%;
  margin: 0 auto;
}
.section + .section {
  padding-top: var(--margin-section);
}
.section:last-child {
  padding-bottom: var(--margin-section);
}
.aside .section + .section {
  padding-top: 0;
  margin-top: var(--margin);
}

/* スマホ */
@media (max-width: 768px) {
  .aside .section + .section {
    margin-top: var(--margin-l);
  }
}

/* セクション内
------------------------------------- */
:where(.section, [class^="section-"]) > :first-child {
  margin-top: 0;
}
:where(.section, [class^="section-"]) > :last-child {
  margin-bottom: 0;
}

.section-block {
  width: 100%;
  max-width: var(--contents-width-m);
  padding-left: var(--margin);
  padding-right: var(--margin);
  margin: 0 auto;
}

:where(.section-block) + .section-block {
  margin-top: var(--margin);
}
.article-area .section-block,
.aside .section-block {
  padding-left: 0;
  padding-right: 0;
}
.aside :where(.section-block) + .section-block {
  margin-top: var(--margin-xs);
}

.section.size-l > .section-block ,
.section-block.size-l {
  max-width: var(--contents-width-l);
}
.section.size-m > .section-block ,
.section-block.size-m {
  max-width: var(--contents-width-m);
}
.section.size-s > *,
.section-block.size-s {
  max-width: var(--contents-width-s);
}
.section.size-xs > *,
.section-block.size-xs {
  max-width: var(--contents-width-xs);
}


/* ===============================================
  汎用スタイル
=============================================== */

/* 余白 - margin
------------------------------------- */
.margin-none {
  margin-top: 0 !important;
}
.margin-xs {
  margin-top: var(--margin-xs) !important;
}
.margin-s {
  margin-top: var(--margin-s) !important;
}
.margin-m {
  margin-top: var(--margin) !important;
}
.margin-l {
  margin-top: var(--margin-l) !important;
}
.margin-xl {
  margin-top: calc( var(--margin) * 3) !important;
}

/* 余白 - padding
------------------------------------- */
.padding-none {
  padding-top: 0 !important;
}
.padding-xs {
  padding-top: var(--margin-xs) !important;
}
.padding-s {
  padding-top: var(--margin-s) !important;
}
.padding-m {
  padding-top: var(--margin) !important;
}
.padding-l {
  padding-top: var(--margin-l) !important;
}
.padding-xl {
  padding-top: calc( var(--margin) * 3) !important;
}

/* テキスト揃え
------------------------------------- */
.align-left {
  text-align: left !important;
}
.align-center {
  text-align: center !important;
}
.align-right {
  text-align: right!important;
}

/* テキスト装飾
------------------------------------- */
.lead {
  font-size: var(--font-m);
  font-weight: bold;
}
.lead.size-s {
  font-size: 1rem;
}
.lead.heading-top {
  font-size: 1rem;
}
.lead .icon {
  width: 30px;
  height: 30px;
  margin-right: .5em;
  vertical-align: middle;
  background-color: rgb(var(--color-bgblack));
  display: inline-block;
  position: relative;
}

.lead .icon:after {
  width: 20px;
  position: absolute;
  line-height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.note {
  font-size: var(--font-caption);
}
* + .none {
  margin-top: 1em;
}

.strong {
  font-weight: bolder;
}

.bigger {
  font-size: 150%;
}

/* 動画
------------------------------------- */
.video {
  position: relative;
  display: block;
}

.video > video,
.video > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.video:after {
  content: '';
  width: 100%;
  padding-top: 56.25%;
  display: block;
}

/* backgroud video */
.video.type-bg {
  width: 150vw;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.video.type-bg:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #5A545A;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: .8;
}
@media (max-width: 768px) {
  .video.type-bg {
    width: 177vh;
    height: 100vh;
  }
}

.movie {
  position: relative;
}
.movie:after {
  content: '';
  width: 100%;
  padding-top: 56.25%;
  display: block;
}
.movie > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .view-sp {
    display: none !important;
  }
  .view-sp + * {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .hold-center {
    text-align: center !important;
  }
  .view-pc {
    display: none !important;
  }
}

/* スクロール
------------------------------------- */
.scroll-y {
  height: 20em;
  padding: 1em;
  border: 1px solid #ccc;
  overflow-y: scroll;
  position: relative;
}

.scroll-x > :first-child,
.scroll-y > :first-child {
  margin-bottom: 0 !important;
}

.scroll-x > :last-child,
.scroll-y > :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .scroll-x {
    white-space: nowrap;
    overflow-x: scroll;
  }
  .scroll-x > * {
    width: 150vw;	
  }
}

/* サムネイル（背景）
------------------------------------- */
.thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.thumbnail:after {
  content: '';
  width: 100%;
  padding-top: 75%;
  display: block;
}
.thumbnail > img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* 見出し
------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  line-height: 1.66;
}
.heading {
  position: relative;
  font-weight: 700;
}
.heading > a {
  text-decoration: none;
}
* + .heading {
  margin-top: 2em;
}
.lead + .heading {
  margin-top: .5em;
}

/* サイズバリエーション */
.heading.size-xxl {
  font-size: var(--font-xxl);
  line-height: 1.375;
}
.heading.size-xxl .bigger {
  font-size: 125%;
}
.heading.size-xl {
  font-size: var(--font-xl);
  line-height: 1.4;
}
.heading.size-l {
  font-size: var(--font-l);
  line-height: 1.43;
}
.heading.size-m {
  font-size: var(--font-m);
  line-height: 1.6;
}
.heading.size-s {
  font-size: 1rem;
}
.heading.size-lead{
  font-size: var(--font-lead);
}

@media (max-width: 768px) {
  .heading {
    line-height: 1.6;
  }
}

/* type-fill */
.heading.type-fill {
  padding: .5em 1em;
  color: #fff;
  background-color: rgb(var(--color-textblack));
  border-radius: 5px;
}

/* icon */
.heading .icon {
  width: 3.5em;
  height: 3.5em;
  margin-right: 1em;
  vertical-align: middle;
  border-radius: 10em;
  background-color: rgb(var(--color-textblack));
  display: inline-block;
  position: relative;
}
.heading .icon:before {
  width: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: inline-block;
}
.heading .icon.type-mail:before {
  content: url( 'data:image/svg+xml;utf-8,<svg fill="%23ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 15"><path d="M19.4,0.2H0.6C0.3,0.2,0,0.5,0,0.8V2l10,6.7L20,2V0.8C20,0.5,19.7,0.2,19.4,0.2z M0,4.5v7.9c0,1.3,1.1,2.4,2.4,2.4c0,0,0,0,0,0h15.2c1.3,0,2.4-1.1,2.4-2.4c0,0,0,0,0,0V4.5l-10,6.7L0,4.5z"/></svg>' );
}

/* underline */
.heading.type-underline {
  padding-top: .5em;
  padding-bottom: .5em;
}
.heading.type-underline:after {
  content: '';
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(var(--color-textblack),1) 0%, rgba(var(--color-textblack),1) 12%, rgba(var(--color-gray-light),1) 12%, rgba(var(--color-gray-light),1) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

/* 画像装飾
------------------------------------- */
picture.type-round {
  border-radius: 1em;
  overflow: hidden;
}


/* ===============================================
  リスト
=============================================== */
.list {
  margin-top: 1.75em;
}
.list .list {
  margin-top: .5em;
  margin-bottom: .5em;
  margin-left: 2em;
}

/* ディスクタイプ
------------------------------------- */
.list.type-disc > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list.type-disc > li:before {
  content: '';
  width: 0;
  height: 0;
  border-radius: 50%;
  border: .2em solid;
  display: inline-block;
  margin-right: .7em;
  vertical-align: .2em;
}

/* 数字タイプ
------------------------------------- */
.list.type-num {
  list-style-type: decimal;
  list-style-position: outside;
  /* counter-reset: count; */
}
.list.type-num > li {
  margin-left: 1.5em;
  /* padding-left: 1.4em; */
  /* text-indent: -1.4em; */
}
.list.type-num > li:before {
  /* counter-increment: count; */
  /* content: counter(count)'. '; */
}

/* 括弧数字タイプ
------------------------------------- */
.list.type-bracket {
  counter-reset: count;
}
.list.type-bracket > li {
  padding-left: 0;
  text-indent: 0;
}
.list.type-bracket > li:before {
  counter-increment: count;
  content: '（'counter(count)'） ';
}

/* type-line
------------------------------------- */
.list.type-line {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-s);
}
.list.type-line > li {
  position: relative;
}
.list.type-line > li:after {
  content: '';
  height: 100%;
  border-left: 1px solid #ccc;
  position: absolute;
  top: 0;
  right: calc( var(--margin-s) / -2);
}
.list.type-line > :last-child:after {
  display: none;
}

/* type-split
------------------------------------- */
.list.type-split {
  display: flex;
  flex-wrap: wrap;
}

/* type-table
------------------------------------- */
.list.type-table li {
  display: flex;
}
.list.type-table li + li {
  margin-top: var(--margin-s);
}
.list.type-table li > * {
  margin: 0;
  padding: 1em;
  background-color: rgb(var(--color-gray-light));
}
.list.type-table li .heading {
  width: 12em;
  color: #fff;
  background-color: rgb(var(--color-textblack));
}
.list.type-table li > *:not(.heading) {
  font-size: var(--font-xs);
  flex: 1;
}

@media (max-width: 768px) {
  .list.type-table:not(.hold) li {
    flex-wrap: wrap;
  }
  .list.type-table:not(.hold) li > * {
    width: 100%;
  }
}


/* ===============================================
  ボタン
=============================================== */
.btn,
button {
  min-width: 6em;
  padding: 1em 1.2em;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #222;
  border: 1px solid #222;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  transition: all .6s;
}
.btn {
  border-radius: 10px;
  border-color: rgb(var(--color-bgblack));
  background-color: rgb(var(--color-bgblack));
}

.btn:focus,
.btn:hover,
button:focus,
button:hover {
  opacity: 0.5;
  position: relative;
}
.btn + .btn {
  margin-left: 1em;
}

@media (max-width: 768px) {
  .btn:not(.hold) {
    width: 100%;
  }
  .btn:not(.hold) + .btn:not(.hold) {
    margin-left: 0;
    margin-top: 1em;
  }
  .btn .description {
    display: none;
  }
}

/* size
------------------------------------- */
.btn.size-xs {
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 12px;
  display: inline-block !important;
}
.btn.size-s {
  min-width: auto;
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 1rem;
}
.btn.size-l {
  width: 100%;
  font-weight: 500;
  font-size: 1.1em;
  padding-top: 2em;
  padding-bottom: 2em;
}
.btn.size-full {
  width: 100%;
}

/* primary
------------------------------------- */
.btn.type-primary {
  background-color: rgb(var(--color-flamingred));
  border-color: rgb(var(--color-flamingred));
}

.billboard .btn.type-primary {
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  font-weight: 500;
  border: none;
  background: linear-gradient(90deg, rgba(var(--color-flamingred),1) 0%, rgba(234,95,96,1) 25%, rgba(229,83,128,1) 100%);
}

/* style
------------------------------------- */
.btn.type-reverse,
.btn.type-primary.reverse {
  color: rgb(var(--color-flamingred));
  background: #fff;
  border-color: #fff;
}
.btn.type-outline {
  color: rgb(var(--color-bgblack));
  background-color: transparent;
}
.btn.type-primary.type-outline {
  color: rgb(var(--color-flamingred));
  border-color: rgb(var(--color-flamingred));
  background-color: #fff;
}
.btn.type-rounded {
  border-radius: 1000px;
}

/* black
------------------------------------- */
.btn.type-black {
  color: #fff;
  background-color: rgb(var(--color-bgblack));
  border-color: rgb(var(--color-bgblack));
}

/* 矢印タイプ
------------------------------------- */
a:not(.btn).type-arrow {
  padding-bottom: .25em;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

a.type-arrow:after {
  content: url( 'data:image/svg+xml;utf-8,<svg fill="%23ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 10"><path d="M14,3.2H0.5C0.2,3.2,0,3.5,0,3.7c0,0,0,0,0,0v2.5c0,0.3,0.2,0.5,0.5,0.5c0,0,0,0,0,0H14v2.1c0,0.6,0.5,1.1,1.1,1.1c0.3,0,0.6-0.1,0.8-0.3l3.8-3.8c0.4-0.4,0.4-1.1,0-1.5l-3.8-3.8c-0.4-0.4-1.1-0.4-1.5,0C14.1,0.6,14,0.9,14,1.2L14,3.2z"/></svg>' );
  width: 1.25em;
  margin-left: 2em;
  display: inline-block;
}
a.btn.type-arrow:after {
  opacity: .5;
}

/* 無効
------------------------------------- */
.btn.disabled,
.btn.disabled:focus,
.btn.disabled:hover,
.form.disabled,
.form.type-select.disabled,
button:disabled {
  color: #ccc!important;
  background-color: #eee!important;
  border-color: #ccc!important;
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(0,0,0,0)!important;
  -moz-box-shadow: 0 0 0 0 rgba(0,0,0,0)!important;
  -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0)!important;
}
.disabled::-webkit-input-placeholder {
  color: #ccc!important;
}

/* ボタン周りのレイアウト
------------------------------------- */
.btn > .description {
  margin-bottom: 1em;
  font-size: var(--font-xs);
  display: block;
}


/* ===============================================
  テーブル
=============================================== */

.table {
  border-collapse: separate;
  border-spacing: 0;
}
* + .table {
  margin-top: 1.75em;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
  text-align: left;
  vertical-align: middle;
}
.table > tbody > tr > td > :first-child,
.table > tbody > tr > th > :first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  * + .table:not(.hold) {
    margin-top: 1em;
  }
  .table:not(.hold),
  .table:not(.hold) > tbody,
  .table:not(.hold) > tbody > tr,
  .table:not(.hold) > tbody > tr > td,
  .table:not(.hold) > tbody > tr > th,
  .table:not(.hold) > thead,
  .table:not(.hold) > thead > tr,
  .table:not(.hold) > thead > tr > td,
  .table:not(.hold) > thead > tr > th {
    width: 100% !important;
    display: block;
  }
  .table:not(.hold) > tbody > tr,
  .table > tbody > tr > [class^="hold-"] {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -webkit-flex-direction:row;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  [class*=" hold-"].table > tbody > tr {
    font-size: 0;
  }
  [class*=" hold-"].table > tbody > tr > td {
    font-size: 1rem;
    display: inline-block;
  }
  .table > tbody > tr > [class^="hold-"] > * {
    width: 100%;
    margin: 0;
  }
  .table.hold-half > tbody > tr > td,
  .table > tbody > tr > .hold-half > * {
    margin: 0;
    width: 50% !important;
    font-size: 1rem;
  }
  .table.hold-third > tbody > tr > td {
    width: 33.333% !important;
  }
}

@media (max-width: 768px) {
  /* 横スクロール */
  .table-wrap {
    width: 100%;
    max-height: 90vh;
    overflow: auto;
  }
  .table-wrap > table {
    width: var(--contents-width-s);
  }
}

/* セル等間隔 */
.table.fixed {
  table-layout: fixed;
}

/* type-line
------------------------------------- */
.table.type-line th,
.table.type-line td {
  border-bottom: 1px solid rgb(var(--color-border));
}

@media (max-width: 768px) {
  .table.type-line:not(.hold) > tbody > tr {
    padding-top: 0;
  }
  .table.type-line:not(.hold) td {
    border-bottom: 0;
  }
}


/*  type-grid
------------------------------------- */
.table.type-grid {
  border-collapse: separate; /* stickyでborderもスクロールするためseparate */
  border-top: 1px solid rgb(var(--color-border));
  border-left: 1px solid rgb(var(--color-border));
}
.table.type-grid th {
  position: sticky;
  top:0;
  z-index: 1;
  background-color: #fff;
}

.table.type-grid th,
.table.type-grid td {
  padding: var(--margin-xs);
  border-bottom: 1px solid rgb(var(--color-border));
  border-right: 1px solid rgb(var(--color-border));
  vertical-align: middle;
}

@media (max-width: 768px) {
  .table.type-grid:not(.hold) thead {
    display: none;
  }
  .table.type-grid:not(.hold) tr {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .table.type-grid tr:after {
    top: 0;
  }
}


/* ==================================================
  アコーディオン
================================================== */
.accordion-trigger {
  cursor: pointer;
}
.accordion-trigger + .accordion-content {
  height: 0;
  padding: 0;
  transition: 0.3s ease;
  overflow: hidden;
}
.accordion-trigger.active + .accordion-content {
  height: auto;
  padding-top: 1em;
}


/* ===============================================
  パンくず
=============================================== */
.nav-breadcrumbs {
  overflow-x: hidden;
  white-space: nowrap;
}
.contents-footer .nav-breadcrumbs {
  padding: var(--margin-xs) var(--margin-s);
}

.breadcrumbs {
  font-size: var(--font-xs);
  flex-wrap: nowrap !important;
  gap: .5em;
}
.breadcrumbs > :last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs li:after {
  content: '／';
  margin-left: .5em;
  display: inline-block;
  opacity: .76;
  position: relative;
}

.breadcrumbs > :last-child::after {
  display: none;
}

.breadcrumbs a {
  color: rgba(var(--color-primary-dark), 76);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  opacity: 1;
}


/* ===============================================
  ページネーション
=============================================== */
.nav-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--margin-s);
}
.nav-pagination > * {
  margin: 0;
  text-align: center;
}

.nav-pagination .type-arrow {
  width: 2.5em;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
.nav-pagination .type-arrow:before {
  content: url( 'data:image/svg+xml;utf-8,<svg fill="%23272937" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 12"><path d="M1.7,0L0.3,1.4L4.9,6l-4.6,4.6L1.7,12l6-6L1.7,0z"/></svg>' );
  width: .35em;
  line-height: 0;
  display: inline;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 1;
}
.nav-pagination .type-arrow.prev::before {
  transform: translate(-50%,-50%) rotate(180deg);
}
.nav-pagination .type-arrow.disabled {
  pointer-events: none;
}
.nav-pagination .type-arrow.disabled:before {
  content: url( 'data:image/svg+xml;utf-8,<svg fill="%23c4c5c7" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 12"><path d="M1.7,0L0.3,1.4L4.9,6l-4.6,4.6L1.7,12l6-6L1.7,0z"/></svg>' );
}


/* ===============================================
  記事一覧
=============================================== */
.article-list a {
  color: rgb(var(--color-textblack));
}
.article-list a:hover {
  opacity: 1;
}
.article-list .article > a:hover {
  color: rgb(var(--color-textblack));
  opacity: .5;
}

.article-list + .article-list {
  margin-top: var(--margin-l);
}

.article-list .article {
  position: relative;
}

.article-list .article > a {
  display: block;
}
.article-list .article .thumbnail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.article-list .article .article-title {
  margin-top: var(--margin-xs);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.article-list .article .date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #282828;
}

.article-list .article .article-info > * {
  margin: 0;
}

.article-list .article .article-info,
.article-list .article .article-info > * + * {
  margin-top: var(--margin-xs);
}

.article-list .article .article-info .category-list,
.article-list .article .article-info .date {
  font-size: var(--font-xs);
  line-height: 1;
}

.article-list .article .article-info .date.type-update::before {
  content: 'RENEWAL';
  margin-right: .5em;
  padding: .2em .4em;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  background-color: rgb(var(--color-textblack));
  display: inline-block;
  border-radius: 4px;
}

.article-list .article .article-info .category-list {
  margin-top: .5em;
  color: #777;
}
.article-list .article .article-info .category-list li {
  padding: 0;
  font-weight: 500;
}
.article-list .article .article-info .category-list li + li::before {
  content: '/';
  display: inline-block;
  margin-left: .25em;
  margin-right: .5em;
}

.article-list .article .description {
  display: none;
  margin-top: .25em;
  font-size: .875rem;
}

.article-list .article .tag-list {
  display: none;
}

/* vertical
------------------------------------- */
.article-list.type-vertical .article {
  margin-top: var(--margin-xs);
}

.article-list.type-vertical .article > a {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: max-content 1fr;
  gap: .5em 1em;
  align-items: flex-start;
  justify-content: space-between;
}

.article-list.type-vertical .article .thumbnail {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.article-list.type-vertical .article .article-info {
  display: flex;
  align-items: center;
  gap: .5em;
  margin: 0;
  letter-spacing: 0;
}
.article-list.type-vertical .article .article-title,
.article-list.type-vertical .article .category-list {
  margin-top: 0;
}


@media (max-width: 768px) {
  .article-list {
    font-size: var(--font-xs);
  }
  .article-list.type-vertical .article .article-info {
    justify-content: space-between;
  }
}


/* ===============================================
  フォーム
=============================================== */

input {
  padding: .5em .75em;
  font-size: 1em;
  border: 1px solid rgba(var(--color-textblack),.8);
  border-radius: 0;
  appearance: none;
}
textarea {
  width: 100%;
  height: 8em;
  resize: vertical;
  display: block !important;
  font-size: 1em;
  border: 1px solid rgba(var(--color-textblack),.8);
  border-radius: 0;
  appearance: none;
}
select {
  padding: .5em .75em;
  font-size: 1em;
  border: 1px solid rgba(var(--color-textblack),.8);
  border-radius: 0;
  appearance: none;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

input:not([type="radio"]):focus,
input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  outline: 0;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  font-weight: 300;
}

input:disabled,
textarea:disabled {
  background-color: #eee;
}

input[type="button"],
input[type="submit"],
input[type="file"] {
  cursor: pointer;
}


.form {
  display: inline-block;
}

.form > * {
  margin-top: 0 !important;
  vertical-align: middle;
}

.form.type-input,
.form.type-select,
.form.type-textarea {
  display: block;
  width: 100%;
  padding: .5em .75em;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid rgba(var(--color-textblack),.8);
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Inter','Noto Sans JP', 'Helvetica Neue','Lucida Grande','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,'メイリオ',sans-serif;
}
.form.type-select {
  padding-right: 1.8em;
}

/* selectには擬似要素を指定できないので、囲みに強引に表示 */
span:has(> select) {
  position: relative;
}
span:has(> select)::after {
  content: url( 'data:image/svg+xml;utf-8,<svg fill="%231C1D26" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M12,1.7l-1.4-1.4L6,4.9L1.4,0.3L0,1.7l6,6L12,1.7z"/></svg>' );
  display: block;
  width: .5em;
  height: .5em;
  line-height: 0;
  position: absolute;
  top: 1em;
  right: .7em;
}

.form.type-textarea {
  line-height: 1.75;
}
.aside .form.type-textarea {
  height: 5em;
}

.form.type-label {
  padding: 0;
  font-size: var(--font-s);
  line-height: 1.4;
  font-weight: 500;
  display: block;
}
span.form.type-label {
  display: inline;
}
.form.type-label.required:after {
	content: '*';
  margin-left: .2em;
	color: rgb(var(--color-flamingred));
}

/* フォームグループ
------------------------------------- */
.form-check {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  gap: 1em;
}
.form-check > * {
  flex: 0 0 100%;
  margin: 0;
}
.lead + .form-check {
  margin-top: var(--margin-s);
}

.form-group {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: .25em;
  position: relative;
}
.form-group > * {
  flex: 0 0 100%;
  margin: 0;
}
.form-group .form.size-auto {
  flex: 1;
}
.form-group .btn {
  margin-top: 0;
}

.form-group.align-center {
  justify-content: center;
}

.form.type-label + .form-group {
  margin-top: .5em;
}

/* 半サイズにして横並び */
.form-half {
  flex: 1 1 calc( 50% - var(--margin-s)/2 );
}

/* 横並び */
.form-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1em;
}

/* 縦並び */
.form-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* チェックボックス・ラジオボタン
------------------------------------- */
.form.type-checkbox,
.form.type-radio {
  font-size: 1rem;
}

.form.type-checkbox input,
.form.type-radio input {
  opacity: 0;
  position: absolute;
}

.form.type-checkbox [class*="label"],
.form.type-radio [class*="label"] {
  padding-left: 2em;
  line-height: 2;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.form.type-checkbox [class*="label"]:before,
.form.type-radio [class*="label"]:before {
  content: '';
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(var(--color-textblack),.8);
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.form.type-checkbox :checked + [class*="label"]:before,
.form.type-radio :checked + [class*="label"]:before {
  background-color: rgb(var(--color-flamingred));
  box-shadow: 0 0 0 3px #fff inset;
}
.form.type-radio [class*="label"]:before {
  border-radius: 50%;
}

/* pre
------------------------------------- */
.form.type-pre {
  width: 100%;
  min-height: 1em;
  padding: 0.5em 1em;
  background-color: #eee;
}

/* スパム対策
hidden要素がチェックされたら送信ボタン無効化
------------------------------------- */
input[name="mail_flag"] {
  display: none;
}
input[name="mail_flag"]:checked + input[type="submit"] {
  pointer-events: none !important;
  display: none;
}

/* 期限切れ
------------------------------------- */
.expired .btn,
.expired .btn:focus,
.expired .btn:hover,
.expired .form:not(.type-label),
.expired .form.type-select,
.expired .form.type-checkbox > .label:before,
.expired .form.type-radio > .label:before {
	color: rgb(var(--color-gray))!important;
	background-color: rgb(var(--color-gray-light))!important;
	border-color: rgb(var(--color-border)) !important;
	opacity: 1;
	pointer-events: none;
	box-shadow: 0 0 0 0 rgba(0,0,0,0)!important;
	-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0)!important;
	-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0)!important;
}

.expired .form.type-label {
  color: rgb(var(--color-gray));
  pointer-events: none;
}

.expired .form.type-checkbox,
.expired .form.type-radio {
  background-color: transparent !important;
}

/* ===============================================
  ContactForm7
  プラグインのデフォルトスタイル上書き
=============================================== */

/* 横並び項目の間隔調整 */
.wpcf7 .wpcf7-list-item {
  margin: 0;
}

/* 送信メッセージ */
div.wpcf7 form .wpcf7-response-output {
  margin: var(--margin-xs) 0 0;
  border: none;
  color: rgb(var(--color-flamingred));
  text-align: center;
  font-size: var(--font-s);
  font-weight: bold;
}
/* 送信完了時 */
div.wpcf7 form.sent .wpcf7-response-output {
  color: rgb(var(--color-textblack));
}

/* スピナー：位置とデザイン調整 */
.wpcf7 .wpcf7-spinner {
  display: none;
  margin: var(--margin-xs) auto 0;
  background-color: transparent;
  opacity: .7;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(var(--color-textblack));
}
.wpcf7 .wpcf7-spinner::before {
  background-color: rgb(var(--color-textblack));
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
	transform-origin: 9px 9px;
  animation-duration: 1400ms;
}
form.submitting .wpcf7-spinner {
  display: block;
}

/* 項目ごとのエラーメッセージ */
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: .35em;
  font-size: var(--font-caption);
}
