@charset "UTF-8";
/*改善点

・768pxまではPC（タブレットも含む）
・767pxからSP


追加ルール
/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Cormorant+Garamond:wght@400;500&display=swap");
:root {
  --mainColor: #314048;
  --subColor: #e8350f;
  --grayColor: #f7f7f7;
  --fontColor: #2a2a2a;
  --bgDark: #314048;
  --bgDark2: #44525a;
  --bgLight: #d2d9dd;
  --bgLight2: #e8edf0;
}

/* ---------------------
mainColor
------------------------ */
.mainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}

/* ---------------------
subColor
------------------------ */
.subColor {
  color: var(--subColor);
}

.bgsubColor {
  background-color: var(--subColor);
}

.grayColor {
  color: var(--grayColor);
}

.bgGrayColor {
  background-color: var(--grayColor);
}

.bgDark {
  background-color: var(--bgDark);
}

.bgDark2 {
  background-color: var(--bgDark2);
}

.bgLight {
  background-color: var(--bgLight);
}

.bgLight2 {
  background-color: var(--bgLight2);
}

/*フォント系*/
:root {
  --fontEn: "Figtree", sans-serif;
}

.fontEn {
  font-family: var(--fontEn);
}

:root {
  --fontNum: "League Spartan", sans-serif;
}

.fontNum {
  font-family: var(--fontNum);
}

