@charset "UTF-8";
/*
	Theme Name: 書家森山 サイトテーマ
	Version: 1.0.0
	Author: Le-in.Inc
*/
/* 『style.scss』：全ページ共通クラス用Scssファイル
===================================================
**「ファイル概要」
	・全体のCSS設計や、全ページに共通して登場するクラスへの割り当てを行います。
		※ヘッダー、フッター、下層ページの冒頭など
**
====================================================== */
/* クラス名について
===================================================
**
	・クラス名命名規則は基本的にBEM（Block Element Modifier）を採用しています。
	・クラス名は接頭語をわかりやすいそのセクションの意味を表現する単語とし、以降はそのセクションの構造的意味合いの単語とします。
		※TOPページに登場するクラス名のみ、すべてのクラス名の冒頭に"front"を付与しています。例えばトップページと下層ページで同じ系統の記事一覧を表示する場合でも、レイアウトが異なる場合があるからです。
	・シングルクラス方式を採用しています。1つのタグに対して付与するクラス名は原則1つとしていますが、状況に応じて複数付与する場合もあります。
		※例：同様の並びの兄弟要素の末尾要素のみ、間隔を広げるために末尾の要素に2つ目のクラスを付与するなど。
**
====================================================== */
/* 『ブレイクポイント』
===================================================
	**
	ブレイクポイントは以下の通り３段階とする。
	・パソコン：1040px～
	・タブレット：769px～1039px
	・スマホ：0～768px
	※ブレイクポイント記述方法は、
		@media screen and (max-width: 1039px) {}
		@media screen and (max-width: 768px) {}
	とする。
	**
==================================================== */
.bp-sp_i, .bp-sp_ib, .bp-sp_b {
  display: none;
}

@media screen and (max-width: 767px) {
  .bp-pc {
    display: none;
  }
  .bp-sp_i {
    display: inline;
  }
  .bp-sp_ib {
    display: inline-block;
  }
  .bp-sp_b {
    display: block;
  }
}
/* 『基本要素のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	”ブラウザ毎のデフォルト設定をリセット”。
	余白関係：0にする
	リストスタイルの余白無し、接頭マーク無し
	画像ファイル：親要素の幅を超えない幅
	画像の下の空白を埋めるようにする
	**
==================================================== */
/* マージン初期化&ボックスサイジング */
body, h1, h2, h3, h4, h5, h6,
p, div, figure, ul, ol, li,
dl, dt, dd,
article, a, nav, section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リストスタイルのリセット */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* 画像ファイル：幅を大きく */
img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 1000px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
/* 『フォーム部品のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	ブラウザ毎のデフォルト設定をリセット。
	・文字色とフォント：body要素を引き継ぐようにする
	・余白関係：0にする
	・枠線：無しにする
	・背景色：無しにする
	**
==================================================== */
/* 初期形状のリセット */
input:not([type=radio], [type=submit]), select, button, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: 0;
  background: none;
}

/* マウスオンでカーソル表示 */
input[type=submit],
input[type=button],
button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 0;
  background-color: transparent;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

/* 連絡先タグの文字スタイル */
address {
  font-style: normal;
}

/* テーブルタグのスタイル */
table {
  border-collapse: collapse;
  width: 100%;
}

/* フィールドセットタグのスタイル */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

/* ===================================================
	※※本サイトの採用フォントについて※※
	デフォルトはWEBフォントGoogleFontsのゴシック体の「NotoSansJ」

	《GoogleFonts》
	NotoSansJP(light:300,regular:400,medium:500,bold:700)
==================================================== */
/* ===================================================
	基本要素のCSS設定
==================================================== */
:root {
  --default-font-size: 1.4rem;
  --html-line-height: calc(25 / 14);
  --container-width: calc(100% * 740 / 910);
}

html {
  font-size: 62.5%;
}

body {
  padding-top: 5.8333333333vw;
  font-weight: 400;
  line-height: 1.7857142857;
  font-family: "ヒラギノ明朝 Pro W3", "Noto Serif JP", "游明朝体", "Times New Roman", serif;
  font-size: 1.1666666667vw;
  color: #000;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 300ms;
}
body.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}
body.loaded {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 8.6956521739vw;
    font-size: 3.3816425121vw;
  }
}
/* 『フォーム部品CSS』
==================================================== */
/* テキスト */
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=password],
textarea {
  padding: 0.35em 0.5em;
  width: 100%;
  background-color: #d9d9d9;
  border: 2px solid #d9d9d9;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: 1.5;
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #999;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  background-color: #fff;
}

input[type=text].has-text,
input[type=tel].has-text,
input[type=email].has-text,
input[type=number].has-text,
textarea.has-text {
  background-color: #fff;
}

textarea {
  resize: vertical;
}

/* 送信ボタン */
input[type=submit],
button {
  display: inline-block;
  padding: 0 2em 1.4em;
  position: relative;
  border-bottom: 1px solid #000;
  transition: opacity 300ms;
}

input[type=submit]:hover,
button:hover {
  opacity: 0.5;
}

