@charset "UTF-8";
:root {
  --mc01: #005eae;
  --mc02: #bfc8b3;
  --sc: #ece01f;
  --fc: #333;
  --bc: #f5f7f5;
  --red: #b10000;
}
@media screen and (min-width: 768px) {
  :root {
    --mq: 10.24;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --mq: 7.5;
  }
}

/* 要素 フォントサイズ・マージン・パディングをリセット */
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;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}

/* 行の高=フォントサイズ */
body {
  letter-spacing: 0.1em;
  line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  background: transparent;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

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

section {
  position: relative;
}

input[type=submit],
input[type=button] {
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  position: relative;
  color: var(--fc);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Noto Sans JP", sans-serif;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

body.fix {
  position: fixed;
  width: 100%;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

*:focus {
  outline: none;
}

/*-----line-hight-----*/
p,
li,
dl,
tr {
  line-height: 1.875;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.66;
}

/* リンク */
a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  transition: opacity 0.6s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/*phone*/
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*class*/
.cmn {
  /*display:none*/
}
.cmn-content__wrap {
  width: calc(100% - 100px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .cmn-content__wrap {
    width: calc(100% - 60px);
  }
}
.cmn-content__box {
  position: relative;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.cmn-content__box--size01 {
  max-width: 1230px;
}
.cmn-content__box--full {
  width: 100%;
  padding: 0;
}
.cmn-content__ttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
  text-align: center;
}
.cmn-content__ttl-ruby {
  font-size: 5.8rem;
  font-weight: 700;
  color: #0f2088;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .cmn-content__ttl-ruby {
    font-size: min(58px, 72 / var(--mq) * 1vw);
  }
}
.cmn-content__ttl-st {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f2088;
}
@media screen and (max-width: 767px) {
  .cmn-content__ttl-st {
    font-size: min(18px, 32 / var(--mq) * 1vw);
  }
}
.cmn-content__subttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
  text-align: center;
}
.cmn-content__subttl-st {
  font-size: 4rem;
  font-weight: 700;
  color: var(--mc01);
}
@media screen and (max-width: 767px) {
  .cmn-content__subttl-st {
    font-size: min(40px, 50 / var(--mq) * 1vw);
  }
}
.cmn-content__post {
  display: flex;
  gap: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .cmn-content__post {
    flex-direction: column;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.cmn-content__post-none {
  text-align: center;
}
.cmn-content__post-none-st {
  margin-bottom: 30px;
}
.cmn-content__post-none-btn a {
  margin: 0 auto;
}
.cmn-content__pagenav {
  font-size: 1.6rem;
}
.cmn-content__pagenav .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cmn-content__pagenav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  background: #f5f5f5;
}
.cmn-content__pagenav .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  background: var(--mc01);
  color: #fff;
}
.cmn-content__postnav {
  display: flex;
  justify-content: center;
  gap: min(20px, 20 / var(--mq) * 1vw);
}
.cmn-content__postnav-item {
  width: 120px;
  height: 50px;
}
.cmn-content__postnav-item.is-none {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.cmn-content__postnav-item--all {
  width: 180px;
}
.cmn-content__postnav-item--wide {
  width: 100%;
  max-width: 360px;
  height: 70px;
}
.cmn-content__postnav-item-anc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #999999;
}
.cmn-content__postnav-item--all .cmn-content__postnav-item-anc, .cmn-content__postnav-item--wide .cmn-content__postnav-item-anc {
  background: #999999;
}
.cmn-content__postnav-item-st {
  font-size: 1.6rem;
  font-weight: 700;
}
.cmn-content__postnav-item--all .cmn-content__postnav-item-st, .cmn-content__postnav-item--wide .cmn-content__postnav-item-st {
  color: #fff;
}
.cmn-content__sidebar {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .cmn-content__sidebar {
    padding-block: 0 min(120px, 120 / var(--mq) * 1vw);
    width: 100%;
  }
}
.cmn-content__sidebar-archive-btn-anc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(20px, 20 / var(--mq) * 1vw);
  background: #0f2088;
}
.cmn-content__sidebar-archive-btn-anc::after {
  display: block;
  content: "";
  width: 10px;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
}
.cmn-content__sidebar-archive-btn-st {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cmn-content__sidebar-archive-ttl {
  padding: min(20px, 20 / var(--mq) * 1vw);
  background: #0f2088;
}
.cmn-content__sidebar-archive-ttl.product_cat {
  background: #f5f5f5;
}
.cmn-content__sidebar-archive-ttl-st {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cmn-content__sidebar-archive-ttl.product_cat .cmn-content__sidebar-archive-ttl-st {
  color: #0f2088;
}
.cmn-content__sidebar-archive-list li {
  padding: min(15px, 15 / var(--mq) * 1vw);
  border-bottom: 1px solid #999;
}
.cmn-content__sidebar-archive-list.is-cat {
  padding-top: min(15px, 15 / var(--mq) * 1vw);
}
.cmn-content__sidebar-archive-list.is-cat li {
  padding: 0 min(15px, 15 / var(--mq) * 1vw);
  border-bottom: none;
}
.cmn-content__sidebar-archive-list.is-cat li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cmn-content__sidebar-archive-list.is-cat li a::before {
  content: "";
  width: 10px;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #0f2088;
}
.cmn-content__sidebar-archive-list.is-cat li + li {
  margin-top: min(15px, 15 / var(--mq) * 1vw);
}
.cmn-content__sidebar-archive-list-st {
  flex: 1;
}
.cmn-content__sidebar-archive + .cmn-content__sidebar-archive {
  margin-top: min(40px, 40 / var(--mq) * 1vw);
}
.cmn-text--center {
  text-align: center;
}
.cmn-text--right {
  text-align: right;
}
.cmn-text--sp-left {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cmn-text--sp-left {
    text-align: left;
  }
}
.cmn-text--vertical {
  writing-mode: vertical-rl;
}
.cmn-text--link {
  position: relative;
  z-index: 1;
}
.cmn-text--link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: black;
  transition: 0.3s;
}
@media screen and (min-width: 1280px) {
  .cmn-text--link:hover:after {
    visibility: hidden;
    opacity: 0;
  }
}
.cmn-bold {
  font-weight: bold !important;
}
.cmn-color {
  color: var(--mc01) !important;
}
.cmn-color--sc {
  color: var(--sc) !important;
}
.cmn-color--w {
  color: white !important;
}
.cmn-color--b {
  color: black !important;
}
.cmn-bg {
  background: var(--mc01);
}
.cmn-bg--sc {
  background: var(--sc);
}
.cmn-bg--bc {
  background: var(--bc);
}
.cmn-bg--w {
  background: white;
}
.cmn-bg--b {
  background: black;
}
.cmn-border-b {
  border-bottom: 1px solid;
}
.cmn-border-b--sc {
  border-bottom: 2px solid var(--sc);
}
.cmn-marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}
@media screen and (max-width: 1799px) {
  .cmn-display__pcl--block {
    display: none !important;
  }
}
.cmn-display__pcl--none {
  display: none;
}
@media screen and (max-width: 1799px) {
  .cmn-display__pcl--none {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .cmn-display__pc--block {
    display: none !important;
  }
}
.cmn-display__pc--none {
  display: none;
}
@media screen and (max-width: 1023px) {
  .cmn-display__pc--none {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .cmn-display__pc-tb--block {
    display: none;
  }
}
.cmn-display__pc-tb--none {
  display: none;
}
@media screen and (max-width: 767px) {
  .cmn-display__pc-tb--none {
    display: block;
  }
}
.cmn-display__sp--block {
  display: none;
}
@media screen and (max-width: 767px) {
  .cmn-display__sp--block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .cmn-display__sp--none {
    display: none;
  }
}
.cmn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cmn-layout__column {
  display: flex;
  flex-wrap: wrap;
}
.cmn-layout__column--just-btw {
  justify-content: space-between;
}
.cmn-layout__column--item-cnt {
  align-items: center;
}
.cmn-layout__column--column {
  flex-direction: column;
}
.cmn-layout__column--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .cmn-layout__column--sp-column {
    flex-direction: column;
  }
}

/* --- WordPress preset CSS ----------------------------------------------------------------------------------------- */
.wp-caption-text {
  text-align: center;
}

.alignright {
  float: right;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.clear {
  clear: both;
}

.post p {
  line-height: 2;
  margin: 0 0 2em 0;
}

.page p {
  line-height: 2;
  margin: 0 0 2em 0;
}

.post strong {
  font-weight: 700;
}

/* headline */
.post h1, .post h2, .post h3, .post h4, .post h5, .post h6 {
  clear: both;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.post h1 {
  font-size: 150%;
}

.post h2 {
  font-size: 140%;
}

.post h3 {
  font-size: 130%;
}

.post h4 {
  font-size: 120%;
}

.post h5 {
  font-size: 110%;
}

.post h6 {
  font-size: 100%;
}

/* image */
.post img {
  max-width: 100%;
}

.post img.centered, div.centered {
  display: block;
  margin: 15px auto;
}

.post img.aligncenter, div.aligncenter {
  display: block;
  margin: 15px auto;
}

.post img.alignright, div.alignright {
  margin: 10px 0 30px 30px;
  display: inline;
}

.post img.alignleft, div.alignleft {
  margin: 10px 30px 30px 0;
  display: inline;
}

.post .wp-caption {
  background: #fff;
  border: 1px solid #ccc;
  max-width: 96%;
  padding: 14px 3px 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.post .wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.post .wp-caption .wp-caption-text {
  padding: 10px 0 0;
}

.page img {
  height: auto;
  max-width: 100%;
  width: auto;
}

.page img.centered, div.centered {
  display: block;
  margin: 15px auto;
}

.page img.aligncenter, div.aligncenter {
  display: block;
  margin: 15px auto;
}

.page img.alignright, div.alignright {
  margin: 10px 0 30px 30px;
  display: inline;
}

.page img.alignleft, div.alignleft {
  margin: 10px 30px 30px 0;
  display: inline;
}

.page .wp-caption {
  background: #fff;
  border: 1px solid #ccc;
  max-width: 96%;
  padding: 14px 3px 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.page .wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.page .wp-caption .wp-caption-text {
  padding: 10px 0 0;
}

/* table */
.post table {
  margin: 0 0 24px 0;
}

.post td, .post th {
  border: 1px solid #ccc;
  padding: 10px 15px 7px;
  line-height: 2;
}

.post th {
  background: #f2f2f2;
  font-weight: normal;
}

/* block quote */
.post blockquote {
  margin: 0 0 24px 0;
  padding: 27px 30px 1px;
  background: #f2f2f2;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.post blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: 10px;
  color: #999;
}

.post blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  text-align: left;
  line-height: 60px;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 7px;
  right: -2px;
  color: #999;
}

/* list */
.post li, .post dt, .post dd {
  line-height: 2;
}

.post ul, .post ol, .post dl {
  margin-bottom: 24px;
}

.post ol {
  list-style: decimal outside none;
  margin-left: 1.5em;
}

.post ul {
  list-style: disc outside none;
  margin-left: 1.3em;
}

.post li > ul, .post li > ol {
  margin-bottom: 0;
}

.post dt {
  font-weight: bold;
}

.post dd {
  margin-bottom: 1em;
}

.page li, .page dt, .page dd {
  line-height: 2;
}

.page ul, .page ol, .page dl {
  margin-bottom: 24px;
}

.page ol {
  list-style: decimal outside none;
  margin-left: 1.5em;
}

.page ul {
  list-style: disc outside none;
  margin-left: 1.3em;
}

.page li > ul, .page li > ol {
  margin-bottom: 0;
}

.page dt {
  font-weight: bold;
}

.page dd {
  margin-bottom: 1em;
}

/* captions */
.post .wp-caption {
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  max-width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.post .wp-caption-text {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  line-height: 2;
  margin: 9px auto;
}

.post .wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

.page .wp-caption {
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  max-width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.page .wp-caption-text {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  line-height: 2;
  margin: 9px auto;
}

.page .wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

/* etc */
.post pre {
  margin: 0 0 24px 0;
  line-height: 1.5;
  background: #f2f2f2;
  padding: 15px;
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.cmn-nav-toggle {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
}
@media screen and (max-width: 767px) {
  .cmn-nav-toggle {
    width: 50px;
    height: 50px;
  }
}
.cmn-nav-toggle div {
  display: block;
  width: 40px;
  height: 25.6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .cmn-nav-toggle div {
    width: 30px;
    height: 30px;
  }
}
.cmn-nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  transition: 0.35s ease-in-out;
  width: 100%;
  height: 2px;
  background: #fff;
}
.cmn-nav-toggle span:nth-child(1) {
  top: 0;
}
.cmn-nav-toggle span:nth-child(2) {
  display: none;
  top: 11.8px;
}
.cmn-nav-toggle span:nth-child(3) {
  top: 10px;
}
.cmn-nav-toggle-txt {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header-home02.open .cmn-nav-toggle span:nth-child(1) {
  top: 7px;
  transform: rotate(315deg);
}
.header-home02.open .cmn-nav-toggle span:nth-child(2) {
  left: 50%;
  width: 0;
}
.header-home02.open .cmn-nav-toggle span:nth-child(3) {
  top: 7px;
  transform: rotate(-315deg);
}

.header-home02 {
  position: relative;
}
.header-home02__content {
  width: auto;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1010;
}
.header-home02__content-logo {
  width: min(21.09375vw, 27rem);
  margin: 0;
  position: absolute;
  top: 60px;
  left: 120px;
  z-index: 1011;
}
@media screen and (max-width: 767px) {
  .header-home02__content-logo {
    width: 200px;
    left: 70px;
  }
}
.header-home02__content-info {
  width: 100px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  border-right: solid 1px #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header-home02__content-info {
    width: 60px;
  }
}
.header-home02__content-info-contact {
  width: 99px;
  height: 100px;
  background-color: var(--mc01);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header-home02__content-info-contact {
    width: 59px;
    height: 60px;
  }
}
.header-home02__content-info-contact-anc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header-home02__content-menu-nav-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
}
.header-home02__content-menu-nav-list {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-home02__content-menu-nav-item {
  padding: 0 min(1.1111111111vw, 1.6rem);
}
.header-home02__content-menu-nav-item:first-of-type {
  padding-left: 0;
}
.header-home02__content-menu-nav-item:last-of-type {
  padding-right: 0;
}
.header-home02__content-menu-nav-item-anc span {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.header-home02__content-menu-nav.sp-nav {
  display: flex;
  align-items: center;
  overflow-y: auto;
  opacity: 0;
  max-width: 500px;
  width: calc(100% - 100px);
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  padding: 65px 4%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .header-home02__content-menu-nav.sp-nav {
    width: calc(100% - 60px);
  }
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-inr {
  display: block;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-list {
  display: block;
  width: 100%;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-item {
  overflow: hidden;
  padding: 0;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-item-anc {
  display: block;
  padding: 20px 10px;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-item-anc span {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-tel {
  text-align: center;
  margin-top: 30px;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-tel-num {
  display: inline;
}
.header-home02__content-menu-nav.sp-nav .header-home02__content-menu-nav-mail {
  max-width: 240px;
  width: 100%;
  margin: 30px auto 0;
}
.header-home02.open .header-home02__content-menu-nav.sp-nav {
  opacity: 1;
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
  transform: translateX(100px);
}
@media screen and (max-width: 767px) {
  .header-home02.open .header-home02__content-menu-nav.sp-nav {
    transform: translateX(60px);
  }
}

.footer-home02 {
  background-color: var(--mc01);
  padding: min(70px, 70 / var(--mq) * 1vw) 0;
}
.footer-home02__content-inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 50px;
}
.footer-home02__content-info-logo {
  margin-bottom: 30px;
}
.footer-home02__content-info-txt-str {
  letter-spacing: 0.05em;
  color: #fff;
}
.footer-home02__content-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .footer-home02__content-menu {
    display: none;
  }
}
.footer-home02__content-menu-list {
  margin-right: min(100px, 100 / var(--mq) * 1vw);
}
.footer-home02__content-menu-item {
  margin-bottom: 5px;
}
.footer-home02__content-menu-item:last-of-type {
  margin-bottom: 0;
}
.footer-home02__content-menu-item-anc {
  color: #fff;
}
.footer-home02__content-copy {
  margin-top: min(100px, 100 / var(--mq) * 1vw);
}
.footer-home02__content-copy-str {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.cmn-btn__anc {
  display: block;
  max-width: 320px;
  width: 100%;
  background-color: var(--mc01);
  border-radius: 5px;
  letter-spacing: 0.05em;
  line-height: 5;
  text-align: center;
  color: #fff;
  position: relative;
}
.cmn-btn__anc::before {
  content: "";
  vertical-align: middle;
  width: 10px;
  height: 15px;
  background: url(../images/cmn/icon_arrow01.png) no-repeat center center/contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
.cmn-btn--white .cmn-btn__anc {
  background-color: transparent;
  border: solid 1px #fff;
}

.cmn-table__tr {
  display: block;
  border-bottom: solid 1px #ccc;
  padding: 15px 0;
}
.cmn-table__th {
  width: 210px;
  font-weight: 500;
  text-align: left;
  padding: 0 10px 0 25px;
}
@media screen and (max-width: 767px) {
  .cmn-table__th {
    display: block;
    width: 100%;
    padding: 0 15px;
  }
}
.cmn-table__td {
  padding: 0 15px 0 25px;
}
@media screen and (max-width: 767px) {
  .cmn-table__td {
    display: block;
    width: 100%;
    padding: 0 10px;
  }
}
.cmn-table__ptn01 {
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .cmn-table__ptn01 {
    margin-bottom: 40px;
  }
}
.cmn-table__ptn01:last-of-type {
  margin-bottom: 0;
}
.cmn-table__ptn01__row {
  border-bottom: 1px solid #666;
}
.cmn-table__ptn01__row:first-of-type {
  border-top: 1px solid #666;
}
.cmn-table__ptn01__row__ttl {
  padding: 15px 0 15px 50px;
  width: 250px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 1023px) {
  .cmn-table__ptn01__row__ttl {
    width: 200px;
    padding: 15px 0 15px max(6.5104166667vw, 5rem);
  }
}
@media screen and (max-width: 767px) {
  .cmn-table__ptn01__row__ttl {
    display: block;
    padding: 20px 0 0;
    width: 100%;
    text-align: left;
  }
}
.cmn-table__ptn01__row__ttl span {
  color: #cc0000;
}
.cmn-table__ptn01__row__ttl span.required {
  position: relative;
}
.cmn-table__ptn01__row__ttl span.required:after {
  content: "※";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #b10000;
  font-size: 1.2rem;
  line-height: 20px;
  text-align: center;
}
.cmn-table__ptn01__row__txt {
  padding: 15px 30px 15px 80px;
  font-size: 1.6rem;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 1023px) {
  .cmn-table__ptn01__row__txt {
    padding: 15px 30px 15px 40px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-table__ptn01__row__txt {
    display: block;
    padding: 0 0 20px;
    width: 100%;
  }
}
.cmn-table__ptn01__row__txt .field-l {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cmn-table__ptn01__row__txt .field-s {
    width: 100%;
  }
}
.cmn-table__ptn01--caption {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  padding-left: 40px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cmn-table__ptn01--caption {
    font-size: 2rem;
    padding-left: 30px;
    margin-bottom: 20px;
  }
}
.cmn-table__ptn01--caption::before {
  content: "■";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top-fv {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top-fv {
    height: min(600px, 130.1204819277vw);
  }
}
@media screen and (max-width: 1023px) {
  .top-fv__swiper-img img {
    height: min(600px, 130.1204819277vw);
    object-fit: cover;
  }
}
.top-fv__catch {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.top-vision {
  position: relative;
}
.top-vision__txt {
  font-size: min(4.6vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.5;
  color: #ccc;
  text-align: right;
  padding-right: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .top-vision__txt {
    font-size: min(7vw, 6rem);
  }
}
.top-vision__cont {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.top-vision__cont-ttl {
  margin-left: max(50% - 50vw + 70px, -160px);
}
@media screen and (max-width: 1023px) {
  .top-vision__cont-ttl {
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-vision__cont-ttl--en {
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
  color: var(--mc01);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-vision__cont-ttl--en {
    font-size: 6rem;
  }
}
.top-vision__cont-ttl--jp {
  color: #000;
}
.top-vision__cont-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-vision__cont-item {
    display: block;
  }
}
.top-vision__cont-item-info {
  max-width: 550px;
  flex: 1;
  padding-top: min(70px, 70 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-vision__cont-item-info {
    max-width: none;
    padding-top: 0;
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-vision__cont-item-info-ttl {
  font-size: min(3.2vw, 4.8rem);
  font-weight: 500;
  color: #000;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .top-vision__cont-item-info-ttl {
    font-size: min(6.5vw, 3.6rem);
  }
}
.top-vision__cont-item-info-txt {
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .top-vision__cont-item-info-txt {
    font-size: 1.8rem;
  }
}
.top-vision__cont-item-img {
  max-width: 540px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .top-vision__cont-item-img {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
  }
}
.top-vision__cont-item-img-inr {
  margin-right: max((1300px - 100vw) / 2, -360px);
}
@media screen and (max-width: 1330px) {
  .top-vision__cont-item-img-inr {
    margin-right: -15px;
  }
}
.top-vision__cont-img {
  margin: -30px 0 0 30px;
}
@media screen and (max-width: 767px) {
  .top-vision__cont-img {
    margin: 30px 0 0 30px;
  }
}

.top-4column__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.top-4column__item {
  max-width: 445px;
  width: calc((100% - 45px) / 4);
}

.top-service {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.top-service__ttl {
  text-align: right;
  margin-right: max(50% - 50vw + 70px, -160px);
}
@media screen and (max-width: 1023px) {
  .top-service__ttl {
    margin-bottom: 30px;
  }
}
.top-service__ttl--en {
  font-size: 12rem;
  font-weight: 500;
  color: var(--mc01);
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-service__ttl--en {
    font-size: 6rem;
  }
}
.top-service__ttl--jp {
  letter-spacing: 0.05em;
  color: #000;
}
.top-service__read {
  font-size: 3.6rem;
  font-weight: 500;
  color: #000;
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .top-service__read {
    font-size: 2.2rem;
  }
}
.top-service__txt {
  font-size: min(9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.5;
  color: #ccc;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .top-service__txt {
    font-size: min(9vw, 6rem);
  }
}
.top-service__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: min(50px, 50 / var(--mq) * 1vw);
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
.top-service__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .top-service__item {
    display: block;
  }
}
.top-service__item-img {
  max-width: 600px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .top-service__item-img {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}
.top-service__item-img-inr {
  margin-left: max((1300px - 100vw) / 2, -160px);
}
@media screen and (max-width: 1330px) {
  .top-service__item-img-inr {
    margin-left: -15px;
  }
}
.top-service__item-info {
  max-width: 500px;
  flex: 1;
  padding-top: min(80px, 80 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-service__item-info {
    max-width: none;
    padding-top: 0;
    margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  }
}
.top-service__item-info-ttl {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-service__item-info-ttl {
    font-size: 3rem;
  }
}
.top-service__item-info-txt {
  letter-spacing: 0.05em;
}

.top-2column {
  padding-top: min(150px, 150 / var(--mq) * 1vw);
}
.top-2column__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .top-2column__list {
    display: block;
  }
}
.top-2column__item {
  max-width: 560px;
  width: calc((100% - min(70px, 70 / var(--mq) * 1vw)) / 2);
}
@media screen and (max-width: 767px) {
  .top-2column__item {
    width: 100%;
    margin: 0 auto min(50px, 50 / var(--mq) * 1vw);
  }
  .top-2column__item:last-of-type {
    margin-bottom: 0;
  }
}
.top-2column__item-anc {
  display: block;
}

.top-about {
  padding: min(200px, 200 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-about__ttl {
  margin-left: max(50% - 50vw + 70px, -160px);
}
@media screen and (max-width: 1023px) {
  .top-about__ttl {
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-about__ttl--en {
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
  color: var(--mc01);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-about__ttl--en {
    font-size: 6rem;
  }
}
.top-about__ttl--jp {
  color: #000;
}
.top-about__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-about__item {
    display: block;
  }
}
.top-about__item-info {
  max-width: 550px;
  flex: 1;
  padding-top: min(70px, 70 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-about__item-info {
    max-width: none;
    padding-top: 0;
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-about__item-info-ttl {
  font-size: min(3.2vw, 4.8rem);
  font-weight: 500;
  color: #000;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .top-about__item-info-ttl {
    font-size: min(6.5vw, 3.6rem);
  }
}
.top-about__item-info-txt {
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .top-about__item-info-txt {
    font-size: 1.8rem;
  }
}
.top-about__item-info-name {
  font-size: 2.1rem;
  font-weight: 500;
  margin-top: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .top-about__item-info-name {
    font-size: 1.8rem;
  }
}
.top-about__item-img {
  max-width: 540px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .top-about__item-img {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
  }
}
.top-about__item-img-inr {
  margin-right: max((1300px - 100vw) / 2, -360px);
}
@media screen and (max-width: 1330px) {
  .top-about__item-img-inr {
    margin-right: -15px;
  }
}
.top-about__quality {
  padding-top: min(40px, 40 / var(--mq) * 1vw);
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
  position: relative;
}
.top-about__quality::before {
  content: "";
  width: 100%;
  aspect-ratio: 1832/1334;
  background: url(../img/bg_top-about01.png) no-repeat center center/cover;
  position: absolute;
  bottom: min(200px, 200 / var(--mq) * 1vw);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.top-about__quality-img {
  text-align: center;
}
.top-about__cont-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-about__cont-list {
    display: block;
  }
}
.top-about__cont-item {
  max-width: 560px;
  width: calc((100% - min(50px, 50 / var(--mq) * 1vw)) / 2);
}
@media screen and (max-width: 1023px) {
  .top-about__cont-item {
    width: 100%;
    margin: 0 auto 40px;
  }
  .top-about__cont-item:last-of-type {
    margin-bottom: 0;
  }
}
.top-about__cont-item-ttl {
  border-bottom: solid 1px #ccc;
  font-size: 3rem;
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top-about__cont-item-ttl {
    font-size: 2.2rem;
  }
}
.top-about__cont-item-txt-str--type01 {
  padding-left: 20px;
  position: relative;
}
.top-about__cont-item-txt-str--type01::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

.top-overview {
  background: url(../img/bg_top-overview01.jpg) no-repeat center center/cover;
  padding: min(120px, 120 / var(--mq) * 1vw) 0;
}
.top-overview__inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 1300px) {
  .top-overview__inr {
    display: block;
  }
}
.top-overview__ttl {
  flex: 1;
}
@media screen and (max-width: 1300px) {
  .top-overview__ttl {
    margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  }
}
.top-overview__ttl--en {
  font-size: 6rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .top-overview__ttl--en {
    font-size: 4rem;
  }
}
.top-overview__ttl--jp {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top-overview__ttl--jp {
    font-size: 1.8rem;
  }
}
.top-overview__cont {
  max-width: 800px;
  width: 70%;
  padding-top: 40px;
}
@media screen and (max-width: 1300px) {
  .top-overview__cont {
    width: 100%;
    padding-top: 0;
    margin: 0 auto;
  }
}
.top-overview__cont-table-td--blue {
  border-bottom: solid 1px var(--mc01);
  color: var(--mc01);
  padding-bottom: 3px;
}

.top-contact {
  padding: min(120px, 120 / var(--mq) * 1vw) 0;
}
.top-contact__ttl {
  margin-left: max(50% - 50vw + 70px, -160px);
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 1023px) {
  .top-contact__ttl {
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-contact__ttl--en {
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
  color: var(--mc01);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-contact__ttl--en {
    font-size: 6rem;
  }
}
.top-contact__ttl--jp {
  color: #000;
}
.top-contact__cont {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.top-contact__cont-txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #b10000;
  text-align: right;
  margin-bottom: 20px;
}
.top-contact__cont-cf7-radio .wpcf7-list-item {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .top-contact__cont-cf7-radio .wpcf7-list-item {
    display: block;
    margin-left: 0;
  }
}
.top-contact__cont-cf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.top-contact__cont-cf7-radio .wpcf7-list-item label input {
  margin-top: 10px;
}
.top-contact__cont-cf7-privacy {
  text-align: center;
  margin-top: 30px;
}
.top-contact__cont-cf7-btn .send-btn {
  display: block;
  background-color: var(--mc01);
  border-radius: 10px;
  max-width: 360px;
  width: 100%;
  height: 80px;
  font-size: 1.8rem;
  line-height: 80px;
  color: #fff;
  margin: 30px auto 0;
  cursor: pointer;
}
.top-contact__cont-cf7-btn .wpcf7-spinner {
  display: none;
}

.confirm_area {
  display: none;
}
.confirm_area-txt {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .confirm_area-txt {
    text-align: left;
  }
}
.confirm_area__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.confirm_area__btn .top-contact__cont-cf7-btn {
  max-width: 360px;
  width: calc((100% - 30px) / 2);
}
.confirm_area__btn-back input.send-btn.back_button {
  background-color: #ccc;
  color: #333;
}

.wpcf7 .send-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.contact-thanks {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.contact-thanks__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (max-width: 767px) {
  .contact-thanks__ttl {
    font-size: 2.2rem;
  }
}
.contact-thanks__desc {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact-thanks__desc {
    text-align: left;
  }
}
.contact-thanks__btn .cmn-btn__anc {
  margin: 0 auto;
}