:root {
  --fontJp:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体",
    "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.fontJp {
  font-family: var(--fontJp);
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.serif {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

body {
  font-family: var(--fontJp);
  color: var(--fontColor);
}

/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

/*==================================================
 * フォント
 *================================================*/
.italic {
  font-style: italic;
}

html {
  font-size: 16px;
}

html,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  line-height: 1.8;
  font-weight: 500;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2;
}
.lh_xl * {
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .lh_xl {
    line-height: 1.8;
  }
  .lh_xl * {
    line-height: 1.8;
  }
}

.lh_l {
  line-height: 1.8;
}
.lh_l * {
  line-height: 1.8;
}

.lh_m {
  line-height: 1.5;
}
.lh_m * {
  line-height: 1.5;
}

.lh_m2 {
  line-height: 1.25;
}
.lh_m2 * {
  line-height: 1.25;
}

.lh_s {
  line-height: 1.1;
}
.lh_s * {
  line-height: 1.1;
}

.lh_xs {
  line-height: 0.7;
}
.lh_xs * {
  line-height: 0.7;
}

.ls_xl {
  letter-spacing: 0.2em;
}

.ls_l {
  letter-spacing: 0.15em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

.ave {
  font-weight: 500 !important;
}

.medium {
  font-weight: 500 !important;
}

.bold {
  font-weight: 600 !important;
}

.bold800 {
  font-weight: 800 !important;
}

.black {
  font-weight: 900;
}

.bold900 {
  font-weight: 900 !important;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #686868;
}

.red {
  color: #ec462f !important;
}

.fsL {
  font-size: 6.25rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL {
    font-size: 2.625rem;
  }
}

.fsL15 {
  font-size: 4.5rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL15 {
    font-size: 3.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL15 {
    font-size: 2.625rem;
  }
}

.fsL2 {
  font-size: 4rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL2 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL2 {
    font-size: 2.25rem;
  }
}

.fsL3 {
  font-size: 3.5rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3 {
    font-size: 2.25rem;
  }
}

.fsL35 {
  font-size: 3rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL35 {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL35 {
    font-size: 2rem;
  }
}

.fsL4 {
  font-size: 2.625rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL4 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL4 {
    font-size: 1.5rem;
  }
}

.fsL5 {
  font-size: 2.5rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL5 {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsL5 {
    font-size: 1.375rem;
  }
}

.fsM {
  font-size: 2.125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM {
    font-size: 1.3125rem;
  }
}

.fsM15 {
  font-size: 2rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM15 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM15 {
    font-size: 1.3125rem;
  }
}

.fsM2 {
  font-size: 1.75rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM2 {
    font-size: 1.25rem;
  }
}

.fsM3 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 1.125rem;
  }
}

.fsM35 {
  font-size: 1.3125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM35 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM35 {
    font-size: 1rem;
  }
}

.fsM38 {
  font-size: 1.25rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM38 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM38 {
    font-size: 1rem;
  }
}

.fsM4 {
  font-size: 1.125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM4 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM4 {
    font-size: 0.875rem;
  }
}

.fsM5 {
  font-size: 1rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM5 {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsM5 {
    font-size: 0.875rem;
  }
}

.fsS {
  font-size: 0.875rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsS {
    font-size: 0.75rem;
  }
}

.fsS2 {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS2 {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsS2 {
    font-size: 0.75rem;
  }
}

.fsS3 {
  font-size: 0.75rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 0.6875rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 0.6875rem;
  }
}

.fsS4 {
  font-size: 0.625rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS4 {
    font-size: 0.5625rem;
  }
}
@media only screen and (max-width: 767px) {
  .fsS4 {
    font-size: 0.5625rem;
  }
}

@media only screen and (max-width: 767px) {
  .fsSpM5 {
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 767px) {
  .fsSpS {
    font-size: 0.75rem;
  }
}

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 64px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 25px;
  }
  .h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 14px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 42px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 24px;
  }
  .h1 {
    font-size: 22px;
  }
  .h2 {
    font-size: 20px;
  }
  .h3 {
    font-size: 17px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 15px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.remove {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineFlex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

.bgCenter {
  background-position: center center;
  background-size: cover;
}

.opa {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

a:hover .opa {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

.overHidden {
  overflow: hidden;
}

.tra,
.tra:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

.linkA {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--mainColor);
}
.linkA:hover {
  color: var(--mainColor);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .notTab {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mtAuto {
  margin-top: auto;
}

.mrAuto {
  margin-right: auto;
}

.mbAuto {
  margin-bottom: auto;
}

.mlAuto {
  margin-left: auto;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 30px;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 40px;
  }
}

.mb70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .mb70 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb90 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mb90 {
    margin-bottom: 50px;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .mb100 {
    margin-bottom: 50px;
  }
}

.mb200 {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .mb200 {
    margin-bottom: 70px;
  }
}

.ml0 {
  margin-left: 0 !important;
}

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml2 {
  margin-left: 2em;
}

.ml3 {
  margin-left: 3em;
}

@media only screen and (max-width: 767px) {
  .mlSp0 {
    margin-left: 0;
  }
  .mlSp1 {
    margin-left: 1em;
  }
  .mlSp2 {
    margin-left: 2em;
  }
  .mlSp3 {
    margin-left: 3em;
  }
}
.mtL {
  margin-top: 30%;
}

.mtL2 {
  margin-top: 25%;
}

.mtL3 {
  margin-top: 20%;
}

.mtL4 {
  margin-top: 15%;
}

.mtM {
  margin-top: 10%;
}

.mtM2 {
  margin-top: 7.5%;
}

.mtM3 {
  margin-top: 5%;
}

.mtS {
  margin-top: 3.5%;
}

.mtS2 {
  margin-top: 2%;
}

.mtS3 {
  margin-top: 1%;
}

@media only screen and (max-width: 767px) {
  .mtSpL {
    margin-top: 30%;
  }
  .mtSpL2 {
    margin-top: 25%;
  }
  .mtSpL3 {
    margin-top: 20%;
  }
  .mtSpL4 {
    margin-top: 15%;
  }
  .mtSpM {
    margin-top: 10%;
  }
  .mtSpM2 {
    margin-top: 7.5%;
  }
  .mtSpM3 {
    margin-top: 5%;
  }
  .mtSpS {
    margin-top: 3.5%;
  }
  .mtSpS2 {
    margin-top: 2%;
  }
  .mtSpS3 {
    margin-top: 1%;
  }
}
.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL4 {
    margin-bottom: 15%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS2 {
    margin-bottom: 2%;
  }
  .mbSpS3 {
    margin-bottom: 1%;
  }
  .mbSp0 {
    margin-bottom: 0;
  }
}
.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .pt30 {
    padding-top: 20px;
  }
}

.pt40 {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .pt40 {
    padding-top: 30px;
  }
}

.pt50 {
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .pt50 {
    padding-top: 30px;
  }
}

.pt60 {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .pt60 {
    padding-top: 40px;
  }
}

.pt70 {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  .pt70 {
    padding-top: 40px;
  }
}

.pt80 {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .pt80 {
    padding-top: 40px;
  }
}

.pt90 {
  padding-top: 90px;
}
@media only screen and (max-width: 767px) {
  .pt90 {
    padding-top: 50px;
  }
}

.pt100 {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .pt100 {
    padding-top: 50px;
  }
}

.pt200 {
  padding-top: 200px;
}
@media only screen and (max-width: 767px) {
  .pt200 {
    padding-top: 70px;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .pb30 {
    padding-bottom: 20px;
  }
}

.pb40 {
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .pb40 {
    padding-bottom: 30px;
  }
}

.pb50 {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .pb50 {
    padding-bottom: 30px;
  }
}

.pb60 {
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .pb60 {
    padding-bottom: 40px;
  }
}

.pb70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .pb70 {
    padding-bottom: 40px;
  }
}

.pb80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .pb80 {
    padding-bottom: 40px;
  }
}

.pb90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .pb90 {
    padding-bottom: 50px;
  }
}

.pb100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .pb100 {
    padding-bottom: 50px;
  }
}

.pb200 {
  padding-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .pb200 {
    padding-bottom: 70px;
  }
}

.pl0 {
  padding-left: 0 !important;
}

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

@media only screen and (max-width: 767px) {
  .pbSp0 {
    padding-bottom: 0;
  }
  .plSp0 {
    padding-left: 0;
  }
  .plSp1 {
    padding-left: 1em;
  }
  .plSp2 {
    padding-left: 2em;
  }
  .plSp3 {
    padding-left: 3em;
  }
}
.pbL {
  padding-bottom: 30%;
}

.pbL2 {
  padding-bottom: 25%;
}

.pbL3 {
  padding-bottom: 20%;
}

.pbL4 {
  padding-bottom: 15%;
}

.pbM {
  padding-bottom: 10%;
}

.pbM2 {
  padding-bottom: 7.5%;
}

.pbM3 {
  padding-bottom: 5%;
}

.pbS {
  padding-bottom: 3.5%;
}

.pbS2 {
  padding-bottom: 2%;
}

.pbS3 {
  padding-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .pbSpL {
    padding-bottom: 30%;
  }
  .pbSpL2 {
    padding-bottom: 25%;
  }
  .pbSpL3 {
    padding-bottom: 20%;
  }
  .pbSpL4 {
    padding-bottom: 15%;
  }
  .pbSpM {
    padding-bottom: 10%;
  }
  .pbSpM2 {
    padding-bottom: 7.5%;
  }
  .pbSpM3 {
    padding-bottom: 5%;
  }
  .pbSpS {
    padding-bottom: 3.5%;
  }
  .pbSpS2 {
    padding-bottom: 2%;
  }
  .pbSpS3 {
    padding-bottom: 1%;
  }
}
/*flex・グリッド系*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justCenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justEnd {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .justBetweenSp {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.alignCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alignStart {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alignEnd {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flexReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.flexWrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

.col-3-2 {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  .flexSp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .colSp1 {
    width: 100%;
  }
  .colSp2 {
    width: 50%;
  }
  .colSp3 {
    width: 33.3333%;
  }
  .colSp-3 {
    width: 66.6666%;
  }
  .colSp4 {
    width: 25%;
  }
  .colSp-4 {
    width: 75%;
  }
  .colSp5 {
    width: 20%;
  }
  .colSp-5 {
    width: 80%;
  }
  .colSp6 {
    width: 16.666%;
  }
  .colSp-6 {
    width: 83.333%;
  }
  .colSp3-2 {
    width: 60%;
  }
  .colSp-3-2 {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
.grid {
  display: -ms-grid;
  display: grid;
}

.grid-colum-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.grid-colum-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.grid-colum-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 767px) {
  .grid-colum-1s-sp {
    -ms-grid-columns: 0.85fr;
    grid-template-columns: 0.85fr;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .grid-colum-1-sp {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-colum-2-sp {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-colum-3-sp {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-colum-4-sp {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-x-10 {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.gap-y-10 {
  row-gap: 10px;
}

@media only screen and (max-width: 959px) {
  .gap-10 {
    gap: 5px;
  }
  .gap-x-10 {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .gap-y-10 {
    row-gap: 5px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-20 {
  gap: 20px;
}

.gap-x-20 {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.gap-y-20 {
  row-gap: 20px;
}

@media only screen and (max-width: 959px) {
  .gap-20 {
    gap: 10px;
  }
  .gap-x-20 {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .gap-y-20 {
    row-gap: 10px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-30 {
  gap: 30px;
}

.gap-x-30 {
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.gap-y-30 {
  row-gap: 30px;
}

@media only screen and (max-width: 959px) {
  .gap-30 {
    gap: 15px;
  }
  .gap-x-30 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .gap-y-30 {
    row-gap: 15px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-40 {
  gap: 40px;
}

.gap-x-40 {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.gap-y-40 {
  row-gap: 40px;
}

@media only screen and (max-width: 959px) {
  .gap-40 {
    gap: 20px;
  }
  .gap-x-40 {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .gap-y-40 {
    row-gap: 20px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-50 {
  gap: 50px;
}

.gap-x-50 {
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.gap-y-50 {
  row-gap: 50px;
}

@media only screen and (max-width: 959px) {
  .gap-50 {
    gap: 25px;
  }
  .gap-x-50 {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .gap-y-50 {
    row-gap: 25px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-60 {
  gap: 60px;
}

.gap-x-60 {
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}

.gap-y-60 {
  row-gap: 60px;
}

@media only screen and (max-width: 959px) {
  .gap-60 {
    gap: 30px;
  }
  .gap-x-60 {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .gap-y-60 {
    row-gap: 30px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-70 {
  gap: 70px;
}

.gap-x-70 {
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
}

.gap-y-70 {
  row-gap: 70px;
}

@media only screen and (max-width: 959px) {
  .gap-70 {
    gap: 35px;
  }
  .gap-x-70 {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
  .gap-y-70 {
    row-gap: 35px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-80 {
  gap: 80px;
}

.gap-x-80 {
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.gap-y-80 {
  row-gap: 80px;
}

@media only screen and (max-width: 959px) {
  .gap-80 {
    gap: 40px;
  }
  .gap-x-80 {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .gap-y-80 {
    row-gap: 40px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-90 {
  gap: 90px;
}

.gap-x-90 {
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}

.gap-y-90 {
  row-gap: 90px;
}

@media only screen and (max-width: 959px) {
  .gap-90 {
    gap: 45px;
  }
  .gap-x-90 {
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
  .gap-y-90 {
    row-gap: 45px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-100 {
  gap: 100px;
}

.gap-x-100 {
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}

.gap-y-100 {
  row-gap: 100px;
}

@media only screen and (max-width: 959px) {
  .gap-100 {
    gap: 50px;
  }
  .gap-x-100 {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .gap-y-100 {
    row-gap: 50px;
  }
}
/*横幅*/
@media only screen and (max-width: 767px) {
  .spPadding {
    padding-inline: 15px;
  }
}

.w100 {
  width: 100%;
}

:root {
  --cnt: 1280px;
  --interval: 60px;
}

.cnt {
  width: 100%;
  padding-inline: 15px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .cnt {
    padding-inline: 5.1282051282vw;
  }
}

.cntS {
  max-width: 600px;
  margin-inline: auto;
}

.cntM2 {
  max-width: 1040px;
  margin-inline: auto;
}

.cntM {
  max-width: 1200px;
  margin-inline: auto;
}

.cntL {
  max-width: 1230px;
  margin-inline: auto;
}

.cntML {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 15px;
}

.cntXl {
  max-width: 1280px;
  margin-right: 2%;
  margin-left: 2%;
}
@media screen and (min-width: 1740px) {
  .cntXl {
    margin-inline: auto;
  }
}

.cntWide {
  max-width: 1280px;
  margin-inline: auto;
}

.cntWideL {
  max-width: 1920px;
  margin-inline: auto;
}

.paNone {
  padding: 0;
}

.rw {
  margin-inline: -15px;
}

:root {
  --spaceSizeS: clamp(25px, 10vw, 50px);
  --spaceSize: clamp(80px, 10vw, 140px);
  --spaceSizeWide: clamp(90px, 15vw, 180px);
}

.padding {
  padding-top: var(--spaceSize);
  padding-bottom: var(--spaceSize);
}
@media only screen and (max-width: 767px) {
  .padding {
    padding-top: 20.5128205128vw;
    padding-bottom: 20.5128205128vw;
  }
}

.paddingS {
  padding-top: var(--spaceSizeS);
  padding-bottom: var(--spaceSizeS);
}

.paddingW {
  padding-top: var(--spaceSizeWide);
  padding-bottom: var(--spaceSizeWide);
}

.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

.marginS {
  margin-top: var(--spaceSizeS);
  margin-bottom: var(--spaceSizeS);
}

.marginW {
  margin-top: var(--spaceSizeWide);
  margin-bottom: var(--spaceSizeWide);
}

.marginInlineNone {
  margin-inline: 0 !important;
}

.marginCenter {
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .spMargin {
    margin-block: 100px;
  }
}

/*背景系*/
.bgImg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bgImgHeight {
  padding-bottom: 67%;
}

.bgImgParallax {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bgFixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 767px) {
  .bgFixed {
    background-attachment: inherit;
  }
}

.bgImgCircle {
  border-radius: 50%;
  padding-bottom: 100%;
}

.bgBlur {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bgBlur:before {
  content: "";
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.bgWhite {
  background-color: #ffffff;
}

.bgZoom {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bgZoomImg {
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  height: 100%;
  top: 0;
  left: 0;
}

a:hover .bgZoomImg {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}

.bgZoomText {
  position: relative;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

/*テーブルboostrap*/
table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th {
  text-align: inherit;
  font-weight: normal;
}
.table td,
.table th {
  padding: 1.2rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8edf0;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

/*マスクアニメーション*/
.maskCenter .maskWrap {
  margin-left: auto;
  margin-right: auto;
}

.maskWrap {
  display: table;
  overflow: hidden;
}

.maskWrap .mask {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

.maskWrap .maskBg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ae9373;
}

/*角丸*/
.radiusS {
  border-radius: 10px;
}

.radiusM {
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .radiusM {
    border-radius: 8px;
  }
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusCircle {
  border-radius: 50%;
}

/*影*/
.shadowS {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media only screen and (max-width: 767px) {
  .shadowS {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.shadowM {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (max-width: 767px) {
  .shadowM {
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@media only screen and (max-width: 767px) {
  .shadowL {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
  }
}

.shadowLL {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

/*マウスストーカー*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
.zIndex-1 {
  z-index: 1;
}

.zIndex-2 {
  z-index: 2;
}

.zIndex-3 {
  z-index: 3;
}

.zIndex-4 {
  z-index: 4;
}

.zIndex-5 {
  z-index: 5;
}

.zIndex-6 {
  z-index: 6;
}

.zIndex-7 {
  z-index: 7;
}

.zIndex-8 {
  z-index: 8;
}

.zIndex-9 {
  z-index: 9;
}

.zIndex-10 {
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .zIndex-1_sp {
    z-index: 1;
  }
  .zIndex-2_sp {
    z-index: 2;
  }
  .zIndex-3_sp {
    z-index: 3;
  }
  .zIndex-4_sp {
    z-index: 4;
  }
  .zIndex-5_sp {
    z-index: 5;
  }
  .zIndex-6_sp {
    z-index: 6;
  }
  .zIndex-7_sp {
    z-index: 7;
  }
  .zIndex-8_sp {
    z-index: 8;
  }
  .zIndex-9_sp {
    z-index: 9;
  }
  .zIndex-10_sp {
    z-index: 10;
  }
}
/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
@media only screen and (max-width: 959px) {
  .overRayBox {
    padding-left: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
  }
  .open .overRayBox {
    cursor: url(../images/cross.svg), auto;
    visibility: visible;
    opacity: 1;
  }
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
@media only screen and (max-width: 959px) {
  .menu-btn {
    background: transparent;
    border: none;
    padding: 0.3em;
    border-radius: 0.3em;
    z-index: 1000;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-inline: 6px;
  }
  .menu-btn .text {
    color: #fff;
    margin-left: 0.5em;
    font-size: 16px;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --menuTrigeHeight: 22px;
}

.menu-trigger {
  position: relative;
  height: var(--menuTrigeHeight);
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu-trigger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2a2a2a;
}
.menu-trigger span:nth-of-type(1) {
  top: 5px;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 5px;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-25deg);
  transform: translateY(6px) rotate(-25deg);
}
.menu-trigger.active span:nth-of-type(2) {
  bottom: 1px;
  -webkit-transform: translateY(-7px) rotate(25deg);
  transform: translateY(-7px) rotate(25deg);
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*==================================================
 * トップページ
 *================================================*/
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
.breadcrumbs {
  margin-block: 10px;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    margin-block: 3px;
  }
}

.breadcrumbsInner span {
  font-size: 14px;
  font-family: var(--fontJp);
}
@media only screen and (max-width: 767px) {
  .breadcrumbsInner span {
    font-size: 11px;
  }
}

/*パンくず終わり*/
/*新着情報------------------------------------*/
.topicsItemBox > div {
  gap: 5px 10px;
}

.topicsItemImgBox {
  overflow: hidden;
  border-radius: 0.5em;
}
.topicsItemImgBox img {
  aspect-ratio: 2/1.32;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topicsCard:hover .topicsItemImgBox img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.topTopicsItemTitle {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topicsCard:hover .topTopicsItemTitle {
  color: var(--subColor);
}

.otherNewsBlockTitle {
  background-color: var(--subColor);
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  padding: 0.3em 1.2em;
  letter-spacing: 0.08em;
}

/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-inline: auto;
}
.cform tr {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  display: block;
  width: 100%;
  text-align: left;
}
.cform tr th {
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 15px;
  width: 230px;
}
.cform tr td {
  width: calc(100% - 230px);
}
.cform tr td + td {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    display: block;
  }
  .cform tr th {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }
  .cform tr td {
    width: 100%;
  }
}
.cform label {
  cursor: pointer;
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform select {
  cursor: pointer;
}
.cform option,
.cform textarea,
.cform select,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=tel],
.cform input[type=url] {
  background-color: #f9f9f9;
  width: 100%;
  border: none;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  border-radius: 0;
}
.cform option::-webkit-input-placeholder,
.cform textarea::-webkit-input-placeholder,
.cform select::-webkit-input-placeholder,
.cform input[type=text]::-webkit-input-placeholder,
.cform input[type=email]::-webkit-input-placeholder,
.cform input[type=search]::-webkit-input-placeholder,
.cform input[type=tel]::-webkit-input-placeholder,
.cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform select::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=tel]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder,
.cform textarea:-ms-input-placeholder,
.cform select:-ms-input-placeholder,
.cform input[type=text]:-ms-input-placeholder,
.cform input[type=email]:-ms-input-placeholder,
.cform input[type=search]:-ms-input-placeholder,
.cform input[type=tel]:-ms-input-placeholder,
.cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder,
.cform textarea::-ms-input-placeholder,
.cform select::-ms-input-placeholder,
.cform input[type=text]::-ms-input-placeholder,
.cform input[type=email]::-ms-input-placeholder,
.cform input[type=search]::-ms-input-placeholder,
.cform input[type=tel]::-ms-input-placeholder,
.cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-webkit-input-placeholder, .cform textarea::-webkit-input-placeholder, .cform select::-webkit-input-placeholder, .cform input[type=text]::-webkit-input-placeholder, .cform input[type=email]::-webkit-input-placeholder, .cform input[type=search]::-webkit-input-placeholder, .cform input[type=tel]::-webkit-input-placeholder, .cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform select::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=tel]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder, .cform textarea:-ms-input-placeholder, .cform select:-ms-input-placeholder, .cform input[type=text]:-ms-input-placeholder, .cform input[type=email]:-ms-input-placeholder, .cform input[type=search]:-ms-input-placeholder, .cform input[type=tel]:-ms-input-placeholder, .cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder, .cform textarea::-ms-input-placeholder, .cform select::-ms-input-placeholder, .cform input[type=text]::-ms-input-placeholder, .cform input[type=email]::-ms-input-placeholder, .cform input[type=search]::-ms-input-placeholder, .cform input[type=tel]::-ms-input-placeholder, .cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform select::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=tel]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform .zip {
  max-width: 200px;
}
.cform .title {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cform input[type=radio] {
  display: none;
}
.cform input[type=radio] + span {
  padding-left: 2em;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.cform input[type=radio] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: -1px;
  left: 0;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.cform input[type=radio] + span::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 45%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .cform input[type=radio] + span::after {
    top: 47%;
  }
}
.cform input[type=radio]:checked + span::after {
  display: block;
}
.cform input[type=checkbox] {
  display: none;
}
.cform input[type=checkbox] + span {
  cursor: pointer;
  padding-left: 1.7em;
  position: relative;
}
.cform input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
}
.cform input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--subColor);
  border-bottom: 2px solid var(--subColor);
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 8px;
  width: 14px;
  display: none;
}
.cform input[type=checkbox]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
  .cform .title {
    font-size: 14px;
  }
}

.contactFormPrivacyAlertBox {
  background-color: #f9f9f9;
  padding: 5%;
}

.mwform-checkbox-field {
  cursor: pointer;
  margin-bottom: 1%;
  display: inline-block;
}
.mwform-checkbox-field input {
  cursor: pointer;
  margin-top: 1px;
}
@media only screen and (max-width: 767px) {
  .mwform-checkbox-field {
    margin-bottom: 3%;
  }
}

.mwform-radio-field {
  cursor: pointer;
  margin-bottom: 0.5%;
  display: inline-block;
}
.mwform-radio-field input {
  cursor: pointer;
  margin: 0;
  margin-right: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.mw_wp_form_confirm .hopeBlock div {
  width: 200px;
}
.mw_wp_form_confirm .hopeBlock div + div {
  width: calc(100% - 200px);
}

.required-srt {
  background-color: #ff5b5b;
  color: #fff;
  font-size: 14px;
  font-family: var(--fontJp);
  margin-left: 1em;
  padding: 0.1em 0.8em;
}
@media only screen and (max-width: 767px) {
  .required-srt {
    font-size: 12px;
    padding: 0.2em 1em;
  }
}

.cform [type=submit] {
  display: inline-block;
  font-size: 20px;
  padding: 10px 30px;
  text-decoration: none;
  background: #ff8f00;
  color: #fff;
  border-bottom: solid 4px #b17c00;
  border-radius: 3px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.contactAlertBox {
  background-color: #fff;
  padding: 8% 5%;
  margin: 0 0 5%;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 0 0 6%;
  }
}

.contactAlertTitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 1.5em;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  border-radius: 70px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: var(--fontJp);
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-block: 1.2em;
  position: relative;
  margin-inline: auto;
  letter-spacing: 0.15em;
  text-align: center;
  width: 300px;
}
.submit-btn input:hover {
  background-color: #fff;
  color: var(--mainColor);
}
.submit-btn input[name=submitBack] {
  background-color: #838383;
  border-color: #838383;
  width: 250px;
}
.submit-btn input[name=submitBack]:hover {
  background-color: #fff;
  color: var(--fontColor);
}

.contactHr {
  margin: 7% 0;
}
@media only screen and (max-width: 767px) {
  .contactHr {
    margin: 12% 0;
  }
}

.mw_wp_form_confirm .confirm-none {
  display: none;
}

.mw_wp_form_complete .complete-none {
  display: none;
}

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

.widgettitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

li.widget li {
  color: #a7a7a7;
  margin-bottom: 3%;
}

/*タグクラウド*/
.tagCloud li {
  list-style: none;
  background: #db4a39;
  display: inline-block;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 12px;
}

.tagCloud li .glyphicon {
  right: 5px;
}

.tagCloud li a {
  color: #fff;
  font-weight: 100;
  text-decoration: none;
}

.tagcloud a {
  color: #808080;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 2%;
  margin-bottom: 5%;
  display: inline-block;
}

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  margin-inline: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: var(--mainColor);
}
.entry blockquote {
  padding: 2em 4em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(64, 27, 23, 0.1)));
  background: -webkit-linear-gradient(transparent 50%, rgba(64, 27, 23, 0.1) 50%);
  background: linear-gradient(transparent 50%, rgba(64, 27, 23, 0.1) 50%);
}
.entry p {
  margin: 0.5em 0 1em 0;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.entry h1 span,
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h1 {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 8% auto 3%;
  padding: 0.5em 1.3em;
}
@media only screen and (max-width: 767px) {
  .entry h1 {
    font-size: 20px;
    padding: 0.6em 1.2em;
  }
}
.entry h2 {
  background-color: #f9f9f9;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-left: 1.3em;
  padding-block: 0.3em;
  margin-bottom: 3%;
}
.entry h2::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry h3 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-left: 1.3em;
  padding-block: 0.3em;
  margin-bottom: 3%;
}
.entry h3::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry h4 {
  position: relative;
  border-bottom: 2px solid #b8b8b8;
  font-size: 22px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  margin-bottom: 2%;
}
.entry h4::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 15%;
  height: 3px;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    font-size: 20px;
    margin: 10% auto 6%;
  }
  .entry h4::after {
    width: 35%;
  }
}
.entry h5 {
  font-size: 21px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-block: 0.3em;
  margin-block: 3%;
  border-block: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h5 {
    font-size: 20px;
    margin: 5% auto 3%;
  }
}
.entry h6 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1%;
}
@media only screen and (max-width: 767px) {
  .entry h6 {
    font-size: 18px;
  }
}
.entry table {
  margin-bottom: 2%;
}
.entry table tr:nth-child(2n) td {
  background-color: #f7f6f9;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 1rem 2rem;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 0.5em 0.5em;
    border-bottom: 1px solid var(--mainColor);
  }
}
.entry table tr {
  border-bottom: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid var(--mainColor);
}
.entry table td {
  border: 1px solid var(--mainColor);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .entry table {
    width: 500px;
  }
}
.entry ul {
  margin-bottom: 2%;
  background-color: var(--grayColor);
  padding: 3% 5%;
}
.entry li {
  list-style-type: none;
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
}
.entry li:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f14a";
  color: var(--mainColor);
  position: absolute;
  left: 0;
  font-weight: 400;
}

/*目次*/
.toc_number {
  font-family: var(--fontNum);
  font-size: 18px;
  line-height: 1;
  color: #cacaca;
  font-weight: normal;
}

#toc_container {
  background: var(--grayColor);
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: var(--mainColor);
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid var(--mainColor);
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.toc_toggle {
  font-size: 14px;
}

.wp-caption {
  max-width: 100% !important;
  padding: 2%;
  margin: auto auto 3% auto;
}

.wp-caption-text {
  background: rgba(195, 184, 177, 0.67);
  width: 100%;
  text-align: left;
  padding: 1% 3%;
  word-wrap: break-word;
  font-size: 10px;
  color: white !important;
  position: relative !important;
  z-index: 1;
  top: -35px;
  display: block;
  left: 5%;
}

.wp-caption-text a {
  color: white;
}

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330deg, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
.entry img {
  margin: 2% auto 3%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: var(--mainColor);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

.lkc-external-wrap,
.lkc-internal-wrap {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid var(--mainColor);
  border-radius: 10px;
}

.lkc-external-wrap,
.lkc-internal-wrap,
.lkc-this-wrap {
  max-width: none;
}

.lkc-thumbnail-img {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .lkc-thumbnail-img {
  opacity: 0.7;
}

.lkc-thumbnail {
  margin-right: 3%;
}

.lkc-date {
  position: absolute;
  bottom: 10%;
  right: 3%;
  color: var(--mainColor);
  font-family: var(--fontNum);
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: var(--mainColor);
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}
.lkc-card img {
  vertical-align: middle;
}

.lkc-content {
  overflow: auto !important;
  height: inherit !important;
}

.lkc-sns-fb {
  padding: 1%;
}

/*コメント*/
div#respond textarea,
div#respond input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  padding: 10px;
}

#respond input#submit {
  background: #0a0a0a;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#respond input#submit:hover {
  background: #cc6699;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*記事詳細-----------------------------------*/
/*記事コンテンツ周り*/
.singleColumnArticle {
  margin-bottom: 10%;
}

.singleColumnTitle {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 18px;
  }
}

.cateCss {
  display: inline-block;
  font-size: 14px;
  background-color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cateCss {
    font-size: 11px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 0.6em;
  font-size: 13px;
  color: var(--fontColor);
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 14px;
  background-color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
.singleColumnInfoUl .cateUl li + li {
  margin-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

/*この記事をシェアするボタン*/
.singleColumnShareButton {
  border-radius: 10px;
  padding: 0.7rem 1rem;
  width: 20%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.singleColumnShareButton + .singleColumnShareButton {
  margin-left: 3%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 31.33333%;
  }
}
.singleColumnShareButton > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}
.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton.twitter {
  background: #000;
  border: 1px solid #000;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #000;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}
.singleColumnShareButton.line {
  background: #4cc764;
  border: 1px solid #4cc764;
}
.singleColumnShareButton.line:hover {
  background: #fff;
  color: #4cc764;
}

.singleColumnShareTitle {
  font-size: 16px;
  font-weight: 600;
  width: 27%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 3%;
  }
}

/*この記事を書いた人*/
.singleColumnWriterImg {
  padding-bottom: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .singleColumnWriterImgBox {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
  }
}

.singleColumnWriter {
  padding: 5% 3%;
  margin: 6% 0 6% 0;
  background-color: #f9f9f9;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  font-weight: 600;
  letter-spacing: 0.15em;
  position: relative;
}
.singleColumnWriterTitle::before {
  content: "";
  position: absolute;
  background: #afafaf;
  top: 50%;
  right: 0;
  height: 1px;
  width: calc(100% - 11em);
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid var(--mainColor);
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--mainColor);
}
.singleColumnWriterButton:hover {
  background: var(--mainColor);
  color: #fff;
}

.singleColumnWriterInnerHead .leftbox {
  width: 65%;
}
.singleColumnWriterInnerHead .rightbox {
  width: 35%;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriterInnerHead .leftbox {
    width: 70%;
  }
  .singleColumnWriterInnerHead .rightbox {
    width: 30%;
  }
}

.sidebarWriterSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebarWriterSns li {
  margin-bottom: 4%;
  width: 20%;
}
.sidebarWriterSns li + li {
  margin-left: 5%;
}
.sidebarWriterSns li a {
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sidebarWriterSns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .sidebarWriterSns li {
    width: 45%;
    margin-bottom: 10%;
  }
  .sidebarWriterSns li + li {
    margin-left: 0;
  }
}

/*次のページを見る*/
.singlePageLinkBox + .singlePageLinkBox {
  margin-left: 5em;
}
@media only screen and (max-width: 767px) {
  .singlePageLinkBox + .singlePageLinkBox {
    margin-left: 2.5em;
  }
}
.singlePageLinkBox + .singlePageLink.next {
  margin-left: 5em;
}
@media only screen and (max-width: 767px) {
  .singlePageLinkBox + .singlePageLink.next {
    margin-left: 2.5em;
  }
}

.singlePageLink.prev + .singlePageLinkBox {
  margin-left: 5em;
}
@media only screen and (max-width: 767px) {
  .singlePageLink.prev + .singlePageLinkBox {
    margin-left: 2.5em;
  }
}

.cmNewsText {
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #afafaf;
  font-size: 14px;
}
.singlePageLinkBox.next .cmNewsText {
  text-align: left;
}

.singlePageLink {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.singlePageLink::before, .singlePageLink::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}
.singlePageLink::before {
  background: var(--mainColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 35px;
  width: 35px;
}
.singlePageLink::after {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  height: 13px;
  width: 8px;
  z-index: 2;
}
.singlePageLink.prev {
  padding-left: 3.5em;
}
.singlePageLink.prev::before {
  left: 0;
}
.singlePageLink.prev::after {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  left: 13px;
}
.singlePageLink.next {
  padding-right: 3.5em;
}
.singlePageLink.next::before {
  right: 0;
}
.singlePageLink.next::after {
  right: 13px;
}
.singlePageLink:hover {
  color: var(--subColor);
}
.singlePageLink:hover::before {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .singlePageLink::before {
    height: 25px;
    width: 25px;
  }
  .singlePageLink::after {
    height: 9px;
    width: 7px;
    z-index: 2;
  }
  .singlePageLink.prev {
    padding-left: 2.4em;
  }
  .singlePageLink.prev::after {
    left: 8px;
  }
  .singlePageLink.next {
    padding-right: 2.4em;
  }
  .singlePageLink.next::after {
    right: 8px;
  }
}

.otherNewsTitle {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  font-family: serif;
  padding: 0.3em 1.3em;
  border-radius: 16px;
  margin-bottom: 4%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .otherNewsTitle {
    font-size: 20px;
    padding: 0.6em 1.3em;
  }
}

.otherNews {
  margin-bottom: 5%;
}
.otherNews li + li {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .otherNews li + li {
    margin-top: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .otherNewsBlock {
    background-color: #fff;
    display: block;
    border-radius: 8px;
    padding: 5% 0;
  }
}

.otherNewsBlockImg {
  overflow: hidden;
  border-radius: 16px;
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .otherNewsBlockImg {
    border-radius: 8px;
    margin-bottom: 5%;
    width: 100%;
  }
}

.otherNewsBlockTextBox {
  padding-left: 5%;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .otherNewsBlockTextBox {
    padding-left: 0;
    width: 100%;
  }
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.cmNewsListUl > li {
  width: calc(50% - 15px);
}
.cmNewsListUl a {
  display: block;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmNewsListUl {
    row-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .cmNewsListUl > li {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .cmNewsListUl {
    row-gap: 0;
    -moz-column-gap: 0;
    -webkit-column-gap: 0;
    column-gap: 0;
  }
  .cmNewsListUl > li {
    width: 100%;
    margin: 0 2%;
    margin-bottom: 10%;
  }
}

.cmNewsListCard {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cNewsDate {
  margin-right: 0.8em;
  letter-spacing: 0.1em;
  color: var(--mainColor);
  font-size: 13px;
}

.cmNewsTitle {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
  }
}

.cmNewsDescri {
  font-size: 13px;
  margin-bottom: 3%;
  color: #a0a0a0;
}
@media only screen and (max-width: 767px) {
  .cmNewsDescri {
    font-size: 12px;
    line-height: 1.5;
  }
}

.cmNewsListImgFrame {
  border: 1px solid var(--mainColor);
}

.cmNewsListImg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 70%;
}
a:hover .cmNewsListImg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cmNewsListImgWrap {
  overflow: hidden;
  border-radius: 8px;
  width: 30%;
}

.cmNewsListtextBox {
  padding-left: 5%;
  width: 70%;
}

.cmNewsListInfoUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.4em 0.5em;
  line-height: 1;
}
.cmNewsListInfoUl li {
  display: inline-block;
  font-size: 14px;
  background-color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 11px;
  }
}

.pagenation {
  margin-top: 8%;
}
.pagenation .prev a,
.pagenation .next a {
  display: block;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  height: 40px;
  width: 40px;
  border-radius: 0.2em;
}
.pagenation .prev a::before,
.pagenation .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid var(--fontColor);
  border-right: 2px solid var(--fontColor);
  height: 10px;
  width: 10px;
}
.pagenation .prev a::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.1em;
}
.pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagenation ul li {
  margin-inline: 0.4em;
}
.pagenation ul li.active,
.pagenation ul li a {
  text-align: center;
  color: var(--fontColor);
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: "Figtree", sans-serif;
  border-radius: 0.2em;
}
.pagenation ul li.active {
  background-color: #44525a;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .pagenation {
    margin-top: 15%;
  }
}

/*ページャー、ページネーション------------------------------------*/
.page-numbers {
  padding: 0.7% 1%;
}

span.page-numbers {
  color: var(--mainColor);
  font-weight: bold;
}

a.page-numbers {
  color: #c5c5c5;
}

/*==================================================
 * サイドバー
 *================================================*/
@media only screen and (max-width: 767px) {
  #sidebar {
    margin-top: 15%;
  }
}