input[type=checkbox] {
  margin: 0;
  background-color: #d9d9d9;
  border: 2px solid #d9d9d9;
  inline-size: 2.5833333333vw;
  block-size: 2.5833333333vw;
  position: relative;
}

input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5em;
  height: 1.2em;
  border-right: 0.2em solid #000;
  border-bottom: 0.2em solid #000;
  transform: translate(-50%, calc(-50% - 3px)) rotate(45deg);
  opacity: 0;
}

input[type=checkbox]:checked {
  background-color: #fff;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=number],
  input[type=password],
  textarea {
    font-size: max(1.6rem, 3.8647342995vw);
  }
  input[type=checkbox] {
    inline-size: 7.4879227053vw;
    block-size: 7.4879227053vw;
  }
  input[type=submit]:hover,
  button:hover {
    opacity: 1;
  }
}
/* 選択不可状態の付与クラス
	※非公開ページがある場合、メニューに当クラスを付与する
------------------------------------------------------ */
.noevents {
  opacity: 0.5;
  pointer-events: none;
}

html {
  background-color: #f6f6f6;
}

/* ===================================================
	ページ背景
====================================================== */
.page-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-bg-image01, .page-bg-image02 {
  position: absolute;
}
.page-bg-image01 {
  top: 0;
  right: 0;
  width: 18.825%;
}
.page-bg-image02 {
  bottom: -8.3333333333vw;
  left: 0;
  width: 18.825%;
}

@media screen and (max-width: 767px) {
  .page-bg-wrapper {
    background: url(./img/bg01.png) top right/40% auto no-repeat, url(./img/bg02.png) left bottom/35% auto no-repeat, #f6f6f6;
    background-position: 100% 0%, 0% 100%;
  }
}
/* ===================================================
	コンテナー
====================================================== */
.container {
  margin: 0 auto;
  max-width: 75.8333333333%;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 7.2463768116vw;
    max-width: none;
  }
}
/* ===================================================
	ヘッダー header
====================================================== */
.g-header {
  font-weight: 600;
}
.g-header-sp {
  display: none;
}
.g-header-inner {
  position: relative;
}
.g-header-title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 4.75vw;
  text-align: center;
  transition: opacity 300ms;
}
.g-header-title:hover {
  opacity: 0.5;
}
.g-header-title img {
  width: 100%;
}
.g-header-title-pre {
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: inherit;
  letter-spacing: 0.5em;
  font-size: 1vw;
}
.g-header-title-logo {
  margin-top: 2.4166666667vw;
}
.g-header-title-line-lane {
  background-color: #000;
}
.g-header-title-line-track {
  height: 25vw;
  width: 1px;
  background-color: #e0e0e0;
}
.g-header-body {
  margin-left: auto;
  width: var(--container-width);
}
.g-header-name {
  font-size: inherit;
}
.g-header-menu-navigation {
  margin-top: 4.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-header-menu-list {
  display: flex;
  align-items: center;
  gap: 2.3333333333vw;
}
.g-header-menu-item a {
  transition: opacity 300ms;
}
.g-header-menu-item a:has(.icon) {
  display: inline-block;
  line-height: 1;
  padding: 0.3333333333vw;
}
.g-header-menu-item a:hover {
  opacity: 0.5;
}
.g-header-menu-item .instagram {
  width: 1.1666666667vw;
}
.g-header-language-switch {
  border: 1px solid #b3b3b3;
  padding: 0.1666666667vw;
}
.g-header-language-switch-container {
  display: flex;
  align-items: center;
}
.g-header-language-switch-item {
  width: 1.5vw;
  flex: auto 1 0;
  text-align: center;
  color: #b3b3b3;
  font-weight: 300;
  font-size: 0.8333333333vw;
  position: relative;
}
.g-header-language-switch-item.current {
  background-color: #000;
  color: #fff;
  pointer-events: none;
  background-size: 300% 100%;
  background-image: linear-gradient(90deg, #d9d9d9 0%, #d9d9d9 33.33334%, #000 33.33334%, #000 66.66667%, #d9d9d9 66.66667%, #d9d9d9 100%);
  background-position: 50% 0%;
}
.g-header-language-switch:hover .g-header-language-switch-item:not(.current) {
  color: #fff;
}
@keyframes switchLanguageBgColorChangingLTR {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 0;
  }
}
@keyframes switchLanguageBgColorChangingRTL {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 0;
  }
}
.g-header-language-switch:hover .g-header-language-switch-item.current {
  background-color: #d9d9d9;
  color: #000;
  animation-fill-mode: forwards;
  animation-duration: 300ms;
}
.g-header-language-switch-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
}
@keyframes switchLanguageBgColorMoving {
  0% {
    background-color: #000;
  }
  50% {
    background-color: #c6c6c6;
  }
  100% {
    background-color: #000;
  }
}
.g-header-language-switch:hover .g-header-language-switch-item.current::after {
  opacity: 1;
  transition: left 300ms;
  animation: switchLanguageBgColorMoving 1500ms ease-in-out infinite;
}
.g-header-language-switch:hover .g-header-language-switch-item.jp.current {
  animation-name: switchLanguageBgColorChangingLTR;
}
.g-header-language-switch:hover .g-header-language-switch-item.en.current {
  animation-name: switchLanguageBgColorChangingRTL;
}
.g-header-language-switch:hover .g-header-language-switch-item.jp.current::after {
  left: 100%;
}
.g-header-language-switch:hover .g-header-language-switch-item.en.current::after {
  left: -100%;
}

@media screen and (max-width: 767px) {
  .g-header-pc {
    display: none;
  }
  .g-header-sp {
    display: block;
  }
  .g-header-hamburger-wrapper, .g-header-modal-close-wrapper {
    top: 4.8309178744vw;
    right: 4.8309178744vw;
    line-height: 1;
  }
  .g-header-hamburger-wrapper {
    position: fixed;
    z-index: 100;
  }
  .g-header-modal-close-wrapper {
    position: absolute;
  }
  .g-header-hamburger-icon, .g-header-modal-close-icon {
    padding: 1.2077294686vw;
    width: 7.1497584541vw;
    height: 7.1497584541vw;
    display: flex;
    align-items: center;
    box-sizing: content-box;
  }
  .g-header-hamburger-icon img {
    width: 100%;
    filter: drop-shadow(0 0 10px #fff);
  }
  .g-header-modal-navigation-wrapper {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 100;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 500ms, left 0ms 500ms;
    background: url(./img/bg01.png) top right/40% auto no-repeat, url(./img/bg02.png) left bottom/35% auto no-repeat, #f6f6f6;
    background-position: 100% 0%, 0% 100%;
  }
  .g-header-modal-navigation-wrapper.opened {
    left: 0;
    opacity: 1;
    transition: opacity 500ms 50ms;
  }
  .g-header-modal-title {
    position: absolute;
    top: 8.6956521739vw;
    left: 7.2463768116vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .g-header-modal-title-pre {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: 400;
    letter-spacing: 0.5em;
    font-size: 2.8985507246vw;
  }
  .g-header-modal-title-logo {
    margin-top: 2.4154589372vw;
    width: 7.9710144928vw;
  }
  .g-header-modal-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 0 16.4251207729vw;
    font-size: 3.6231884058vw;
  }
  .g-header-modal-menu-list {
    display: flex;
    flex-direction: column;
    gap: 3em;
    text-align: center;
    margin: auto 0;
  }
  .g-header-modal-language-switch {
    border: 1px solid #b3b3b3;
    padding: 0.4830917874vw;
  }
  .g-header-modal-other-menu-block {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    gap: 13.0434782609vw;
  }
  .g-header-modal-other-menu-item.instagram {
    padding: 1.2077294686vw;
  }
  .g-header-modal-language-switch-container {
    display: flex;
    line-height: 1.5714285714;
  }
  .g-header-modal-language-switch-item {
    width: 6.2801932367vw;
    text-align: center;
    color: #b3b3b3;
    font-weight: 300;
    position: relative;
  }
  .g-header-modal-language-switch-item.current {
    background-color: #000;
    color: #fff;
    pointer-events: none;
  }
}
/* ===================================================
	フッター footer
====================================================== */
.global-footer {
  margin: 9.1666666667vw 0 14.1666666667vw;
}
.global-footer-inner {
  text-align: center;
}
.global-footer-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25em;
  font-weight: 600;
  font-size: 1vw;
}
.global-footer-menu-item.message {
  display: none;
}
.global-footer-menu-item a {
  transition: opacity 300ms;
}
.global-footer-menu-item a:hover {
  opacity: 0.5;
}
.global-footer-copyrights-wrapper {
  margin-top: 3em;
}
.global-footer-instagram-wrapper {
  margin-top: 9.6618357488vw;
  display: none;
}
.global-footer-copyrights {
  font-family: "Inter", serif;
}

@media screen and (max-width: 767px) {
  .global-footer-menu-list {
    gap: 2.25em;
    font-size: 2.8985507246vw;
  }
  .global-footer-menu-item.message {
    display: block;
  }
  .global-footer-menu-item.instagram, .global-footer-menu-item.language {
    display: none;
  }
  .global-footer-instagram-wrapper {
    display: block;
  }
}
/* ===================================================
	インスタグラム
====================================================== */
.front-instagram-section {
  margin: 160px 0 110px;
  text-align: center;
}
.front-instagram-content {
  margin-top: 4em;
}
.front-instagram-post-list {
  display: flex;
  gap: 23px;
}
.front-instagram-post-item {
  aspect-ratio: 1/1;
  flex: auto 0 0;
  transition: opacity 300ms;
  width: calc((100% - 92px) / 5);
}
.front-instagram-post-item img, .front-instagram-post-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-instagram-post-item:hover {
  opacity: 0.7;
}
.front-instagram-post-item:not(:has(img)) {
  background-color: #f1f1f1;
}