.sidebarBox {
  margin-bottom: 15%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
    margin-bottom: 8%;
  }
}

.sidebarNewsUl .cat-item {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #dcdcdc;
}
.sidebarNewsUl .cat-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover {
  opacity: 0.7;
}
.sidebarNewsUl .cat-item .date {
  font-size: 13px;
  color: var(--fontColor);
}
.sidebarNewsUl .cat-item .title {
  font-size: 15px;
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
  }
}

.popularCount {
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  font-family: var(--fontEn);
  font-weight: 600;
  font-size: 19px;
  top: -10px;
  left: calc(35% - 10px);
  height: 25px;
  width: 25px;
  z-index: 2;
}
.popularCount.__popular1 {
  background-color: #d1aa3a;
}
.popularCount.__popular2 {
  background-color: #b8b9ba;
}
.popularCount.__popular3 {
  background-color: #ba7e4c;
}
.popularCount.__popular4 {
  background-color: #89a5ff;
}
.popularCount.__popular5 {
  background-color: #89a5ff;
}

.sidebarCategoryBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 14px;
  background-color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}

.sidebarTitle {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2%;
}
.sidebarTitle span {
  line-height: 1.4;
  font-size: 29px;
  font-weight: 600;
  color: rgba(18, 21, 23, 0.4);
  display: inline-block;
  margin-right: 0.1em;
  letter-spacing: 0.06em;
  font-family: "Figtree", sans-serif;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarTitle {
    font-size: 14px;
  }
  .sidebarTitle span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    margin-bottom: 1em;
  }
}

.sidebarRankingImg {
  width: 40%;
  padding-bottom: 26%;
  margin-right: 5%;
  border-radius: 5px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingImg {
    display: none;
  }
}

.sidebarRankingText {
  width: 60%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingText {
    width: 100%;
  }
}

.sidebarRankingNum {
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: var(--mainColor);
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

#sidebar select {
  width: 100%;
  padding: 0.7em;
  border: none;
}

.archive-block {
  border-bottom: 1px solid #ccc;
}

.archive-year {
  cursor: pointer;
  padding-block: 0.5em;
  position: relative;
}
.archive-year::before {
  content: "";
  position: absolute;
  top: 1em;
  border-top: 1px solid var(--mainColor);
  border-right: 1px solid var(--mainColor);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 20px;
  height: 0.7em;
  width: 0.7em;
}
.archive-year.active::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.archive-months {
  display: none;
}

.archive-months-list {
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 0.5em;
  padding-left: 1em;
}
.archive-months-list:first-of-type {
  border-top: 1px solid #ccc;
}
.archive-months-list:last-of-type {
  border-bottom: none;
}

.sidebarTagWrap a {
  font-size: 14px !important;
  color: var(--mainColor);
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: var(--grayColor);
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/* ==========================================================================
   ========================================================================== */
/* NUVIA — Adobe Fonts 未契約環境向けの英文フォールバック */
/* ==========================================================================
   ↓↓↓ ここから NUVIA — 共通スタイル（全ページで効く）
   - root 変数 / mixin / 共通コンテナ / 共通ボタン / Header
   - 旧 _common.scss から移行（_style.scss に統合運用）
   ========================================================================== */
:root {
  --nv-white: #ffffff;
  --nv-bg-warm: #f7f4ee;
  --nv-bg-deep: #eae4dc;
  --nv-text: #1a1a1a;
  --nv-line: #cfcfcf;
  --nv-cta: #b8a89d;
  --nv-cta-hover: #a38f80;
  --nv-ff-en:
    "Cormorant Garamond", "EB Garamond", "Hiragino Mincho ProN", serif;
  /* --nv-ff-jp は body 既定スタック。Shippori Mincho ベースで、英字・数字も Shippori の
     英字グリフ（和文向けに作られた英字）で表示される。
     英字を Cormorant Garamond に切り替えたい個別要素には @include nv-en もしくは
     font-family: $nvEn を明示的に当てる設計。明示の有無で見た目が変わる */
  --nv-ff-jp:
    "Shippori Mincho", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
  --nv-track-en-wide: 0.18em;
  --nv-track-jp: 0.08em;
}

/* ピンポイント用フォントショートハンド — ユーザー手作業で個別要素に当てる用
   使い方: `font-family: $nvEn;` で英字（数字含む）専用のスタックを当てる。
   letter-spacing と font-weight も一緒に当てたい場合は @include nv-en / nv-jp を使う */
body {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: var(--nv-track-jp); /* NUVIA: 0.08em（旧 0.05em から変更） */
  font-family: var(--nv-ff-jp); /* NUVIA: Shippori Mincho（旧 Noto Sans JP から変更） */
  font-weight: 500;
  background-color: #f7f4ee;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3.8461538462vw;
  }
}

[data-fadein] {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease-out;
  transition: opacity 1.2s ease-out;
}

[data-fadein].is-fadein {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-fadein] {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}
.en {
  font-family: "Figtree", sans-serif;
}

.gsans {
  font-family: "Google Sans", sans-serif;
}

/*==================================================
 * 当サイト共通
*================================================*/
main {
  overflow-x: hidden;
}

body:not(.home) main.nvMain {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  body:not(.home) main.nvMain {
    padding-top: 15.3846153846vw;
  }
}