@media screen and (max-width: 767px) {
  .front-instagram-section {
    margin: 12.077294686vw 0;
  }
  .front-instagram-section .section-description {
    padding: 0 2em;
  }
  .front-instagram-content {
    margin-top: 2em;
  }
  .front-instagram-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5.5555555556vw;
  }
  .front-instagram-post-item {
    transition: none;
    width: calc(50% - 2.7777777778vw);
  }
  .front-instagram-post-item:hover {
    opacity: 1;
  }
}
/* ===================================================
	フッター画像
====================================================== */
.footer-image-wrapper {
  margin: 14.1666666667vw 0 0;
}
.footer-image-wrapper img {
  width: 100%;
}

/* ===================================================
	各セクション共通タイトル
====================================================== */
.section-title {
  font-weight: 700;
  font-size: 1.6666666667vw;
}
.section-description {
  margin-top: 2vw;
}

@media screen and (max-width: 1000px) {
  .section-title {
    font-size: 5.3140096618vw;
    text-align: center;
  }
  .section-description {
    margin-top: 5.7971014493vw;
  }
}
/* ===================================================
	リンクボタン
====================================================== */
.link-button {
  display: inline-block;
  position: relative;
  padding: 0 0.5em;
  transition: opacity 300ms;
}
.link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1em;
  width: 100%;
  height: 1px;
  background-color: #000;
  pointer-events: none;
}
.link-button:hover {
  opacity: 0.5;
}

/* ===================================================
	画像パララックス用クラス
====================================================== */
img[parallax-on] {
  opacity: 0;
}
img[parallax-on].show {
  opacity: 1;
  transition: opacity 1000ms, transform 100ms;
}

/* ===================================================
	下層ページトップ
====================================================== */
.subpage-top-section {
  margin: 9.1666666667vw 0 7.5vw;
}
.subpage-top-inner {
  margin: 0 auto;
  max-width: 75.8333333333%;
}
.subpage-top-content {
  margin-left: auto;
  width: 81.3186813187%;
}
.subpage-top-title {
  font-size: 1.6666666667vw;
  line-height: 1.2;
}
.subpage-top-logo-wrap {
  display: none;
}
.subpage-top-description {
  margin-top: 3vw;
}

@media screen and (max-width: 767px) {
  .subpage-top-section {
    margin: 0 0 7.2463768116vw;
  }
  .subpage-top-inner {
    margin-left: 0;
    max-width: none;
    padding: 0 7.2463768116vw;
  }
  .subpage-top-header {
    display: flex;
    justify-content: space-between;
    gap: 9.6618357488vw;
  }
  .subpage-top-content {
    padding-top: 13.2850241546vw;
    width: 67.8743961353vw;
  }
  .subpage-top-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 7.9710144928vw;
  }
  .subpage-top-logo-pre {
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: inherit;
    letter-spacing: 0.5em;
    font-size: 2.8985507246vw;
  }
  .subpage-top-logo {
    margin-top: 2.4154589372vw;
  }
  .subpage-top-title {
    font-size: 5.0724637681vw;
  }
  .subpage-top-description {
    margin-top: 7.2463768116vw;
  }
}
/* ===================================================
	リンクボタン
====================================================== */
/* ===================================================
	MV メインビジュアル
====================================================== */
.mv {
  margin-top: 5.8333333333vw;
  overflow: hidden;
}
.mv-inner {
  display: flex;
  justify-content: space-between;
}
.mv-title-pre {
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: inherit;
  letter-spacing: 0.5em;
  font-size: 2.8985507246vw;
}
.mv-title {
  display: none;
  flex-direction: column;
  align-items: center;
}
.mv-title-logo {
  margin-top: 2.4154589372vw;
}
.mv-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.mv-line-lane-wrapper {
  width: 4.75vw;
  flex-shrink: 0;
  flex-grow: 0;
}
.mv-line-lane {
  margin-top: auto;
}
.mv-line-lane-track {
  height: 25vw;
  width: 1px;
  background-color: #e0e0e0;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@keyframes mvScrollIndicator {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.mv-line-lane-track::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  animation: mvScrollIndicator 2000ms infinite;
}
.mv-image-wrapper {
  width: calc(81.3186813187% + ((calc(100vw - var(--scrollbar-width))) - 100%) / 2);
  margin-right: calc(-1 * ((calc(100vw - var(--scrollbar-width))) - 100%) / 2);
}
.mv-image-slider-list {
  width: 100%;
}
.mv-image-slider-item-image-wrap {
  aspect-ratio: 890/510;
}
.mv-image-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 767px) {
  .mv {
    margin-top: 0;
  }
  .mv-inner {
    padding-left: 7.2463768116vw;
    margin: 0 -7.2463768116vw;
  }
  .mv-title {
    display: flex;
  }
  .mv-line-lane-wrapper {
    width: 7.9710144928vw;
  }
  .mv-line-lane-track {
    height: 26.5700483092vw;
  }
  .mv-image-slider-item-image-wrap {
    aspect-ratio: 319/284;
  }
  .mv-image-wrapper {
    padding-top: 13.2850241546vw;
    width: 79.7101449275vw;
    margin-right: 0;
  }
}
/* ===================================================
	冒頭メッセージセクション
====================================================== */
.front-message-section {
  padding: 6.1666666667vw 0 0;
}
.front-message-main-block {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  position: relative;
}
.front-message-title {
  margin-left: 2.5vw;
  font-size: 2.75vw;
  line-height: 1.75;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  white-space: nowrap;
  word-wrap: normal;
}
.front-message-title .text {
  display: inline-block;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  opacity: 0;
}
.front-message-title.show .text {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: opacity 700ms calc(var(--animation-delay) * 700ms), -webkit-clip-path 1400ms calc(var(--animation-delay) * 700ms);
  transition: clip-path 1400ms calc(var(--animation-delay) * 700ms), opacity 700ms calc(var(--animation-delay) * 700ms);
  transition: clip-path 1400ms calc(var(--animation-delay) * 700ms), opacity 700ms calc(var(--animation-delay) * 700ms), -webkit-clip-path 1400ms calc(var(--animation-delay) * 700ms);
}
.front-message-description {
  padding-top: 6.6666666667vw;
  writing-mode: vertical-rl;
  line-height: 3;
  font-size: 1.0833333333vw;
  font-weight: 500;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  flex-shrink: 0;
  white-space: nowrap;
  word-wrap: normal;
}
.front-message-description.show {
  transition: opacity 500ms 2500ms, transform 500ms 2500ms;
  opacity: 1;
  transform: none;
}
.front-message-description::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.4em;
  width: 1px;
  height: 5.3333333333vw;
  background-color: #000;
}
.page-en .front-message-main-block {
  display: block;
}
.page-en .front-message-title, .page-en .front-message-description {
  margin-right: -8.3333333333vw;
  margin-left: auto;
  width: 50vw;
  writing-mode: initial;
  white-space: normal;
}
.page-en .front-message-description {
  margin-top: 3.3333333333vw;
  padding-top: 0;
}
.page-en .front-message-description::before {
  content: none;
}
.page-en .front-message-description.show {
  transition: none;
}
.front-message-insert-images01 {
  position: absolute;
  left: -1.5vw;
  top: 6.6666666667vw;
  display: flex;
  flex-direction: column;
}
.front-message-insert-images02 {
  margin-top: 8.3333333333vw;
  width: calc(100% + calc(100vw - var(--scrollbar-width)) - 100%);
  text-align: right;
}
.front-message-main-block .image01 {
  width: 29.25vw;
}
.front-message-main-block .image02 {
  margin-top: -6.0833333333vw;
  margin-left: 13.9166666667vw;
  width: 19.5vw;
}
.front-message-main-block .image03 {
  width: 50vw;
  margin-right: calc(-1 * (calc(100vw - var(--scrollbar-width)) - 100%) / 2);
}