.telLink {
  text-decoration: none !important;
}
@media print, screen and (min-width: 768px) {
  .telLink {
    pointer-events: none;
  }
}
.telLink:hover {
  text-decoration: none !important;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

.cmnttl {
  text-align: center;
}
.cmnttl .ja {
  font-size: 1.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 0.2em;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmnttl .ja {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .cmnttl .ja {
    font-size: 1.125rem;
  }
}
.cmnttl .ja::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background: url(../img/common/wave-text.svg) repeat-x center/auto 100%;
  bottom: 0;
  left: 0;
}
.cmnttl .en {
  font-size: 4.5rem;
  font-weight: 600 !important;
  font-family: "Google Sans", sans-serif;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmnttl .en {
    font-size: 3.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .cmnttl .en {
    font-size: 2.625rem;
  }
}
.cmnttl.--white .ja,
.cmnttl.--white .en {
  color: #fff;
}
.cmnttl.--white .ja::before {
  background-image: url(../img/common/wave-text-white.svg);
}
.cmnttl.--left .ja,
.cmnttl.--left .en {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cmnttl.--left .ja {
  margin-left: 0;
  margin-right: auto;
}

.cmnbtn {
  background-color: var(--subColor);
  font-size: 1.125rem;
  font-weight: 600 !important;
  display: inline-block;
  margin-inline: auto;
  padding: 1em 2em 1em 1.5em;
  border-radius: 100vw;
  color: #fff;
  min-width: 230px;
  text-align: left;
  position: relative;
  border: solid 2px var(--subColor);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmnbtn {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .cmnbtn {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .cmnbtn {
    min-width: 150px;
  }
}
.cmnbtn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  aspect-ratio: 1/1;
  background: url(../img/common/arw-btn.svg) no-repeat center/contain;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmnbtn:hover {
  opacity: 1;
  color: #fff;
}
.cmnbtn:hover::before {
  right: 0.5em;
}
.cmnbtn.--white {
  background-color: #fff;
  color: #333;
  border-color: #fff;
}
.cmnbtn.--white::before {
  background-image: url(../img/common/arw-btn-black.svg);
}
.cmnbtn.--small {
  font-size: 0.875rem;
  padding: 0.5em 2.5em 0.5em 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: unset;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmnbtn.--small {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .cmnbtn.--small {
    font-size: 0.75rem;
  }
}

/*==================================================
 * キーフレーム
*================================================*/
@-webkit-keyframes fvZoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes fvZoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/*==================================================
 * ヘッダー
*================================================*/
.headLogo {
  z-index: 9;
  position: fixed;
  left: 15px;
  top: 25px;
}
@media only screen and (max-width: 767px) {
  .headLogo {
    top: 20px;
  }
}
.headLogo .logo {
  width: 320px;
}
@media only screen and (min-width: 960px) and (max-width: 1023px) {
  .headLogo .logo {
    width: 280px;
  }
}
@media only screen and (max-width: 959px) {
  .headLogo .logo {
    width: 285px;
  }
}
.headLogo.logo-single {
  mix-blend-mode: unset;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 16px;
  }
}
header.isFront {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
header.isFront.isShow {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
header.scrl {
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
@media only screen and (max-width: 767px) {
  header.scrl {
    background-color: transparent;
  }
}
header .nvBtn--filled {
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: unset;
  padding: 0.4em 1em;
}
@media only screen and (max-width: 767px) {
  header > .cnt {
    padding-inline: 0;
  }
}

@-webkit-keyframes gnavitemAnim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes gnavitemAnim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.headerListMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  .headerListMenu {
    row-gap: 0.7em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.headerListMenu .gNavItem a {
  padding-inline: 1em;
  display: block;
  position: relative;
}
.headerListMenu .gNavItem a:hover {
  opacity: 1;
}
@media only screen and (min-width: 960px) and (max-width: 1023px) {
  .headerListMenu .gNavItem a {
    padding-inline: 0.5em;
  }
}
@media only screen and (max-width: 959px) {
  .headerListMenu .gNavItem a::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.5em;
    aspect-ratio: 1/1;
    background: url(../img/common/arw-btn-black.svg) no-repeat center/contain;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .headerListMenu .gNavItem a {
    font-size: 1.25rem;
  }
}
.headerListMenu .gNavItem a span {
  padding-bottom: 0.4em;
  display: block;
  position: relative;
  overflow: hidden;
}
.headerListMenu .gNavItem a span::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: url(../img/common/wave-text.svg) repeat-x center/auto 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.headerListMenu .gNavItem a span:hover {
  opacity: 1;
}
.headerListMenu .gNavItem a span:hover::before {
  opacity: 1;
  -webkit-animation: gnavitemAnim 4s linear forwards infinite;
  animation: gnavitemAnim 4s linear forwards infinite;
}
.headerListMenu .gNavItem.is-active a span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.headerListMenu .gNavItem.is-active a span::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: url(../img/common/wave-text.svg) repeat-x center/auto 100%;
  left: 0;
  bottom: 0;
  opacity: 1 !important;
}

@media only screen and (max-width: 959px) {
  .overRayBlock {
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    padding-inline: 16px;
    padding-block: 10% 20%;
    overflow-y: scroll;
    height: 100dvh;
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    width: 80%;
    padding-top: 20%;
  }
}

.floatRecruit {
  position: fixed;
  width: 140px;
  right: 30px;
  top: 120px;
  z-index: 11;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.floatRecruit.isFlont {
  opacity: 0;
}
.floatRecruit.isFlont.isShow {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .floatRecruit {
    opacity: 0 !important;
    pointer-events: none;
  }
}

@media only screen and (max-width: 767px) {
  html.open .floatRecruit {
    opacity: 1 !important;
    z-index: 999999;
    top: unset;
    bottom: 10%;
    pointer-events: all;
  }
}

/*==================================================
 * フッター
*================================================*/
footer {
  background-color: #eae4dc;
  margin-top: 120px;
  padding-block: 80px 50px;
}
@media only screen and (max-width: 767px) {
  footer {
    margin-top: 80px;
  }
}
.nvFooter__logoLink {
  width: 155px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .nvFooter__logoLink {
    width: 39.7435897436vw;
  }
}
.nvFooter__logoLink img {
  width: 100%;
}

.nvFooter__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nvFooter__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.nvFooter__nav {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .nvFooter__nav {
    text-align: left;
    margin-top: 5em;
  }
}

.nvFooter__navList {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.5em;
}

.nvFooter__bottom {
  margin-top: 3em;
  padding-top: 3em;
  border-top: solid 1px #969696;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nvFooter__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 1.5em;
  }
}

.nvFooter__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
@media only screen and (max-width: 767px) {
  .nvFooter__sns {
    margin-bottom: 1em;
  }
}

.nvFooter__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3em;
  -moz-column-gap: 3em;
  column-gap: 3em;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvFooter__legal {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvFooter__legal {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvFooter__legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*==================================================
 * トップページ
*================================================*/
/*==================================================
 * お知らせ
*================================================*/
/* ==========================================================================
   TOP FV
========================================================================== */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #d9eef4;
}

.fvIntro {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  font-size: 8.9vw;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #fff;
  text-align: justify;
  pointer-events: none;
}

.fvIntro span {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  opacity: 0;
  -webkit-transform: translateY(0.08em);
  transform: translateY(0.08em);
  -webkit-animation-name: introCharIn;
  animation-name: introCharIn;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  border-bottom: solid 1px #fff;
  line-height: 1;
}

@-webkit-keyframes introCharIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(0.18em);
    transform: translateY(0.18em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes introCharIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(0.18em);
    transform: translateY(0.18em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .fvIntro {
    font-size: clamp(76px, 12vw, 72px);
    line-height: 0.92;
  }
}
.fvImg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 50%;
  overflow: hidden;
  pointer-events: none;
}
.fvImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 210%;
  mask-size: 100% 210%;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  pointer-events: none;
  -webkit-animation: none;
  animation: none;
}

.fvImg1 img {
  -webkit-mask-image: url("../img/wave.svg");
  mask-image: url("../img/wave.svg");
  -webkit-mask-position: 0 -100%;
  mask-position: 0 -100%;
}

.fvImg2 {
  top: auto;
  bottom: 0;
}
.fvImg2 img {
  -o-object-position: center top;
  object-position: center top;
  -webkit-mask-image: url("../img/wave-bottom.svg");
  mask-image: url("../img/wave-bottom.svg");
  -webkit-mask-position: 0 200%;
  mask-position: 0 200%;
}

@-webkit-keyframes waveRevealTop {
  from {
    -webkit-mask-position: 0 -100%;
    mask-position: 0 -100%;
  }
  to {
    -webkit-mask-position: 0 20%;
    mask-position: 0 20%;
  }
}

@keyframes waveRevealTop {
  from {
    -webkit-mask-position: 0 -100%;
    mask-position: 0 -100%;
  }
  to {
    -webkit-mask-position: 0 20%;
    mask-position: 0 20%;
  }
}
@-webkit-keyframes waveRevealBottom {
  from {
    -webkit-mask-position: 0 200%;
    mask-position: 0 200%;
  }
  to {
    -webkit-mask-position: 0 10%;
    mask-position: 0 10%;
  }
}
@keyframes waveRevealBottom {
  from {
    -webkit-mask-position: 0 200%;
    mask-position: 0 200%;
  }
  to {
    -webkit-mask-position: 0 10%;
    mask-position: 0 10%;
  }
}
.isLoaded .fvImg1 img {
  -webkit-animation: waveRevealTop 1s linear both;
  animation: waveRevealTop 1s linear both;
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}
@media only screen and (max-width: 767px) {
  .isLoaded .fvImg1 img {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
  }
}
.isLoaded .fvImg2 img {
  -webkit-animation: waveRevealBottom 1s linear both;
  animation: waveRevealBottom 1s linear both;
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
@media only screen and (max-width: 767px) {
  .isLoaded .fvImg2 img {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
  }
}

.fvCopy {
  position: absolute;
  top: 55%;
  left: 8%;
  z-index: 20;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
@media only screen and (max-width: 767px) {
  .fvCopy {
    top: 8.5%;
    left: 4%;
  }
}
.fvCopy.isShow {
  opacity: 1;
}

.fvCopySub {
  margin: 0 0 12px;
  font-size: clamp(1.125rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 767px) {
  .fvCopySub {
    margin-bottom: 0.2em;
  }
}

.fvCopyMain {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

@-webkit-keyframes bgMask-top {
  from {
    -webkit-mask-position: 0 top;
    mask-position: 0 top;
  }
  to {
    -webkit-mask-position: 200% top;
    mask-position: 200% top;
  }
}

@keyframes bgMask-top {
  from {
    -webkit-mask-position: 0 top;
    mask-position: 0 top;
  }
  to {
    -webkit-mask-position: 200% top;
    mask-position: 200% top;
  }
}
@-webkit-keyframes bgMask-bottom {
  from {
    -webkit-mask-position: 0 bottom;
    mask-position: 0 bottom;
  }
  to {
    -webkit-mask-position: 200% bottom;
    mask-position: 200% bottom;
  }
}
@keyframes bgMask-bottom {
  from {
    -webkit-mask-position: 0 bottom;
    mask-position: 0 bottom;
  }
  to {
    -webkit-mask-position: 200% bottom;
    mask-position: 200% bottom;
  }
}
.news {
  background-color: #f5f1eb;
}
.news .cmnttl .ja,
.news .cmnttl .en {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.newsBg {
  background: url(../img/top/bg-news.png) no-repeat center/cover;
  -webkit-mask-image: url("../img/common/mask-wave-s.svg");
  mask-image: url("../img/common/mask-wave-s.svg");
  -webkit-mask-position: 0 bottom;
  mask-position: 0 bottom;
  -webkit-mask-size: 200% auto;
  mask-size: 200% auto;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask-bottom 50s linear forwards infinite;
  animation: bgMask-bottom 50s linear forwards infinite;
}

.newsInner {
  background-color: #f6f2ed;
  padding: 3.5em;
  border-radius: 1em;
}
@media only screen and (max-width: 767px) {
  .newsInner {
    padding: 2em;
  }
}

.newsFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3em;
  -moz-column-gap: 3em;
  column-gap: 3em;
}
@media only screen and (max-width: 767px) {
  .newsFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5em;
  }
}

.newsHead {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .newsHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.newsBody {
  width: 100%;
}

.newsItem + .newsItem {
  margin-top: 2em;
  padding-top: 2em;
  border-top: solid 1px #e5e5e5;
}

.newsItemMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
  row-gap: 1em;
}

.newsItemDate {
  font-family: "Google Sans", sans-serif;
}

.newsItemCat {
  font-size: 0.875rem;
  border: solid 1px #333;
  padding: 0 1em;
  border-radius: 100vw;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsItemCat {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsItemCat {
    font-size: 0.75rem;
  }
}

.newsItemBody {
  font-size: 1.25rem;
  font-weight: 600 !important;
  margin-top: 0.5em;
  padding-right: 2em;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsItemBody {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsItemBody {
    font-size: 1rem;
  }
}
.newsItemBody::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  aspect-ratio: 1/1;
  background: url(../img/common/arw-btn-black.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ==========================================================================
   COMPANY セクション
========================================================================== */
.companySection {
  position: relative;
  background: #f5f1eb;
}

.companyPin {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: -webkit-radial-gradient(50% 40%, circle, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%), -webkit-radial-gradient(18% 48%, circle, rgba(220, 226, 231, 0.28) 0%, rgba(220, 226, 231, 0) 22%), -webkit-radial-gradient(82% 45%, circle, rgba(234, 224, 209, 0.24) 0%, rgba(234, 224, 209, 0) 22%), #f5f1eb;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%), radial-gradient(circle at 18% 48%, rgba(220, 226, 231, 0.28) 0%, rgba(220, 226, 231, 0) 22%), radial-gradient(circle at 82% 45%, rgba(234, 224, 209, 0.24) 0%, rgba(234, 224, 209, 0) 22%), #f5f1eb;
}

.companyBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.companyContent {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(760px, 84vw);
  text-align: center;
}

.companyHeading {
  line-height: 1;
}

.companyText {
  margin-inline: auto;
}

.companyButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}
.companyButtons > *:first-of-type {
  margin-left: auto;
  margin-right: 0;
}
.companyButtons > *:last-of-type {
  margin-right: auto;
  margin-left: 0;
}

.companyButtonPrimary {
  color: #fff;
  background: #f14b12;
}

.companyButtonSecondary {
  color: #f14b12;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(241, 75, 18, 0.16);
}

.companyVisuals {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.companyVisualItem {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  aspect-ratio: 1/1;
}
.companyVisualItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.companyShape {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
}

.companyShapeCircle {
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.companyShapeOval {
  width: 320px;
  height: 100%;
  border-radius: 999px;
}

.companyToneBlue {
  background: -webkit-linear-gradient(315deg, #d7e2ea 0%, #8ea6bb 100%);
  background: linear-gradient(135deg, #d7e2ea 0%, #8ea6bb 100%);
}

.companyToneBrown {
  background: -webkit-linear-gradient(315deg, #d7b38e 0%, #b88f66 100%);
  background: linear-gradient(135deg, #d7b38e 0%, #b88f66 100%);
}

.companyToneGreen {
  background: -webkit-linear-gradient(315deg, #8ab6aa 0%, #5d8e84 100%);
  background: linear-gradient(135deg, #8ab6aa 0%, #5d8e84 100%);
}

.companyToneGray {
  background: -webkit-linear-gradient(315deg, #eceef1 0%, #8f99a8 100%);
  background: linear-gradient(135deg, #eceef1 0%, #8f99a8 100%);
}

.companyToneKhaki {
  background: -webkit-linear-gradient(315deg, #d1b78c 0%, #92785a 100%);
  background: linear-gradient(135deg, #d1b78c 0%, #92785a 100%);
}

.companyDot {
  border-radius: 100vw;
  width: 5.385%;
}
@media only screen and (max-width: 767px) {
  .companyDot {
    width: 15%;
  }
}

.companyDotGreen {
  background: #c7dc72;
  top: 0;
  left: 10%;
}

.companyDotBlue {
  background: #7cc6e7;
}

.companyDotOrange {
  background: #ef9b5d;
}

.companyDotRed {
  background: #d94821;
}

.companyDotLime {
  background: #b9d86b;
}

.companyDotCream {
  background: #f3e5be;
}

.companyDotLavender {
  background: #9e8fbd;
}

.companyDotYellow {
  background: #e9c84d;
}

.companyDotCoral {
  background: #d9715a;
}

.companyDotSageGreen {
  background: #7bbb69;
}

.companyDotTeal {
  background: #5bad9f;
}

.companyVisualItem01 {
  right: 10%;
  top: 0;
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem01 {
    width: 25%;
  }
}

.companyVisualItem02 {
  left: 5%;
  top: 0%;
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem02 {
    width: 25%;
  }
}

.companyVisualItem03 {
  right: 5%;
  top: 10%;
  width: 32.943%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem03 {
    width: 60%;
  }
}

.companyVisualItem04 {
  left: 35%;
  top: 55%;
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem04 {
    width: 25%;
    top: 30%;
    left: 15%;
  }
}

.companyVisualItem05 {
  left: 5%;
  top: 52%;
  width: 32.943%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem05 {
    width: 60%;
    top: 20%;
  }
}

.companyVisualItem06 {
  left: 45%;
  bottom: 0%;
  width: 32.943%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem06 {
    width: 60%;
  }
}

.companyVisualItem07 {
  right: 3%;
  top: 56%;
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem07 {
    width: 25%;
    right: unset;
    left: 5%;
  }
}

.companyVisualItem08 {
  left: 11%;
  bottom: 0%;
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .companyVisualItem08 {
    width: 25%;
  }
}

.companyVisualItem09 {
  left: 11%;
  top: 0%;
}

.companyVisualItem10 {
  right: 5%;
  top: 0%;
}

.companyVisualItem11 {
  left: 17%;
  top: 22%;
}

.companyVisualItem12 {
  right: 10%;
  top: 40%;
}

.companyVisualItem13 {
  left: 5%;
  bottom: 0%;
}

.companyVisualItem14 {
  right: 5%;
  bottom: 0%;
}

.companyVisualItem15 {
  left: 35%;
  bottom: -10%;
}

.companyWave {
  position: relative;
  width: 100%;
  height: 22vw;
  min-height: 170px;
  margin-top: -1px;
  background: #f5f1eb;
}
.companyWave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.companyWave path {
  fill: #f5f1eb;
}

@media (max-width: 767px) {
  .scompanyText {
    width: 75%;
  }
  .companyHeading {
    font-size: 3.25rem;
  }
  .companyText {
    font-size: 0.8125rem;
    line-height: 2;
  }
  .companyShapeCircle {
    width: 118px;
  }
  .companyShapeOval {
    width: 154px;
    height: 82px;
  }
}
.serviceBgWrap {
  background-color: #f6f2ed;
}

@-webkit-keyframes bgMask {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 200% 0%;
    mask-position: 200% 0%;
  }
}

@keyframes bgMask {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 200% 0%;
    mask-position: 200% 0%;
  }
}
@-webkit-keyframes bgMask--bottom {
  from {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
  to {
    -webkit-mask-position: 200% 100%;
    mask-position: 200% 100%;
  }
}
@keyframes bgMask--bottom {
  from {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
  to {
    -webkit-mask-position: 200% 100%;
    mask-position: 200% 100%;
  }
}
@-webkit-keyframes bgMask-sp {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 350% 0%;
    mask-position: 350% 0%;
  }
}
@keyframes bgMask-sp {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 350% 0%;
    mask-position: 350% 0%;
  }
}
.serviceBg {
  background: url(../img/top/bg-service.jpg) no-repeat center top/cover;
  -webkit-mask-image: url(../img/common/mask-wave.svg);
  mask-image: url(../img/common/mask-wave.svg);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask 30s linear forwards infinite;
  animation: bgMask 30s linear forwards infinite;
}
@media only screen and (max-width: 767px) {
  .serviceBg {
    -webkit-mask-size: 350% 100%;
    mask-size: 350% 100%;
    -webkit-animation: bgMask-sp 60s linear forwards infinite;
    animation: bgMask-sp 60s linear forwards infinite;
  }
}

.serviceCardList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .serviceCardList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.serviceCardList > * {
  width: calc(33.3333333333% - 13.3333333333px);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .serviceCardList > * {
    width: calc(50% - 10px);
  }
  .serviceCardList > *:first-of-type {
    margin-left: 10%;
    margin-right: 10%;
  }
}
.serviceCardList > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffda54;
  border-radius: 100vw;
}
.serviceCardList > * > * {
  position: relative;
  z-index: 2;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.125rem;
  font-weight: 600 !important;
  border-radius: 100vw;
  aspect-ratio: 1/1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceCardList > * > * {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .serviceCardList > * > * {
    font-size: 1.3125rem;
  }
}
.serviceCardList.is-active > *::before {
  -webkit-animation: service-en 2s forwards ease-in-out;
  animation: service-en 2s forwards ease-in-out;
}
.serviceCardList.is-active > *:nth-of-type(2)::before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.serviceCardList.is-active > *:nth-of-type(3)::before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.serviceCardTitle {
  font-weight: 600 !important;
}

@-webkit-keyframes service-en {
  0% {
    width: 100%;
  }
  50% {
    width: calc(100% + 40px);
  }
  100% {
    width: 100%;
  }
}

@keyframes service-en {
  0% {
    width: 100%;
  }
  50% {
    width: calc(100% + 40px);
  }
  100% {
    width: 100%;
  }
}
.serviceCardIcon img {
  margin-top: 0.6em;
  width: 40%;
}

.recruitFv {
  position: relative;
  overflow: hidden;
}

.recruitCircle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4000px;
  width: 294.5095168375%;
  aspect-ratio: 1/1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .recruitCircle {
    width: 270vw;
  }
}

.recruitCircleImg {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-animation: recruitCircleRotate 160s linear infinite;
  animation: recruitCircleRotate 160s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.recruitFvMain {
  position: relative;
  z-index: 2;
  padding-top: 14%;
}

.recruitFvBg {
  width: 294.5095168375%;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-mask-image: url("../img/recruit-footer-bg-mask.svg");
  mask-image: url("../img/recruit-footer-bg-mask.svg");
  -webkit-mask-position: center top;
  mask-position: center top;
}
.recruitFvBg img {
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

.recruitFvBgIn {
  width: 100vw;
  margin-inline: auto;
}

.recruitFvBg img {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.recruitFvBody {
  width: calc(100% - 80px);
  max-width: 1200px;
  color: #fff;
  z-index: 4;
  position: relative;
  text-align: center;
  margin-inline: auto;
}

.recruitFvTitle {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}

.recruitFvText {
  margin-top: 24px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
}

.recruitFvBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.recruitFvBtn {
  min-width: 180px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #ff5a1f;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.recruitFvBtn:hover {
  opacity: 0.8;
}

@-webkit-keyframes recruitCircleRotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes recruitCircleRotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  .recruitFvMain {
    padding-top: 15%;
  }
  .recruitFvBody {
    width: calc(100% - 10px);
    top: 58%;
  }
  .recruitFvTitle {
    font-size: 2.1rem;
  }
  .recruitFvText {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.9;
  }
  .recruitFvBtnList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .recruitFvBtn {
    min-width: auto;
    width: 100%;
    padding: 16px 20px;
  }
}
.companyText {
  max-width: 600px;
  text-align: left;
}

/*==================================================
 * 下層ページ
*================================================*/
@-webkit-keyframes bgLoop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--tile-w) * -1) 0;
  }
}
@keyframes bgLoop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--tile-w) * -1) 0;
  }
}
@-webkit-keyframes waveMedBottomScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--wave-w) * -1) 0;
  }
}
@keyframes waveMedBottomScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--wave-w) * -1) 0;
  }
}
@-webkit-keyframes waveOrgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--wave-org-w) * -1) 0;
  }
}
@keyframes waveOrgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: calc(var(--wave-org-w) * -1) 0;
  }
}
.recFv {
  background: url(../img/recruit/fv.jpg) no-repeat center/cover;
  padding: 30% 0 20%;
  position: relative;
  max-height: 100svh;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .recFv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-height: unset;
  }
}
.recFv::before, .recFv::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 135px;
  left: 0;
  top: 0;
  --tile-w: calc(135px * 2430 / 126);
  background: url(../img/recruit/fvWave-2.png) repeat-x 0 0;
  background-size: var(--tile-w) 100%;
  -webkit-animation: bgLoop 60s linear forwards infinite;
  animation: bgLoop 60s linear forwards infinite;
}
@media only screen and (max-width: 767px) {
  .recFv::before, .recFv::after {
    height: 50px;
    --tile-w: calc(50px * 2430 / 126);
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
  }
}
.recFv::after {
  background-image: url(../img/recruit/fvWaveBottom-2.png);
  bottom: 0;
  top: unset;
}

.recMessageText {
  max-width: 860px;
}
@media only screen and (max-width: 767px) {
  .recMessageText {
    font-size: 1rem;
  }
}