@media screen and (max-width: 767px) {
  .front-message-section {
    padding: 14.4927536232vw 0 7.2463768116vw;
  }
  .front-message-main-block {
    justify-content: space-between;
  }
  .front-message-title {
    font-size: 5.7971014493vw;
    flex-shrink: 0;
    margin-left: 0;
  }
  .front-message-title.show .text {
    transition: opacity 700ms calc(var(--animation-delay) * 700ms), -webkit-clip-path 2100ms calc(var(--animation-delay) * 700ms);
    transition: clip-path 2100ms calc(var(--animation-delay) * 700ms), opacity 700ms calc(var(--animation-delay) * 700ms);
    transition: clip-path 2100ms calc(var(--animation-delay) * 700ms), opacity 700ms calc(var(--animation-delay) * 700ms), -webkit-clip-path 2100ms calc(var(--animation-delay) * 700ms);
  }
  .front-message-description {
    position: relative;
    z-index: 1;
    margin-top: 14.4927536232vw;
    padding-top: 16.9082125604vw;
    order: 4;
    width: 100%;
    font-size: 3.6231884058vw;
    line-height: 2.6;
  }
  .front-message-description.show {
    transition: opacity 500ms 300ms, transform 500ms 300ms;
  }
  .front-message-description::before {
    right: 1.3em;
    height: 14.4927536232vw;
  }
  .page-en .front-message-title, .page-en .front-message-description {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
  .page-en .front-message-description {
    margin-top: 9.6618357488vw;
  }
  .front-message-insert-images01 {
    position: static;
    margin-left: -7.2463768116vw;
    width: -moz-max-content;
    width: max-content;
  }
  .front-message-insert-images02 {
    margin: 15.9420289855vw -7.2463768116vw 0;
  }
  .front-message-main-block .image01 {
    margin-top: 10.1449275362vw;
    margin-left: 14.9758454106vw;
    width: 35.7487922705vw;
  }
  .front-message-main-block .image02 {
    margin-top: -7.0048309179vw;
    margin-left: 0;
    width: 36.231884058vw;
  }
  .front-message-main-block .image03 {
    width: 73.9130434783%;
    margin-right: 0;
  }
}
/* ===================================================
	導入画像セクション（作品一覧セクションの上下）
====================================================== */
.insert-images-image01 {
  margin-top: -21.3333333333vw;
}
.insert-images-image01 img {
  width: 25.9166666667%;
}
.insert-images-image02 {
  margin-top: -1.8333333333vw;
  text-align: center;
}
.insert-images-image02 img {
  margin-left: 6.6666666667%;
  width: 32.4166666667%;
}
.insert-images-image03 img {
  margin-left: 7.5%;
  width: 14.4166666667%;
}
.insert-images-image04 {
  text-align: right;
  margin-top: -11vw;
}
.insert-images-image04 img {
  margin-right: calc(-1 * ((calc(100vw - var(--scrollbar-width))) - 100%) / 2);
  width: 60.5%;
}

@media screen and (max-width: 767px) {
  .insert-images-inner.block01 {
    display: flex;
    flex-direction: column-reverse;
  }
  .insert-images-image01 {
    margin-top: -11.8357487923vw;
  }
  .insert-images-image01 img {
    width: 35.5072463768%;
  }
  .insert-images-image02 {
    margin-top: 7.2463768116vw;
    text-align: right;
  }
  .insert-images-image02 img {
    margin-right: 9.1787439614%;
    width: 42.5120772947%;
  }
  .insert-images-image03 img {
    margin-left: 9.4202898551%;
    width: 25.6038647343%;
  }
  .insert-images-image04 img {
    margin-right: 0;
    width: 48.7922705314%;
  }
}
/* ===================================================
	作品一覧セクション
====================================================== */
.front-works-section {
  margin: 5.8333333333vw 0 8.75vw;
  padding: 5.8333333333vw 0 8.75vw;
  overflow: hidden;
}
.front-works-content {
  margin-top: 1.6666666667vw;
}

@media screen and (max-width: 767px) {
  .front-works-section {
    margin: 14.4927536232vw 0 26.5700483092vw;
    padding: 5.7971014493vw 0 26.5700483092vw;
  }
  .front-works-content {
    margin-top: 12.077294686vw;
  }
}
/* ===================================================
	プロフィールセクション
====================================================== */
.front-profile-section {
  margin: 4.1666666667vw 0 3.3333333333vw;
  padding: 5.8333333333vw 0 3.3333333333vw;
}
.front-profile-content {
  margin-top: 4.1666666667vw;
}
.front-profile-block {
  display: flex;
  gap: 3.5833333333vw;
  align-items: flex-start;
}
.front-profile-block-image {
  width: 49.7802197802%;
  flex-shrink: 0;
  flex-grow: 0;
}
.front-profile-block-image img {
  width: 100%;
}
.front-profile-block-content {
  padding: 0.8333333333vw;
  flex-shrink: 1;
  flex-grow: 1;
  position: relative;
}
.front-profile-name {
  font-size: 1.6666666667vw;
  line-height: 1.25;
}
.front-profile-name .subtitle {
  font-size: 65%;
}
.front-profile-name-ruby {
  margin-top: 2vw;
  font-size: 1.0833333333vw;
}
.front-profile-name-ruby rt {
  font-size: inherit;
}
.front-profile-description {
  margin-top: 4.6666666667vw;
}
.front-profile-images-wrapper {
  position: absolute;
  left: 0;
  top: calc(100% + 5vw);
  text-align: right;
  width: 100%;
}
.front-profile-images-image01 img {
  margin-right: -5.1282051282%;
  width: 69.2307692308%;
}
.front-profile-images-image02 {
  margin-top: 13.0833333333vw;
}
.front-profile-images-image02 img {
  margin-right: -25.641025641%;
  width: 62.0512820513%;
}
.front-profile-images-image03 {
  margin-top: -6.4102564103%;
}
.front-profile-images-image03 img {
  margin-right: 8.2051282051%;
  width: 51.2820512821%;
}

@media screen and (max-width: 767px) {
  .front-profile-section {
    margin: 11.1111111111vw 0 15.9420289855vw;
    padding: 5.7971014493vw 0 15.9420289855vw;
  }
  .front-profile-content {
    margin-top: 14.4927536232vw;
  }
  .front-profile-name {
    font-size: 6.038647343vw;
    line-height: 1.5;
  }
  .front-profile-name .subtitle {
    font-size: 64%;
  }
  .front-profile-name-ruby {
    margin-top: 4.8309178744vw;
    font-size: inherit;
  }
  .front-profile-description {
    margin-top: 9.6618357488vw;
  }
  .front-profile-block {
    gap: 9.6618357488vw;
    flex-direction: column;
    align-items: initial;
  }
  .front-profile-block-image {
    width: auto;
  }
  .front-profile-block-content {
    padding: 0;
  }
  .front-profile-images-wrapper {
    margin-top: 19.3236714976vw;
    position: static;
    text-align: left;
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .front-profile-images-image01 {
    order: 3;
    text-align: center;
    margin-top: 13.768115942vw;
  }
  .front-profile-images-image01 img {
    width: 47.5845410628vw;
    margin-right: -2.4154589372vw;
  }
  .front-profile-images-image02 {
    margin-top: 0;
    text-align: right;
  }
  .front-profile-images-image02 img {
    margin-right: auto;
    margin-left: 1.690821256vw;
    width: 60.1449275362vw;
  }
  .front-profile-images-image03 {
    margin-top: -10.8695652174vw;
  }
  .front-profile-images-image03 img {
    margin-right: 0;
    margin-left: auto;
    width: 46.8599033816vw;
  }
}
/* ===================================================
	活動歴セクション
====================================================== */
.front-history-section {
  margin: 0.8333333333vw 0;
  padding: 5.8333333333vw 0;
}
.front-history-content {
  margin-top: 6.6666666667vw;
  width: 51vw;
}
.front-history-list {
  display: flex;
  flex-direction: column;
  gap: 5.5vw;
}
.front-history-item-title {
  font-weight: 700;
}
.front-history-images-image01 {
  margin-top: -0.8333333333vw;
  text-align: right;
}
.front-history-images-image01 img {
  width: 10.3333333333vw;
  margin-right: calc(-1 * ((calc(100vw - var(--scrollbar-width))) - 100%) / 2);
}
.front-history-images-image02 {
  margin-top: -5.75vw;
}
.front-history-images-image02 img {
  margin-left: calc(-1 * ((calc(100vw - var(--scrollbar-width))) - 100%) / 2);
  width: 63.4166666667vw;
}

@media screen and (max-width: 767px) {
  .front-history-section {
    margin: 10.1449275362vw 0 22.2222222222vw;
    padding: 5.7971014493vw 0 22.2222222222vw;
  }
  .front-history-section .section-title {
    text-align: left;
  }
  .front-history-content {
    margin-top: 9.6618357488vw;
    width: auto;
  }
  .front-history-list {
    display: flex;
    flex-direction: column;
    gap: 14.4927536232vw;
  }
  .front-history-block-images {
    margin-top: 14.4927536232vw;
  }
  .front-history-images-image01 {
    margin-top: 0;
    text-align: center;
  }
  .front-history-images-image01 img {
    width: 41.3043478261vw;
    margin-right: 1.2077294686vw;
  }
  .front-history-images-image02 {
    margin-top: 18.5990338164vw;
    text-align: left;
  }
  .front-history-images-image02 img {
    margin-left: -7.2463768116vw;
    width: 83.0917874396vw;
  }
}
/* ===================================================
	マップセクション
====================================================== */
.front-map-section {
  margin: 12.3333333333vw 0;
}
.front-map-image-wrapper img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .front-map-section {
    margin: 22.2222222222vw 0flexibleSizeSP 100;
  }
}
/* ===================================================
	オーダー：注文セクション
====================================================== */
.front-order-section {
  margin: 9vw 0 13.3333333333vw;
  padding: 3.3333333333vw 0 0;
}
.front-order-block {
  position: relative;
}
.front-order-title-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
}
.front-order-title-wrapper.en {
  writing-mode: initial;
}
.front-order-title {
  font-size: 2.0833333333vw;
  letter-spacing: 0.5em;
}
.front-order-title-wrapper.en .front-order-title {
  letter-spacing: 0;
}
.front-order-image-wrapper img {
  width: 100%;
}
.front-order-image-wrapper a {
  transition: opacity 300ms;
}
.front-order-image-wrapper a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .front-order-section {
    margin: 24.154589372vw 0 12.077294686vw;
    padding: 7.2463768116vw 0 0;
  }
  .front-order-title {
    font-size: 6.038647343vw;
  }
}
/* ===================================================
	作品：詳細ページ
====================================================== */
.works-single-article {
  margin: 100px 0 220px;
}
.works-single-inner {
  margin: 0 auto;
  max-width: 62.6373626374%;
}
.works-single-title {
  font-size: 2.5vw;
  padding-left: 38px;
  position: relative;
  line-height: 1.25;
}
.works-single-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 26px;
  height: 1px;
  background-color: #000;
}
.works-single-body {
  margin-top: 4.1666666667vw;
}
.works-single-content > *:not(:last-child) {
  margin-bottom: calc(var(--html-line-height) * 1em);
}
.works-single-thumbnail {
  margin-top: 7.5vw;
}
.works-single-thumbnail-wrap {
  text-align: center;
}
.works-single-thumbnail-wrap img {
  max-height: 77.5vw;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.works-single-relations {
  margin: 160px 0 220px;
}
.works-single-relations-list {
  display: grid;
  grid-template-columns: repeat(4, 20.8791208791%);
  gap: 4.1666666667vw;
}
.works-single-relations-item {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works-single-relations-image-wrap {
  display: inline-block;
  transition: opacity 300ms;
}
.works-single-relations-image-wrap:hover {
  opacity: 0.7;
}
.works-single-relations-image-wrap img {
  max-width: 14.1666666667vw;
  max-height: 14.1666666667vw;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.works-single-relations-link-wrap {
  margin-top: 10vw;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .works-single-article {
    margin: 60px 0 120px;
  }
  .works-single-inner {
    max-width: none;
  }
  .works-single-title {
    font-size: 7.2463768116vw;
    padding-left: 38px;
  }
  .works-single-body {
    margin-top: 12.077294686vw;
  }
  .works-single-thumbnail {
    margin-top: 21.7391304348vw;
  }
  .works-single-thumbnail-wrap img {
    width: -moz-max-content;
    width: max-content;
    max-width: 80vw;
    max-height: 60vh;
  }
  .works-single-relations {
    margin: 160px 0 120px;
  }
  .works-single-relations-list {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 15px));
    gap: 30px;
  }
  .works-single-relations-image-wrap img {
    max-width: 33.8164251208vw;
    max-height: 33.8164251208vw;
  }
}
/* ===================================================
	全ページ共通：作品リスト
====================================================== */
.works-archive-articles-list {
  align-items: center;
  transition-timing-function: linear;
  transition-property: transform;
}
.works-archive-articles-item {
  width: auto;
}
.works-archive-articles-item-image-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-width: 300px;
  max-height: 680px;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 767px) {
  .works-archive-articles-list {
    align-items: center;
    padding: 0 0 7.2463768116vw;
  }
  .works-archive-articles-item-image-wrap img {
    max-width: 80vw;
    max-height: 60vh;
  }
}
/* ===================================================
	ご注文ページ：ページトップ
====================================================== */
.order-top-image-section {
  margin: 9.1666666667vw 0 7.5vw;
}
.order-top-image-inner {
  margin-left: auto;
  max-width: var(--container-width);
}
.order-top-image-wrap img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .order-top-image-section {
    margin: 60px 0;
  }
  .order-top-image-inner {
    margin-left: 0;
    max-width: none;
  }
}
/* ===================================================
	ご注文ページ：フォーム
====================================================== */
.order-form-section {
  margin: 90px 0 0;
}
.order-form-inner {
  margin-left: auto;
  max-width: var(--container-width);
}
.order-form-list {
  display: grid;
  gap: 1.5em;
}
.order-form-list .your-order-content {
  margin-bottom: 2em;
}
.order-form-list .your-privacy-policy {
  margin-top: 2em;
}
.order-form-list-item {
  display: grid;
  grid-template-columns: 1fr 60.2702702703%;
}
.order-form-list-item-question {
  padding-top: 0.4em;
}
.order-form-list-item .wpcf7-list-item {
  margin: 0;
}
.order-form-list-item .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 0.8em;
  cursor: pointer;
}
.order-form-list-item .checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}
.order-form-list-item textarea {
  min-height: 10em;
  height: auto;
}
.order-form-list-item.link a {
  text-decoration: underline;
}
.order-form-list-item.link a:hover {
  text-decoration: none;
}
.order-form-submit-wrapper {
  margin-top: 5em;
}