.recMessage {
  background: #bbe6f2;
}
@media only screen and (max-width: 767px) {
  .recMessage .companyContent {
    top: calc(50% + 30px);
  }
}
.recMessage .companyPin {
  background: #bbe6f2;
}
@media only screen and (max-width: 767px) {
  .recMessage .companyBg {
    min-height: 100svh;
  }
}
.recMessage .recruitVisuals .recruitVisualItem {
  position: absolute;
}
.recMessage .recruitVisuals .recruitVisualItem01 {
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem01 {
    width: 45%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem02 {
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem02 {
    width: 45%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem03 {
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem03 {
    width: 45%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem04 {
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem04 {
    width: 45%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem05 {
  width: 15.813%;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem05 {
    width: 45%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem06 {
  width: 5.124%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vw;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem06 {
    width: 15%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem07 {
  width: 5.124%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vw;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem07 {
    width: 15%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem08 {
  width: 5.124%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vw;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem08 {
    width: 15%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem09 {
  width: 5.124%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vw;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem09 {
    width: 15%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem10 {
  width: 5.124%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vw;
}
.recMessage .recruitVisuals .recruitVisualItem11 {
  width: 5.124%;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vw;
}
.recMessage .recruitVisuals .recruitVisualItem01 {
  right: 8%;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem01 {
    right: 0;
    top: 30%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem02 {
  left: 5%;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem02 {
    top: 40%;
    left: 1%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem03 {
  right: 38%;
  top: 38%;
}
.recMessage .recruitVisuals .recruitVisualItem04 {
  left: 5%;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem04 {
    left: unset;
    right: 0;
    bottom: -10%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem05 {
  right: 5%;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .recMessage .recruitVisuals .recruitVisualItem05 {
    right: 50%;
    bottom: -30%;
  }
}
.recMessage .recruitVisuals .recruitVisualItem06 {
  left: 38%;
  top: 10%;
}
.recMessage .recruitVisuals .recruitVisualItem07 {
  right: 20%;
  top: 25%;
}
.recMessage .recruitVisuals .recruitVisualItem08 {
  left: 12%;
  top: 42%;
}
.recMessage .recruitVisuals .recruitVisualItem09 {
  left: 28%;
  bottom: 18%;
}
.recMessage .recruitVisuals .recruitVisualItem10 {
  right: 26%;
  bottom: 10%;
}
.recMessage .recruitVisuals .recruitVisualItem11 {
  left: 8%;
  bottom: 6%;
}

.recBtnInWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}
@media only screen and (max-width: 767px) {
  .recBtnInWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.recBtnItem {
  position: relative;
  width: calc(50% - 1.2rem);
  border-radius: 1em;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recBtnItem {
    width: 80%;
  }
}
.recBtnItem .cmnttl {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.recBtnWrap {
  position: relative;
}
.recBtnWrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #bbe6f2;
  left: 0;
  bottom: 0;
}

#recBtn {
  background: #fff;
  -webkit-mask-image: url("../img/common/mask-wave-s.svg");
  mask-image: url("../img/common/mask-wave-s.svg");
  -webkit-mask-position: 0 top;
  mask-position: 0 top;
  -webkit-mask-size: 200% auto;
  mask-size: 200% auto;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask-top 50s linear forwards infinite;
  animation: bgMask-top 50s linear forwards infinite;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #recBtn {
    -webkit-mask-size: 400% auto;
    mask-size: 400% auto;
  }
}

.recWorkWrap {
  position: relative;
}
.recWorkWrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  bottom: 0;
}

#recWork {
  background-color: #f6f2ed;
  -webkit-mask-image: url("../img/common/mask-wave-s.svg");
  mask-image: url("../img/common/mask-wave-s.svg");
  -webkit-mask-position: 0 top;
  mask-position: 0 top;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask-top 50s linear forwards infinite;
  animation: bgMask-top 50s linear forwards infinite;
  -webkit-mask-size: 200% auto;
  mask-size: 200% auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #recWork {
    -webkit-mask-size: 400% auto;
    mask-size: 400% auto;
  }
}

.recWorkInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3em;
  -moz-column-gap: 3em;
  column-gap: 3em;
}
@media only screen and (max-width: 767px) {
  .recWorkInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5em;
  }
}

.recWorkMovie {
  width: 63.462%;
}
@media only screen and (max-width: 767px) {
  .recWorkMovie {
    width: 100%;
  }
}
.recWorkMovie > * {
  width: 100%;
  aspect-ratio: 16/9;
}

#recInterview {
  background-color: #f6f2ed;
}

.recInterviewItem {
  display: block;
  position: relative;
}

.recInterviewCatch {
  position: absolute;
  right: 5%;
  top: 5%;
  font-size: 1.75rem;
  font-weight: 600 !important;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #fff;
  padding: 1em 0.6em;
  border-radius: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recInterviewCatch {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .recInterviewCatch {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 959px) {
  .recInterviewCatch {
    font-size: 1.2rem;
  }
}

.recInterviewInfo {
  position: absolute;
  left: 5%;
  top: 35%;
}
@media only screen and (max-width: 959px) {
  .recInterviewInfo {
    font-size: 0.8em;
  }
}
.recInterviewInfo * {
  font-weight: 600 !important;
}

.recInterviewName {
  font-size: 2.5rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recInterviewName {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .recInterviewName {
    font-size: 1.375rem;
  }
}
.recInterviewName span {
  font-size: 0.5em;
}

.recInterviweGroupWrap {
  border-bottom: solid 1px #333;
  padding-bottom: 1em;
}

.recInterviewMore {
  position: absolute;
  left: 5%;
  bottom: 5%;
  padding: 0.5em 1em;
  max-width: 110px;
  width: 100%;
  font-size: 0.875rem;
  min-width: unset;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recInterviewMore {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .recInterviewMore {
    font-size: 0.75rem;
  }
}

.recNumberWrap {
  background-color: #f6f2ed;
}

#recNumber {
  background: #fff;
  -webkit-mask-image: url("../img/common/mask-wave-s.svg");
  mask-image: url("../img/common/mask-wave-s.svg");
  -webkit-mask-position: 0 top;
  mask-position: 0 top;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask-top 50s linear forwards infinite;
  animation: bgMask-top 50s linear forwards infinite;
  position: relative;
  -webkit-mask-size: 200% auto;
  mask-size: 200% auto;
}
@media only screen and (max-width: 767px) {
  #recNumber {
    -webkit-mask-size: 400% auto;
    mask-size: 400% auto;
  }
}

#recBenefit {
  background-color: #f6f2ed;
  -webkit-mask-image: url("../img/common/mask-wave-s.svg");
  mask-image: url("../img/common/mask-wave-s.svg");
  -webkit-mask-position: 0 top;
  mask-position: 0 top;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask-top 50s linear forwards infinite;
  animation: bgMask-top 50s linear forwards infinite;
  -webkit-mask-size: 200% auto;
  mask-size: 200% auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #recBenefit {
    -webkit-mask-size: 400% auto;
    mask-size: 400% auto;
  }
}
@media only screen and (max-width: 767px) {
  #recBenefit {
    -webkit-mask-image: url(../img/common/mask-wave-s--sp.svg);
    mask-image: url(../img/common/mask-wave-s--sp.svg);
  }
}

.recBenefitFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5em;
}
@media only screen and (max-width: 767px) {
  .recBenefitFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.recBenefitFlex > * {
  width: calc(50% - 1.25em);
}
@media only screen and (max-width: 767px) {
  .recBenefitFlex > * {
    width: 90%;
  }
}

.recBenefitHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  margin-bottom: 0.5em;
}

.recBenefitIcon {
  width: 4em;
}
@media only screen and (max-width: 767px) {
  .recBenefitIcon {
    width: 3.5em;
  }
}

.recBenefitTitle {
  font-size: 1.5rem;
  font-weight: 600 !important;
  line-height: 1.5;
  color: #51bcde;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recBenefitTitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .recBenefitTitle {
    font-size: 1.125rem;
  }
}

.recBenefitItem {
  background-color: #fff;
  padding: 2em;
  border-radius: 1em;
}
@media only screen and (max-width: 767px) {
  .recBenefitItem {
    padding: 1.5em;
  }
}

#requirements {
  background-color: #f6f2ed;
}

.requirementsOffice {
  font-size: 2rem;
  font-weight: 600 !important;
  border-left: solid 2px #333;
  padding-left: 0.5em;
  margin-bottom: 1em;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .requirementsOffice {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .requirementsOffice {
    font-size: 1.3125rem;
  }
}

.requirementsHead,
.faqQuestion {
  background-color: #66c3b3;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600 !important;
  padding: 0.5em 1em;
  border: none;
  border-radius: 100vw;
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .requirementsHead,
  .faqQuestion {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .requirementsHead,
  .faqQuestion {
    font-size: 1.125rem;
  }
}
.requirementsHead *,
.faqQuestion * {
  font-weight: 600 !important;
}

.requirementsIcon,
.faqQuestionIcon {
  width: 0.4em;
  aspect-ratio: 1/1;
  background: url(../img/common/arw-btn.svg) no-repeat center/contain;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .requirementsIcon,
  .faqQuestionIcon {
    width: 0.7em;
  }
}

.requirementsBody {
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  padding: 0 2em;
  margin-top: -2.25rem;
  -webkit-transition: max-height 0.4s ease, padding 0.4s ease;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 0 0 1em 1em;
}
.requirementsItem.isOpen .requirementsBody {
  max-height: 1000px;
  padding: 4em 2em 2em;
}
.requirementsBody th,
.requirementsBody td {
  text-align: left;
  padding-block: 1em;
}
.requirementsBody th {
  padding-right: 2em;
}
.requirementsBody tr + tr th,
.requirementsBody tr + tr td {
  border-top: solid 1px #cccccc;
}
@media only screen and (max-width: 767px) {
  .requirementsBody th,
  .requirementsBody td {
    display: block;
    width: 100%;
  }
  .requirementsBody th {
    padding-bottom: 0;
  }
  .requirementsBody td {
    padding-top: 0.5em;
  }
  .requirementsBody tr + tr td {
    border-top: none;
  }
}

.requirementsItem.isOpen .requirementsIcon,
.requirementsItem.isOpen .faqQuestionIcon,
.faqItem.isOpen .requirementsIcon,
.faqItem.isOpen .faqQuestionIcon {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.requirementsItem + .requirementsItem {
  margin-top: 4em;
}

.requirementsBlock + .requirementsBlock {
  margin-top: 6em;
}

.recBottom {
  background-color: #f6f2ed;
  position: relative;
}
.recBottom::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-color: #fff;
}
.recBottom img {
  -webkit-mask-image: url("../img/recruit/bottom-wave.svg");
  mask-image: url("../img/recruit/bottom-wave.svg");
  -webkit-mask-position: 0 top;
  mask-position: 0 top;
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: bgMask-top 50s linear forwards infinite;
  animation: bgMask-top 50s linear forwards infinite;
}

#faq {
  background-color: #fff;
}

.faqQuestion {
  background-color: #f6cc46;
  color: #333;
}

.faqItem + .faqItem {
  margin-top: 2em;
}

.faqAnswer {
  margin-top: 1em;
}

.faqAnswerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

.faqLabel {
  background-color: #e8350f;
  color: #fff;
  font-family: "Google Sans", sans-serif;
  font-weight: 600 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  width: 2em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faqAnswer {
  display: none;
}

/* ==========================================================================
   採用 エントリーセクション
========================================================================== */
@-webkit-keyframes entryMarquee {
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes entryMarquee {
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.recruitBottomEntry {
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1355/600;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .recruitBottomEntry {
    aspect-ratio: 1/0.75;
  }
}

.recruitEntryMarquee {
  overflow: hidden;
}

.recruitEntryMarqueeInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  will-change: transform;
  -webkit-animation: entryMarquee 80s linear infinite;
  animation: entryMarquee 80s linear infinite;
  -webkit-animation-delay: -40s;
  animation-delay: -40s;
}

.recruitEntryMarqueeTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.recruitEntryMarqueeTrack span {
  font-family: "Google Sans", sans-serif;
  font-size: 15vw;
  font-weight: 700;
  line-height: 1;
  padding-inline: 0.1em;
}
@media only screen and (max-width: 767px) {
  .recruitEntryMarqueeTrack span {
    font-size: 20vw;
  }
}
.recruitEntryMarqueeTrack span:nth-child(4n+1) {
  color: #66c3b3;
}
.recruitEntryMarqueeTrack span:nth-child(4n+2) {
  color: #9f8eb7;
}
.recruitEntryMarqueeTrack span:nth-child(4n+3) {
  color: #f18762;
}
.recruitEntryMarqueeTrack span:nth-child(4n+4) {
  color: #f6cc46;
}

.recruitEntryBtnWrap {
  text-align: center;
  margin-top: 2em;
}

.recruitEntryImg,
.recruitEntryDot {
  position: absolute;
  z-index: 2;
}

.recruitEntryDot {
  border-radius: 100vw;
  aspect-ratio: 1/1;
  width: 4.026%;
}
@media only screen and (max-width: 767px) {
  .recruitEntryDot {
    width: 7.5%;
  }
}
.recruitEntryDot:nth-child(1) {
  background: #66c3b3;
  top: 12%;
  left: 5%;
  display: none;
}
.recruitEntryDot:nth-child(2) {
  background: #e9c84d;
  top: 55%;
  left: 10%;
  display: none;
}
.recruitEntryDot:nth-child(3) {
  background: #f18762;
  top: 5%;
  left: 60%;
}
.recruitEntryDot:nth-child(4) {
  background: #9f8eb7;
  top: 0%;
  left: 10%;
}
.recruitEntryDot:nth-child(5) {
  background: #96d165;
  top: 25%;
  left: 30%;
}
.recruitEntryDot:nth-child(6) {
  background: #e9c84d;
  top: 70%;
  left: 5%;
}
.recruitEntryDot:nth-child(7) {
  background: #66c3b3;
  top: 50%;
  right: 5%;
}
.recruitEntryDot:nth-child(8) {
  background: #f18762;
  bottom: 10%;
  left: 30%;
}

.recruitEntryImg.--img1 {
  width: 17.716%;
  top: 5%;
  right: 20%;
}
@media only screen and (max-width: 767px) {
  .recruitEntryImg.--img1 {
    width: 25%;
    right: 10%;
  }
}
.recruitEntryImg.--img2 {
  width: 15.813%;
  left: 15%;
  bottom: 20%;
}
@media only screen and (max-width: 767px) {
  .recruitEntryImg.--img2 {
    width: 20%;
    left: 5%;
  }
}
.recruitEntryImg.--img3 {
  width: 12.152%;
  right: 15%;
  bottom: 10%;
}
@media only screen and (max-width: 767px) {
  .recruitEntryImg.--img3 {
    width: 15%;
  }
}

/*==================================================
 * 下層ページ
*================================================*/
/*==================================================
 * お知らせ一覧・詳細
*================================================*/
.newsArchive,
.newsSingle {
  padding-bottom: 5em;
}

.newsArchiveLayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4em;
}
@media only screen and (max-width: 767px) {
  .newsArchiveLayout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3em;
  }
}

.newsArchiveMain {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.newsArchiveSidebar {
  width: 250px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .newsArchiveSidebar {
    width: 100%;
  }
}

.newsList {
  list-style: none;
}

.newsListItem {
  border-top: 1px solid #ddd;
}
.newsListItem:last-child {
  border-bottom: 1px solid #ddd;
}

.newsListLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5em;
  padding: 1.5em 0;
  text-decoration: none;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .newsListLink {
    gap: 1em;
  }
}

.newsListText {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.newsListMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.5em;
}

.newsListDate {
  font-size: 0.875rem;
  color: #888;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Google Sans", sans-serif;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsListDate {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsListDate {
    font-size: 0.75rem;
  }
}

.newsListCat {
  font-size: 0.8125rem;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 0.1em 0.8em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1.4;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsListCat {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsListCat {
    font-size: 0.75rem;
  }
}

.newsListTitle {
  font-size: 1rem;
  display: block;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsListTitle {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsListTitle {
    font-size: 0.875rem;
  }
}

.newsListThumb {
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.newsListThumb img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.pagenation {
  margin-top: 3em;
}

.pagenationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0em;
  list-style: none;
}

.pagenationItem a,
.pagenationItem span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 2.5em;
  height: 2.5em;
  padding: 0.2em 0.5em;
  border: 1px solid #ccc;
  text-decoration: none;
  color: inherit;
  font-size: 0.875rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pagenationItem a,
  .pagenationItem span {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .pagenationItem a,
  .pagenationItem span {
    font-size: 0.75rem;
  }
}
.pagenationItem a:hover {
  background-color: var(--mainColor);
  color: #fff;
  border-color: var(--mainColor);
  opacity: 1;
}
.pagenationItem.active span {
  background-color: var(--mainColor);
  color: #fff;
  border-color: var(--mainColor);
}
.pagenationItem.pagenationNext a, .pagenationItem.pagenationPrev a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9em;
}

.sidebarBlock {
  margin-bottom: 2em;
}

.sidebarHeading {
  background-color: var(--mainColor);
  color: #fff;
  padding: 0.6em 1em;
  font-size: 1rem;
  font-weight: 600 !important;
  margin-bottom: 0.5em;
  border-radius: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarHeading {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarHeading {
    font-size: 0.875rem;
  }
}

.sidebarCatList {
  list-style: none;
}
.sidebarCatList li {
  border-bottom: 1px solid #ddd;
}
.sidebarCatList li a {
  display: block;
  padding: 0.7em 1em;
  text-decoration: none;
  color: inherit;
  position: relative;
  font-size: 0.875rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarCatList li a {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarCatList li a {
    font-size: 0.75rem;
  }
}
.sidebarCatList li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 0.4em;
  border-radius: 100vw;
  background-color: var(--mainColor);
}

.sidebarRecentList {
  list-style: none;
}

.sidebarRecentItem {
  border-bottom: 1px solid #ddd;
}
.sidebarRecentItem a {
  display: block;
  padding: 0.7em 1em 0.7em 0;
  text-decoration: none;
  color: inherit;
}

.sidebarRecentDate {
  font-size: 0.8125rem;
  color: #888;
  font-family: "Google Sans", sans-serif;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRecentDate {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarRecentDate {
    font-size: 0.75rem;
  }
}

.sidebarRecentCat {
  font-size: 0.75rem;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 0 0.5em;
  margin-left: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRecentCat {
    font-size: 0.6875rem;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarRecentCat {
    font-size: 0.6875rem;
  }
}

.sidebarRecentTitle {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.3em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRecentTitle {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarRecentTitle {
    font-size: 0.75rem;
  }
}

.sidebarArchiveSelect {
  width: 100%;
  padding: 0.6em 1em;
  border: 1px solid #ccc;
  font-size: 0.875rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarArchiveSelect {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarArchiveSelect {
    font-size: 0.75rem;
  }
}

.noPost {
  padding: 2em 0;
  text-align: center;
  color: #888;
}

.newsSingleHeader {
  margin-bottom: 2em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #ddd;
}

.newsSingleMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.8em;
}

.newsSingleDate {
  font-size: 0.875rem;
  color: #888;
  font-family: "Google Sans", sans-serif;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsSingleDate {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsSingleDate {
    font-size: 0.75rem;
  }
}

.newsSingleCat {
  font-size: 0.8125rem;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 0.1em 0.8em;
  text-decoration: none;
  color: inherit;
  line-height: 1.4;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsSingleCat {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsSingleCat {
    font-size: 0.75rem;
  }
}

.newsSingleTitle {
  font-size: 1.5rem;
  font-weight: 600 !important;
  line-height: 1.6;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsSingleTitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsSingleTitle {
    font-size: 1.125rem;
  }
}

.newsSingleThumbnail {
  margin-bottom: 2em;
}
.newsSingleThumbnail img {
  width: 100%;
  height: auto;
  border-radius: 0.5em;
}

.newsSingleBody {
  margin-bottom: 3em;
}

.newsSingleNav {
  margin-bottom: 2em;
}

.newsSingleBack {
  text-align: center;
}
.newsSingleBack .btn {
  display: inline-block;
  border: 1px solid var(--mainColor);
  padding: 0.7em 3em;
  text-decoration: none;
  color: var(--mainColor);
  font-size: 1rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsSingleBack .btn {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .newsSingleBack .btn {
    font-size: 0.875rem;
  }
}
.newsSingleBack .btn:hover {
  background-color: var(--mainColor);
  color: #fff;
  opacity: 1;
}

.underline {
  text-decoration: underline;
}

/*==================================================
 * 事業所一覧
*================================================*/
.pageFvWrap {
  position: relative;
  background-color: #bbe6f2;
}

.pageFv {
  background-color: #fff;
  padding-block: 10% 7%;
  position: relative;
}
.pageFv::before {
  content: "";
  display: block;
  position: absolute;
  --wave-w: 607px;
  --wave-h: 41px;
  width: 100%;
  height: var(--wave-h);
  background: url(../img/common/waveMedBottom.png) repeat-x 0 0;
  background-size: var(--wave-w) var(--wave-h);
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-animation: waveMedBottomScroll 15s linear infinite;
  animation: waveMedBottomScroll 15s linear infinite;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
@media only screen and (max-width: 767px) {
  .pageFv::before {
    --wave-w: 300px;
    --wave-h: 20px;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
  }
}
@media only screen and (max-width: 767px) {
  .pageFv {
    padding-block: 24% 15%;
  }
}

.bottomMedWave {
  position: relative;
}
.bottomMedWave::before {
  content: "";
  display: block;
  position: absolute;
  --wave-w: 607px;
  --wave-h: 41px;
  width: 100%;
  height: var(--wave-h);
  background: url(../img/common/waveMedBottom.png) repeat-x 0 0;
  background-size: var(--wave-w) var(--wave-h);
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-animation: waveMedBottomScroll 15s linear infinite;
  animation: waveMedBottomScroll 15s linear infinite;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .bottomMedWave::before {
    --wave-w: 300px;
    --wave-h: 20px;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
  }
}

.officeHead {
  margin-bottom: 2em;
}

.officeHeadTitle {
  background-color: #66c3b3;
  color: #fff;
  font-weight: 600 !important;
  padding: 0.6em 1em;
  border-radius: 0.3em;
  font-size: 2.125rem;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .officeHeadTitle {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .officeHeadTitle {
    font-size: 1.3125rem;
  }
}

.officeTitle {
  font-weight: 600 !important;
  font-size: 2.125rem;
  line-height: 1;
  border-left: solid 2px #2a2a2a;
  padding-left: 0.5em;
  margin-bottom: 0.3em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .officeTitle {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .officeTitle {
    font-size: 1.3125rem;
  }
}

.officeTitleRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  .officeTitleRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2em;
  }
}

.officeBody {
  background-color: #fff;
  border-radius: 1em;
  -webkit-column-gap: 4em;
  -moz-column-gap: 4em;
  column-gap: 4em;
  padding: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 959px) {
  .officeBody {
    padding: 1.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 2em;
  }
}

.officeImg {
  width: 46.486%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 430/300;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .officeImg {
    width: 100%;
  }
}
.officeImg iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.officeTel {
  width: 100%;
}

.officeTelTitle {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.3em;
  -moz-column-gap: 0.3em;
  column-gap: 0.3em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .officeTelTitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .officeTelTitle {
    font-size: 1.125rem;
  }
}
.officeTelTitle img {
  width: 1.5em;
  margin-inline: 0;
}

.officeTelTable {
  width: 100%;
  margin-top: 1em;
}

.officeTelRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.4em 0;
}

.officeTelLabel {
  font-weight: bold;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.officeTelDots {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 2px;
  margin: 0 0.6em;
  background-image: -webkit-radial-gradient(circle, #333 1px, transparent 1px);
  background-image: radial-gradient(circle, #333 1px, transparent 1px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center;
  margin-top: 0.8em;
}

.officeTelNum {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Google Sans", sans-serif;
}

.officeOtherBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}
@media only screen and (max-width: 767px) {
  .officeOtherBody {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2em;
  }
}
.officeOtherBody .officeInfo {
  min-width: 49.519%;
}
@media only screen and (max-width: 767px) {
  .officeOtherBody .officeInfo {
    width: 100%;
  }
}
.officeOtherBody .officeTel {
  background-color: #fff;
  padding: 1em;
  border-radius: 0.5em;
}
.officeOtherBody .officeTelTable {
  margin-top: 0;
}
.officeOtherBody .officeImg {
  width: 28.846%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .officeOtherBody .officeImg {
    width: 100%;
  }
}

.officeOtherTitleRow {
  margin-bottom: 1em;
}
.officeOtherTitleRow .officeTitleLeft {
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.recruitCmn {
  position: relative;
  background-color: #fff;
  background: url(../img/common/page-recruit-img.jpg) no-repeat center/cover;
  padding-block: 10%;
}
@media only screen and (max-width: 767px) {
  .recruitCmn {
    padding-block: 20%;
    -webkit-mask-size: 300% 100%;
    mask-size: 300% 100%;
    -webkit-animation-duration: 60s;
    animation-duration: 60s;
  }
}
.recruitCmn .recruitCmnImg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.recruitCmn .recruitCmnImg img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.recruitCmn::before, .recruitCmn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 65px;
  left: 0;
  --tile-w: calc(65px * 607 / 53);
  background-size: var(--tile-w) 100%;
  background-repeat: repeat-x;
  -webkit-animation: bgLoop 15s linear forwards infinite;
  animation: bgLoop 15s linear forwards infinite;
}
.recruitCmn::before {
  background-image: url(../img/common/wave-page-recruit-2.png);
  background-position: 0 0;
  top: 0;
}
.recruitCmn::after {
  background-image: url(../img/common/wave-page-recruit-bottom.png);
  background-position: 0 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .recruitCmn::before, .recruitCmn::after {
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    height: 30px;
    --tile-w: calc(30px * 607 / 53);
  }
}

.bgWhiteWave .recruitCmn::before {
  background-image: url(../img/common/waveMedBottom.png);
}

/* body の font-family / letter-spacing はファイル冒頭の body ブロックに統合済み */
/* ==========================================================================
   共通コンテナ
   ========================================================================== */
/* ==========================================================================
   共通ボタン（ヘッダー CONTACT / 下層 CTA 等）
   ========================================================================== */
.nvBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 210px;
  padding: 0.6em 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--nv-cta); /* Figma「ボタン_ホバーカラー」B 通常: #b8a89d */
  border-radius: 999px;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.24em;
  color: var(--nv-text);
  background: transparent;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  /* 暗背景上の白抜き（Figma A: ヒーロー上の View More 等） */
  /* CONTACT — 150 × 36, 最初からベージュ塗り（ヘッダー CONTACT 用） */
}
@media only screen and (max-width: 767px) {
  .nvBtn {
    font-size: 3.8461538462vw;
    min-width: 53.8461538462vw;
  }
}
.nvBtn:hover {
  background: var(--nv-cta); /* Figma B hover: ベージュ塗り＋白文字 */
  color: var(--nv-white);
  opacity: 1;
}
.nvBtn svg {
  color: currentColor;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nvBtn--white {
  border-color: var(--nv-white);
  color: var(--nv-white);
}
.nvBtn--white:hover {
  background: var(--nv-white); /* Figma A hover: 白塗り＋黒文字 */
  color: var(--nv-text);
  border-color: var(--nv-white);
}
.nvBtn--filled {
  border: 0;
  background: var(--nv-cta);
  color: var(--nv-white);
  font-size: 13px;
  letter-spacing: 0.22em;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nvBtn--filled:hover {
  background: var(--nv-cta-hover);
  color: var(--nv-white);
}
.nvBtn.--right {
  margin-left: auto;
}

/* ==========================================================================
   .nvHeader — fixed.
   - is-front: 透過 + 白文字（ヒーローに重ねる）
   - 通常: 白背景 + 黒文字 + 下線
   既存 _style.scss の `header { position: fixed; padding: 25px; transform: translateY(...) }`
   を確実に打ち消すため、関連プロパティを明示的に上書き。
   ========================================================================== */
.nvHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 110;
  display: block;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  /* 既存テーマの transform 切替（isFront/scrl）を無効化 */
}
.nvHeader.isFront, .nvHeader.scrl, .nvHeader.isFront.isShow {
  -webkit-transform: none;
  transform: none;
}
.nvHeader.is-front {
  background: transparent;
  color: var(--nv-white);
}
.nvHeader.scrl {
  background: rgba(0, 0, 0, 0.7);
  color: var(--nv-white);
}
@media only screen and (max-width: 767px) {
  .nvHeader {
    padding-inline: 5.1282051282vw;
  }
  .nvHeader.is-front {
    background: transparent;
    color: var(--nv-white);
  }
  .nvHeader.scrl {
    background: rgba(0, 0, 0, 0.7);
    color: var(--nv-white);
  }
}

.nvHeader__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ */
.nvHeader__logo {
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .nvHeader__logo {
    width: 27.6923076923vw;
  }
  .nvHeader__logo img {
    width: 100%;
  }
}

.nvHeader__logoText {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  display: inline-block;
  font-size: 22px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: currentColor;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .nvHeader__logoText {
    font-size: 18px;
  }
}

/* PC ナビ */
.nvHeader__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .nvHeader__nav {
    display: none;
  }
}

.nvHeader__navList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 28px;
}

.nvHeader__navItem a {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: currentColor;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.nvHeader__navItem a:hover {
  opacity: 0.6;
}

/* CONTACT (PC のみ) */
@media only screen and (max-width: 767px) {
  .nvHeader__cta {
    display: none;
  }
}

/* ハンバーガー (SP のみ) — 25 × 12 の3本線
   overlay (z:105) より上に出してクリック可能にするため z-index: 120 */
.nvHeader__menuBtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nvHeader__menuBtn {
    position: relative;
    z-index: 120;
    display: block;
    width: 6.4102564103vw;
    height: 3.0769230769vw;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: currentColor;
    /* メニュー展開中は overlay 内の独立した × ボタンに役割を譲るので非表示 */
  }
  .nvHeader__menuBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    -webkit-transition: top 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
    transition: top 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
  }
  .nvHeader__menuBtn span:nth-child(1) {
    top: 0;
  }
  .nvHeader__menuBtn span:nth-child(2) {
    top: 6px;
  }
  .nvHeader__menuBtn span:nth-child(3) {
    top: 12px;
  }
  .nvHeader__menuBtn.is-active {
    opacity: 0;
    pointer-events: none;
  }
}

/* SP オーバーレイメニュー — Figma: header_sp
   - 画面全体を覆う (top: 0)
   - 左 220px のクリーム色パネル
   - 右側 残り は写真エリア
   - 右上に × ボタン
*/
.nvHeader__overlay {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nvHeader__overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    background: var(--nv-bg-deep);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  .nvHeader__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* 左 220px のクリーム色パネル */
@media only screen and (max-width: 767px) {
  .nvHeader__overlayPanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 56.4102564103vw;
    height: 100%;
    background: var(--nv-bg-warm);
    padding: 6.4102564103vw 5.1282051282vw 10.2564102564vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7.1794871795vw;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
}

/* 右側の写真エリア */
@media only screen and (max-width: 767px) {
  .nvHeader__overlayImage {
    position: absolute;
    top: 0;
    left: 56.4102564103vw;
    right: 0;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .nvHeader__overlayImage img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}

@media only screen and (max-width: 767px) {
  .nvHeader__overlay.is-open .nvHeader__overlayPanel,
  .nvHeader__overlay.is-open .nvHeader__overlayImage {
    opacity: 1;
  }
}

/* overlay 内の × ボタン（Figma header_sp の Group 13 相当） */
.nvHeader__overlayClose {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nvHeader__overlayClose {
    display: block;
    position: absolute;
    top: 8.2051282051vw;
    right: 5.1282051282vw;
    width: 6.4102564103vw;
    height: 6.4102564103vw;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 6;
  }
  .nvHeader__overlayClose span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--nv-white);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .nvHeader__overlayClose span:nth-child(1) {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  .nvHeader__overlayClose span:nth-child(2) {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
}

/* オーバーレイ内のロゴ */
.nvHeader__overlayLogo {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--nv-text);
  line-height: 1;
  margin-bottom: 2em;
  width: 27.6923076923vw;
}

/* オーバーレイ内のナビ（縦積み） */
.nvHeader__overlayList {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.nvHeader__overlayList li a {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 3.8461538462vw;
  letter-spacing: 0.22em;
  color: var(--nv-text);
}

/* オーバーレイ内の CONTACT ボタンを上端寄せに */
.nvHeader__overlayCta {
  margin-bottom: 0;
  min-width: unset;
}

/* オーバーレイ下部の SNS + Privacy Policy */
.nvHeader__overlayFoot {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.5897435897vw;
}

.nvHeader__overlaySns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8461538462vw;
}
.nvHeader__overlaySns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 6.1538461538vw;
  height: 6.1538461538vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--nv-text);
  font-size: 4.1025641026vw;
}

.nvHeader__overlayPrivacy {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 3.3333333333vw;
  letter-spacing: 0.18em;
  color: var(--nv-text);
}

/* SP メニュー展開時、overlay (z:105) 自体が全画面 fixed で背景スクロールを実質吸収する。
   body に overflow: hidden は入れず、背景スクロールの副作用を避ける。

   メニュー展開中はヘッダー自身（z:110、overlay z:105 より上）が overlay 上のクリックを横取りするため、
   visibility と pointer-events を切って overlay 側にイベントを通す。
   visibility hidden を使うことで `.nvHeader__menuBtn` の表示は CSS 側で完結する。 */
body.nv-menu-open .nvHeader {
  visibility: hidden;
  pointer-events: none;
}

.nvAbout__tagline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
.nvAbout__tagline .en {
  font-size: 18px;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .nvAbout__tagline .en {
    font-size: 4.6153846154vw;
  }
}
.nvAbout__tagline .ja {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .nvAbout__tagline .ja {
    font-size: 3.8461538462vw;
  }
}

.nvSubtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
@media only screen and (max-width: 767px) {
  .nvSubtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.nvSubtitle__en {
  font-size: 2.625rem;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvSubtitle__en {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSubtitle__en {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSubtitle__en {
    font-size: 9.4871794872vw;
    line-height: 1;
  }
}

.nvSubtitle__jp {
  font-size: 1.125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvSubtitle__jp {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSubtitle__jp {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSubtitle__jp {
    font-size: 3.8461538462vw;
  }
}

/* ==========================================================================
   .cntL — Container 1240px (COLLECTIONS / USERSVOICE 用)
   メモリのルール: max-width と margin 以外を当てない
   ========================================================================== */
.cntL {
  max-width: 1240px;
  margin-inline: auto;
}

/* ==========================================================================
   .nvSectionHead — セクション見出し帯（左 lead / 右 action）
   <header> ではなく <div> 想定（既存テーマの `header { position: fixed }` 衝突回避）
   ========================================================================== */
.nvSectionHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

.nvSectionHead__lead {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.nvSectionHead__action {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* ==========================================================================
   .nvProducts — COLLECTIONS / USERSVOICE 共通の商品カードリスト（Swiper）
   - Figma: Product / 3 (10787:3297)
   - カード 280×400（画像 280×345 + 本体 40） / spaceBetween 20px
   - --portrait は縦長サムネ（COLLECTIONS）
   ========================================================================== */
.nvProducts {
  padding: 100px 0 120px;
  background: var(--nv-bg-warm);
}
@media only screen and (max-width: 767px) {
  .nvProducts {
    padding: 0 0 20.5128205128vw;
  }
}

.nvProducts__slider {
  padding-left: max(15px, (100vw - 1200px) / 2);
  /* Swiper の slidesPerView 指定に幅計算を任せる。
     CSS で .swiper-slide の width を固定しない（slidesPerView: 5.5 等が計算するため） */
}
@media only screen and (max-width: 767px) {
  .nvProducts__slider {
    padding-left: 5.1282051282vw;
  }
}
.nvProducts__slider .swiper-slide {
  height: auto;
}

.nvProducts__item {
  display: block;
}

.nvProducts__itemLink {
  display: block;
  color: var(--nv-text);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.nvProducts__itemLink:hover {
  opacity: 0.8;
}

/* サムネ枠 */
.nvProducts__itemThumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--nv-bg-deep);
  aspect-ratio: 280/345;
}
.nvProducts__itemThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

/* 商品本体テキスト */
.nvProducts__itemBody {
  margin-top: 0.5em;
}

.nvProducts__itemBrand {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProducts__itemBrand {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProducts__itemBrand {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProducts__itemBrand {
    font-size: 3.3333333333vw;
  }
}

.nvProducts__itemMeta {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.2em 1em;
  color: var(--nv-text);
}

.nvProducts__itemType {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nvProducts__itemPrice {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: right;
}

/* ==========================================================================
   .nvVoices — USERSVOICE（横長サムネ Swiper、COLLECTIONS と同仕様）
   - Figma: Product / 3 (10787:3354)
   - カード 280×265（画像 280×210 + 本体 45）/ aspect-ratio 280:210 (4:3)
   - main.js の .js-voices で slidesPerView 1.5(SP) / 5.5(PC) に揃え
   ========================================================================== */
.nvVoices {
  background-color: #eae4dc;
}

.nvVoices__slider {
  padding-left: max(15px, (100vw - 1200px) / 2);
}
@media only screen and (max-width: 767px) {
  .nvVoices__slider {
    padding-left: 5.1282051282vw;
  }
}
.nvVoices__slider .swiper-slide {
  height: auto;
}

.nvVoices__item {
  display: block;
}

.nvVoices__itemLink {
  display: block;
  color: var(--nv-text);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.nvVoices__itemLink:hover {
  opacity: 0.8;
}

/* 横長サムネ */
.nvVoices__itemThumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--nv-bg-deep);
  aspect-ratio: 280/210;
}
.nvVoices__itemThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

/* テキスト本体 */
.nvVoices__itemBody {
  margin-top: 0.5em;
}

.nvVoices__itemMeta {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvVoices__itemMeta {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvVoices__itemMeta {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvVoices__itemMeta {
    font-size: 3.3333333333vw;
  }
}

.nvVoices__itemTitle {
  margin: 0;
  font-family: var(--nv-ff-jp);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: var(--nv-track-jp);
  color: var(--nv-text);
}

/* 下層ページのスタイルは _about.scss / _product.scss に分割 */
.nvBreadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-block: 2em;
}
@media only screen and (max-width: 767px) {
  .nvBreadcrumb__list {
    padding-block: 1em;
  }
}
.nvBreadcrumb__list > * {
  position: relative;
  padding-right: 1.5em;
  margin-right: 0.5em;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvBreadcrumb__list > * {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBreadcrumb__list > * {
    font-size: 0.75rem;
  }
}
.nvBreadcrumb__list > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 1px;
  background-color: #333;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nvBreadcrumb__list > *:last-of-type::before {
  content: none;
}

/* ----- ページネーション ----- */
.wp-pagenavi {
  margin-top: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}
.wp-pagenavi > * {
  border: none !important;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 1.125rem;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .wp-pagenavi > * {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi > * {
    font-size: 0.875rem;
  }
}
.wp-pagenavi > *.current {
  border-bottom: solid 1px #969696;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi > * {
    font-size: 3.8461538462vw;
  }
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 12.8205128205vw;
  }
}

body.home main.nvMain {
  overflow: visible;
}

.nvHero {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: #2a2a2a;
  aspect-ratio: 1280/850;
  color: var(--nv-white);
  overflow: hidden;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .nvHero {
    margin-top: 0;
    height: 179.4871794872vw; /* 旧 mv--sp.jpg(780×1400) 全幅相当の縦ボリュームを踏襲 */
  }
}

/* FV ビジュアル：左右2分割。各サイドが独立したフェードスライダー（loop）。
   初回のみ clip-path マスクで reveal（左=上→下 / 右=右→左） */
.nvHero__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; /* スタッキングを閉じ、コピー(z-index:2)を常に前面に保つ */
  width: 100%;
  height: 100%;
  /* 画像の上に黒の半透明オーバーレイ（Figma: rgba(36,36,35,0.25)）。
     コピーの可読性を確保 */
}
.nvHero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 36, 35, 0.25);
  pointer-events: none;
  z-index: 1; /* 画像の上・コピーの下 */
}

.nvHero__side {
  position: relative;
  width: calc(50% + 1px);
  height: 100%;
  overflow: hidden;
}

.nvHero__side--right {
  margin-left: -1px;
}

.nvHero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 全スライドを重ね、JS が clip-path マスクで切替（前の画像は背面に残す）。
   初期は閉じた状態（背景のみ）。JS が方向別の初期値 → 全開へ transition。
   transition 時間は main.js の HERO_AUTOPLAY_DELAY より十分短く保つこと */
.nvHero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0); /* JS 起動前は閉（背景のみ表示） */
  will-change: clip-path;
  transition: clip-path 1.4s cubic-bezier(0.83, 0, 0.34, 1), -webkit-clip-path 1.4s cubic-bezier(0.83, 0, 0.34, 1);
}

.nvHero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.nvHero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* 左下のコピー帯（Figma: 親 absolute で left:40 / 英文サブの bottom 92 に揃える） */
.nvHero__copy {
  position: absolute;
  left: 40px;
  bottom: max(92px, 66.40625vw - 100svh + 92px);
  z-index: 99;
  color: var(--nv-white);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .nvHero__copy {
    left: 7.6923076923vw;
  }
}

.nvHero__copyMain {
  font-family: var(--nv-ff-jp);
  letter-spacing: var(--nv-track-jp);
  font-weight: 400;
  font-weight: 500;
  font-size: 37px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--nv-white);
  margin: 0 0 20px;
  opacity: 0;
  -webkit-animation: nvHeroCopyFade 1.4s ease-out 1.75s forwards;
  animation: nvHeroCopyFade 1.4s ease-out 1.75s forwards;
}
@media only screen and (max-width: 767px) {
  .nvHero__copyMain {
    font-size: 6.6666666667vw;
    margin: 0;
  }
}

.nvHero__copySub {
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: var(--nv-white);
  margin: 0;
  opacity: 0;
  -webkit-animation: nvHeroCopyFade 1.4s ease-out 1.95s forwards;
  animation: nvHeroCopyFade 1.4s ease-out 1.95s forwards;
}
@media only screen and (max-width: 767px) {
  .nvHero__copySub {
    font-size: 3.3333333333vw;
  }
}
.nvHero__copySub span {
  display: block;
}

@-webkit-keyframes nvHeroCopyFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes nvHeroCopyFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nvHero__copyMain,
  .nvHero__copySub {
    opacity: 1;
    -webkit-animation: none;
    animation: none;
  }
}
/* 中央 SCROLL 縦線は Figma に存在しないので非表示。
   PHP 構造は将来差替えに備えて残す */
.nvHero__scrollMid {
  display: none;
}

/* 右下 Scroll down ＋ 横向き矢印（Figma: Frame 38, x=1132 y=730 w=107 h=27） */
.nvHero__scrollSide {
  position: absolute;
  right: 41px; /* 1280 - 1132 - 107 ≒ 41 */
  bottom: 93px; /* 850 - 730 - 27 = 93 */
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: var(--nv-white);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .nvHero__scrollSide {
    right: 5.1282051282vw;
    bottom: 5.1282051282vw;
  }
}
.nvHero__scrollSide:hover {
  opacity: 0.7;
}

.nvHero__scrollSideText {
  white-space: nowrap;
}

.nvHero__scrollSideArrow {
  width: 14px;
  height: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.nvAbout__title {
  font-size: 2rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvAbout__title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvAbout__title {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvAbout__title {
    font-size: 5.641025641vw;
  }
}

.nvAbout__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nvAbout__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.nvAbout__subImage {
  width: 44.167%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 8em;
}
@media only screen and (max-width: 767px) {
  .nvAbout__subImage {
    width: 100%;
    margin-bottom: 2em;
  }
}

.navAbout__text {
  width: 39.167%;
}
@media only screen and (max-width: 767px) {
  .navAbout__text {
    width: 100%;
  }
}
.navAbout__text .img {
  width: 55.319%;
  margin-left: -12.766%;
}
@media only screen and (max-width: 767px) {
  .navAbout__text .img {
    margin-left: 0;
    width: 66.6666666667vw;
  }
}

.nvAboutBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .nvAboutBottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: unset;
    -moz-column-gap: unset;
    column-gap: unset;
  }
}
.nvAboutBottom img {
  width: 26.667%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .nvAboutBottom img {
    width: 42.3076923077vw;
  }
}

.topBrands {
  background-color: #dbd0c8;
  padding: 6em 1em;
}
@media only screen and (max-width: 767px) {
  .topBrands {
    padding: 20.5128205128vw 5.1282051282vw;
  }
}

.nvBrands__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nvBrands__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3em;
  }
}
.nvBrands__card + .nvBrands__card {
  border-top: solid 1px #b8a89d;
  margin-top: 4.5em;
  padding-top: 4.5em;
}
@media only screen and (max-width: 767px) {
  .nvBrands__card + .nvBrands__card {
    margin-top: 3em;
    padding-top: 3em;
  }
}

.nvBrands__cardBody {
  width: 46.154%;
}
@media only screen and (max-width: 767px) {
  .nvBrands__cardBody {
    width: 100%;
  }
}

.nvBrands__cardImage {
  width: 48.077%;
}
@media only screen and (max-width: 767px) {
  .nvBrands__cardImage {
    width: 100%;
  }
}

.nvBrands__cardEn {
  width: 200px;
  margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  .nvBrands__cardEn {
    margin-bottom: 1.5em;
  }
}

.nvBrands__cardTitle {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvBrands__cardTitle {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrands__cardTitle {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrands__cardTitle {
    font-size: 5.641025641vw;
  }
}

.nvBrands__cardText {
  margin-bottom: 2em;
}

.nvSectionHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

@media only screen and (max-width: 767px) {
  .nvProducts .nvSectionHead,
  .nvVoices .nvSectionHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .nvProducts .nvSectionHead__action,
  .nvVoices .nvSectionHead__action {
    margin-left: auto;
    margin-top: 1em;
  }
}

.nvList__item {
  border-top: solid 1px #969696;
}
.nvList__item:last-of-type {
  border-bottom: solid 1px #969696;
}
.nvList__item a {
  padding: 2em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.5em;
}
@media only screen and (max-width: 767px) {
  .nvList__item a {
    padding: 1.2em 0;
  }
}

.nvCta {
  background: url(../img/top/cta.jpg) no-repeat center/cover;
}
@media only screen and (max-width: 767px) {
  .nvCta {
    background-image: url(../img/top/cta--sp.jpg);
    padding-top: 2.5em;
  }
}

.nvCta__title {
  font-size: 2.125rem;
  line-height: 1.6;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvCta__title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvCta__title {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvCta__title {
    font-size: 5.641025641vw;
  }
}

@media only screen and (max-width: 767px) {
  .nvCta__text {
    font-size: 3.5897435897vw;
  }
}

/* ==========================================================================
   下層ページ（ブランドページ / About 系）
   ========================================================================== */
.nvBrandAbout__tagline * {
  display: block;
}
.nvBrandAbout__tagline .en {
  font-size: 3.5rem;
  line-height: 1;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvBrandAbout__tagline .en {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrandAbout__tagline .en {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrandAbout__tagline .en {
    font-size: 11.5384615385vw;
  }
}
.nvBrandAbout__tagline .ja {
  font-size: 1.125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvBrandAbout__tagline .ja {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrandAbout__tagline .ja {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrandAbout__tagline .ja {
    font-size: 3.8461538462vw;
  }
}

.nvBrandAbout__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
@media only screen and (max-width: 767px) {
  .nvBrandAbout__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2em;
  }
}

.nvBrandAbout__title {
  width: 46.667%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .nvBrandAbout__title {
    width: 100%;
  }
}

.nvAboutMain .mainCopy {
  font-size: 2.125rem;
  line-height: 1.6;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvAboutMain .mainCopy {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvAboutMain .mainCopy {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvAboutMain .mainCopy {
    font-size: 5.641025641vw;
  }
}

.mvAboutMainWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .mvAboutMainWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 2em;
  }
}

.nvAboutMainText,
.nvAboutMainImg {
  width: 43.333%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .nvAboutMainText,
  .nvAboutMainImg {
    width: 100%;
  }
}

.nvAboutMainText {
  padding-left: 5%;
}
@media only screen and (max-width: 767px) {
  .nvAboutMainText {
    padding-left: 0;
  }
}

.nvBrandFeatures {
  background-color: #eae4dc;
}

.nvBrandFeatures__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nvBrandFeatures__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2em;
  }
}

.nvBrandFeatures__visual {
  width: 24.167%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .nvBrandFeatures__visual {
    width: 48.7179487179vw;
    margin-inline: auto;
  }
}

.nvBrandFeatures__list {
  width: 69.167%;
}
@media only screen and (max-width: 767px) {
  .nvBrandFeatures__list {
    width: 100%;
  }
}

.nvBrandFeatures__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 2.5em;
  border-top: solid 1px #babab5;
}
@media only screen and (max-width: 767px) {
  .nvBrandFeatures__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 0.5em;
    padding-block: 1.8em;
  }
}
.nvBrandFeatures__row:last-of-type {
  border-bottom: solid 1px #babab5;
}

.nvBrandFeatures__heading {
  font-size: 1.125rem;
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvBrandFeatures__heading {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrandFeatures__heading {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvBrandFeatures__heading {
    font-size: 4.6153846154vw;
    width: 100%;
  }
}

.nvProducts__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5em 20px;
}
@media only screen and (max-width: 767px) {
  .nvProducts__grid {
    gap: 5.1282051282vw;
  }
}
.nvProducts__grid > * {
  width: calc(25% - 15px);
}
@media only screen and (max-width: 767px) {
  .nvProducts__grid > * {
    width: calc(50% - 2.5641025641vw);
  }
}
.nvProducts__grid .nvProducts__itemBrand {
  margin-bottom: 0;
}
.nvProducts__grid .nvProducts__itemMeta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: unset;
}

.nvBrandPage .nvAboutMain .cntM.padding {
  padding-bottom: var(--spaceSizeS);
}
@media only screen and (max-width: 767px) {
  .nvBrandPage .nvAboutMain .cntM.padding {
    padding-bottom: 10.2564102564vw;
  }
}
.nvBrandPage #nvBrandCollections > .cnt.padding {
  padding-top: var(--spaceSizeS);
}
@media only screen and (max-width: 767px) {
  .nvBrandPage #nvBrandCollections > .cnt.padding {
    padding-top: 10.2564102564vw;
  }
}
.nvBrandPage .nvVoices {
  background-color: transparent;
}
.nvBrandPage .nvVoices > .cnt.padding {
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  #nvBrandCollections .nvSectionHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3em;
  }
  #nvBrandCollections .nvSectionHead .nvSectionHead__action {
    margin-left: auto;
  }
}

/* ##########################################################################
   ===== ここから page-about.php（わたしたちについて）用 =====
   ########################################################################## */
.nvAboutPage__leadTitle {
  font-size: 2.125rem;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvAboutPage__leadTitle {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvAboutPage__leadTitle {
    font-size: 1.3125rem;
  }
}

.nvOperator__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px #babab5;
  padding-block: 1.5em;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .nvOperator__row {
    -webkit-column-gap: unset;
    -moz-column-gap: unset;
    column-gap: unset;
  }
}

.nvOperator__label {
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .nvOperator__label {
    width: 25.641025641vw;
  }
}

/* ==========================================================================
   商品個別ページ
   ========================================================================== */
.nvProductDetail__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2em;
  }
}

.nvProductDetail__gallery {
  width: 47.5%;
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__gallery {
    width: 100%;
  }
}

.nvProductDetail__info {
  width: 40.833%;
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__info {
    width: 100%;
  }
}

.nvProductDetail__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  gap: 0.5em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nvProductDetail__thumbs > * {
  width: calc(12.5% - 0.4375em);
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__thumbs > * {
    width: calc(20% - 0.4em);
  }
}

.nvProductDetail__modelInfo {
  text-align: center;
  margin-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__modelInfo {
    font-size: 3.3333333333vw;
  }
}

.nvProductDetail__nameEn {
  display: block;
  font-size: 3.5rem;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProductDetail__nameEn {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__nameEn {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__nameEn {
    font-size: 11.5384615385vw;
  }
}

.nvProductDetail__nameJp {
  font-size: 1.125rem;
  margin-bottom: 1em;
  display: block;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProductDetail__nameJp {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__nameJp {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__nameJp {
    font-size: 4.6153846154vw;
  }
}

.nvProductDetail__price {
  font-size: 1.3125rem;
  margin-bottom: 1.2em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProductDetail__price {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__price {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__price {
    font-size: 5.641025641vw;
  }
}
.nvProductDetail__price span {
  font-size: 0.6em;
}

.nvProductDetail__description {
  margin-bottom: 1.8em;
}

.nvProductDetail__info .nvBtn {
  font-size: 1rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProductDetail__info .nvBtn {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductDetail__info .nvBtn {
    font-size: 0.875rem;
  }
}

.nvProductDetail__specs {
  margin-top: 2em;
}

.nvProductDetail__specLabel {
  padding: 0.2em 1em;
  background-color: #eae4dc;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}

.nvProductPointsInner {
  background-color: #eae4dc;
  padding: 4em 1em;
}
@media only screen and (max-width: 767px) {
  .nvProductPointsInner {
    padding: 12.8205128205vw 6.1538461538vw;
  }
}

.nvProductPoints__heading {
  font-size: 1.75rem;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProductPoints__heading {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductPoints__heading {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductPoints__heading {
    font-size: 6.6666666667vw;
    margin-bottom: 1.2em;
  }
}

.nvProductPoints__grid {
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3.5em;
}
@media only screen and (max-width: 767px) {
  .nvProductPoints__grid {
    gap: 2em;
    row-gap: 1.2em;
  }
}
.nvProductPoints__grid > * {
  width: calc(33.3333333333% - 2.3333333333em);
}
@media only screen and (max-width: 767px) {
  .nvProductPoints__grid > * {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .nvProductPoints__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 38% 2em 1fr;
    grid-template-columns: 38% 1fr;
    -ms-grid-rows: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "visual title" "visual text" "visual ....";
    -webkit-column-gap: 2em;
    -moz-column-gap: 2em;
    column-gap: 2em;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media only screen and (max-width: 767px) {
  .nvProductPoints__visual {
    grid-area: visual;
    margin: 0;
    width: 33.3333333333vw;
  }
}

.nvProductPoints__title {
  font-size: 1.125rem;
  margin-block: 0.5em 0.2em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvProductPoints__title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductPoints__title {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvProductPoints__title {
    grid-area: title;
    margin-block: 0 0.2em;
    font-size: 4.6153846154vw;
  }
}

@media only screen and (max-width: 767px) {
  .nvProductPoints__text {
    grid-area: text;
  }
}

@media only screen and (max-width: 767px){
  .nvProductPoints__visual {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .nvProductPoints__title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .nvProductPoints__text {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}

@media only screen and (max-width: 767px) {
  .nvProductSize__tableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-right: -5.1282051282vw;
    padding-right: 5.1282051282vw;
  }
}

.nvProductSize__table {
  font-family: "Noto Sans JP", sans-serif;
  border: solid 1px #babab5;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .nvProductSize__table {
    max-width: unset;
    width: 307.6923076923vw;
  }
}
.nvProductSize__table th,
.nvProductSize__table td {
  border: solid 1px #babab5;
  padding: 0.5em;
  text-align: center;
  font-weight: inherit;
}
.nvProductSize__table thead tr th,
.nvProductSize__table thead tr td {
  background-color: #eae4dc;
}
.nvProductSize__table thead tr th:first-of-type {
  text-align: left;
}
.nvProductSize__table tbody tr th {
  text-align: left;
}

/* ==========================================================================
   お問い合わせページ（page-contact.php + Contact Form 7）
   ヒーローは既存の .nvBrandAbout__* を流用しているのでここでは扱わない。
   ========================================================================== */
.nvContactPage {
  background-color: var(--nv-bg-warm);
}

/* ==========================================================================
   フォーム外枠
   ========================================================================== */
.nvContactForm__wrap .wpcf7-form {
  display: block;
}

.nvContactForm__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* ==========================================================================
   各行（label 280px + input area）
   ========================================================================== */
.nvContactRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 2.625em;
  border-top: 1px solid #babab5;
}
.nvContactRow:last-of-type, .nvContactRow--message {
  border-bottom: 1px solid #babab5;
}
@media only screen and (max-width: 767px) {
  .nvContactRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.1282051282vw;
    padding-block: 0 5.1282051282vw;
  }
}

/* ----- 左: ラベル枠 ----- */
.nvContactRow__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 280px;
  background-color: var(--nv-bg-deep);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.75em;
  padding: 1.75em 1.5625em;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__label {
    width: 100%;
    padding: 3.5897435897vw 4.6153846154vw;
  }
}

.nvContactRow__labelText {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--nv-ff-jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--nv-text);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvContactRow__labelText {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvContactRow__labelText {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvContactRow__labelText {
    font-size: 3.8461538462vw;
  }
}

.nvContactRow__required {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.15em 0.6em;
  background-color: #242423;
  color: var(--nv-white);
  font-family: var(--nv-ff-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__required {
    font-size: 3.0769230769vw;
  }
}

/* ----- 右: 入力枠 ----- */
.nvContactRow__input {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 1.75em;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__input {
    padding-block: 0;
    width: 79.4871794872vw;
    margin-inline: auto;
  }
}
.nvContactRow__input .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  max-width: 320px;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__input .wpcf7-form-control-wrap {
    max-width: 100%;
  }
}

/* ----- 問い合わせ内容（textarea）行は input 幅を 400px に拡張 ----- */
.nvContactRow--message .nvContactRow__input {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.nvContactRow--message .nvContactRow__input .wpcf7-form-control-wrap {
  max-width: 400px;
}
@media only screen and (max-width: 767px) {
  .nvContactRow--message .nvContactRow__input .wpcf7-form-control-wrap {
    max-width: 100%;
  }
}

/* ==========================================================================
   入力フィールド共通
   ========================================================================== */
.nvContactRow__textInput,
.nvContactRow__selectInput,
.nvContactRow__textareaInput {
  width: 100%;
  padding: 0.4em 0.8em;
  background-color: var(--nv-white);
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--nv-ff-jp);
  font-size: 15px;
  line-height: 1.6;
  color: var(--nv-text);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.nvContactRow__textInput:focus,
.nvContactRow__selectInput:focus,
.nvContactRow__textareaInput:focus {
  outline: none;
  border-color: var(--nv-cta);
}
@media only screen and (max-width: 767px) {
  .nvContactRow__textInput,
  .nvContactRow__selectInput,
  .nvContactRow__textareaInput {
    font-size: 3.8461538462vw;
  }
}

/* テキスト・電話・メール: 高さ 34px */
.nvContactRow__textInput {
  height: 34px;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__textInput {
    height: 12.3076923077vw;
  }
}

/* セレクト: 矢印カスタム */
.nvContactRow__selectInput {
  height: 34px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.2em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23242423' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.nvContactRow__selectInput::-ms-expand {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__selectInput {
    height: 12.3076923077vw;
  }
}

/* テキストエリア: 高さ 90px */
.nvContactRow__textareaInput {
  height: 90px;
  resize: vertical;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .nvContactRow__textareaInput {
    height: 30.7692307692vw;
  }
}

/* ==========================================================================
   送信ボタン
   .nvContactForm__submit は中央寄せのラッパー、
   実体の <input type="submit"> には CF7 タグ側で .nvBtn .nvBtn--filled を付与している
   ========================================================================== */
.nvContactForm__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3.75em;
}
@media only screen and (max-width: 767px) {
  .nvContactForm__submit {
    margin-top: 10.2564102564vw;
  }
}
.nvContactForm__submit > p {
  margin: 0;
}
.nvContactForm__submit .wpcf7-spinner {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.nvContactForm__submit .nvBtn--filled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 210px;
  min-width: 0;
  height: 51px;
  padding: 0 2.5em 0 2em;
  font-family: var(--nv-ff-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'><path d='M1 5h12M9 1l4 4-4 4' stroke='white' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.5em center;
}
@media only screen and (max-width: 767px) {
  .nvContactForm__submit .nvBtn--filled {
    width: 53.8461538462vw;
    height: 13.0769230769vw;
    font-size: 3.8461538462vw;
    background-position: right 5.1282051282vw center;
  }
}

/* ==========================================================================
   CF7 バリデーション・送信ステータス表示
   ========================================================================== */
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.46em;
  color: #c8102e;
  font-family: var(--nv-ff-jp);
  font-size: 13px;
  line-height: 1.4;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #c8102e !important;
}
.wpcf7 .wpcf7-response-output {
  margin: 1.7142em 0 0;
  padding: 1em 1.2857em;
  border: 1px solid var(--nv-line);
  border-radius: 3px;
  font-family: var(--nv-ff-jp);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.wpcf7 .wpcf7-spinner {
  margin-left: 0.75em;
}

.policyComment {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/* ==========================================================================
   お客様の声 アーカイブ（archive-voice.php）専用
   - クラス名は archive-voice 専用に prefix nvVoicesArchive__ で統一
     （brand ページ Swiper の .nvVoices__ 系・front-page の他系統と衝突させない）
   - 3 列の flex レイアウト
   ========================================================================== */
.nvVoicesArchive {
  background-color: var(--nv-bg-warm);
}

/* ----- グリッド本体（flex） ----- */
.nvVoicesArchive__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3em;
}
@media only screen and (max-width: 767px) {
  .nvVoicesArchive__grid {
    gap: 5.1282051282vw;
  }
}

/* ----- 1 件のカード ----- */
.nvVoicesArchive__item {
  width: calc(33.3333333333% - 2em);
}
@media only screen and (max-width: 767px) {
  .nvVoicesArchive__item {
    width: calc(50% - 2.5641025641vw);
  }
}

.nvVoicesArchive__itemLink {
  display: block;
  color: var(--nv-text);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.nvVoicesArchive__itemLink:hover .nvVoicesArchive__itemThumb img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

/* ----- カード画像（正方形） ----- */
.nvVoicesArchive__itemThumb {
  aspect-ratio: 320/240;
  margin: 0;
  overflow: hidden;
  background: var(--nv-bg-deep);
}
.nvVoicesArchive__itemThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* ----- カード下のテキスト本体 ----- */
.nvVoicesArchive__itemBody {
  margin-top: 0.5em;
}

.nvVoicesArchive__itemMeta {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvVoicesArchive__itemMeta {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvVoicesArchive__itemMeta {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvVoicesArchive__itemMeta {
    font-size: 3.3333333333vw;
  }
}

.nvVoicesArchive__itemTitle {
  margin: 0;
}

/* ----- 投稿が 0 件の時のメッセージ ----- */
.nvVoicesArchive__empty {
  margin: 0;
  padding-block: 5em;
  text-align: center;
  font-family: var(--nv-ff-jp);
  font-size: 15px;
  line-height: 1.6;
  color: var(--nv-text);
}

/* ==========================================================================
   お知らせアーカイブ（home.php / category.php / parts/news-list.php）
   - クラス名は news 専用 prefix nvNewsArchive__ で統一
   - 左サイドバー (CATEGORY) + 右リスト の 2 カラム
   ========================================================================== */
.nvNewsArchive {
  background-color: var(--nv-bg-warm);
}

/* ----- 2 カラムレイアウト ----- */
.nvNewsArchive__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 6.5em;
  -moz-column-gap: 6.5em;
  column-gap: 6.5em;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 10.2564102564vw;
  }
}

/* ==========================================================================
   左カラム: サイドバー
   ========================================================================== */
.nvNewsArchive__sidebar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__sidebar {
    display: none;
  }
}

.nvNewsArchive__sidebarHeading {
  margin: 0 0 1em;
  padding-left: 2.5em;
  position: relative;
  font-family: var(--nv-ff-en);
  letter-spacing: var(--nv-track-en-wide);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--nv-text);
}
.nvNewsArchive__sidebarHeading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2em;
  height: 1px;
  background-color: var(--nv-text);
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__sidebarHeading {
    font-size: 3.8461538462vw;
  }
}

.nvNewsArchive__sidebarList {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2.5em;
}

.nvNewsArchive__sidebarItem {
  margin-block: 0.6em;
}
.nvNewsArchive__sidebarItem a {
  display: inline-block;
  font-family: var(--nv-ff-jp);
  font-size: 14px;
  line-height: 1.6;
  color: var(--nv-text);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.nvNewsArchive__sidebarItem a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__sidebarItem a {
    font-size: 3.5897435897vw;
  }
}
.nvNewsArchive__sidebarItem.is-current a {
  border-bottom: 1px solid var(--nv-text);
}

/* ==========================================================================
   右カラム: 投稿リスト
   ========================================================================== */
.nvNewsArchive__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__main {
    width: 100%;
  }
}

.nvNewsArchive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #babab5;
}

.nvNewsArchive__item {
  border-bottom: 1px solid #babab5;
}

.nvNewsArchive__itemLink {
  display: block;
  padding: 1.8em 1em;
  color: var(--nv-text);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__itemLink {
    padding: 1.5em 0;
  }
}
.nvNewsArchive__itemLink:hover {
  opacity: 0.6;
}

.nvNewsArchive__itemDate {
  margin: 0 0 0.4em;
  font-size: 14px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__itemDate {
    font-size: 3.8461538462vw;
  }
}

.nvNewsArchive__itemTitle {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive__itemTitle {
    font-size: 3.8461538462vw;
  }
}

/* ----- 投稿が 0 件のメッセージ ----- */
.nvNewsArchive__empty {
  margin: 0;
  padding-block: 5em;
  text-align: center;
  font-family: var(--nv-ff-jp);
  font-size: 15px;
  line-height: 1.6;
  color: var(--nv-text);
}

/* ----- ページネーション余白 ----- */
.nvNewsArchive .wp-pagenavi {
  margin-top: 5em;
}
@media only screen and (max-width: 767px) {
  .nvNewsArchive .wp-pagenavi {
    margin-top: 12.8205128205vw;
  }
}

/* ##########################################################################
   ===== ここから single.php（投稿詳細）用 =====
   - 標準 post の単一記事ページ。news 系の流れ（一覧 → 詳細）として同ファイルに配置
   - クラス名は single-post 専用 prefix nvSinglePost__ で統一
   - リードブロック（ACF カスタムフィールド + アイキャッチ）+ WP エディタ本文の構成
   ########################################################################## */
.nvSinglePost {
  background-color: var(--nv-bg-warm);
}

/* ==========================================================================
   記事ヘッダー（日付 + タイトル）
   ========================================================================== */
.nvSinglePost__article {
  padding-block: 1em 5em;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__article {
    padding-block: 5.1282051282vw 15.3846153846vw;
  }
}

.nvSinglePost__header {
  margin-bottom: 2.5em;
}

.nvSinglePost__date {
  margin: 0 0 0.6em;
  line-height: 1.6;
}

.nvSinglePost__title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvSinglePost__title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__title {
    font-size: 5.641025641vw;
  }
}

/* ==========================================================================
   リードブロック（ACF カスタムフィールド + アイキャッチ）
   - intro_text / アイキャッチ / subheading / body_text / cta_url すべて任意
   ========================================================================== */
.nvSinglePost__lead {
  margin-bottom: 3em;
}

.nvSinglePost__intro {
  margin-bottom: 2em;
}
.nvSinglePost__intro p {
  margin: 0 0 1em;
}
.nvSinglePost__intro p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__intro {
    font-size: 3.5897435897vw;
  }
}

.nvSinglePost__image {
  margin: 0 0 3em;
}
.nvSinglePost__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__image {
    margin-bottom: 9.2307692308vw;
  }
}

/* ダッシュ前置の小見出し */
.nvSinglePost__subheading {
  margin: 0 0 0.8em;
  padding-left: 2.5em;
  position: relative;
  line-height: 1.6;
  font-size: 1.5rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .nvSinglePost__subheading {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__subheading {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__subheading {
    font-size: 5.641025641vw;
  }
}
.nvSinglePost__subheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.3333333333em;
  height: 1px;
  background-color: var(--nv-text);
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__subheading {
    padding-left: 8.2051282051vw;
  }
  .nvSinglePost__subheading::before {
    width: 5.1282051282vw;
  }
}

.nvSinglePost__bodyText {
  margin-bottom: 2em;
}
.nvSinglePost__bodyText p {
  margin: 0 0 1em;
}
.nvSinglePost__bodyText p:last-child {
  margin-bottom: 0;
}

/* View More ボタンの中央寄せラッパー */
.nvSinglePost__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-block: 3em 4em;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__cta {
    margin-block: 10.2564102564vw 12.8205128205vw;
  }
}

/* ==========================================================================
   WP エディタ本文（the_content() 出力）
   - h1-h4 / ul / ol / p などのデフォルト出力をデザインに合わせて整える
   ========================================================================== */
.nvSinglePost__content h1,
.nvSinglePost__content h2,
.nvSinglePost__content h3,
.nvSinglePost__content h4,
.nvSinglePost__content h5,
.nvSinglePost__content h6 {
  margin-bottom: 1.5rem;
}
.nvSinglePost__content h1 {
  font-size: 2.4666666667em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__content h1 {
    font-size: 9.4871794872vw;
  }
}
.nvSinglePost__content h2 {
  font-size: 2.0666666667em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__content h2 {
    font-size: 7.9487179487vw;
  }
}
.nvSinglePost__content h3 {
  font-size: 1.7333333333em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__content h3 {
    font-size: 6.6666666667vw;
  }
}
.nvSinglePost__content h4 {
  font-size: 1.4666666667em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__content h4 {
    font-size: 5.641025641vw;
  }
}
.nvSinglePost__content p {
  margin: 0 0 1.2em;
}
.nvSinglePost__content ul,
.nvSinglePost__content ol {
  margin: 1em 0 1.5em;
  padding-left: 1.5em;
}
.nvSinglePost__content ul li,
.nvSinglePost__content ol li {
  margin: 0 0 0.4em;
  line-height: 1.8;
  list-style-type: inherit;
}
.nvSinglePost__content ul li:last-child,
.nvSinglePost__content ol li:last-child {
  margin-bottom: 0;
}
.nvSinglePost__content ul {
  list-style-type: disc;
}
.nvSinglePost__content ol {
  list-style-type: decimal;
}
.nvSinglePost__content a {
  color: var(--nv-text);
  text-decoration: underline;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.nvSinglePost__content a:hover {
  opacity: 0.6;
}
.nvSinglePost__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
}
.nvSinglePost__content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 3px solid var(--nv-cta);
  background-color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.nvSinglePost__content a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: var(--mainColor);
}
.nvSinglePost__content blockquote {
  padding: 2em 4em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.nvSinglePost__content blockquote p {
  font-size: 14px;
}
.nvSinglePost__content strong {
  font-style: normal;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(64, 27, 23, 0.1)));
  background: -webkit-linear-gradient(transparent 50%, rgba(64, 27, 23, 0.1) 50%);
  background: linear-gradient(transparent 50%, rgba(64, 27, 23, 0.1) 50%);
}
.nvSinglePost__content p {
  margin: 0.5em 0 1em 0;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .nvSinglePost__content p {
    line-height: 1.6;
  }
}

/* ==========================================================================
   プライバシーポリシー（page-privacy.php）
   - dl > dt + dd で各条を構成
   ========================================================================== */
.nvPrivacyPage {
  background-color: var(--nv-bg-warm);
}

.nvPrivacy__intro {
  margin: 0 0 3em;
  font-family: var(--nv-ff-jp);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: var(--nv-track-jp);
  color: var(--nv-text);
}
@media only screen and (max-width: 767px) {
  .nvPrivacy__intro {
    font-size: 3.5897435897vw;
    margin-bottom: 10.2564102564vw;
  }
}

.nvPrivacy__list {
  margin: 0;
  font-family: var(--nv-ff-jp);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: var(--nv-track-jp);
  color: var(--nv-text);
}
@media only screen and (max-width: 767px) {
  .nvPrivacy__list {
    font-size: 3.5897435897vw;
  }
}
.nvPrivacy__list dt {
  margin: 2.5em 0 0.8em;
  font-weight: 500;
  font-size: 1.2857142857em;
  line-height: 1.5;
  color: var(--nv-text);
}
.nvPrivacy__list dt:first-of-type {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .nvPrivacy__list dt {
    margin: 8.2051282051vw 0 3.0769230769vw;
  }
}
.nvPrivacy__list dd {
  margin: 0;
}
.nvPrivacy__list dd p {
  margin: 0 0 1em;
}
.nvPrivacy__list dd p:last-child {
  margin-bottom: 0;
}
.nvPrivacy__list dd ul,
.nvPrivacy__list dd ol {
  margin: 0.6em 0;
  padding-left: 1.5em;
}
.nvPrivacy__list dd ul li,
.nvPrivacy__list dd ol li {
  margin: 0 0 0.4em;
  line-height: 1.8;
  list-style-type: inherit;
}
.nvPrivacy__list dd ul li:last-child,
.nvPrivacy__list dd ol li:last-child {
  margin-bottom: 0;
}
.nvPrivacy__list dd ul {
  list-style-type: disc;
}
.nvPrivacy__list dd ol {
  list-style-type: decimal;
}
.nvPrivacy__list dd ul ul,
.nvPrivacy__list dd ol ul {
  margin: 0.4em 0;
  list-style-type: circle;
}
.nvPrivacy__list dd ul ol,
.nvPrivacy__list dd ol ol {
  margin: 0.4em 0;
  list-style-type: decimal;
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: 0.8;
    border-top: none;
  }
  .bgImg {
    display: list-item; /* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png); /* 表示させたい画像 */
    list-style-position: inside; /* マーカーの位置を内側に */
  }
  header {
    display: none;
  }
  footer {
    display: none;
  }
  .footerTelSp {
    display: none;
  }
  .menu-btn {
    display: none;
  }
  .fixBar {
    display: none !important;
  }
  .parallax-mirror {
    display: none;
    height: 0 !important;
  }
  .rellax {
    -webkit-transform: none !important;
    transform: none !important;
  }
  .PrintHidden {
    display: none;
  }
  .printArea {
    margin: 0;
    padding: 0;
  }
}