@media screen and (max-width: 767px) {
  .order-form-section {
    margin: 60px 0 0;
  }
  .order-form-inner {
    max-width: none;
  }
  .order-form-list {
    font-size: max(1.6rem, 3.8647342995vw);
    gap: 1em;
  }
  .order-form-list-item {
    display: block;
  }
  .order-form-list-item-question {
    padding-top: 0.4em;
  }
  .order-form-list .your-order-content .order-form-list-item-question {
    margin-bottom: 1em;
  }
  .order-form-list-item .checkboxes {
    flex-direction: column;
    gap: 1em;
  }
}
/* ===================================================
	ご注文ページ：送信完了
====================================================== */
.order-thanks-inner {
  margin-left: auto;
  max-width: var(--container-width);
}
.order-thanks-message {
  margin-top: 2.5vw;
  font-size: 85.7142857143%;
}
.order-thanks-link-wrap {
  margin-top: 4em;
}

@media screen and (max-width: 767px) {
  .order-thanks-inner {
    margin-left: 0;
    max-width: none;
  }
  .order-thanks-link-wrap {
    text-align: center;
  }
}
/* ===================================================
	プライバシーポリシー
====================================================== */
.terms-section {
  margin: 110px 0 150px;
}
.terms-inner {
  margin-left: auto;
  max-width: var(--container-width);
}
.terms-content {
  margin-top: 5em;
}
.terms-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.5vw;
}
.terms-heading {
  margin-bottom: 1.6666666667vw;
  font-size: 1.25vw;
}
.terms-list li {
  position: relative;
  padding-left: 1em;
}
.terms-list li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.terms-list-wrapper ul li::before {
  content: "・";
}
.terms-list-wrapper ol {
  counter-reset: list-counter;
}
.terms-list-wrapper ol li {
  counter-increment: list-counter;
}
.terms-list-wrapper ol li::before {
  content: counter(list-counter) ".";
}

@media screen and (max-width: 767px) {
  .terms-section {
    margin: 60px 0 0;
  }
  .terms-inner {
    max-width: none;
  }
  .terms-content {
    margin-top: 3em;
  }
  .terms-list-wrapper {
    gap: 9.6618357488vw;
  }
  .terms-heading {
    margin-bottom: 4.8309178744vw;
    font-size: 3.6231884058vw;
  }
}