@charset "UTF-8";
/* ==========================================================================
リセット
========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* Links
----------------------------------------------------------------- */
a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
----------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
----------------------------------------------------------------- */
figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
----------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  outline: none;
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  border: none;
  padding: 0;
  background-color: transparent;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Tables
----------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
:root {
  --black: #3A2F2F;
  --black-rgb: 58,
  47,
  47;
  --white: #fff;
  --white-rgb: 255,
  255,
  255;
  --border: #E5E5E5;
  --border-rgb: 229,
  229,
  229;
  --main: #2F5D50;
  --main-rgb: 47,
  93,
  80;
  --sub: #DDB26A;
  --sub-rgb: 221,
  178,
  106;
  --hover: #008E66;
  --hover-rgb: 0,
  142,
  102;
  --whitesmoke: #EBECE6;
  --whitesmoke-rgb: 235,
  236,
  230;
  --selection_txt: #525252;
  --selection_txt-rgb: 82,
  82,
  82;
  --selection_bg: #6c846a;
  --selection_bg-rgb: 108,
  132,
  106;
  --lightgray: #ef423b;
  --lightgray-rgb: 239,
  66,
  59;
  --silver: #D4D4D8;
  --silver-rgb: 212,
  212,
  216;
  --gray: #67676B;
  --gray-rgb: 103,
  103,
  107;
  --rec: #4D9C28;
  --rec-rgb: 77,
  156,
  40;
}

/*-==========================================================================
font
==========================================================================*/
/*-==========================================================================
rem変換関数
==========================================================================*/
/*-==========================================================================
vw変換
==========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
独自mixinを定義
==========================================================================*/
@-webkit-keyframes btn-arrow {
  0% {
    left: 50%;
  }
  50% {
    opacity: 0;
    left: 70%;
  }
  51% {
    opacity: 0;
    left: 30%;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
@keyframes btn-arrow {
  0% {
    left: 50%;
  }
  50% {
    opacity: 0;
    left: 70%;
  }
  51% {
    opacity: 0;
    left: 30%;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
/*-==========================================================================
ブレイクポイント（xpc、pc、lp、tb、sp）
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html,
body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
}

body {
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
}

::-moz-selection {
  color: var(--selection_txt);
  background-color: var(--selection_bg);
}

::selection,
::-moz-selection {
  color: var(--selection_txt);
  background-color: var(--selection_bg);
}

.over-clip {
  overflow: clip;
}

.is-annual {
  max-width: none;
  pointer-events: none;
  cursor: default;
}

a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}

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

picture {
  width: 100%;
  height: auto;
  display: block;
}
picture img {
  width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

hr {
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--whitesmoke);
  text-align: inherit;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
  text-align: justify;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
/* ==========================================================================
ヘッダー
========================================================================== */
/* ローディング
----------------------------------------------------------------- */
.js-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.js-loading .js-loading-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--main);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.js-loading .js-loading-logo {
  display: inline-block;
  opacity: 0;
  margin-top: -3.5%;
  margin-left: -4%;
}
@media screen and (max-width: 834px) {
  .js-loading .js-loading-logo {
    margin-top: -8%;
  }
}
@media screen and (max-width: 460px) {
  .js-loading .js-loading-logo {
    margin-top: -6%;
    margin-left: 0%;
    width: 80%;
  }
}

/* ヘッダー 
----------------------------------------------------------------- */
header {
  position: absolute;
  left: 0;
  top: 0;
}
header .l-hd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  z-index: 1010;
  position: relative;
}
@media screen and (max-width: 460px) {
  header .l-hd {
    height: 60px;
  }
}
header h1.l-hd-logo {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 17.5px 0 0 30px;
  z-index: 800;
}
@media screen and (max-width: 834px) {
  header h1.l-hd-logo {
    padding: 10.35px 0 0 20px;
  }
}
@media screen and (max-width: 834px) {
  header h1.l-hd-logo {
    padding: 11.86px 0 0 15px;
  }
}
header h1.l-hd-logo a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header h1.l-hd-logo a img {
  position: relative;
  display: block;
  width: auto;
  height: 45px;
}
@media screen and (max-width: 834px) {
  header h1.l-hd-logo a img {
    height: 45px;
  }
}
@media screen and (max-width: 460px) {
  header h1.l-hd-logo a img {
    height: 36.27px;
  }
}
header h1.l-hd-logo a:hover {
  opacity: 0.7;
}

/* トグルボタン（ハンバーガーボタン）
----------------------------------------------------------------- */
.l-toggle {
  display: block;
  width: 60px;
  height: 26px;
  position: fixed;
  top: 27px;
  right: 30px;
  z-index: 999;
  --line: var(--white);
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .l-toggle {
    top: 17px;
    right: 20px;
  }
}
@media screen and (max-width: 460px) {
  .l-toggle {
    top: 19px;
    right: 15px;
    width: 45px;
    height: 22px;
  }
}
.l-toggle.is-dark {
  --line: var(--main);
}
.l-toggle.is-light {
  --line: var(--white);
}
.l-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--line);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 0%;
}
.l-toggle span:nth-child(2) {
  top: 12px;
  opacity: 1;
}
@media screen and (max-width: 460px) {
  .l-toggle span:nth-child(2) {
    top: 10px;
  }
}
.l-toggle span:nth-child(3) {
  top: auto;
  bottom: 0;
}
@media screen and (min-width: 961px) {
  .l-toggle:hover span {
    background-color: var(--sub);
  }
}
.l-toggle:active span {
  background-color: var(--sub);
}

body.open {
  overflow: hidden;
}
body.open .l-toggle span {
  -webkit-transform: rotate(20deg) translateY(-50%);
          transform: rotate(20deg) translateY(-50%);
  top: 50%;
  background-color: var(--white);
}
body.open .l-toggle span:nth-child(2) {
  opacity: 0;
}
body.open .l-toggle span:nth-child(3) {
  -webkit-transform: rotate(-20deg) translateY(-50%);
          transform: rotate(-20deg) translateY(-50%);
  top: 50%;
  bottom: auto;
}
@media screen and (min-width: 961px) {
  body.open .l-toggle:hover span {
    background-color: var(--sub);
  }
}
body.open .l-toggle:active span {
  background-color: var(--sub);
}
body.open .l-drawer {
  pointer-events: auto;
  opacity: 1;
}
body.open .l-drawer::before {
  pointer-events: auto;
  -webkit-clip-path: circle(200vmax at calc(100% - 24px) 24px);
          clip-path: circle(200vmax at calc(100% - 24px) 24px);
}
body.open .l-drawer .l-drawer-logo,
body.open .l-drawer .l-drawer-body {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

/* ドロワーメニュー（toggleを押して出現するメニュー）
----------------------------------------------------------------- */
.l-drawer {
  width: 100vw;
  height: 100vh;
  min-height: 768px;
  position: fixed;
  inset: 0;
  z-index: 998;
  -webkit-transition: 0.75s;
  transition: 0.75s;
  opacity: 0;
  pointer-events: none;
}
.l-drawer::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: var(--main);
  -webkit-clip-path: circle(0px at calc(100% - 24px) 24px);
          clip-path: circle(0px at calc(100% - 24px) 24px);
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.l-drawer .is-annual {
  position: absolute;
  bottom: -645px;
  right: -305px;
  opacity: 0.04;
}
@media screen and (max-width: 834px) {
  .l-drawer .is-annual {
    width: 600px;
    right: -186px;
    bottom: -35px;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer .is-annual {
    width: 400px;
    right: -151px;
    bottom: -96px;
  }
}

.l-drawer-body,
.l-drawer-logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.l-drawer-logo {
  width: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 1;
  position: relative;
  padding: 17.5px 0 0 30px;
  display: block;
  height: 80px;
}
@media screen and (max-width: 834px) {
  .l-drawer-logo {
    padding: 10.35px 0 0 20px;
    height: 60px;
  }
}
@media screen and (max-width: 834px) {
  .l-drawer-logo {
    padding: 11.86px 0 0 15px;
  }
}
.l-drawer-logo a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-drawer-logo a img {
  position: relative;
  display: block;
  width: auto;
  height: 45px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .l-drawer-logo a img {
    height: 45px;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-logo a img {
    height: 36.27px;
  }
}
.l-drawer-logo a:hover img {
  opacity: 0.7;
}

.l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 834px) {
  .l-drawer-body {
    padding-top: 60px;
    padding-bottom: 12.5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-body {
    padding-top: 40px;
    padding-bottom: 400px;
  }
}

.l-drawer-nav-main {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 80px 4.6296296296%;
  padding-bottom: 300px;
}
@media screen and (max-width: 834px) {
  .l-drawer-nav-main {
    gap: 60px 4.8780487805%;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main {
    gap: 40px;
    padding-bottom: 0;
  }
}
.l-drawer-nav-main > li {
  width: 21.4814814815%;
}
@media screen and (max-width: 834px) {
  .l-drawer-nav-main > li {
    width: 29.5698924731%;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main > li {
    width: 100%;
  }
}

.l-drawer-nav-main__menu {
  display: block;
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 834px) {
  .l-drawer-nav-main__menu {
    font-size: 1.4375rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu {
    font-size: 1.4375rem;
    margin-bottom: 0;
    width: calc(100% - 25px);
  }
}
.l-drawer-nav-main__menu.--privacy {
  font-size: 1rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .l-drawer-nav-main__menu.--privacy {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu.--privacy {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu.--contact {
    margin-top: 2.5rem;
  }
}
.l-drawer-nav-main__menu.win::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_win--white.svg);
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
.l-drawer-nav-main__menu:hover {
  opacity: 0.7;
}

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.l-drawer-acc {
  width: 100%;
  position: relative;
}
.l-drawer-acc .l-drawer-acc__btn {
  position: absolute;
  right: 0;
  top: 33px;
  display: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc .l-drawer-acc__btn {
    display: block;
    top: 8px;
  }
}
.l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
  position: absolute;
  content: none;
  width: 20px;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
    content: "";
  }
}
.l-drawer-acc .l-drawer-acc__btn::before {
  top: 48%;
  right: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.l-drawer-acc .l-drawer-acc__btn::after {
  top: 48%;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-drawer-acc .l-drawer-acc__btn.close::before {
  -webkit-transform: rotate(0deg) translateX(5px);
          transform: rotate(0deg) translateX(5px);
  opacity: 0;
}
.l-drawer-acc .l-drawer-acc__btn.close::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-drawer-acc__cont {
  display: block;
  padding-left: 7px;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont {
    display: none;
    margin-top: 1.25rem;
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu {
  padding-bottom: 0.9375rem;
  line-height: 1.6;
  padding-left: 17px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu {
    padding-bottom: 0.75rem;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu {
    padding-bottom: 20px;
  }
  .l-drawer-acc__cont .l-drawer-acc__cont__menu:last-child {
    padding-bottom: 10px;
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a {
  font-weight: 400 !important;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: rgba(var(--white-rgb), 0.8);
  font-size: 1.0625rem;
}
@media screen and (max-width: 834px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu a {
    color: rgba(var(--white-rgb), 0.9);
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a::before {
  content: "";
  display: block;
  background-color: rgba(var(--sub-rgb), 0.8);
  width: 10px;
  height: 0.09375rem;
  position: absolute;
  left: 0;
  top: 13px;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu a::before {
    background-color: rgba(var(--sub-rgb), 0.9);
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a:hover {
  opacity: 0.7;
}
.l-drawer-acc__cont.--business {
  padding-left: 0;
}
.l-drawer-acc__cont.--business .l-drawer-acc__cont__menu {
  padding-bottom: 1.25rem;
  line-height: 1.4;
  padding-left: 0;
  position: relative;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont.--business .l-drawer-acc__cont__menu:last-child {
    padding-bottom: 10px;
  }
}
.l-drawer-acc__cont.--business .l-drawer-acc__cont__menu a {
  font-weight: 500 !important;
  color: rgba(var(--white-rgb), 1);
  font-family: "Shippori Mincho", serif;
  font-size: 1.3125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-left: 0;
}
@media screen and (max-width: 834px) {
  .l-drawer-acc__cont.--business .l-drawer-acc__cont__menu a {
    font-size: 1.1875rem;
  }
}
.l-drawer-acc__cont.--business .l-drawer-acc__cont__menu a::before {
  content: none;
}

/* ==========================================================================
footer
========================================================================== */
/* 山の装飾
----------------------------------------------------------------- */
.l-ft-mauntain {
  position: relative;
}
.l-ft-mauntain::before {
  content: "";
  display: block;
  background-image: url(/resource/images/bg_mountain--main.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  width: 101%;
  aspect-ratio: 1366/100;
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .l-ft-mauntain::before {
    background-image: url(/resource/images/bg_mountain--main--tb.svg);
    aspect-ratio: 820/100;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-mauntain::before {
    background-image: url(/resource/images/bg_mountain--main--sp.svg);
    aspect-ratio: 350/60;
  }
}

/* フッター
----------------------------------------------------------------- */
footer {
  background-color: var(--main);
  position: relative;
  overflow: hidden;
}
footer .is-annual {
  position: absolute;
  bottom: -497px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 342px));
          transform: translateX(calc(-50% + 342px));
  z-index: 1;
  opacity: 0.04;
}
@media screen and (max-width: 834px) {
  footer .is-annual {
    width: 800px;
    bottom: -324px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: auto;
    right: -235px;
  }
}
@media screen and (max-width: 460px) {
  footer .is-annual {
    width: 400px;
    right: -151px;
    bottom: -130px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.l-ft {
  padding: 4.375rem 0 2.5rem;
}
@media screen and (max-width: 834px) {
  .l-ft {
    padding: 5rem 0 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft {
    padding: 3.125rem 0 1.25rem;
  }
}

/* ロゴエリア
----------------------------------------------------------------- */
.l-ft-logo__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
.l-ft-logo__wrap .l-ft-logo {
  text-align: center;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-logo {
    margin-bottom: 1.875rem;
  }
}
.l-ft-logo__wrap .l-ft-logo img {
  height: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-logo img {
    height: 52px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-logo img {
    height: 45px;
  }
}
.l-ft-logo__wrap .l-ft-logo:hover img {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-add p {
  color: rgba(var(--white-rgb), 0.7);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-add p {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-add p {
    font-size: 14px;
    text-align: center;
  }
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 460px) {
  .l-ft-nav__wrap {
    display: none;
  }
}

.l-ft-nav__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 2.25rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem 13.7096774194%;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-nav__list {
    display: none;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent,
.l-ft-nav__list .l-ft-nav__parent--last {
  max-width: 150px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__parent,
  .l-ft-nav__list .l-ft-nav__parent--last {
    max-width: 180px;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a {
  display: block;
  color: var(--white);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a,
  .l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a {
    font-size: 1.3125rem;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a.--ajust,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a.--ajust {
  letter-spacing: -0.02em;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a.--mb-30,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a.--mb-30 {
  margin-bottom: 1.875rem;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a.win:after,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a.win:after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_win--white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a:hover,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a:hover {
  opacity: 0.7;
}
.l-ft-nav__list ul.l-ft-nav__none-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.l-ft-nav__list ul.l-ft-nav__none-child li a {
  font-family: "Shippori Mincho", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--white);
}
.l-ft-nav__list ul.l-ft-nav__none-child li a:hover {
  opacity: 0.7;
}
.l-ft-nav__list ul.l-ft-nav__child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__child {
    gap: 12px;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu {
  line-height: 1.6;
  margin-left: 5px;
  position: relative;
  padding-left: 13px;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
  color: rgba(var(--white-rgb), 0.9);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a::before {
  content: "";
  display: block;
  background-color: rgba(var(--sub-rgb), 0.8);
  width: 8px;
  height: 0.09375rem;
  position: absolute;
  left: 0;
  top: 12px;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a:hover {
  opacity: 0.5;
}

/* コピーライト
----------------------------------------------------------------- */
.l-ft-copy {
  padding: 8.75rem 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .l-ft-copy {
    padding: 7.5rem 0 0;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-copy {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5rem 0 0;
  }
}
.l-ft-copy a {
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
}
.l-ft-copy a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 460px) {
  .l-ft-copy a {
    display: none;
  }
}
.l-ft-copy p {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(var(--white-rgb), 0.7);
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 834px) {
  .l-ft-copy p {
    font-size: 10.5px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-copy p {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-ttl {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .l-page-ttl {
    height: 420px;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl {
    height: 340px;
  }
}
.l-page-ttl::before {
  content: "";
  display: block;
  background-image: url(/resource/images/bg_mountain--white.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  width: 101%;
  aspect-ratio: 1366/100;
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .l-page-ttl::before {
    background-image: url(/resource/images/bg_mountain--white--tb.svg);
    aspect-ratio: 820/100;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl::before {
    background-image: url(/resource/images/bg_mountain--white--sp.svg);
    aspect-ratio: 350/60;
  }
}
.l-page-ttl picture {
  height: 100%;
}
.l-page-ttl picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 460px) {
  .l-page-ttl.--company picture img {
    -o-object-position: 15% 50%;
       object-position: 15% 50%;
  }
}
.l-page-ttl .l-page-ttl-inner {
  position: absolute;
  top: 200px;
  left: 10.3953147877%;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .l-page-ttl .l-page-ttl-inner {
    top: 145px;
    left: 8.5365853659%;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner {
    top: 132px;
    left: 10.6666666667%;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner.--privacy {
    margin-top: -20px;
  }
}
.l-page-ttl .l-page-ttl-inner::before {
  content: "";
  display: block;
  background-image: url(/resource/images/vector--page-ttl.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 155px;
  height: 158px;
  position: absolute;
  top: -38px;
  left: -48px;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .l-page-ttl .l-page-ttl-inner::before {
    top: -36px;
    left: -38px;
    width: 123px;
    height: 126px;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner::before {
    top: -26px;
    left: -29px;
    width: 97px;
    height: 100px;
  }
}
.l-page-ttl .l-page-ttl-inner .jp {
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-size: 3.5625rem;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .l-page-ttl .l-page-ttl-inner .jp {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner .jp {
    font-size: 2.25rem;
    letter-spacing: 0.02em;
  }
}
.l-page-ttl .l-page-ttl-inner .en {
  color: var(--sub);
  font-family: "Lato", sans-serif;
  font-size: 1.1875rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .l-page-ttl .l-page-ttl-inner .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner .en {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec {
  padding: 6.25rem 0 10rem;
}

.l-sec--last {
  padding: 6.25rem 0 13.75rem;
}
@media screen and (max-width: 834px) {
  .l-sec--last {
    padding: 5rem 0 11.25rem;
  }
}
@media screen and (max-width: 460px) {
  .l-sec--last {
    padding: 3.75rem 0 10rem;
  }
}

.l-sec-sm {
  padding: 1rem 0;
}

.l-sec-md {
  padding: 2.5rem 0;
}

.l-sec-lg {
  padding: 3.75rem 0;
}
@media screen and (max-width: 460px) {
  .l-sec-lg {
    padding: 3.75rem 0;
  }
}

.l-sec-xlg {
  padding: 5rem 0;
}
@media screen and (max-width: 834px) {
  .l-sec-xlg {
    padding: 3.75rem 0;
  }
}

.l-sec-xxlg {
  padding: 6.25rem 0;
}
@media screen and (max-width: 834px) {
  .l-sec-xxlg {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-xxlg {
    padding: 3.75rem 0;
  }
}

.l-sec-xxxlg-remove-top {
  padding: 0 0 7.5rem;
}
@media screen and (max-width: 834px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 3.75rem;
  }
}

/* ページ上部のリードセクション
----------------------------------------------------------------- */
.l-sec-lead {
  margin-top: 6.25rem;
  padding-top: 5rem;
  background-color: var(--whitesmoke);
}
@media screen and (max-width: 834px) {
  .l-sec-lead {
    margin-top: 3.75rem;
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-lead {
    margin-top: 3.75rem;
  }
}
.l-sec-lead .l-sec-lead__img {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .l-sec-lead .l-sec-lead__img {
    height: 370px;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-lead .l-sec-lead__img {
    height: 270px;
    margin-top: 2.5rem;
  }
}
.l-sec-lead .l-sec-lead__img picture {
  height: 100%;
}
.l-sec-lead .l-sec-lead__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/* イメージだけのセクション
----------------------------------------------------------------- */
.l-sec-img {
  position: relative;
  overflow: hidden;
  height: 455px;
}
.l-sec-img picture {
  height: 100%;
}
.l-sec-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .l-sec-img {
    height: 370px;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-img {
    height: 270px;
  }
}

/* ft手前、ページ最後のイメージセクション
----------------------------------------------------------------- */
.l-sec-last-img {
  height: 542px;
  position: relative;
  overflow: hidden;
}
.l-sec-last-img picture {
  height: 100%;
}
.l-sec-last-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .l-sec-last-img {
    height: 390px;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-last-img {
    height: 275px;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container--sm,
.l-container--lg {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 834px) {
  .l-container,
  .l-container--sm,
  .l-container--lg {
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .l-container,
  .l-container--sm,
  .l-container--lg {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

.l-container--sm {
  max-width: 820px;
}

.l-container {
  max-width: 1080px;
}

.l-container--lg {
  max-width: 1200px;
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox 基本
----------------------------------------------------------------- */
.c-flex,
.c-flex--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-1,
.c-flex--center .c-flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-flex .c-flex-4clm,
.c-flex .c-flex-3clm,
.c-flex .c-flex-2clm,
.c-flex--center .c-flex-4clm,
.c-flex--center .c-flex-3clm,
.c-flex--center .c-flex-2clm {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex,
  .c-flex--center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-flex .c-flex-4clm,
  .c-flex .c-flex-3clm,
  .c-flex .c-flex-2clm,
  .c-flex--center .c-flex-4clm,
  .c-flex--center .c-flex-3clm,
  .c-flex--center .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-flex--center {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

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

.c-flex-allcenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* FlexBox サイズごと
----------------------------------------------------------------- */
.c-flex--sm,
.c-flex--30,
.c-flex--md,
.c-flex--lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .c-flex--sm,
  .c-flex--30,
  .c-flex--md,
  .c-flex--lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-flex--sm {
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-flex--sm {
    gap: 1.25rem;
  }
}
.c-flex--sm > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 1.25rem) / 2);
      -ms-flex: 0 0 calc((100% - 1.25rem) / 2);
          flex: 0 0 calc((100% - 1.25rem) / 2);
  min-width: 0;
}
.c-flex--sm > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 2.5rem) / 3);
      -ms-flex: 0 0 calc((100% - 2.5rem) / 3);
          flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}
.c-flex--sm > .c-flex-4clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 3.75rem) / 4);
      -ms-flex: 0 0 calc((100% - 3.75rem) / 4);
          flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex--sm .c-flex-4clm,
  .c-flex--sm .c-flex-3clm,
  .c-flex--sm .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

.c-flex--30 {
  gap: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-flex--30 {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-flex--30 {
    gap: 1.875rem;
  }
}
.c-flex--30 > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 1.875rem) / 2);
      -ms-flex: 0 0 calc((100% - 1.875rem) / 2);
          flex: 0 0 calc((100% - 1.875rem) / 2);
  min-width: 0;
}
@media screen and (max-width: 834px) {
  .c-flex--30 > .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 1.25rem) / 2);
        -ms-flex: 0 0 calc((100% - 1.25rem) / 2);
            flex: 0 0 calc((100% - 1.25rem) / 2);
    min-width: 0;
  }
}
.c-flex--30 > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 3.75rem) / 3);
      -ms-flex: 0 0 calc((100% - 3.75rem) / 3);
          flex: 0 0 calc((100% - 3.75rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 834px) {
  .c-flex--30 > .c-flex-3clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 2.5rem) / 3);
        -ms-flex: 0 0 calc((100% - 2.5rem) / 3);
            flex: 0 0 calc((100% - 2.5rem) / 3);
    min-width: 0;
  }
}
@media screen and (max-width: 460px) {
  .c-flex--30 .c-flex-3clm,
  .c-flex--30 .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

.c-flex--md {
  gap: 2.5rem 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-flex--md {
    gap: 1.875rem;
  }
}
.c-flex--md > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 2.5rem) / 2);
      -ms-flex: 0 0 calc((100% - 2.5rem) / 2);
          flex: 0 0 calc((100% - 2.5rem) / 2);
  min-width: 0;
}
.c-flex--md > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 5rem) / 3);
      -ms-flex: 0 0 calc((100% - 5rem) / 3);
          flex: 0 0 calc((100% - 5rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex--md .c-flex-3clm,
  .c-flex--md .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

.c-flex--lg {
  gap: 2.5rem 3.75rem;
}
.c-flex--lg > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 3.75rem) / 2);
      -ms-flex: 0 0 calc((100% - 3.75rem) / 2);
          flex: 0 0 calc((100% - 3.75rem) / 2);
  min-width: 0;
}
.c-flex--lg > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 7.5rem) / 3);
      -ms-flex: 0 0 calc((100% - 7.5rem) / 3);
          flex: 0 0 calc((100% - 7.5rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex--lg .c-flex-3clm,
  .c-flex--lg .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

/*-==========================================================================
グリッドレイアウト
==========================================================================*/
/* グリッド
----------------------------------------------------------------- */
.c-grid--layout,
.c-grid--xsm,
.c-grid--sm,
.c-grid--30,
.c-grid--md,
.c-grid--lg,
.c-grid {
  display: grid;
}

.c-grid--xsm {
  gap: 10px;
}

.c-grid--sm {
  gap: 1.875rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-grid--sm {
    gap: 1.875rem;
  }
}

.c-grid--30 {
  gap: 3.75rem 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-grid--30 {
    gap: 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-grid--30 {
    gap: 1.875rem;
  }
}

.c-grid--md {
  gap: 5rem 2.5rem;
}
@media screen and (max-width: 834px) {
  .c-grid--md {
    gap: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-grid--md {
    gap: 1.875rem 1.25rem;
  }
}

.c-grid--lg {
  gap: 3.75rem 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-grid--lg {
    gap: 2.5rem 1.25rem;
  }
}

.c-grid {
  gap: 0;
}

.c-grid-2clm {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-3clm {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-3clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-3clm--tb2clm {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-3clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .c-grid-3clm--tb2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-4clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-4clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-4clm--tb2clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid--layout {
  grid-template-columns: repeat(6, 1fr);
  gap: 60px 30px;
}
@media screen and (max-width: 834px) {
  .c-grid--layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .c-grid--layout {
    grid-template-columns: 1fr;
  }
}
.c-grid--layout li:nth-child(1), .c-grid--layout li:nth-child(2) {
  grid-column: span 3;
}
@media screen and (max-width: 834px) {
  .c-grid--layout li:nth-child(1), .c-grid--layout li:nth-child(2) {
    grid-column: span 1;
  }
}
.c-grid--layout li:nth-child(1) .tmb, .c-grid--layout li:nth-child(2) .tmb {
  width: 100%;
  height: 235px;
  overflow: hidden;
}
.c-grid--layout li:nth-child(1) .tmb img, .c-grid--layout li:nth-child(2) .tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-grid--layout li:nth-child(3), .c-grid--layout li:nth-child(4), .c-grid--layout li:nth-child(5) {
  grid-column: span 2;
}
@media screen and (max-width: 834px) {
  .c-grid--layout li:nth-child(3), .c-grid--layout li:nth-child(4), .c-grid--layout li:nth-child(5) {
    grid-column: span 1;
  }
}
.c-grid--layout li:nth-child(3) .tmb, .c-grid--layout li:nth-child(4) .tmb, .c-grid--layout li:nth-child(5) .tmb {
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.c-grid--layout li:nth-child(3) .tmb img, .c-grid--layout li:nth-child(4) .tmb img, .c-grid--layout li:nth-child(5) .tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num > li {
  position: relative;
  padding-left: 1.125rem;
}
.c-list-num > li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  font-weight: 400;
  margin-left: -1.125rem;
}

.c-list-num2 {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num2 > li {
  position: relative;
  padding-left: 1.875rem;
  line-height: 2;
}
.c-list-num2 > li:before {
  content: "（" counter(number) "）";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  font-weight: 400;
  margin-left: -2.5rem;
}

.c-list-dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list-dot li:before {
  content: "・";
  color: var(--sub);
  font-weight: 700;
}

.c-list-dot2 li {
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .c-list-dot2 li {
    padding-left: 12px;
  }
}
.c-list-dot2 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: var(--main);
  width: 5px;
  height: 5px;
  border-radius: 100px;
  display: inline-block;
}
@media screen and (max-width: 460px) {
  .c-list-dot2 li:before {
    left: 2px;
  }
}

/* ==========================================================================
テーブル
=========================================================================*/
/* table1
----------------------------------------------------------------- */
.c-tb1 tr,
.c-tb1--white tr {
  border-bottom: 1px solid var(--whitesmoke);
}
.c-tb1 tr:first-child,
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--whitesmoke);
}
.c-tb1 tr th,
.c-tb1 tr td,
.c-tb1--white tr th,
.c-tb1--white tr td {
  font-size: 1rem;
}
@media screen and (max-width: 460px) {
  .c-tb1 tr th,
  .c-tb1 tr td,
  .c-tb1--white tr th,
  .c-tb1--white tr td {
    display: block;
  }
}
.c-tb1 tr th,
.c-tb1--white tr th {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  vertical-align: middle;
  color: var(--main);
  width: 150px;
  font-family: "Shippori Mincho", serif;
  padding: 1.25rem 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 0 0;
    width: 100%;
  }
}
.c-tb1 tr td,
.c-tb1--white tr td {
  padding: 1.25rem 1.875rem 1.25rem 2.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 0.5rem 0 1.25rem 0;
    width: 100%;
  }
}

.c-tb1--white tr {
  border-bottom: 1px solid var(--white);
}
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--white);
}

/* table2
----------------------------------------------------------------- */
.c-tb2,
.c-tb2--whitesmoke {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .c-tb2,
  .c-tb2--whitesmoke {
    border-radius: 10px;
  }
}
.c-tb2 tr,
.c-tb2--whitesmoke tr {
  background-color: var(--white);
  border-bottom: 1px solid var(--whitesmoke);
}
.c-tb2 tr:last-child,
.c-tb2--whitesmoke tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 460px) {
  .c-tb2 tr th,
  .c-tb2 tr td,
  .c-tb2--whitesmoke tr th,
  .c-tb2--whitesmoke tr td {
    display: block;
    line-height: 1.7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.c-tb2 tr th,
.c-tb2--whitesmoke tr th {
  font-weight: 600;
  line-height: 1.4;
  vertical-align: middle;
  color: var(--main);
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  width: 225px;
  padding: 1.875rem 0 1.875rem 2.5rem;
}
@media screen and (max-width: 834px) {
  .c-tb2 tr th,
  .c-tb2--whitesmoke tr th {
    padding: 1.5rem 0 1.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb2 tr th,
  .c-tb2--whitesmoke tr th {
    padding: 1.25rem 1.25rem 8px 1.25rem;
    width: 100%;
  }
}
.c-tb2 tr td,
.c-tb2--whitesmoke tr td {
  padding: 1.875rem 2.5rem 1.875rem 1.875rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--black);
}
@media screen and (max-width: 834px) {
  .c-tb2 tr td,
  .c-tb2--whitesmoke tr td {
    padding: 1.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb2 tr td,
  .c-tb2--whitesmoke tr td {
    padding: 1.25rem;
    padding-top: 0;
    width: 100%;
  }
}

.c-tb2--whitesmoke tr {
  background-color: var(--whitesmoke);
  border-bottom: 1px solid var(--white);
}
.c-tb2--whitesmoke tr:last-child {
  border-bottom: none;
}

/* thがベタtdが下線のtable
----------------------------------------------------------------- */
/* 複雑な表
----------------------------------------------------------------- */
/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav,
.c-page-nav--bn {
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 834px) {
  .c-page-nav,
  .c-page-nav--bn {
    margin-top: 3.75rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav,
  .c-page-nav--bn {
    margin-top: 2.5rem;
    margin-bottom: 3.75rem;
  }
}
.c-page-nav .c-page-nav__wrap,
.c-page-nav--bn .c-page-nav__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav__wrap,
  .c-page-nav--bn .c-page-nav__wrap {
    gap: 1.875rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap,
  .c-page-nav--bn .c-page-nav__wrap {
    gap: 1.875rem;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu {
  max-width: 247.5px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu,
  .c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu {
    max-width: initial;
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu,
  .c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu {
    max-width: initial;
    width: 100%;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu.--auto,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu.--auto {
  max-width: initial;
  width: auto;
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu.--auto,
  .c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu.--auto {
    width: 100%;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu.--auto a .txt,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu.--auto a .txt {
  padding-right: 46px;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a {
  display: block;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a .btn,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a .btn {
  width: 20px;
  height: 20px;
  background-color: var(--main);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100px;
  z-index: 1;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a .btn:after,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a .btn:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 8px auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a .txt,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a .txt {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--main);
  font-family: "Shippori Mincho", serif;
  line-height: 1.4;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu a .txt,
  .c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a .txt {
    font-size: 14px;
    letter-spacing: -0.01em;
    padding-left: 3px;
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu a .txt,
  .c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a .txt {
    font-size: 1rem;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a:hover {
  color: var(--hover);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover .btn,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a:hover .btn {
  background-color: var(--hover);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover .btn:after,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a:hover .btn:after {
  -webkit-animation: btn-arrow-nav 0.4s ease;
          animation: btn-arrow-nav 0.4s ease;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover .txt,
.c-page-nav--bn .c-page-nav__wrap .c-page-nav__menu a:hover .txt {
  color: var(--hover);
  border-bottom: 1px solid var(--hover);
}
@-webkit-keyframes btn-arrow-nav {
  0% {
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 70%;
  }
  51% {
    opacity: 0;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
@keyframes btn-arrow-nav {
  0% {
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 70%;
  }
  51% {
    opacity: 0;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}

.c-page-nav--bn {
  margin-bottom: 0;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のフローナビゲーション
----------------------------------------------------------------- */
.c-form-nav,
.c-form-nav--whitesmoke {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-form-nav,
  .c-form-nav--whitesmoke {
    gap: 1.25rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-form-nav::before,
.c-form-nav--whitesmoke::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 auto;
  background-color: var(--white);
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form-nav li,
.c-form-nav--whitesmoke li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: var(--white);
  position: relative;
  height: 100px;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 100px;
}
.c-form-nav li span,
.c-form-nav--whitesmoke li span {
  display: block;
  color: var(--main);
  font-size: 1.1875rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 460px) {
  .c-form-nav li span,
  .c-form-nav--whitesmoke li span {
    font-size: 1.125rem;
  }
}
.c-form-nav li .num,
.c-form-nav--whitesmoke li .num {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
  padding-bottom: 3px;
}
.c-form-nav li .num::before,
.c-form-nav--whitesmoke li .num::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main);
}
.c-form-nav li.c-form-nav__active,
.c-form-nav--whitesmoke li.c-form-nav__active {
  background-color: var(--main);
}
.c-form-nav li.c-form-nav__active span,
.c-form-nav--whitesmoke li.c-form-nav__active span {
  color: var(--white);
}
.c-form-nav li.c-form-nav__active .num::before,
.c-form-nav--whitesmoke li.c-form-nav__active .num::before {
  background-color: var(--white);
}

.c-form-nav--whitesmoke::before {
  background-color: var(--whitesmoke);
}
.c-form-nav--whitesmoke li {
  background-color: var(--whitesmoke);
}
/* 入力フォーム
----------------------------------------------------------------- */
.c-form-wrap,
.c-form-wrap--whitesmoke {
  z-index: 2;
  position: relative;
}
.c-form-wrap table,
.c-form-wrap--whitesmoke table {
  font-size: 1rem;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .c-form-wrap table,
  .c-form-wrap--whitesmoke table {
    border-radius: 10px;
  }
}
.c-form-wrap table tr,
.c-form-wrap--whitesmoke table tr {
  border-top: 1px solid var(--whitesmoke);
}
.c-form-wrap table tr:first-child,
.c-form-wrap--whitesmoke table tr:first-child {
  border-top: none;
}
.c-form-wrap table tr th,
.c-form-wrap table tr td,
.c-form-wrap--whitesmoke table tr th,
.c-form-wrap--whitesmoke table tr td {
  padding: 1.875rem 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td,
  .c-form-wrap--whitesmoke table tr th,
  .c-form-wrap--whitesmoke table tr td {
    padding: 1.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td,
  .c-form-wrap--whitesmoke table tr th,
  .c-form-wrap--whitesmoke table tr td {
    display: block;
  }
}
.c-form-wrap table tr th,
.c-form-wrap--whitesmoke table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 280px;
  color: var(--main);
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
  padding-right: 0;
  vertical-align: middle;
}
@media screen and (max-width: 834px) {
  .c-form-wrap table tr th,
  .c-form-wrap--whitesmoke table tr th {
    width: 32%;
    padding-right: 0;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr th,
  .c-form-wrap--whitesmoke table tr th {
    width: 100%;
    padding: 1.25rem 1.25rem;
    padding-bottom: 15px;
  }
}
.c-form-wrap table tr td,
.c-form-wrap--whitesmoke table tr td {
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr td,
  .c-form-wrap--whitesmoke table tr td {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}
.c-form-wrap .c-btn-main,
.c-form-wrap--whitesmoke .c-btn-main {
  border-radius: 5px;
  background-color: var(--white);
  padding: 0.9375rem 56.5px 0.9375rem 74px;
  max-width: 352px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-form-wrap .c-btn-main,
  .c-form-wrap--whitesmoke .c-btn-main {
    padding: 15px;
  }
}

.c-form-wrap--whitesmoke table {
  background-color: var(--whitesmoke);
}
.c-form-wrap--whitesmoke table tr {
  border-top: 1px solid var(--white);
}
.c-form-wrap--whitesmoke table tr:first-child {
  border-top: none;
}
.c-form-wrap--whitesmoke table tr th {
  width: 315px;
}
@media screen and (max-width: 834px) {
  .c-form-wrap--whitesmoke table tr th {
    width: 33%;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap--whitesmoke table tr th {
    width: 100%;
  }
}
.c-form-wrap--whitesmoke .c-btn-main {
  background-color: var(--whitesmoke);
}

/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
@media screen and (max-width: 460px) {
  .c-form-required {
    text-align: center;
  }
}
.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: var(--sub);
  border-radius: 15px;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  line-height: 22px;
  width: 48px;
  text-align: center;
  margin-left: 14px;
  font-family: "Shippori Mincho", serif;
  padding: 0 7px 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .c-form-required::after {
    width: 43px;
  }
}
@media screen and (max-width: 460px) {
  .c-form-required::after {
    right: 20px;
  }
}

/* 入力欄
----------------------------------------------------------------- */
.c-form-radio,
.c-form-checkbox,
.c-form-checkbox--white {
  display: inline-block;
  margin: -4px 8px 0 0;
  height: 20px;
  width: 20px;
  background-color: var(--whitesmoke);
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled),
.c-form-checkbox--white:not(:disabled) {
  cursor: pointer;
}

.c-form-radio {
  border-radius: 50%;
}
.c-form-radio:checked {
  border: 6px solid var(--main);
}

.c-form-checkbox,
.c-form-checkbox--white {
  position: relative;
  background-color: var(--whitesmoke);
}
.c-form-checkbox:checked:before,
.c-form-checkbox--white:checked:before {
  content: "";
  background-image: url(/resource/images/ico_form_cheaked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .c-form-checkbox:checked:before,
  .c-form-checkbox--white:checked:before {
    top: -5px;
  }
}

.c-form-checkbox--white {
  background-color: var(--white);
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  background-color: var(--whitesmoke);
  border: 1px solid var(--whitesmoke);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 720px;
  min-height: 60px;
  width: 100%;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

.c-form-select,
.c-form-input {
  height: 40px;
}

.c-form-select__wrap {
  position: relative;
}
.c-form-select__wrap select.c-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select__wrap:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px var(--main);
  border-bottom: solid 1px var(--main);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-form-radio__wrap,
.c-form-radio__wrap--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.c-form-radio__wrap--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0px 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form-input-file {
  cursor: pointer;
  display: block;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .c-form-input-file {
    font-size: 14px;
  }
}

.c-form-input-file::-webkit-file-upload-button {
  background: white;
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
}

.c-form-input-file::file-selector-button {
  background: white;
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .c-form-input-file::-webkit-file-upload-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  .c-form-input-file::file-selector-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.c-form-cap {
  line-height: 1.8;
  font-size: 13px;
  color: rgba(var(--black-rgb), 0.6);
}

/* 営業目的メールはご遠慮ください ・ 個⼈情報の取扱いについて
----------------------------------------------------------------- */
.c-form-privacy__wrap .c-form-checkbox {
  background-color: var(--white);
}
@media screen and (max-width: 460px) {
  .c-form-privacy__wrap .c-form-privacy {
    padding-bottom: 50px;
  }
}
.c-form-privacy__wrap .c-form-required:after {
  position: relative;
  right: auto;
  top: auto;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 460px) {
  .c-form-privacy__wrap .c-form-required:after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: 20px;
  }
}

.c-form-checkfocus {
  cursor: pointer;
}

.c-form-notsale__attention {
  vertical-align: middle;
}
.c-form-notsale__attention img {
  margin-right: 10px;
  margin-top: -4px;
}
.c-form-notsale__attention p {
  color: var(--main);
  display: inline-block;
  font-weight: 700;
}

.c-form-notsale__wrap {
  padding: 3.75rem;
  background-color: var(--white);
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .c-form-notsale__wrap {
    padding: 2.5rem;
    border-radius: 10px;
  }
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.c-form-notsale__wrap .c-ttl-dot {
  font-size: 1.75rem;
}
.c-form-notsale__wrap .c-form-notsale__cheackbox {
  margin-top: 1.875rem;
  text-align: center;
  background-color: var(--whitesmoke);
  border-radius: 10px;
  padding: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .c-form-notsale__wrap .c-form-notsale__cheackbox {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap .c-form-notsale__cheackbox {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem 3.125rem;
  }
}

/* ==========================================================================
ボタン
=========================================================================*/
/* メインボタン
----------------------------------------------------------------- */
.c-btn-main,
.c-btn-main--white,
.c-btn-main--win {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main .c-btn-main__inner,
.c-btn-main--white a,
.c-btn-main--white button,
.c-btn-main--white .c-btn-main__inner,
.c-btn-main--win a,
.c-btn-main--win button,
.c-btn-main--win .c-btn-main__inner {
  line-height: 60px;
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transform: 0.4s;
          transform: 0.4s;
}
.c-btn-main a .line,
.c-btn-main button .line,
.c-btn-main .c-btn-main__inner .line,
.c-btn-main--white a .line,
.c-btn-main--white button .line,
.c-btn-main--white .c-btn-main__inner .line,
.c-btn-main--win a .line,
.c-btn-main--win button .line,
.c-btn-main--win .c-btn-main__inner .line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: 0.4s;
          transform: 0.4s;
}
.c-btn-main a .line::before,
.c-btn-main button .line::before,
.c-btn-main .c-btn-main__inner .line::before,
.c-btn-main--white a .line::before,
.c-btn-main--white button .line::before,
.c-btn-main--white .c-btn-main__inner .line::before,
.c-btn-main--win a .line::before,
.c-btn-main--win button .line::before,
.c-btn-main--win .c-btn-main__inner .line::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.c-btn-main a .txt,
.c-btn-main button .txt,
.c-btn-main .c-btn-main__inner .txt,
.c-btn-main--white a .txt,
.c-btn-main--white button .txt,
.c-btn-main--white .c-btn-main__inner .txt,
.c-btn-main--win a .txt,
.c-btn-main--win button .txt,
.c-btn-main--win .c-btn-main__inner .txt {
  font-weight: 700;
  color: var(--main);
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  padding-bottom: 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-btn-main a .btn,
.c-btn-main button .btn,
.c-btn-main .c-btn-main__inner .btn,
.c-btn-main--white a .btn,
.c-btn-main--white button .btn,
.c-btn-main--white .c-btn-main__inner .btn,
.c-btn-main--win a .btn,
.c-btn-main--win button .btn,
.c-btn-main--win .c-btn-main__inner .btn {
  background-color: var(--main);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1);
          transform: scale(1);
  position: relative;
}
.c-btn-main a .btn::before,
.c-btn-main button .btn::before,
.c-btn-main .c-btn-main__inner .btn::before,
.c-btn-main--white a .btn::before,
.c-btn-main--white button .btn::before,
.c-btn-main--white .c-btn-main__inner .btn::before,
.c-btn-main--win a .btn::before,
.c-btn-main--win button .btn::before,
.c-btn-main--win .c-btn-main__inner .btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-btn-main a:hover .line::before,
.c-btn-main button:hover .line::before,
.c-btn-main .c-btn-main__inner:hover .line::before,
.c-btn-main--white a:hover .line::before,
.c-btn-main--white button:hover .line::before,
.c-btn-main--white .c-btn-main__inner:hover .line::before,
.c-btn-main--win a:hover .line::before,
.c-btn-main--win button:hover .line::before,
.c-btn-main--win .c-btn-main__inner:hover .line::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-btn-main a:hover .txt,
.c-btn-main button:hover .txt,
.c-btn-main .c-btn-main__inner:hover .txt,
.c-btn-main--white a:hover .txt,
.c-btn-main--white button:hover .txt,
.c-btn-main--white .c-btn-main__inner:hover .txt,
.c-btn-main--win a:hover .txt,
.c-btn-main--win button:hover .txt,
.c-btn-main--win .c-btn-main__inner:hover .txt {
  color: var(--hover);
}
.c-btn-main a:hover .btn,
.c-btn-main button:hover .btn,
.c-btn-main .c-btn-main__inner:hover .btn,
.c-btn-main--white a:hover .btn,
.c-btn-main--white button:hover .btn,
.c-btn-main--white .c-btn-main__inner:hover .btn,
.c-btn-main--win a:hover .btn,
.c-btn-main--win button:hover .btn,
.c-btn-main--win .c-btn-main__inner:hover .btn {
  -webkit-transform: scale(1.09230769);
          transform: scale(1.09230769);
  background-color: var(--hover);
}
.c-btn-main a:hover .btn::before,
.c-btn-main button:hover .btn::before,
.c-btn-main .c-btn-main__inner:hover .btn::before,
.c-btn-main--white a:hover .btn::before,
.c-btn-main--white button:hover .btn::before,
.c-btn-main--white .c-btn-main__inner:hover .btn::before,
.c-btn-main--win a:hover .btn::before,
.c-btn-main--win button:hover .btn::before,
.c-btn-main--win .c-btn-main__inner:hover .btn::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: btn-arrow 0.4s ease;
          animation: btn-arrow 0.4s ease;
}

.c-btn-main--white a .line::before,
.c-btn-main--white button .line::before,
.c-btn-main--white .c-btn-main__inner .line::before {
  background-color: var(--white);
}
.c-btn-main--white a .txt,
.c-btn-main--white button .txt,
.c-btn-main--white .c-btn-main__inner .txt {
  color: var(--white);
}
.c-btn-main--white a .btn,
.c-btn-main--white button .btn,
.c-btn-main--white .c-btn-main__inner .btn {
  background-color: var(--white);
}
.c-btn-main--white a .btn::before,
.c-btn-main--white button .btn::before,
.c-btn-main--white .c-btn-main__inner .btn::before {
  background-image: url(/resource/images/ico_arrow--main.svg);
}
.c-btn-main--white a:hover .txt,
.c-btn-main--white button:hover .txt,
.c-btn-main--white .c-btn-main__inner:hover .txt {
  color: var(--white);
}
.c-btn-main--white a:hover .btn::before,
.c-btn-main--white button:hover .btn::before,
.c-btn-main--white .c-btn-main__inner:hover .btn::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}

.c-btn-main--win a .btn:before,
.c-btn-main--win button .btn:before,
.c-btn-main--win .c-btn-main__inner .btn:before {
  background-image: url(/resource/images/ico_win--white_win.svg);
  background-size: 16px auto;
}
.c-btn-main--win a .btn:after,
.c-btn-main--win button .btn:after,
.c-btn-main--win .c-btn-main__inner .btn:after {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_win--white_arrow.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-btn-main--win a:hover .btn:before,
.c-btn-main--win button:hover .btn:before,
.c-btn-main--win .c-btn-main__inner:hover .btn:before {
  background-image: url(/resource/images/ico_win--white_win.svg);
  -webkit-animation: none;
          animation: none;
}
.c-btn-main--win a:hover .btn:after,
.c-btn-main--win button:hover .btn:after,
.c-btn-main--win .c-btn-main__inner:hover .btn:after {
  -webkit-animation: btn-arrow-win 0.4s ease;
          animation: btn-arrow-win 0.4s ease;
}
@-webkit-keyframes btn-arrow-win {
  0% {
    top: 50%;
    left: 50%;
  }
  50% {
    opacity: 0;
    top: 40%;
    left: 60%;
  }
  51% {
    opacity: 0;
    top: 60%;
    left: 40%;
  }
  100% {
    opacity: 1;
    left: 50%;
    top: 50%;
  }
}
@keyframes btn-arrow-win {
  0% {
    top: 50%;
    left: 50%;
  }
  50% {
    opacity: 0;
    top: 40%;
    left: 60%;
  }
  51% {
    opacity: 0;
    top: 60%;
    left: 40%;
  }
  100% {
    opacity: 1;
    left: 50%;
    top: 50%;
  }
}

/* サブボタン ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-sub a,
.c-btn-sub .c-btn-sub__inner,
.c-btn-sub button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .c-btn-sub a,
  .c-btn-sub .c-btn-sub__inner,
  .c-btn-sub button {
    gap: 5px;
  }
}
.c-btn-sub a .txt,
.c-btn-sub .c-btn-sub__inner .txt,
.c-btn-sub button .txt {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
}
.c-btn-sub a .txt::before,
.c-btn-sub .c-btn-sub__inner .txt::before,
.c-btn-sub button .txt::before {
  content: "";
  display: block;
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-btn-sub a .btn,
.c-btn-sub .c-btn-sub__inner .btn,
.c-btn-sub button .btn {
  display: inline-block;
  background-color: var(--main);
  border-radius: 50px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 460px) {
  .c-btn-sub a .btn,
  .c-btn-sub .c-btn-sub__inner .btn,
  .c-btn-sub button .btn {
    width: 25px;
    height: 25px;
  }
}
.c-btn-sub a .btn::before,
.c-btn-sub .c-btn-sub__inner .btn::before,
.c-btn-sub button .btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 10px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-btn-sub a:hover,
.c-btn-sub .c-btn-sub__inner:hover,
.c-btn-sub button:hover {
  color: var(--hover);
}
.c-btn-sub a:hover .line::before,
.c-btn-sub .c-btn-sub__inner:hover .line::before,
.c-btn-sub button:hover .line::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-btn-sub a:hover .txt,
.c-btn-sub .c-btn-sub__inner:hover .txt,
.c-btn-sub button:hover .txt {
  color: var(--hover);
}
.c-btn-sub a:hover .btn,
.c-btn-sub .c-btn-sub__inner:hover .btn,
.c-btn-sub button:hover .btn {
  -webkit-transform: scale(1.09230769);
          transform: scale(1.09230769);
  background-color: var(--hover);
}
.c-btn-sub a:hover .btn::before,
.c-btn-sub .c-btn-sub__inner:hover .btn::before,
.c-btn-sub button:hover .btn::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: btn-arrow 0.4s ease;
          animation: btn-arrow 0.4s ease;
}
.c-btn-sub a:hover .txt::before,
.c-btn-sub .c-btn-sub__inner:hover .txt::before,
.c-btn-sub button:hover .txt::before {
  content: none;
}
.c-btn-sub a:hover .btn,
.c-btn-sub .c-btn-sub__inner:hover .btn,
.c-btn-sub button:hover .btn {
  background-color: var(--hover);
}

/* カード型の横長ボタン 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
/* PDF、Excel、Wordボタン（情報公開） 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
/* ==========================================================================
カード
=========================================================================*/
/* 余白だけのシンプルなカード
----------------------------------------------------------------- */
.c-card--sm {
  padding: 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-card--sm {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--md {
  padding: 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-card--md {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--lg {
  padding: 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-card--lg {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-card--lg {
    padding: 1.875rem 1.25rem;
  }
}

/* 番号付きのカード
----------------------------------------------------------------- */
.c-card-basic {
  padding: 3.75rem;
  background-color: var(--whitesmoke);
  position: relative;
  border-radius: 15px;
}
@media screen and (max-width: 834px) {
  .c-card-basic {
    padding: 2.5rem 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .c-card-basic {
    padding: 2.5rem 1.25rem;
  }
}
.c-card-basic .c-card-basic__num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 102px;
  position: absolute;
  z-index: 1;
  left: -20px;
  top: -30px;
}
@media screen and (max-width: 834px) {
  .c-card-basic .c-card-basic__num {
    width: 82px;
    height: 80px;
    left: -15px;
    top: -20px;
  }
}
@media screen and (max-width: 460px) {
  .c-card-basic .c-card-basic__num {
    width: 70px;
    height: 71px;
    left: -10px;
    top: -30px;
  }
}
.c-card-basic .c-card-basic__num::before {
  content: "";
  display: block;
  background-image: url(/resource/images/vector--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.c-card-basic .c-card-basic__num .en {
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 834px) {
  .c-card-basic .c-card-basic__num .en {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .c-card-basic .c-card-basic__num .en {
    font-size: 12px;
  }
}
.c-card-basic .c-card-basic__num .num {
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .c-card-basic .c-card-basic__num .num {
    font-size: 2rem;
  }
}
@media screen and (max-width: 460px) {
  .c-card-basic .c-card-basic__num .num {
    font-size: 1.75rem;
  }
}

/* 画像とその下にタイトルとテキストのあるカード ※ボタンつき
----------------------------------------------------------------- */
.c-card-img {
  position: relative;
}
.c-card-img .c-card-img__head img {
  max-width: 100%;
  height: auto;
}
.c-card-img .c-card-img__cont {
  padding-top: 1.875rem;
}
.c-card-img .c-card-img__txt {
  margin-top: 20px;
}

/* 数字つきフローカード　タイトルとアイコン、テキストのカード
----------------------------------------------------------------- */
.c-card-flow {
  padding: 3.125rem 1.25rem 1.875rem;
  background-color: var(--whitesmoke);
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .c-card-flow {
    padding: 2.5rem 15px 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-card-flow {
    padding: 2.5rem 20px 1.875rem;
  }
}
.c-card-flow .c-card-flow__num {
  display: block;
  background-image: url(/resource/images/vector--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 49px;
  height: 50px;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 1.4375rem;
  line-height: 1.1;
  font-weight: 600;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-card-flow .c-card-flow__num {
    width: 42px;
    height: 50px;
    top: -20px;
  }
}
.c-card-flow .c-card-flow__img {
  height: 50px;
}
.c-card-flow .c-card-flow__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-card-flow .c-card-flow__cont {
  margin-top: 1.25rem;
}
.c-card-flow .c-card-flow__cont .c-card-flow__ttl {
  font-weight: 600;
  font-size: 1.4375rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-family: "Shippori Mincho", serif;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-card-flow .c-card-flow__cont .c-card-flow__ttl {
    font-size: 1.3125rem;
  }
}
.c-card-flow .c-card-flow__cont .c-card-flow__txt {
  margin-top: 1.25rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 460px) {
  .c-card-flow .c-card-flow__cont .c-card-flow__txt {
    margin-top: 0.625rem;
  }
}

/* サムネイル画像とタイトルのリンクのついたカード(施工実績)
----------------------------------------------------------------- */
.c-card-tmb-link {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-card-tmb-link .c-card-tmb-link__img {
  overflow: hidden;
  height: 226px;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-link .c-card-tmb-link__img {
    height: 145px;
  }
}
@media screen and (max-width: 460px) {
  .c-card-tmb-link .c-card-tmb-link__img {
    height: 210px;
  }
}
.c-card-tmb-link .c-card-tmb-link__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.c-card-tmb-link .c-card-tmb-link__body {
  padding: 0.9375rem 1.25rem;
  background-color: var(--whitesmoke);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-link .c-card-tmb-link__body {
    padding: 0.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .c-card-tmb-link .c-card-tmb-link__body {
    padding: 0.9375rem 1.25rem;
  }
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
@media screen and (max-width: 460px) {
  .c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
  font-weight: 500;
  line-height: 1;
  color: var(--main);
  background-color: var(--white);
  border-radius: 30px;
  padding: 6px 10px 7px;
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
    padding: 5px 8px;
    font-size: 12px;
  }
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .ttl {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  color: var(--black);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  font-size: 1rem;
}
.c-card-tmb-link:hover .c-card-tmb-link__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-card-tmb-link:hover .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
  color: var(--hover);
}
.c-card-tmb-link:hover .c-card-tmb-link__body .c-card-tmb-link__cat .ttl {
  color: var(--hover);
}

/* サムネイル画像とタイトルのほか、カテゴリもあるリンクのついたカード
----------------------------------------------------------------- */
/* ==========================================================================
タイトル
=========================================================================*/
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  font-family: "Shippori Mincho", serif;
}

h1 {
  font-size: 3.5625rem;
}
@media screen and (max-width: 834px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 460px) {
  h1 {
    font-size: 2.375rem;
  }
}

h2 {
  font-size: 3rem;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 834px) {
  h2 {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 460px) {
  h2 {
    font-size: 2.125rem;
    letter-spacing: 0;
  }
}

h3 {
  font-size: 2.625rem;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 834px) {
  h3 {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 460px) {
  h3 {
    font-size: 1.9375rem;
    letter-spacing: 0;
  }
}

h4 {
  font-size: 2.25rem;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 834px) {
  h4 {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 460px) {
  h4 {
    font-size: 1.75rem;
    letter-spacing: 0;
  }
}

h5 {
  font-size: 1.75rem;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 834px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  h5 {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

h6 {
  font-size: 1.4375rem;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 834px) {
  h6 {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  h6 {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}

.txt-l {
  font-size: 1.1875rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .txt-l {
    font-size: 1.125rem;
  }
}

.txt-s {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 460px) {
  .txt-s {
    font-size: 0.75rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main,
.c-ttl-main--white {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-main .en,
.c-ttl-main--white .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  color: var(--sub);
}
@media screen and (max-width: 834px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    font-size: 14px;
  }
}
.c-ttl-main .ja,
.c-ttl-main--white .ja {
  display: block;
  font-size: 2.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .c-ttl-main .ja,
  .c-ttl-main--white .ja {
    font-size: 2.375rem;
    letter-spacing: 0.015em;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main .ja,
  .c-ttl-main--white .ja {
    font-size: 2.0625rem;
    letter-spacing: 0;
  }
}

.c-ttl-main--white .ja {
  color: var(--white);
}

.c-ttl-sub {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-ttl-sub {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-sub {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-sub .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  color: var(--sub);
  position: relative;
  margin-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .c-ttl-sub .en {
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-sub .en {
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
.c-ttl-sub .en::before, .c-ttl-sub .en::after {
  content: "(";
  display: inline-block;
  color: var(--sub);
  margin-right: 5px;
}
.c-ttl-sub .en::after {
  content: ")";
  margin-left: 5px;
  margin-right: 0;
}
.c-ttl-sub .ja {
  display: block;
  font-size: 2.4375rem;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .c-ttl-sub .ja {
    font-size: 2.25rem;
    letter-spacing: 0em;
    line-height: 1.5;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-sub .ja {
    font-size: 2.0625rem;
    letter-spacing: 0em;
  }
}
.c-ttl-sub .ja .sm {
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  line-height: 1.8;
}

.c-ttl-dot {
  position: relative;
  color: var(--main);
  font-family: "Shippori Mincho", serif;
  font-size: 2.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-top: 9px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .c-ttl-dot {
    font-size: 1.9375rem;
    letter-spacing: 0.015em;
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-dot {
    font-size: 1.625rem;
    letter-spacing: 0em;
    padding-top: 4px;
    margin-bottom: 1.875rem;
  }
}
.c-ttl-dot::before, .c-ttl-dot::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--sub);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 8px;
}
@media screen and (max-width: 460px) {
  .c-ttl-dot::before, .c-ttl-dot::after {
    width: 4px;
    height: 4px;
  }
}
.c-ttl-dot::after {
  left: 22px;
}
@media screen and (max-width: 460px) {
  .c-ttl-dot::after {
    left: 18px;
  }
}

.c-ttl-basic {
  margin-bottom: 2.5rem;
  font-size: 1.625rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .c-ttl-basic {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-basic {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}

/* ==========================================================================
スライド（swiper、slick）
=========================================================================*/
/* サムネイル付きのスワイパー 
-----------------------------------------------------*/
.c-slide-tmb__wrap {
  position: relative;
}
.c-slide-tmb__wrap .swiper.tmbslide_main {
  width: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper {
  width: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide {
  width: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide picture {
  aspect-ratio: 1080/540;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide picture {
    border-radius: 10px;
  }
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  border: none;
  -o-object-position: center;
     object-position: center;
}
.c-slide-tmb__wrap .swiper-button-next,
.c-slide-tmb__wrap .swiper-button-prev {
  z-index: 2;
  width: 60px;
  height: 60px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 834px) {
  .c-slide-tmb__wrap .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button-prev {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    top: 155px;
  }
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 68px;
  }
}
.c-slide-tmb__wrap .swiper-button-next:after,
.c-slide-tmb__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--whitesmoke);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-tmb__wrap .swiper-button-next::before,
.c-slide-tmb__wrap .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow--main.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-tmb__wrap .swiper-button-next:hover:after,
.c-slide-tmb__wrap .swiper-button-prev:hover:after {
  background-color: var(--hover);
}
.c-slide-tmb__wrap .swiper-button-next:hover::before,
.c-slide-tmb__wrap .swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}
.c-slide-tmb__wrap .swiper-button-next {
  right: -30px;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next {
    right: -15px;
  }
}
.c-slide-tmb__wrap .swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -30px;
}
@media screen and (max-width: 834px) {
  .c-slide-tmb__wrap .swiper-button-prev {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-prev {
    -webkit-transform: scale(-1, 1) translateY(0%);
            transform: scale(-1, 1) translateY(0%);
    left: -15px;
  }
}

.swiper.tmbslide_tmb {
  width: 100%;
  height: auto;
  max-width: initial;
  margin-top: 3.75rem;
}
@media screen and (max-width: 460px) {
  .swiper.tmbslide_tmb {
    margin-top: 1.25rem;
  }
}
.swiper.tmbslide_tmb .swiper-wrapper {
  height: auto;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide {
  cursor: pointer;
  height: auto;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide .swiper-slide__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  height: auto;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide .swiper-slide__inner::before {
  content: "";
  display: block;
  padding-top: 61.7924528302%;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide .swiper-slide__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide:hover img {
  opacity: 0.7;
}

/* スマホでスワイパーに変化
-----------------------------------------------------*/
/* マップスワイパーに変化
-----------------------------------------------------*/
/* ==========================================================================
ブロック
=========================================================================*/
/* 基本のバナー
----------------------------------------------------------------- */
.c-block-bnr {
  width: 100%;
  height: 334px;
  padding: 4.875rem 5rem 5.5rem;
  overflow: hidden;
  z-index: 1;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .c-block-bnr {
    padding: 3.75rem 2.5rem;
    border-radius: 10px;
    height: 298px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-bnr {
    padding: 2.28125rem 1.25rem;
    height: 339px;
  }
}
.c-block-bnr a .c-ttl-main--white {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-block-bnr a .c-ttl-main--white {
    margin-bottom: 1.25rem;
  }
}
.c-block-bnr a .c-ttl-main--white .en {
  font-size: 14px;
}
.c-block-bnr a .c-ttl-main--white .ja {
  font-size: 1.9375rem;
}
@media screen and (max-width: 460px) {
  .c-block-bnr a .c-ttl-main--white .ja {
    font-size: 2.0625rem;
  }
}
.c-block-bnr a picture {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.c-block-bnr a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.c-block-bnr a .c-btn-main--white {
  position: absolute;
  bottom: 30px;
  right: 40px;
}
@media screen and (max-width: 834px) {
  .c-block-bnr a .c-btn-main--white {
    bottom: 20px;
    right: 25px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-bnr a .c-btn-main--white {
    bottom: 36.5px;
    right: 20px;
  }
}
.c-block-bnr a:hover picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-block-bnr a:hover .c-btn-main--white .line::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-block-bnr a:hover .c-btn-main--white .txt {
  color: var(--hover);
}
.c-block-bnr a:hover .c-btn-main--white .btn {
  -webkit-transform: scale(1.09230769);
          transform: scale(1.09230769);
  background-color: var(--hover);
}
.c-block-bnr a:hover .c-btn-main--white .btn::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: btn-arrow 0.4s ease;
          animation: btn-arrow 0.4s ease;
}
.c-block-bnr a:hover .c-btn-main--white .c-btn-main__inner .txt {
  color: var(--white);
}
.c-block-bnr a:hover .c-btn-main--white .c-btn-main__inner .btn::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}

/* 下層のft手前にあるバナー
----------------------------------------------------------------- */
.c-block-ft-bnr {
  display: block;
  width: 100%;
  height: 360px;
  padding: 1.25rem;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr {
    height: 279px;
    padding: 0.625rem;
    border-radius: 10px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr {
    height: auto;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__attention {
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  display: block;
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: 2;
  padding-top: 16px;
  padding-left: 24px;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__attention {
    padding-top: 10px;
    padding-left: 16px;
    font-size: 0.875rem;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__attention::before {
  content: "";
  display: block;
  background-image: url(/resource/images/bnr_attention.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 189px;
  height: 131px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__attention::before {
    width: 120px;
    height: 90px;
  }
}
.c-block-ft-bnr picture {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  height: 100%;
}
.c-block-ft-bnr picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.c-block-ft-bnr .c-block-ft-bnr__inner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid var(--white);
  padding: 3.75rem 5rem;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner {
    padding: 2.1875rem 2.5rem 4.375rem;
    border-radius: 8px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner {
    padding: 2.1875rem 1.875rem 1.875rem;
    padding-bottom: 1.0625rem;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white {
    margin-bottom: 0.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white {
    margin-bottom: 1.25rem;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white::before {
  content: "";
  display: block;
  background-image: url(/resource/images/vector--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 126px;
  height: 128px;
  position: absolute;
  top: -37px;
  left: -41px;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white::before {
    width: 90px;
    height: 92px;
    top: -25px;
    left: -30px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white::before {
    width: 80px;
    height: 81px;
    top: -16px;
    left: -27px;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white .en {
  font-size: 1rem;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white .en {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white .en {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white .ja {
  font-size: 2.625rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white .ja {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white .ja {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white.--adjust {
    margin-top: 25px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner p {
    line-height: 1.8;
  }
}
.c-block-ft-bnr .c-block-ft-bnr__inner .c-btn-main--white {
  position: absolute;
  bottom: 40px;
  right: 50px;
}
@media screen and (max-width: 834px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-btn-main--white {
    bottom: 28px;
    right: 30px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-btn-main--white {
    position: relative;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    bottom: 0;
    right: 0;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ft-bnr .c-block-ft-bnr__inner .c-btn-main--white .c-btn-main__inner {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.c-block-ft-bnr:hover picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-block-ft-bnr:hover .c-block-ft-bnr__inner .c-btn-main--white .line::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-block-ft-bnr:hover .c-block-ft-bnr__inner .c-btn-main--white .txt {
  color: var(--hover);
}
.c-block-ft-bnr:hover .c-block-ft-bnr__inner .c-btn-main--white .btn {
  -webkit-transform: scale(1.09230769);
          transform: scale(1.09230769);
  background-color: var(--hover);
}
.c-block-ft-bnr:hover .c-block-ft-bnr__inner .c-btn-main--white .btn::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: btn-arrow 0.4s ease;
          animation: btn-arrow 0.4s ease;
}
.c-block-ft-bnr:hover .c-block-ft-bnr__inner .c-btn-main--white .c-btn-main__inner .txt {
  color: var(--white);
}
.c-block-ft-bnr:hover .c-block-ft-bnr__inner .c-btn-main--white .c-btn-main__inner .btn::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}

/* 片方画面についている横並びのブロックレイアウト
----------------------------------------------------------------- */
.c-block-media__wrap,
.c-block-media__wrap--re {
  position: relative;
}
.c-block-media__wrap .c-block-media__ttl--sm,
.c-block-media__wrap .c-block-media__ttl--md,
.c-block-media__wrap--re .c-block-media__ttl--sm,
.c-block-media__wrap--re .c-block-media__ttl--md {
  color: var(--main);
  font-size: 1.4375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .c-block-media__wrap .c-block-media__ttl--sm,
  .c-block-media__wrap .c-block-media__ttl--md,
  .c-block-media__wrap--re .c-block-media__ttl--sm,
  .c-block-media__wrap--re .c-block-media__ttl--md {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-media__wrap .c-block-media__ttl--sm,
  .c-block-media__wrap .c-block-media__ttl--md,
  .c-block-media__wrap--re .c-block-media__ttl--sm,
  .c-block-media__wrap--re .c-block-media__ttl--md {
    font-size: 1.3125rem;
  }
}
.c-block-media__wrap .c-block-media__ttl--md,
.c-block-media__wrap--re .c-block-media__ttl--md {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .c-block-media__wrap .c-block-media__ttl--md,
  .c-block-media__wrap--re .c-block-media__ttl--md {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-media__wrap .c-block-media__ttl--md,
  .c-block-media__wrap--re .c-block-media__ttl--md {
    font-size: 1.4375rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
  }
}
.c-block-media__wrap .c-block-media__img-area,
.c-block-media__wrap--re .c-block-media__img-area {
  position: relative;
  min-height: 410px;
}
@media screen and (max-width: 834px) {
  .c-block-media__wrap .c-block-media__img-area,
  .c-block-media__wrap--re .c-block-media__img-area {
    min-height: 293px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-media__wrap .c-block-media__img-area,
  .c-block-media__wrap--re .c-block-media__img-area {
    min-height: 211px;
  }
}
.c-block-media__wrap .c-block-media__img-area .c-block-media__img,
.c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 48.5358711567%;
  height: 410px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 834px) {
  .c-block-media__wrap .c-block-media__img-area .c-block-media__img,
  .c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
    width: 47.5609756098%;
    height: 293px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-media__wrap .c-block-media__img-area .c-block-media__img,
  .c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
    width: 95.2%;
    height: 211px;
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: 0;
    margin-top: 2.5rem;
  }
}
.c-block-media__wrap .c-block-media__img-area .c-block-media__img picture,
.c-block-media__wrap--re .c-block-media__img-area .c-block-media__img picture {
  height: 100%;
}
.c-block-media__wrap .c-block-media__img-area .c-block-media__img picture img,
.c-block-media__wrap--re .c-block-media__img-area .c-block-media__img picture img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-block-media__wrap .c-block-media__cont,
.c-block-media__wrap--re .c-block-media__cont {
  max-width: 48.1481481481%;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .c-block-media__wrap .c-block-media__cont,
  .c-block-media__wrap--re .c-block-media__cont {
    max-width: initial;
  }
}
.c-block-media__wrap .c-block-media__cont .c-btn-main,
.c-block-media__wrap .c-block-media__cont .c-btn-main--win,
.c-block-media__wrap--re .c-block-media__cont .c-btn-main,
.c-block-media__wrap--re .c-block-media__cont .c-btn-main--win {
  margin-top: 3.75rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .c-block-media__wrap .c-block-media__cont .c-btn-main,
  .c-block-media__wrap .c-block-media__cont .c-btn-main--win,
  .c-block-media__wrap--re .c-block-media__cont .c-btn-main,
  .c-block-media__wrap--re .c-block-media__cont .c-btn-main--win {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-media__wrap .c-block-media__cont .c-btn-main,
  .c-block-media__wrap .c-block-media__cont .c-btn-main--win,
  .c-block-media__wrap--re .c-block-media__cont .c-btn-main,
  .c-block-media__wrap--re .c-block-media__cont .c-btn-main--win {
    margin-top: 1.875rem;
  }
}
.c-block-media__wrap .c-block-media__cont .c-btn-main a,
.c-block-media__wrap .c-block-media__cont .c-btn-main--win a,
.c-block-media__wrap--re .c-block-media__cont .c-btn-main a,
.c-block-media__wrap--re .c-block-media__cont .c-btn-main--win a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
  right: auto;
  left: 0;
  margin-left: 0;
  margin-right: auto;
  border-radius: 0 20px 20px 0;
}
.c-block-media__wrap--re .c-block-media__cont {
  margin-left: auto;
  margin-right: 0;
}

/*  見出し画像と縦書き見出し + タイトルテキストのブロック
----------------------------------------------------------------- */
.c-block-ttl-media__wrap .head,
.c-block-ttl-media__wrap .head--re,
.c-block-ttl-media__wrap--re .head,
.c-block-ttl-media__wrap--re .head--re {
  margin-left: 10.4685212299%;
  position: relative;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head,
  .c-block-ttl-media__wrap .head--re,
  .c-block-ttl-media__wrap--re .head,
  .c-block-ttl-media__wrap--re .head--re {
    margin-left: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head,
  .c-block-ttl-media__wrap .head--re,
  .c-block-ttl-media__wrap--re .head,
  .c-block-ttl-media__wrap--re .head--re {
    margin-left: 4.8%;
  }
}
.c-block-ttl-media__wrap .head picture,
.c-block-ttl-media__wrap .head--re picture,
.c-block-ttl-media__wrap--re .head picture,
.c-block-ttl-media__wrap--re .head--re picture {
  height: 100%;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head picture,
  .c-block-ttl-media__wrap .head--re picture,
  .c-block-ttl-media__wrap--re .head picture,
  .c-block-ttl-media__wrap--re .head--re picture {
    border-radius: 15px 0 0 15px;
    height: 363px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head picture,
  .c-block-ttl-media__wrap .head--re picture,
  .c-block-ttl-media__wrap--re .head picture,
  .c-block-ttl-media__wrap--re .head--re picture {
    height: 267px;
  }
}
.c-block-ttl-media__wrap .head picture img,
.c-block-ttl-media__wrap .head--re picture img,
.c-block-ttl-media__wrap--re .head picture img,
.c-block-ttl-media__wrap--re .head--re picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-block-ttl-media__wrap .head .ttl,
.c-block-ttl-media__wrap .head--re .ttl,
.c-block-ttl-media__wrap--re .head .ttl,
.c-block-ttl-media__wrap--re .head--re .ttl {
  position: absolute;
  left: 6.5412919052%;
  top: -40px;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl,
  .c-block-ttl-media__wrap .head--re .ttl,
  .c-block-ttl-media__wrap--re .head .ttl,
  .c-block-ttl-media__wrap--re .head--re .ttl {
    left: 7.6726342711%;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl,
  .c-block-ttl-media__wrap .head--re .ttl,
  .c-block-ttl-media__wrap--re .head .ttl,
  .c-block-ttl-media__wrap--re .head--re .ttl {
    left: 8.4033613445%;
    top: -20px;
  }
}
.c-block-ttl-media__wrap .head .ttl .ttl-ico,
.c-block-ttl-media__wrap .head--re .ttl .ttl-ico,
.c-block-ttl-media__wrap--re .head .ttl .ttl-ico,
.c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 102px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl .ttl-ico,
  .c-block-ttl-media__wrap .head--re .ttl .ttl-ico,
  .c-block-ttl-media__wrap--re .head .ttl .ttl-ico,
  .c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico {
    width: 90px;
    height: 92px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl .ttl-ico,
  .c-block-ttl-media__wrap .head--re .ttl .ttl-ico,
  .c-block-ttl-media__wrap--re .head .ttl .ttl-ico,
  .c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico {
    margin-bottom: 10px;
    width: 65px;
    height: 66px;
  }
}
.c-block-ttl-media__wrap .head .ttl .ttl-ico::before,
.c-block-ttl-media__wrap .head--re .ttl .ttl-ico::before,
.c-block-ttl-media__wrap--re .head .ttl .ttl-ico::before,
.c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico::before {
  content: "";
  display: block;
  background-image: url(/resource/images/vector--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.c-block-ttl-media__wrap .head .ttl .ttl-ico .en,
.c-block-ttl-media__wrap .head--re .ttl .ttl-ico .en,
.c-block-ttl-media__wrap--re .head .ttl .ttl-ico .en,
.c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico .en {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl .ttl-ico .en,
  .c-block-ttl-media__wrap .head--re .ttl .ttl-ico .en,
  .c-block-ttl-media__wrap--re .head .ttl .ttl-ico .en,
  .c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico .en {
    font-size: 14px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl .ttl-ico .en,
  .c-block-ttl-media__wrap .head--re .ttl .ttl-ico .en,
  .c-block-ttl-media__wrap--re .head .ttl .ttl-ico .en,
  .c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico .en {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}
.c-block-ttl-media__wrap .head .ttl .ttl-ico .num,
.c-block-ttl-media__wrap .head--re .ttl .ttl-ico .num,
.c-block-ttl-media__wrap--re .head .ttl .ttl-ico .num,
.c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico .num {
  font-family: "Shippori Mincho", serif;
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl .ttl-ico .num,
  .c-block-ttl-media__wrap .head--re .ttl .ttl-ico .num,
  .c-block-ttl-media__wrap--re .head .ttl .ttl-ico .num,
  .c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico .num {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl .ttl-ico .num,
  .c-block-ttl-media__wrap .head--re .ttl .ttl-ico .num,
  .c-block-ttl-media__wrap--re .head .ttl .ttl-ico .num,
  .c-block-ttl-media__wrap--re .head--re .ttl .ttl-ico .num {
    font-size: 1.625rem;
  }
}
.c-block-ttl-media__wrap .head .ttl-text,
.c-block-ttl-media__wrap .head--re .ttl-text,
.c-block-ttl-media__wrap--re .head .ttl-text,
.c-block-ttl-media__wrap--re .head--re .ttl-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 2.5625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl-text,
  .c-block-ttl-media__wrap .head--re .ttl-text,
  .c-block-ttl-media__wrap--re .head .ttl-text,
  .c-block-ttl-media__wrap--re .head--re .ttl-text {
    font-size: 2.0625rem;
    letter-spacing: 0.05em;
    gap: 8px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl-text,
  .c-block-ttl-media__wrap .head--re .ttl-text,
  .c-block-ttl-media__wrap--re .head .ttl-text,
  .c-block-ttl-media__wrap--re .head--re .ttl-text {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
  }
}
.c-block-ttl-media__wrap .head .ttl-text span,
.c-block-ttl-media__wrap .head--re .ttl-text span,
.c-block-ttl-media__wrap--re .head .ttl-text span,
.c-block-ttl-media__wrap--re .head--re .ttl-text span {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.4);
}
.c-block-ttl-media__wrap .head .ttl-only,
.c-block-ttl-media__wrap .head--re .ttl-only,
.c-block-ttl-media__wrap--re .head .ttl-only,
.c-block-ttl-media__wrap--re .head--re .ttl-only {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.12;
  letter-spacing: 0.15em;
  font-size: 3.3125rem;
  font-family: "Shippori Mincho", serif;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-top: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl-only,
  .c-block-ttl-media__wrap .head--re .ttl-only,
  .c-block-ttl-media__wrap--re .head .ttl-only,
  .c-block-ttl-media__wrap--re .head--re .ttl-only {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl-only,
  .c-block-ttl-media__wrap .head--re .ttl-only,
  .c-block-ttl-media__wrap--re .head .ttl-only,
  .c-block-ttl-media__wrap--re .head--re .ttl-only {
    letter-spacing: 0.08em;
    font-size: 2.0625rem;
  }
}
.c-block-ttl-media__wrap .head .ttl-only span,
.c-block-ttl-media__wrap .head--re .ttl-only span,
.c-block-ttl-media__wrap--re .head .ttl-only span,
.c-block-ttl-media__wrap--re .head--re .ttl-only span {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.2);
}
.c-block-ttl-media__wrap .head .ttl-only .ajust,
.c-block-ttl-media__wrap .head--re .ttl-only .ajust,
.c-block-ttl-media__wrap--re .head .ttl-only .ajust,
.c-block-ttl-media__wrap--re .head--re .ttl-only .ajust {
  padding-top: 78px;
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl-only .ajust,
  .c-block-ttl-media__wrap .head--re .ttl-only .ajust,
  .c-block-ttl-media__wrap--re .head .ttl-only .ajust,
  .c-block-ttl-media__wrap--re .head--re .ttl-only .ajust {
    padding-top: 52px;
  }
}
.c-block-ttl-media__wrap .head .ttl-only::before,
.c-block-ttl-media__wrap .head--re .ttl-only::before,
.c-block-ttl-media__wrap--re .head .ttl-only::before,
.c-block-ttl-media__wrap--re .head--re .ttl-only::before {
  content: "";
  display: block;
  background-image: url(/resource/images/vector--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 90px;
  height: 92px;
  position: absolute;
  top: 0px;
  left: -13px;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .head .ttl-only::before,
  .c-block-ttl-media__wrap .head--re .ttl-only::before,
  .c-block-ttl-media__wrap--re .head .ttl-only::before,
  .c-block-ttl-media__wrap--re .head--re .ttl-only::before {
    width: 80px;
    height: 81px;
    top: 3px;
    left: -19px;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .head .ttl-only::before,
  .c-block-ttl-media__wrap .head--re .ttl-only::before,
  .c-block-ttl-media__wrap--re .head .ttl-only::before,
  .c-block-ttl-media__wrap--re .head--re .ttl-only::before {
    top: 8px;
    left: -11px;
    width: 60px;
    height: 61px;
  }
}
.c-block-ttl-media__wrap .body,
.c-block-ttl-media__wrap--re .body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .body,
  .c-block-ttl-media__wrap--re .body {
    margin-top: 1.875rem;
  }
}
.c-block-ttl-media__wrap .body .body-ttl,
.c-block-ttl-media__wrap--re .body .body-ttl {
  font-size: 1.75rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--main);
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap .body .body-ttl,
  .c-block-ttl-media__wrap--re .body .body-ttl {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .body .body-ttl,
  .c-block-ttl-media__wrap--re .body .body-ttl {
    font-size: 1.4375rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
}
.c-block-ttl-media__wrap .c-btn-main,
.c-block-ttl-media__wrap--re .c-btn-main {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap .c-btn-main,
  .c-block-ttl-media__wrap--re .c-btn-main {
    margin-top: 1.875rem;
  }
}
.c-block-ttl-media__wrap .c-btn-main a,
.c-block-ttl-media__wrap--re .c-btn-main a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: initial;
}

.c-block-ttl-media__wrap--re .head {
  margin-right: 10.4685212299%;
  margin-left: 0;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap--re .head {
    margin-right: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap--re .head {
    margin-right: 4.8%;
  }
}
.c-block-ttl-media__wrap--re .head picture {
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap--re .head picture {
    border-radius: 0 15px 15px 0;
  }
}
.c-block-ttl-media__wrap--re .head .ttl {
  right: 7.031888798%;
  position: absolute;
  left: auto;
}
@media screen and (max-width: 834px) {
  .c-block-ttl-media__wrap--re .head .ttl {
    right: 7.6726342711%;
  }
}
@media screen and (max-width: 460px) {
  .c-block-ttl-media__wrap--re .head .ttl {
    right: 8.4033613445%;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide__wrap {
  width: 100%;
  height: 100vh;
  position: relative;
}
.p-idx-slide__wrap::before {
  content: "";
  display: block;
  background-image: url(/resource/images/bg_mountain--white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 101%;
  aspect-ratio: 1366/100;
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 834px) {
  .p-idx-slide__wrap::before {
    background-image: url(/resource/images/bg_mountain--white--tb.svg);
    aspect-ratio: 820/100;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap::before {
    background-image: url(/resource/images/bg_mountain--white--sp.svg);
    aspect-ratio: 350/60;
    bottom: -3px;
  }
}

.p-idx-slide__catch {
  z-index: 3;
  position: absolute;
  left: 5.8565153734%;
  top: 26.0416666667%;
  display: block;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 834px) {
  .p-idx-slide__catch {
    top: 230px;
    left: 4.8780487805%;
    width: 73.1707317073%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__catch {
    top: 29.9850074963%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90.4%;
  }
}
.p-idx-slide__catch img {
  max-width: 100%;
}

.p-idx-slide__rec {
  width: 220px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 3;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (max-width: 834px) {
  .p-idx-slide__rec {
    right: 37px;
    bottom: 100px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__rec {
    width: 146px;
    right: 17px;
    bottom: 62px;
  }
}
.p-idx-slide__rec .circle {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: loop-rote 10s infinite linear;
          animation: loop-rote 10s infinite linear;
}
@-webkit-keyframes loop-rote {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loop-rote {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.p-idx-slide__rec .p-idx-slide__rec__txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.p-idx-slide__rec .p-idx-slide__rec__txt::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_win--white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  bottom: 0px;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__rec .p-idx-slide__rec__txt::before {
    width: 15px;
    height: 15px;
  }
}
.p-idx-slide__rec .p-idx-slide__rec__txt .txt-en {
  color: var(--sub);
  text-align: center;
  line-height: 1.15;
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__rec .p-idx-slide__rec__txt .txt-en {
    font-size: 11px;
  }
}
.p-idx-slide__rec .p-idx-slide__rec__txt .txt-ttl {
  text-align: center;
  font-weight: 600;
  width: 100%;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.4;
  font-size: 1.625rem;
  padding-bottom: 28px;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__rec .p-idx-slide__rec__txt .txt-ttl {
    font-size: 1rem;
    padding-bottom: 25px;
  }
}
.p-idx-slide__rec:hover, .p-idx-slide__rec:active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.p-idx-slide__items {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p-idx-slide__items img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.p-idx-slide__items .is-video {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
}
.p-idx-slide__items .is-video::before {
  content: "";
  display: block;
  background-color: #0f2330;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-idx-slide__items .is-video video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*　リードメッセージ
----------------------------------------------------------------- */
.p-idx-mess__wrap {
  padding: 3.75rem 0 8.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap {
    padding: 3.75rem 0 7.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap {
    padding: 2.5rem 0 3.75rem;
  }
}
.p-idx-mess__wrap .p-idx-mess__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area {
  width: 38.9814814815%;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .p-idx-mess__img-area {
    width: 47.311827957%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__img-area {
    width: 100%;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__ttl-img {
  margin-top: -9px;
  margin-left: -22px;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__ttl-img {
    margin-top: 0px;
    margin-left: -17px;
    max-width: 110%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__ttl-img {
    max-width: 292px;
    width: 85%;
    max-width: 100%;
    margin-left: 0px;
    margin-bottom: 2.5rem;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: 404px;
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img {
    width: 100%;
    height: auto;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img1 {
  margin-top: 5rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img1 {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img1 {
    margin-top: 1.875rem;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img1 img {
  border-radius: 10px;
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img1 img {
    border-radius: 5px;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img2 img {
  border-radius: 10px;
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img picture.img2 img {
    border-radius: 5px;
  }
}
.p-idx-mess__wrap .p-idx-mess__img-area .p-idx-mess__img img {
  width: 100%;
  height: auto;
}
.p-idx-mess__wrap .p-idx-mess__cont {
  width: 49.9074074074%;
  padding-left: 9.2592592593%;
  padding-top: 7.1875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .p-idx-mess__cont {
    width: 50%;
    padding-left: 5.376344086%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__cont {
    width: 100%;
    padding: 0;
    margin-top: 2.5rem;
  }
}
.p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__ttl {
  font-size: 1.75rem;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__ttl {
    font-size: 1.4375rem;
  }
}
.p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__txt {
  line-height: 2;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__txt {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__txt {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2;
  }
}
.p-idx-mess__wrap .p-idx-mess__cont .p-idx-mess__txt:first-of-type {
  margin-top: 0rem;
}
.p-idx-mess__wrap .c-block-bnr {
  margin-top: 10rem;
  padding: 4.375rem 5rem 5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .c-block-bnr {
    padding: 3.125rem 2.5rem 5rem;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .c-block-bnr {
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white {
  margin-bottom: 1.875rem;
  text-shadow: 0px 0px 10px rgba(var(--black-rgb), 0.6);
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white {
    margin-bottom: 1.25rem;
  }
}
.p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white .en {
  font-size: 1rem;
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white .en {
    font-size: 0.875rem;
  }
}
.p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white .ja {
  font-size: 2.625rem;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white .ja {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .c-block-bnr a h2.c-ttl-main--white .ja {
    font-size: 2.0625rem;
  }
}
.p-idx-mess__wrap .c-block-bnr a p {
  text-shadow: 0px 0px 10px rgba(var(--black-rgb), 0.6);
}
.p-idx-mess__wrap .c-block-bnr a .c-btn-main--white {
  bottom: 2.5rem;
  right: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .c-block-bnr a .c-btn-main--white {
    bottom: 1.875rem;
    right: 1.875rem;
  }
}

/* 事業紹介
----------------------------------------------------------------- */
.p-idx-busi__wrap {
  padding: 7.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__wrap {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__wrap {
    padding: 5rem 0;
  }
}
.p-idx-busi__wrap .c-btn-main--white {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-busi__wrap .c-btn-main--white a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: initial;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__wrap p {
    letter-spacing: 0.05em;
  }
}
.p-idx-busi__wrap .p-idx-busi__ttl {
  font-size: 1.75rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__wrap .p-idx-busi__ttl {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__wrap .p-idx-busi__ttl {
    font-size: 1.5rem;
  }
}

.p-idx-busi--sup__wrap {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-idx-busi--sup__wrap .c-flex--lg {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi--sup__wrap .c-flex--lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-busi--sup__wrap .c-flex--lg .c-flex-2clm {
    width: 47.311827957%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi--sup__wrap .c-flex--lg .c-flex-2clm {
    width: 100%;
  }
}
.p-idx-busi--sup__wrap .p-idx-busi--sup__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 442px;
}
@media screen and (max-width: 834px) {
  .p-idx-busi--sup__wrap .p-idx-busi--sup__img {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-idx-busi--sup__wrap .p-idx-busi--sup__img picture {
  height: 100%;
}
.p-idx-busi--sup__wrap .p-idx-busi--sup__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-idx-busi--pre__wrap {
  padding-top: 8.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-busi--pre__wrap {
    padding-top: 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi--pre__wrap {
    padding-top: 3.75rem;
  }
}
.p-idx-busi--pre__wrap .c-ttl-main--white {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-busi--pre__wrap .c-ttl-main--white {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi--pre__wrap .c-ttl-main--white {
    margin-bottom: 1.25rem;
  }
}

.p-idx-busi--const__wrap {
  padding-top: 7.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-busi--const__wrap {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi--const__wrap {
    padding-top: 5rem;
  }
}
.p-idx-busi--const__wrap .c-ttl-main--white {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-busi--const__wrap .c-ttl-main--white {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi--const__wrap .c-ttl-main--white {
    margin-bottom: 1.25rem;
  }
}

.p-idx-block-media__wrap,
.p-idx-block-media__wrap--re {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-block-media__wrap,
  .p-idx-block-media__wrap--re {
    gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap,
  .p-idx-block-media__wrap--re {
    gap: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-idx-block-media__wrap .p-idx-block-media__inner,
.p-idx-block-media__wrap--re .p-idx-block-media__inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap .p-idx-block-media__inner,
  .p-idx-block-media__wrap--re .p-idx-block-media__inner {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
}
.p-idx-block-media__wrap .p-idx-block-media__inner .p-idx-block-media__cont,
.p-idx-block-media__wrap--re .p-idx-block-media__inner .p-idx-block-media__cont {
  max-width: 510px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 834px) {
  .p-idx-block-media__wrap .p-idx-block-media__inner .p-idx-block-media__cont,
  .p-idx-block-media__wrap--re .p-idx-block-media__inner .p-idx-block-media__cont {
    max-width: 352px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap .p-idx-block-media__inner .p-idx-block-media__cont,
  .p-idx-block-media__wrap--re .p-idx-block-media__inner .p-idx-block-media__cont {
    max-width: initial;
    width: 90.4%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-block-media__wrap .p-idx-block-media__inner .p-idx-block-media__cont p,
  .p-idx-block-media__wrap--re .p-idx-block-media__inner .p-idx-block-media__cont p {
    margin-top: 1.25rem;
  }
}
.p-idx-block-media__wrap .p-idx-block-media__img,
.p-idx-block-media__wrap--re .p-idx-block-media__img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-idx-block-media__wrap .p-idx-block-media__img,
  .p-idx-block-media__wrap--re .p-idx-block-media__img {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial;
    height: 414px;
    width: 49.8721227621%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap .p-idx-block-media__img,
  .p-idx-block-media__wrap--re .p-idx-block-media__img {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial;
    height: 221px;
    width: 95.2%;
    border-radius: 10px 0 0 10px;
    margin-right: 0;
    margin-left: auto;
  }
}
.p-idx-block-media__wrap .p-idx-block-media__img picture,
.p-idx-block-media__wrap--re .p-idx-block-media__img picture {
  height: 100%;
}
.p-idx-block-media__wrap .p-idx-block-media__img picture img,
.p-idx-block-media__wrap--re .p-idx-block-media__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.p-idx-block-media__wrap--re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .p-idx-block-media__wrap--re {
    margin-right: 4.6341463415%;
    margin-left: 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap--re {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-idx-block-media__wrap--re .p-idx-block-media__inner .p-idx-block-media__cont {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap--re .p-idx-block-media__inner .p-idx-block-media__cont {
    margin-right: auto;
    margin-left: auto;
  }
}
.p-idx-block-media__wrap--re .p-idx-block-media__img {
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-block-media__wrap--re .p-idx-block-media__img {
    border-radius: 0 10px 10px 0;
    margin-right: auto;
    margin-left: 0;
  }
}

.p-idx-busi__inner {
  padding-top: 7.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__inner {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__inner {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-busi__inner .c-flex--lg {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__inner .c-flex--lg {
    gap: 5rem;
  }
}
.p-idx-busi__inner .c-flex--lg > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 1.875rem) / 2);
      -ms-flex: 0 0 calc((100% - 1.875rem) / 2);
          flex: 0 0 calc((100% - 1.875rem) / 2);
  min-width: 0;
}
.p-idx-busi__inner .c-ttl-main--white {
  margin-bottom: 0rem;
}
.p-idx-busi__inner .c-ttl-main--white .en {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__inner .c-ttl-main--white .en {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__inner .c-ttl-main--white .en {
    font-size: 14px;
  }
}
.p-idx-busi__inner .c-ttl-main--white .ja {
  font-size: 2.25rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__inner .c-ttl-main--white .ja {
    font-size: 1.9375rem;
    letter-spacing: 0.015em;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__inner .c-ttl-main--white .ja {
    font-size: 1.75rem;
    letter-spacing: 0em;
  }
}
.p-idx-busi__inner .c-btn-main--white {
  margin-top: 30px;
}
@media screen and (max-width: 460px) {
  .p-idx-busi__inner .c-btn-main--white {
    margin-top: 20px;
  }
}

/* 施工実績
----------------------------------------------------------------- */
.p-idx-works__wrap {
  padding: 7.5rem 0;
}
@media screen and (max-width: 834px) {
  .p-idx-works__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .c-btn-main {
    margin-top: 5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .c-btn-main a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-idx-works__wrap .swiper.idx-works-swiper {
  overflow: visible;
}
.p-idx-works__wrap .swiper.idx-works-swiper .swiper-wrapper {
  overflow: visible;
}
.p-idx-works__wrap .swiper.idx-works-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.p-idx-works__wrap .swiper.idx-works-swiper .p-idx-works-img {
  aspect-ratio: 420/380;
  height: auto;
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.p-idx-works__wrap .swiper.idx-works-swiper .p-idx-works-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-works__wrap .swiper.idx-works-swiper .p-idx-works-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  padding: 20px;
  align-items: center;
}
.p-idx-works__wrap .swiper.idx-works-swiper .p-idx-works-info .cat {
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  background-color: var(--whitesmoke);
  color: var(--main);
  padding: 7px 10px 8px;
  border-radius: 50px;
}
.p-idx-works__wrap .swiper.idx-works-swiper .p-idx-works-info .name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-works__wrap .swiper.idx-works-swiper a:hover .p-idx-works-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-idx-works__wrap .swiper.idx-works-swiper a:hover .p-idx-works-info .cat {
  color: var(--hover);
}
.p-idx-works__wrap .swiper.idx-works-swiper a:hover .name {
  color: var(--hover);
}
.p-idx-works__wrap .p-idx-works-slide__wrap {
  position: relative;
  padding-bottom: 110px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap {
    padding-bottom: 30px;
  }
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination-bullet {
  margin: 0 4px;
  background-color: rgba(var(--whitesmoke-rgb), 1);
  opacity: 1;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination {
  width: auto;
  bottom: 20px;
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination {
    bottom: -20px;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination .swiper-pagination-bullet {
  margin: 0 6px;
  background-color: var(--white);
  opacity: 1;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--hover);
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next,
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev {
  z-index: 2;
  width: 50px;
  height: 50px;
  display: block;
  background: initial;
  top: auto;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next,
  .p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
    bottom: auto;
    top: 160px;
  }
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next:after,
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next::before,
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow--main.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next:hover:after,
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev:hover:after {
  background-color: var(--hover);
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next:hover::before,
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next {
  right: 0px;
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-next {
    right: -5px;
  }
}
.p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev {
  right: 60px;
  left: auto;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 460px) {
  .p-idx-works__wrap .p-idx-works-slide__wrap .swiper-button-prev {
    left: -5px;
  }
}

/* 企業情報
----------------------------------------------------------------- */
.p-idx-company__wrap {
  padding: 7.5rem 0 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-company__wrap .p-idx-company-bnr,
.p-idx-company__wrap .p-idx-company-bnr--sm {
  width: 100%;
  height: 360px;
  padding: 5.78125rem 5rem;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .p-idx-company-bnr,
  .p-idx-company__wrap .p-idx-company-bnr--sm {
    height: 262px;
    padding: 3.234375rem 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr,
  .p-idx-company__wrap .p-idx-company-bnr--sm {
    height: 337px;
    padding: 3.21875rem 1.25rem;
  }
}
.p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white,
.p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white {
  margin-bottom: 1.875rem;
}
.p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white .en,
.p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .en {
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white .en,
  .p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white .en,
  .p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .en {
    font-size: 14px;
  }
}
.p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white .ja,
.p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .ja {
  font-size: 2.625rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white .ja,
  .p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .ja {
    font-size: 2.375rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr a .c-ttl-main--white .ja,
  .p-idx-company__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .ja {
    font-size: 2.0625rem;
    letter-spacing: 0em;
  }
}
.p-idx-company__wrap .p-idx-company-bnr a .c-flex,
.p-idx-company__wrap .p-idx-company-bnr--sm a .c-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr a .c-flex,
  .p-idx-company__wrap .p-idx-company-bnr--sm a .c-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 30px;
  }
}
.p-idx-company__wrap .p-idx-company-bnr a picture,
.p-idx-company__wrap .p-idx-company-bnr--sm a picture {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.p-idx-company__wrap .p-idx-company-bnr a picture img,
.p-idx-company__wrap .p-idx-company-bnr--sm a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.p-idx-company__wrap .p-idx-company-bnr a:hover picture img,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-idx-company__wrap .p-idx-company-bnr a:hover .c-btn-main--white .line::before,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover .c-btn-main--white .line::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-idx-company__wrap .p-idx-company-bnr a:hover .c-btn-main--white .txt,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover .c-btn-main--white .txt {
  color: var(--hover);
}
.p-idx-company__wrap .p-idx-company-bnr a:hover .c-btn-main--white .btn,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover .c-btn-main--white .btn {
  -webkit-transform: scale(1.09230769);
          transform: scale(1.09230769);
  background-color: var(--hover);
}
.p-idx-company__wrap .p-idx-company-bnr a:hover .c-btn-main--white .btn::before,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover .c-btn-main--white .btn::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: btn-arrow 0.4s ease;
          animation: btn-arrow 0.4s ease;
}
.p-idx-company__wrap .p-idx-company-bnr a:hover .c-btn-main--white .c-btn-main__inner .txt,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover .c-btn-main--white .c-btn-main__inner .txt {
  color: var(--white);
}
.p-idx-company__wrap .p-idx-company-bnr a:hover .c-btn-main--white .c-btn-main__inner .btn::before,
.p-idx-company__wrap .p-idx-company-bnr--sm a:hover .c-btn-main--white .c-btn-main__inner .btn::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 326px;
  padding: 2.5rem;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm {
    padding: 2.5rem 30px;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm {
    padding: 2.5rem 20px;
    height: 337px;
  }
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white {
  margin-bottom: 1.25rem;
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .en {
  font-size: 13px;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .en {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .en {
    font-size: 14px;
  }
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .ja {
  font-size: 2.25rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .ja {
    font-size: 1.9375rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-ttl-main--white .ja {
    font-size: 2.0625rem;
    letter-spacing: 0em;
  }
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-btn-main--white {
  margin-top: 1.875rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-company__wrap .p-idx-company-bnr--sm__wrap .p-idx-company-bnr--sm a .c-btn-main--white .c-btn-main__inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: initial;
}

/* 採用情報
----------------------------------------------------------------- */
.p-idx-rec__wrap {
  padding: 7.5rem 0 7.5rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-rec__wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/resource/images/idx_rec_bg.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 1366px auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1367px) {
  .p-idx-rec__wrap::before {
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 550px;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap::before {
    height: 400px;
    width: 100%;
    background-image: url(/resource/images/idx_rec_bg--tb.svg);
    background-size: cover;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap::before {
    background-image: url(/resource/images/idx_rec_bg--sp.svg);
    background-size: cover;
    z-index: 1;
    height: 420px;
  }
}
.p-idx-rec__wrap .c-ttl-main {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .c-ttl-main {
    margin-bottom: 1.875rem;
  }
}
.p-idx-rec__wrap .c-ttl-main .ja {
  color: var(--rec);
}
.p-idx-rec__wrap .c-btn-main--win a .line::before {
  background-color: var(--rec);
}
.p-idx-rec__wrap .c-btn-main--win a .txt {
  color: var(--rec);
}
.p-idx-rec__wrap .c-btn-main--win a .btn {
  background-color: var(--rec);
}
.p-idx-rec__wrap .c-btn-main--win a:hover .line::before {
  background-color: var(--hover);
}
.p-idx-rec__wrap .c-btn-main--win a:hover .txt {
  color: var(--hover);
}
.p-idx-rec__wrap .c-btn-main--win a:hover .btn {
  background-color: var(--hover);
}
.p-idx-rec__wrap .p-idx-rec__img-area {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img-area {
    height: auto;
  }
}
.p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 47.803806735%;
  height: 404px;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img {
    width: 47.5609756098%;
    height: 414px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img {
    width: 95.2%;
    height: 221px;
    position: relative;
    top: auto;
    left: auto;
    right: 0;
    margin-left: auto;
    margin-right: 0;
    margin-top: 2.5rem;
  }
}
.p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img picture {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img picture {
    border-radius: 20px 0 0 20px;
  }
}
.p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img picture img {
  width: 100%;
  height: 100%;
  -o-object-position: left;
     object-position: left;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img .tree {
  position: absolute;
  left: 5.7315233786%;
  top: -85px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img .tree {
    top: -63px;
    right: 14.8717948718%;
    width: 110px;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img .tree {
    top: -40px;
    right: 15.2%;
    width: 90px;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont {
  max-width: 47.2222222222%;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont {
    max-width: 47.1774193548%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__cont {
    max-width: initial;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .c-btn-main--win {
  margin-top: 3.75rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-rec__wrap .p-idx-rec__cont .c-btn-main--win a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont .c-btn-main--win {
    margin-top: 1.875rem;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__cont__ttl {
  font-size: 1.75rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__cont__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__cont__ttl {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__cont__ttl::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_rec_ttl.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 35px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 11px;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__cont__ttl::before {
    width: 30px;
    top: 10px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__cont__ttl::before {
    width: 28px;
    height: 19px;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .c-btn-main--win a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: initial;
}
.p-idx-rec__wrap .p-idx-rec-movie__wrap {
  margin-top: 10rem;
  background-color: var(--white);
  padding: 2.5rem 8.125rem 2.5rem 6.25rem;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap {
    margin-top: 5rem;
    padding: 30px 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap {
    padding: 1.875rem 20px 30px;
    z-index: 5;
  }
}
.p-idx-rec__wrap .p-idx-rec-movie__wrap .c-flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap .c-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap .c-flex .c-btn-main--win {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont .p-idx-rec-movie__ttl {
  position: relative;
  font-size: 1.75rem;
  padding-left: 3rem;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont .p-idx-rec-movie__ttl {
    padding-left: 2.5rem;
  }
}
.p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont .p-idx-rec-movie__ttl::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_rec_movie.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 8px;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont .p-idx-rec-movie__ttl::before {
    width: 35px;
    height: 21px;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont .p-idx-rec-movie__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont .p-idx-rec-movie__ttl {
    font-size: 1.5rem;
  }
}
.p-idx-rec__wrap .p-idx-rec-movie__wrap .p-idx-rec-movie__cont p {
  margin-top: 0.9375rem;
}
.p-idx-rec__wrap .p-idx-rec__img__kirara {
  position: absolute;
  top: -270px;
  right: 0;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img__kirara {
    top: -210px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__img__kirara {
    top: -200px;
  }
}
.p-idx-rec__wrap .p-idx-rec__img__kirara .hukidashi {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--rec);
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  padding: 10px 20px 14px;
  position: relative;
  background-color: var(--white);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 20px;
  margin-bottom: 5px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img__kirara .hukidashi {
    font-size: 14px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__img__kirara .hukidashi {
    border-radius: 15px;
    font-size: 11px;
    padding: 12px 10px;
  }
}
.p-idx-rec__wrap .p-idx-rec__img__kirara .hukidashi::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 17px;
  height: 13px;
  position: absolute;
  left: 50%;
  bottom: -13px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
}
.p-idx-rec__wrap .p-idx-rec__img__kirara .kirara {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img__kirara .kirara {
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__img__kirara .kirara {
    width: 90px;
    height: auto;
  }
}

/* お知らせ
----------------------------------------------------------------- */
.p-idx-news__wrap {
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-news__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-news__wrap {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-news__wrap .c-btn-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-news__wrap .c-btn-main a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-idx-news__wrap .c-ttl-main {
  margin-bottom: 1.875rem;
}

.p-idx-newslist__wrap {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 9.2592592593%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap {
    gap: 9.756097561%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-newslist__wrap {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.75rem;
  }
}
.p-idx-newslist__wrap .p-news__nav {
  min-width: 190px;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap .p-news__nav {
    min-width: 160px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-newslist__wrap .p-news__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 24px;
  }
}
.p-idx-newslist__wrap .p-idx-newslist__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  margin-left: 0;
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article {
  padding: 1.25rem;
  margin-top: 1.875rem;
  border-radius: 10px;
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article:first-child {
  margin-top: 0;
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a {
  gap: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a {
    gap: 20px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__tmb {
  border-radius: 8px;
  height: 189.97px;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__tmb {
    height: 116.78px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__tmb {
    height: 157.28px;
    width: 100%;
  }
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__cont {
  padding-top: 1.25rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__cont {
    padding-top: 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__cont {
    width: 100%;
    display: block;
  }
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__cont .p-news-article__info-flex .cat {
  padding: 5px 12px 7px;
}
@media screen and (max-width: 460px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__cont .p-news-article__info-flex .cat {
    padding: 5px 8px 6px;
  }
}
.p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__ttl {
  font-size: 1.1875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap .p-idx-newslist__cont .p-news-article a .p-news-article__ttl {
    font-size: 1rem;
  }
}

/* お問い合わせエリア
----------------------------------------------------------------- */
.p-idx-contact__wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: -webkit-image-set(url(/resource/images/idx_contact.webp) type("image/webp"), url(/resource/images/idx_contact.jpg) type("image/jpeg"));
  background-image: image-set(url(/resource/images/idx_contact.webp) type("image/webp"), url(/resource/images/idx_contact.jpg) type("image/jpeg"));
  padding: 6.25rem 0 13.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap {
    padding: 3.75rem 0 6.25rem;
  }
}
.p-idx-contact__wrap::before {
  content: "";
  display: block;
  background-image: url(/resource/images/bg_mountain--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 101%;
  aspect-ratio: 1366/100;
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-idx-contact__wrap .p-idx-contact__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap .p-idx-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail {
  width: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.875rem 2.5rem;
  background-color: var(--white);
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box,
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail {
    padding: 1.875rem 20px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box,
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail {
    width: 100%;
    padding: 1.875rem 20px;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__ttl,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .p-idx-contact__ttl {
  text-align: center;
  font-size: 1.1875rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__ttl,
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .p-idx-contact__ttl {
    font-size: 1rem;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .txt-tel {
  margin-top: 5px;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel,
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .txt-tel {
    margin-top: 5px;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel a,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .txt-tel a {
  font-size: 3.375rem;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel a,
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .txt-tel a {
    font-size: 2.25rem;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel__info,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .txt-tel__info {
  margin-top: 10px;
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__box__mailcard,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .p-idx-contact__box__mailcard {
  margin-top: 1.25rem;
  background-color: var(--whitesmoke);
  padding: 1.25rem 0;
  border-radius: 5px;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__box__mailcard,
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .p-idx-contact__box__mailcard {
    padding: 12px 0px;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__box__mailcard .c-btn-main a,
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail .p-idx-contact__box__mailcard .c-btn-main a {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: initial;
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail {
  padding: 1.875rem 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box--mail {
    padding: 1.875rem 20px;
  }
}

/* ==========================================================================
年輪
=========================================================================*/
.p-idx-mess__wrap,
.p-idx-busi__wrap,
.p-idx-busi--pre__wrap,
.p-idx-company__wrap,
.p-idx-news__wrap {
  position: relative;
}

/*　idx
----------------------------------------------------------------- */
.p-idx-mess__wrap .is-annual {
  position: absolute;
  top: 24px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 466px));
          transform: translateX(calc(-50% - 466px));
  z-index: 1;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-idx-mess__wrap .is-annual {
    width: 650px;
    left: -22.4390243902%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mess__wrap .is-annual {
    top: -21px;
    width: 450px;
    left: -31.7333333333%;
  }
}

.p-idx-busi__wrap .is-annual {
  position: absolute;
  bottom: -290px;
  left: -461px;
  opacity: 0.06;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__wrap .is-annual {
    width: 600px;
    height: auto;
    left: -31.8292682927%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__wrap .is-annual {
    left: -80%;
    bottom: -110px;
  }
}
.p-idx-busi__wrap .p-idx-busi--pre__wrap .is-annual {
  position: absolute;
  top: -107px;
  left: auto;
  bottom: auto;
  right: -409px;
  opacity: 0.06;
}
@media screen and (max-width: 834px) {
  .p-idx-busi__wrap .p-idx-busi--pre__wrap .is-annual {
    width: 600px;
    height: auto;
    right: -31.8292682927%;
    left: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-busi__wrap .p-idx-busi--pre__wrap .is-annual {
    left: auto;
    bottom: auto;
    right: -92%;
  }
}

.p-idx-company__wrap .is-annual {
  position: absolute;
  top: -358px;
  right: -303px;
  z-index: 1;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-idx-company__wrap .is-annual {
    width: 75.6097560976%;
    height: auto;
    right: -27.4390243902%;
    top: -258px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__wrap .is-annual {
    width: 133.3333333333%;
    top: -262px;
    right: -56.2666666667%;
  }
}

.p-idx-news__wrap .is-annual {
  position: absolute;
  bottom: -212px;
  left: -168px;
  z-index: 1;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-idx-news__wrap .is-annual {
    width: 600px;
    left: -186px;
    bottom: -35px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-news__wrap .is-annual {
    width: 400px;
    left: -151px;
    bottom: -96px;
  }
}

/* ==========================================================================
平方木材の想い
========================================================================== */
/* 年輪
----------------------------------------------------------------- */
.p-thou-his__wrap .c-block-ttl-media__wrap--re {
  position: relative;
}
.p-thou-his__wrap .c-block-ttl-media__wrap--re .is-annual {
  position: absolute;
  right: -212px;
  top: -387px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-thou-his__wrap .c-block-ttl-media__wrap--re .is-annual {
    width: 600px;
    height: auto;
    right: -25.8536585366%;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-his__wrap .c-block-ttl-media__wrap--re .is-annual {
    width: 400px;
    right: -33.8666666667%;
  }
}

.p-thou-gree__wrap {
  position: relative;
  overflow: hidden;
}
.p-thou-gree__wrap .is-annual {
  position: absolute;
  left: -421px;
  bottom: -343px;
}
@media screen and (max-width: 834px) {
  .p-thou-gree__wrap .is-annual {
    width: 800px;
    height: auto;
    left: -51.3414634146%;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-gree__wrap .is-annual {
    width: 600px;
    left: -80%;
  }
}

.p-thou-tree__wrap {
  position: relative;
  overflow: hidden;
}
.p-thou-tree__wrap > .is-annual {
  position: absolute;
  left: -405px;
  bottom: -253px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-thou-tree__wrap > .is-annual {
    width: 600px;
    height: auto;
    left: -24.3902439024%;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-tree__wrap > .is-annual {
    left: -80%;
  }
}
.p-thou-tree__wrap .c-block-media__wrap {
  position: relative;
}
.p-thou-tree__wrap .c-block-media__wrap .is-annual {
  position: absolute;
  right: -335px;
  top: -7px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-thou-tree__wrap .c-block-media__wrap .is-annual {
    width: 600px;
    right: -40.8536585366%;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-tree__wrap .c-block-media__wrap .is-annual {
    right: -60.5333333333%;
  }
}

/* ご挨拶
----------------------------------------------------------------- */
.p-thou-gree__wrap .c-block-media__wrap .c-block-media__img {
  height: auto;
}
.p-thou-gree__wrap .c-block-media__wrap .c-block-media__img picture {
  height: 497px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 834px) {
  .p-thou-gree__wrap .c-block-media__wrap .c-block-media__img picture {
    height: 292.36px;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-gree__wrap .c-block-media__wrap .c-block-media__img picture {
    height: 267.62px;
  }
}
.p-thou-gree__wrap .c-block-media__wrap .c-block-media__img .p-thou-gree__rep {
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-thou-gree__wrap .c-block-media__wrap .c-block-media__img .p-thou-gree__rep {
    letter-spacing: 0em;
    margin-top: 1.25rem;
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-gree__wrap .c-block-media__wrap .c-block-media__img .p-thou-gree__rep {
    margin-top: 10px;
    text-align: right;
    margin-right: 4.8%;
  }
}
.p-thou-gree__wrap .c-block-media__wrap .c-block-media__img .p-thou-gree__rep span {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  margin-right: 15px;
  margin-bottom: 7px;
  display: inline-block;
}
@media screen and (max-width: 460px) {
  .p-thou-gree__wrap .c-block-media__wrap .c-block-media__img .p-thou-gree__rep span {
    font-size: 0.875rem;
  }
}
.p-thou-gree__wrap .c-tb2 {
  position: relative;
  z-index: 2;
}
.p-thou-gree__wrap .c-tb2 tr th {
  width: 160px;
}
@media screen and (max-width: 460px) {
  .p-thou-gree__wrap .c-tb2 tr th {
    width: 100%;
  }
}
.p-thou-gree__wrap .c-tb2 tr td {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}

/* 木を活かし、木と生きていく
----------------------------------------------------------------- */
.p-thou-tree__wrap .p-thou-tree__img {
  height: 620px;
  width: 100%;
  aspect-ratio: 1080/620;
}
@media screen and (max-width: 834px) {
  .p-thou-tree__wrap .p-thou-tree__img {
    aspect-ratio: 744/480;
    height: 480px;
  }
}
@media screen and (max-width: 460px) {
  .p-thou-tree__wrap .p-thou-tree__img {
    height: 324px;
    aspect-ratio: none;
    width: 100%;
  }
}
.p-thou-tree__wrap .p-thou-tree__img picture {
  height: 100%;
  margin: 0 auto;
}
.p-thou-tree__wrap .p-thou-tree__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.p-thou-tree__wrap .c-card-basic {
  margin-top: 5rem;
}
@media screen and (max-width: 460px) {
  .p-thou-tree__wrap .c-card-basic {
    margin-top: 3.75rem;
  }
}
.p-thou-tree__wrap .c-card-basic:first-child {
  margin-top: 0;
}

/* ==========================================================================
企業情報
========================================================================== */
/* 年輪
----------------------------------------------------------------- */
.p-com-outline__wrap {
  position: relative;
}
.p-com-outline__wrap .is-annual {
  position: absolute;
  right: -296px;
  bottom: -228px;
}
@media screen and (max-width: 834px) {
  .p-com-outline__wrap .is-annual {
    width: 650px;
    right: -22.4390243902%;
  }
}
@media screen and (max-width: 460px) {
  .p-com-outline__wrap .is-annual {
    width: 400px;
    right: -31.7333333333%;
  }
}

.p-com-projects__wrap {
  position: relative;
  overflow: hidden;
}
.p-com-projects__wrap .is-annual {
  position: absolute;
  left: -243px;
  top: -372px;
}
@media screen and (max-width: 834px) {
  .p-com-projects__wrap .is-annual {
    width: 650px;
    left: -22.4390243902%;
  }
}
@media screen and (max-width: 460px) {
  .p-com-projects__wrap .is-annual {
    width: 400px;
    left: -31.7333333333%;
  }
}

/* 採択事業
----------------------------------------------------------------- */
.p-com-projects__wrap .c-ttl-main {
  position: relative;
  z-index: 2;
}

/* マスコット
----------------------------------------------------------------- */
.p-com-mascot__wrap {
  gap: 5rem;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__wrap {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__wrap {
    gap: 3.75rem;
  }
}
.p-com-mascot__wrap .p-com-mascot__kirara {
  width: 46.2962962963%;
  max-height: 372px;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__wrap .p-com-mascot__kirara {
    width: 45.6989247312%;
    max-height: 340px;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__wrap .p-com-mascot__kirara {
    width: 74.6666666667%;
    max-height: initial;
    margin: auto;
  }
}
.p-com-mascot__wrap .p-com-mascot__kirara picture {
  height: 100%;
}
.p-com-mascot__wrap .p-com-mascot__kirara picture img {
  margin: auto;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-com-mascot__wrap .p-com-mascot__about {
  width: 46.2962962963%;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__wrap .p-com-mascot__about {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__wrap .p-com-mascot__about {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-com-mascot__wrap .p-com-mascot__about .p-com-mascot__about__ttl {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 1.875rem;
  color: var(--main);
  font-size: 2.5625rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__wrap .p-com-mascot__about .p-com-mascot__about__ttl {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__wrap .p-com-mascot__about .p-com-mascot__about__ttl {
    font-size: 2.0625rem;
  }
}
.p-com-mascot__wrap .p-com-mascot__about .p-com-mascot__about__ttl span {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  margin-bottom: 3px;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__wrap .p-com-mascot__about .p-com-mascot__about__ttl span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__wrap .p-com-mascot__about .p-com-mascot__about__ttl span {
    font-size: 0.875rem;
  }
}
.p-com-mascot__family {
  padding: 2.5rem;
  border-radius: 15px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__family {
    margin-top: 5rem;
    border-radius: 10px;
    padding: 2.5rem 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__family {
    padding: 1.875rem 1.25rem;
    margin-top: 3.75rem;
  }
}
.p-com-mascot__family .c-flex {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__family .c-flex {
    gap: 1.25rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__family .c-flex {
    gap: 1.875rem;
  }
}
.p-com-mascot__family .c-flex .p-com-mascot__family__ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--main);
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 500;
  width: 39%;
}
@media screen and (max-width: 834px) {
  .p-com-mascot__family .c-flex .p-com-mascot__family__ttl {
    font-size: 2.0625rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 460px) {
  .p-com-mascot__family .c-flex .p-com-mascot__family__ttl {
    font-size: 1.75rem;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    text-align: center;
  }
}
.p-com-mascot__family .c-flex .p-com-mascot__family__ttl span {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  margin-top: 10px;
}
.p-com-mascot__family .c-flex .p-com-mascot__family__img {
  width: 39%;
}
@media screen and (max-width: 460px) {
  .p-com-mascot__family .c-flex .p-com-mascot__family__img {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}

/* アクセス
----------------------------------------------------------------- */
.p-com-access__wrap--main .p-com-access__info {
  padding: 1.875rem 3.75rem;
  border-radius: 20px 20px 0 0;
  background-color: var(--white);
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--main .p-com-access__info {
    padding: 2.5rem;
    border-radius: 10px 10px 0 0;
  }
}
@media screen and (max-width: 460px) {
  .p-com-access__wrap--main .p-com-access__info {
    padding: 1.875rem 1.25rem;
  }
}
.p-com-access__wrap--main .p-com-access__info > p {
  font-size: 1.1875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  color: var(--main);
  font-weight: 500;
  width: 160px;
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--main .p-com-access__info > p {
    width: 60px;
  }
}
.p-com-access__wrap--main .p-com-access__info .p-com-access__info__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-com-access__wrap--main .p-com-access__info .p-com-access__info__cont p {
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 1rem;
}
.p-com-access__wrap--main .p-com-access__info .p-com-access__info__cont .txt-sm {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-com-access__wrap--main .p-com-access__wrap--main__img {
  margin-top: 20px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--main .p-com-access__wrap--main__img {
    border-radius: 0 0 10px 10px;
  }
}
@media screen and (max-width: 460px) {
  .p-com-access__wrap--main .p-com-access__wrap--main__img {
    margin-top: 10px;
  }
}

.p-com-access__wrap--sub {
  border-radius: 20px;
  padding: 2.5rem 3.75rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--sub {
    padding: 2.5rem 2.5rem;
    border-radius: 10px;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-com-access__wrap--sub {
    padding: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--sub .c-flex-allcenter {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-com-access__wrap--sub .p-com-access__wrap--sub__ttl {
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  color: var(--main);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--sub .p-com-access__wrap--sub__ttl {
    font-size: 1.625rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 460px) {
  .p-com-access__wrap--sub .p-com-access__wrap--sub__ttl {
    font-size: 1.5rem;
    letter-spacing: 0.005em;
    margin-bottom: 1.25rem;
  }
}
.p-com-access__wrap--sub .c-btn-main--win {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-com-access__wrap--sub .c-btn-main--win {
    margin-top: 2.5rem;
  }
}
.p-com-access__wrap--sub .c-btn-main--win a {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-com-access__map--lg iframe {
  border: none;
  margin-top: 10rem;
}
@media screen and (max-width: 834px) {
  .p-com-access__map--lg iframe {
    width: 100%;
    height: 408px;
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-com-access__map--lg iframe {
    height: 312px;
  }
}

/* ==========================================================================
施工実績
=========================================================================*/
/* 年輪の位置
----------------------------------------------------------------- */
.p-works__wrap {
  position: relative;
  padding-top: 7.5rem;
}
@media screen and (max-width: 834px) {
  .p-works__wrap {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-works__wrap {
    padding-top: 3.75rem;
  }
}
.p-works__wrap .is-annual--1 {
  position: absolute;
  right: -281px;
  top: 106px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-works__wrap .is-annual--1 {
    width: 600px;
    top: 70px;
    right: -24.3902439024%;
  }
}
@media screen and (max-width: 460px) {
  .p-works__wrap .is-annual--1 {
    top: 100px;
    right: -40.2666666667%;
  }
}
.p-works__wrap .is-annual--2 {
  position: absolute;
  left: -311px;
  bottom: -40px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-works__wrap .is-annual--2 {
    width: 600px;
    left: -30.487804878%;
  }
}
@media screen and (max-width: 460px) {
  .p-works__wrap .is-annual--2 {
    left: -40.2666666667%;
  }
}

.p-works-single__wrap {
  position: relative;
  padding-top: 5rem;
}
@media screen and (max-width: 834px) {
  .p-works-single__wrap {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-works-single__wrap {
    padding-top: 2.5rem;
  }
}
.p-works-single__wrap .is-annual {
  position: absolute;
  left: -157px;
  top: 65px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-works-single__wrap .is-annual {
    width: 600px;
    left: -19.1463414634%;
  }
}
@media screen and (max-width: 460px) {
  .p-works-single__wrap .is-annual {
    width: 400px;
    left: -151px;
    top: 20px;
  }
}

/*　レイアウト
----------------------------------------------------------------- */
.p-works__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7.4074074074%;
}
@media screen and (max-width: 834px) {
  .p-works__layout {
    gap: 5.376344086%;
  }
}
@media screen and (max-width: 460px) {
  .p-works__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-works__layout .p-works__cont {
  height: 100%;
  -webkit-flex-basis: 70.3703703704%;
      -ms-flex-preferred-size: 70.3703703704%;
          flex-basis: 70.3703703704%;
}
@media screen and (max-width: 834px) {
  .p-works__layout .p-works__cont {
    -webkit-flex-basis: 64.5161290323%;
        -ms-flex-preferred-size: 64.5161290323%;
            flex-basis: 64.5161290323%;
  }
}
.p-works__layout aside {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 460px) {
  .p-works__layout aside {
    margin-top: 3.75rem;
  }
}
.p-works__layout aside .p-news__nav {
  min-width: initial;
}
.p-works__layout aside .c-ttl-sub {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 460px) {
  .p-works__layout aside .c-ttl-sub {
    margin-bottom: 3.125rem;
  }
}
.p-works__layout aside .c-list-dot2 li {
  margin-bottom: 1.25rem;
}
.p-works__layout aside .c-list-dot2 li:last-of-type {
  margin-bottom: 0;
}
.p-works__layout aside .c-list-dot2 li a:hover {
  color: var(--main);
}

/* カテゴリーのスタイル
----------------------------------------------------------------- */
.p-works__cat {
  margin-bottom: 15px;
  font-weight: 0;
  line-height: 1;
  color: var(--main);
  background-color: var(--whitesmoke);
  padding: 7px 10px 8px;
  font-size: 1.1875rem;
  border-radius: 30px;
  letter-spacing: 0.08em;
  font-family: "Shippori Mincho", serif;
  display: inline-block;
}
@media screen and (max-width: 834px) {
  .p-works__cat {
    font-size: 1rem;
    padding: 6px 10px 7px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 460px) {
  .p-works__cat {
    padding: 5px 10px 6px;
  }
}

.p-works-single__wrap .p-works__ttl {
  font-size: 2.25rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .p-works-single__wrap .p-works__ttl {
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-works-single__wrap .p-works__ttl {
    font-size: 1.75rem;
    letter-spacing: 0em;
  }
}
.p-works-single__wrap .c-slide-tmb__wrap .swiper.tmbslide_main {
  aspect-ratio: 1080/540;
  overflow: hidden;
}
.p-works-single__wrap .c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
}
.p-works-single__wrap .c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 460px) {
  .p-works-single__wrap .c-slide-tmb__wrap .swiper-button-next,
  .p-works-single__wrap .c-slide-tmb__wrap .swiper-button-prev {
    top: 65px;
  }
}
.p-works-single__wrap .swiper.tmbslide_tmb {
  margin-top: 40px;
  height: auto;
}
@media screen and (max-width: 460px) {
  .p-works-single__wrap .swiper.tmbslide_tmb {
    margin-top: 20px;
  }
}
.p-works-single__wrap .swiper.tmbslide_tmb .swiper-wrapper .swiper-slide {
  height: auto;
  cursor: pointer;
}
.p-works-single__wrap .swiper.tmbslide_tmb .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==========================================================================
事業紹介
========================================================================== */
.p-facility .l-container,
.p-facility .c-block-media__wrap {
  position: relative;
  z-index: 2;
}

/* 歩み
----------------------------------------------------------------- */
.p-busi-step-pre__wrap {
  position: relative;
}
.p-busi-step-pre__wrap .is-annual {
  position: absolute;
  left: -193px;
  top: 52px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-busi-step-pre__wrap .is-annual {
    width: 650px;
    left: -23.5365853659%;
  }
}
@media screen and (max-width: 460px) {
  .p-busi-step-pre__wrap .is-annual {
    width: 450px;
    left: -151px;
    top: 20px;
  }
}

.p-busi-step-mate__wrap {
  position: relative;
}
.p-busi-step-mate__wrap .is-annual {
  position: absolute;
  right: -396px;
  top: 0px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-busi-step-mate__wrap .is-annual {
    width: 650px;
    right: -27.4390243902%;
  }
}
@media screen and (max-width: 460px) {
  .p-busi-step-mate__wrap .is-annual {
    width: 450px;
    right: -151px;
  }
}

/* ==========================================================================
プレカット
========================================================================== */
.p-precut-conventional__wrap {
  position: relative;
  overflow: hidden;
}
.p-precut-conventional__wrap .is-annual {
  position: absolute;
  right: -283px;
  top: -548px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-precut-conventional__wrap .is-annual {
    width: 600px;
    top: -300px;
    right: -34.512195122%;
  }
}
@media screen and (max-width: 460px) {
  .p-precut-conventional__wrap .is-annual {
    width: 450px;
    right: -151px;
    top: -200px;
  }
}

.p-precut-truss__wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-precut-truss__wrap .c-block-media__wrap--re,
.p-precut-truss__wrap .c-ttl-sub {
  position: relative;
  z-index: 3;
}
.p-precut-truss__wrap .is-annual {
  position: absolute;
  left: -167px;
  bottom: -303px;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-precut-truss__wrap .is-annual {
    width: 600px;
    left: -20.3658536585%;
  }
}
@media screen and (max-width: 460px) {
  .p-precut-truss__wrap .is-annual {
    width: 450px;
    left: -151px;
    bottom: -100px;
  }
}

/* ==========================================================================
中大規模木造施設
========================================================================== */
.p-facility .c-block-media__ttl--md {
  color: var(--black);
}

.p-facility-wooden__wrap {
  position: relative;
  overflow: hidden;
}
.p-facility-wooden__wrap .is-annual {
  position: absolute;
  right: -272px;
  top: 188px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-facility-wooden__wrap .is-annual {
    width: 600px;
    right: -33.1707317073%;
  }
}
@media screen and (max-width: 460px) {
  .p-facility-wooden__wrap .is-annual {
    width: 450px;
    right: -150px;
  }
}

.p-facility-wooden__inner__wrap {
  position: relative;
}
.p-facility-wooden__inner__wrap .is-annual {
  position: absolute;
  left: -307px;
  top: -188px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-facility-wooden__inner__wrap .is-annual {
    width: 600px;
    left: -37.4390243902%;
  }
}
@media screen and (max-width: 460px) {
  .p-facility-wooden__inner__wrap .is-annual {
    width: 450px;
    left: -150px;
  }
}
.p-facility-wooden__inner__wrap .c-block-media__ttl--md {
  color: var(--black);
}

.p-facility-material--akoya__wrap {
  position: relative;
}
.p-facility-material--akoya__wrap .is-annual {
  position: absolute;
  right: -357px;
  top: -236px;
}
@media screen and (max-width: 834px) {
  .p-facility-material--akoya__wrap .is-annual {
    width: 600px;
    right: -43.5365853659%;
  }
}
@media screen and (max-width: 460px) {
  .p-facility-material--akoya__wrap .is-annual {
    width: 450px;
    right: -150px;
  }
}

.p-facility-material--thermo__wrap {
  position: relative;
}
.p-facility-material--thermo__wrap .is-annual {
  position: absolute;
  left: -251px;
  top: 255px;
}
@media screen and (max-width: 834px) {
  .p-facility-material--thermo__wrap .is-annual {
    width: 600px;
    left: -30.6097560976%;
  }
}
@media screen and (max-width: 460px) {
  .p-facility-material--thermo__wrap .is-annual {
    width: 450px;
    left: -150px;
    top: 400px;
  }
}

/* ==========================================================================
住宅資材・設備
========================================================================== */
.p-materials .c-block-media__ttl--md {
  color: var(--black);
}

/* 年輪の位置
----------------------------------------------------------------- */
.p-materials-wood__wrap {
  position: relative;
  overflow: hidden;
}
.p-materials-wood__wrap .is-annual {
  position: absolute;
  left: -205px;
  top: 488px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-materials-wood__wrap .is-annual {
    width: 600px;
    left: -25%;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-wood__wrap .is-annual {
    width: 450px;
    top: 600px;
    left: -40.2666666667%;
  }
}

.p-materials-equipment__wrap {
  position: relative;
  overflow: hidden;
}
.p-materials-equipment__wrap .is-annual {
  position: absolute;
  right: -188px;
  top: 560px;
}
@media screen and (max-width: 834px) {
  .p-materials-equipment__wrap .is-annual {
    width: 600px;
    right: -22.9268292683%;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-equipment__wrap .is-annual {
    width: 450px;
    top: 600px;
    right: -40.2666666667%;
  }
}

.p-materials-exterior__wrap {
  position: relative;
  overflow: hidden;
}
.p-materials-exterior__wrap .is-annual--1 {
  position: absolute;
  left: -307px;
  top: 427px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-materials-exterior__wrap .is-annual--1 {
    width: 600px;
    left: -37.4390243902%;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-exterior__wrap .is-annual--1 {
    width: 450px;
    top: 800px;
    left: -40.2666666667%;
  }
}
.p-materials-exterior__wrap .is-annual--2 {
  position: absolute;
  right: -350px;
  bottom: 618px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-materials-exterior__wrap .is-annual--2 {
    width: 600px;
    right: -42.6829268293%;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-exterior__wrap .is-annual--2 {
    bottom: 1200px;
    width: 450px;
    right: -40.2666666667%;
  }
}

/* 
----------------------------------------------------------------- */
.p-materials-table tr th {
  width: 140px;
  padding-left: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-materials-table tr th {
    width: 120px;
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-table tr th {
    width: 100%;
    padding: 20px;
    padding-bottom: 0;
  }
}
.p-materials-table tr td {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 460px) {
  .p-materials-table tr td {
    padding-top: 8px;
    padding-bottom: 20px;
  }
}

.p-materials-list_wrap {
  padding: 3.75rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.75rem 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .p-materials-list_wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem;
    gap: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-list_wrap {
    padding: 1.875rem 1.25rem;
    gap: 0.9375rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 834px) {
  .p-materials-list_wrap.--cat {
    gap: 2.5rem 1.875rem;
  }
}
.p-materials-list_wrap > ul,
.p-materials-list_wrap div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 834px) {
  .p-materials-list_wrap > ul.--wide,
  .p-materials-list_wrap div.--wide {
    grid-column: span 1;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-list_wrap > ul.--wide,
  .p-materials-list_wrap div.--wide {
    grid-column: span 1;
  }
}
.p-materials-list_wrap > ul li,
.p-materials-list_wrap div li {
  margin-top: 15px;
  position: relative;
  padding-left: 10px;
  line-height: 1.4;
}
.p-materials-list_wrap > ul li:first-child,
.p-materials-list_wrap div li:first-child {
  margin-top: 0;
}
.p-materials-list_wrap > ul li::before,
.p-materials-list_wrap div li::before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--main);
  width: 5px;
  height: 5px;
  border-radius: 100px;
  left: 0;
  top: 9.5px;
}
.p-materials-list_wrap > ul .cat-ttl,
.p-materials-list_wrap div .cat-ttl {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .p-materials-list_wrap > ul .cat-ttl,
  .p-materials-list_wrap div .cat-ttl {
    margin-bottom: 0.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-materials-list_wrap > ul .cat-ttl,
  .p-materials-list_wrap div .cat-ttl {
    font-size: 1.1875rem;
    min-height: initial;
    margin-bottom: 1rem;
    margin-top: 1.25rem;
  }
  .p-materials-list_wrap > ul .cat-ttl:last-child,
  .p-materials-list_wrap div .cat-ttl:last-child {
    margin-bottom: 0;
  }
}

/* ==========================================================================
お客様サポート
=========================================================================*/
/* 年輪の位置
----------------------------------------------------------------- */
.p-support-factory__wrap {
  position: relative;
  overflow: hidden;
}
.p-support-factory__wrap .is-annual {
  position: absolute;
  right: -283px;
  top: -450px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-support-factory__wrap .is-annual {
    width: 600px;
    top: -300px;
    right: -34.512195122%;
  }
}
@media screen and (max-width: 460px) {
  .p-support-factory__wrap .is-annual {
    right: -40.2666666667%;
    width: 450px;
    top: -200px;
  }
}

.p-support-structural__wrap {
  position: relative;
  overflow: hidden;
}
.p-support-structural__wrap .is-annual {
  position: absolute;
  left: -167px;
  bottom: -310px;
}
@media screen and (max-width: 834px) {
  .p-support-structural__wrap .is-annual {
    width: 600px;
    left: -20.3658536585%;
  }
}
@media screen and (max-width: 460px) {
  .p-support-structural__wrap .is-annual {
    left: -40.2666666667%;
    width: 450px;
    bottom: -200px;
  }
}

.p-support-gunma__wrap {
  position: relative;
  overflow: hidden;
}
.p-support-gunma__wrap .is-annual {
  position: absolute;
  right: -359px;
  top: 141px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-support-gunma__wrap .is-annual {
    width: 600px;
    top: 200px;
    right: -27.4390243902%;
  }
}
@media screen and (max-width: 460px) {
  .p-support-gunma__wrap .is-annual {
    right: -40.2666666667%;
    width: 450px;
    top: auto;
    bottom: -200px;
  }
}

.p-support-green__wrap {
  position: relative;
  overflow: hidden;
}
.p-support-green__wrap .l-container,
.p-support-green__wrap .c-block-media__wrap {
  position: relative;
  z-index: 3;
}
.p-support-green__wrap .is-annual {
  position: absolute;
  left: -317px;
  top: 155px;
  z-index: 1;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-support-green__wrap .is-annual {
    width: 600px;
    left: -38.6585365854%;
  }
}
@media screen and (max-width: 460px) {
  .p-support-green__wrap .is-annual {
    left: -40.2666666667%;
    width: 450px;
    top: auto;
    bottom: -200px;
  }
}

/* コンポーネントとは差分あり ここで調整
----------------------------------------------------------------- */
@media screen and (max-width: 460px) {
  .p-support .l-sec-lead .l-sec-lead__img picture img {
    -o-object-position: 76%;
       object-position: 76%;
  }
}
.p-support .c-block-media__wrap .c-block-media__ttl--md,
.p-support .c-block-media__wrap--re .c-block-media__ttl--md {
  color: var(--black) !important;
}
.p-support .c-block-media__wrap .c-block-media__img-area,
.p-support .c-block-media__wrap--re .c-block-media__img-area {
  min-height: 404px;
}
@media screen and (max-width: 834px) {
  .p-support .c-block-media__wrap .c-block-media__img-area,
  .p-support .c-block-media__wrap--re .c-block-media__img-area {
    min-height: 293px;
  }
}
@media screen and (max-width: 460px) {
  .p-support .c-block-media__wrap .c-block-media__img-area,
  .p-support .c-block-media__wrap--re .c-block-media__img-area {
    min-height: 211px;
  }
}
.p-support .c-block-media__wrap .c-block-media__img-area .c-block-media__img,
.p-support .c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
  width: 47.8770131772%;
  height: 404px;
}
@media screen and (max-width: 834px) {
  .p-support .c-block-media__wrap .c-block-media__img-area .c-block-media__img,
  .p-support .c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
    width: 47.5609756098%;
    height: 293px;
  }
}
@media screen and (max-width: 460px) {
  .p-support .c-block-media__wrap .c-block-media__img-area .c-block-media__img,
  .p-support .c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
    width: 95.2%;
    height: 211px;
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: 0;
    margin-top: 2.5rem;
  }
}
.p-support .c-block-media__wrap .c-block-media__cont,
.p-support .c-block-media__wrap--re .c-block-media__cont {
  max-width: 47.2222222222%;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .p-support .c-block-media__wrap .c-block-media__cont,
  .p-support .c-block-media__wrap--re .c-block-media__cont {
    max-width: initial;
  }
}
@media screen and (max-width: 460px) {
  .p-support .c-block-media__wrap--re .c-block-media__img-area .c-block-media__img {
    margin-right: auto;
    margin-left: 0;
  }
}

/* ==========================================================================
ショールーム
========================================================================== */
.p-office .c-block-media__ttl--md {
  color: var(--black);
}
@media screen and (max-width: 460px) {
  .p-office .l-sec-lead__img picture img {
    -o-object-position: 18%;
       object-position: 18%;
  }
}

/* 群馬県産材へのこだわり
----------------------------------------------------------------- */
.p-office-commitment__wrap {
  position: relative;
}
.p-office-commitment__wrap .is-annual {
  position: absolute;
  left: -297px;
  top: 311px;
  opacity: 0.08;
}
@media screen and (max-width: 834px) {
  .p-office-commitment__wrap .is-annual {
    width: 600px;
    left: -28.0487804878%;
  }
}
@media screen and (max-width: 460px) {
  .p-office-commitment__wrap .is-annual {
    width: 450px;
    left: -151px;
  }
}

/* ==========================================================================
工場見学
=========================================================================*/
/* 「プレカット」 主な製造工程の流れ
----------------------------------------------------------------- */
.p-factory-flow__wrap {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
}
.p-factory-flow__wrap::before {
  content: "";
  display: block;
  background-color: #D5DFDC;
  width: 30px;
  height: 317px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  right: -90px;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-factory-flow__wrap::before {
    right: -28px;
    width: 16px;
    height: 320px;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-flow__wrap::before {
    width: 30px;
    height: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 20px;
  }
}

.p-factory-flow--1,
.p-factory-flow--2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 2.5rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-factory-flow--1,
  .p-factory-flow--2 {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-flow--1,
  .p-factory-flow--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-factory-flow--1::before,
.p-factory-flow--2::before {
  content: "";
  display: block;
  background-color: #D5DFDC;
  width: calc(100% + 90px);
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-factory-flow--1::before,
  .p-factory-flow--2::before {
    width: calc(100% + 28px);
    height: 16px;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-flow--1::before,
  .p-factory-flow--2::before {
    content: none;
  }
}
.p-factory-flow--1 li,
.p-factory-flow--2 li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-factory-flow--2 {
  margin-top: 6.25rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .p-factory-flow--2 {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-flow--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* 工場見学の流れ
----------------------------------------------------------------- */
.p-factory-tour__wrap {
  position: relative;
}
.p-factory-tour__wrap .l-container {
  position: relative;
  z-index: 2;
}
.p-factory-tour__wrap .is-annual--1 {
  position: absolute;
  left: -368px;
  top: -349px;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__wrap .is-annual--1 {
    width: 600px;
    left: -44.8780487805%;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__wrap .is-annual--1 {
    top: -100px;
    width: 450px;
    left: -100px;
  }
}
.p-factory-tour__wrap .is-annual--2 {
  position: absolute;
  right: -197px;
  bottom: 1665px;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__wrap .is-annual--2 {
    width: 600px;
    right: -24.0243902439%;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__wrap .is-annual--2 {
    bottom: 1400px;
    right: -151px;
  }
}
.p-factory-tour__wrap .is-annual--3 {
  position: absolute;
  left: -131px;
  bottom: -433px;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__wrap .is-annual--3 {
    width: 600px;
    left: -15.9756097561%;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__wrap .is-annual--3 {
    bottom: -200px;
    left: -131px;
  }
}

.p-factory-tour__cont {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10rem;
  --flow-h: 100%;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__cont {
    gap: 3.125rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__cont {
    gap: 3.75rem;
    height: 100%;
  }
}
.p-factory-tour__cont::before {
  content: "";
  display: block;
  width: 60px;
  height: var(--flow-h);
  background-image: url(/resource/images/factory_flow_arrow.svg);
  background-repeat: repeat-y;
  position: absolute;
  background-position: center;
  left: 21.5277777778%;
  top: 0;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__cont::before {
    left: 18.1451612903%;
    width: 8.064516129%;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__cont::before {
    left: 50%;
    width: 60px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 100%;
  }
}

.p-factory-tour__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
  }
}
.p-factory-tour__item:last-of-type .p-factory-tour__item__img::before {
  content: none;
}

.p-factory-tour__item__img {
  -webkit-flex-basis: 205.7142857143%;
      -ms-flex-preferred-size: 205.7142857143%;
          flex-basis: 205.7142857143%;
  position: relative;
  aspect-ratio: 525/325;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__img {
    -webkit-flex-basis: 48.3870967742%;
        -ms-flex-preferred-size: 48.3870967742%;
            flex-basis: 48.3870967742%;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__img {
    width: 100%;
    height: auto;
  }
}
.p-factory-tour__item__img picture {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__img picture {
    border-radius: 0px;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__img picture {
    border-radius: 20px;
  }
}
.p-factory-tour__item__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__img picture img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
    border-radius: 15px;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__img picture img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0px;
    height: 100%;
  }
}

.p-factory-tour__item__cont {
  padding-left: 1.875rem;
  position: relative;
  -webkit-flex-basis: 201.8691588785%;
      -ms-flex-preferred-size: 201.8691588785%;
          flex-basis: 201.8691588785%;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__cont {
    -webkit-flex-basis: 61.4247311828%;
        -ms-flex-preferred-size: 61.4247311828%;
            flex-basis: 61.4247311828%;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__cont {
    padding-left: 0;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.p-factory-tour__item__cont::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  z-index: 1;
  -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0 50%, 100% 0%, 100% 100%);
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__cont::before {
    top: 30%;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__cont::before {
    -webkit-clip-path: polygon(0 0%, 50% 100%, 100% 0%);
            clip-path: polygon(0 0%, 50% 100%, 100% 0%);
    top: auto;
    bottom: -20px;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 25px;
    height: 25px;
  }
}
.p-factory-tour__item__cont .p-factory-tour__item__cont__inner {
  word-wrap: 100%;
  background-color: var(--white);
  padding: 1.875rem 2.5rem 1.875rem 2.8125rem;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner {
    padding: 1.875rem 1.25rem;
  }
}
.p-factory-tour__item__cont .p-factory-tour__item__cont__inner .num {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--white);
  position: absolute;
  top: -20px;
  left: 15px;
  z-index: 1;
  background-image: url(/resource/images/vector--main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 65px;
  height: 66px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner .num {
    font-size: 1.75rem;
    top: -15px;
    left: 15px;
    width: 55px;
    height: 56px;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner .num {
    font-size: 1.625rem;
    top: -15px;
    left: -10px;
    width: 50px;
    height: 50px;
  }
}
.p-factory-tour__item__cont .p-factory-tour__item__cont__inner .p-factory-tour__ttl {
  font-size: 2.25rem;
  color: var(--main);
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner .p-factory-tour__ttl {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner .p-factory-tour__ttl {
    font-size: 1.75rem;
  }
}
.p-factory-tour__item__cont .p-factory-tour__item__cont__inner .p-factory-tour__ttl-sub {
  font-size: 1.4375rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner .p-factory-tour__ttl-sub {
    font-size: 1.3125rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory-tour__item__cont .p-factory-tour__item__cont__inner .p-factory-tour__ttl-sub {
    font-size: 1.25rem;
  }
}

/* バナー
----------------------------------------------------------------- */
.p-factory__bnr {
  padding-top: 8.75rem;
}
@media screen and (max-width: 834px) {
  .p-factory__bnr {
    padding-top: 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-factory__bnr {
    padding-top: 6.25rem;
  }
}
.p-factory__bnr .c-block-ft-bnr .c-block-ft-bnr__inner {
  padding: 3.75rem 2.5rem 4.375rem;
}
@media screen and (max-width: 460px) {
  .p-factory__bnr .c-block-ft-bnr .c-block-ft-bnr__inner {
    padding: 2.1875rem 1.25rem 2.5rem;
  }
}
.p-factory__bnr .c-block-ft-bnr .c-block-ft-bnr__inner .c-ttl-main--white::before {
  content: none;
}
.p-factory__bnr .c-block-ft-bnr .c-block-ft-bnr__inner .c-btn-main--white .c-btn-main__inner {
  max-width: 260px;
}

/* ==========================================================================
お知らせ
========================================================================== */
/* 年輪の位置
----------------------------------------------------------------- */
.p-news__wrap {
  position: relative;
}
.p-news__wrap .is-annual--1 {
  position: absolute;
  right: -449px;
  top: 25px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-news__wrap .is-annual--1 {
    width: 620px;
    right: -31.7073170732%;
  }
}
@media screen and (max-width: 460px) {
  .p-news__wrap .is-annual--1 {
    width: 500px;
    right: -100px;
  }
}
.p-news__wrap .is-annual--2 {
  position: absolute;
  left: -262px;
  bottom: 120px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-news__wrap .is-annual--2 {
    width: 650px;
    left: -31.9512195122%;
  }
}
@media screen and (max-width: 460px) {
  .p-news__wrap .is-annual--2 {
    width: 600px;
    left: -40.2666666667%;
  }
}

.p-news-single__wrap {
  position: relative;
}
.p-news-single__wrap .is-annual {
  position: absolute;
  left: -157px;
  top: 65px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-news-single__wrap .is-annual {
    width: 600px;
    left: -19.1463414634%;
  }
}
@media screen and (max-width: 460px) {
  .p-news-single__wrap .is-annual {
    left: -40.2666666667%;
  }
}

/* 記事一覧のデザイン
----------------------------------------------------------------- */
.p-news-article {
  position: relative;
  background-color: var(--whitesmoke);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-news-article {
    padding: 1.875rem 1.25rem;
    border-radius: 15px;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article {
    padding: 1.25rem;
  }
}
.p-news-article .new {
  width: 70px;
  height: 71px;
  position: absolute;
  top: -28px;
  left: -18px;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .p-news-article .new {
    width: 58px;
    height: 59px;
    top: -20px;
    left: -10px;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article .new {
    top: -12px;
    left: -14px;
    width: 55px;
    height: 56px;
  }
}
.p-news-article .new::before {
  content: "NEW!";
  display: inline-block;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  background-image: url(/resource/images/vector--sub.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 70px;
  height: 71px;
}
@media screen and (max-width: 834px) {
  .p-news-article .new::before {
    font-size: 0.875rem;
    width: 58px;
    height: 59px;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article .new::before {
    font-size: 0.75rem;
    width: 55px;
    height: 56px;
  }
}
.p-news-article:first-child {
  margin-top: 0;
}
.p-news-article a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-news-article a {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-news-article a .p-news-article__tmb {
  border-radius: 10px;
  overflow: hidden;
  height: 197.73px;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .p-news-article a .p-news-article__tmb {
    height: 120px;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article a .p-news-article__tmb {
    width: 100%;
  }
}
.p-news-article a .p-news-article__tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.p-news-article a .p-news-article__tmb picture {
  width: 100%;
  height: 100%;
  display: block;
}
.p-news-article a .p-news-article__tmb picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.p-news-article a .p-news-article__cont {
  width: 50%;
}
@media screen and (max-width: 460px) {
  .p-news-article a .p-news-article__cont {
    width: 100%;
  }
}
.p-news-article a .p-news-article__cont .p-news-article__info-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 834px) {
  .p-news-article a .p-news-article__cont .p-news-article__info-flex {
    gap: 10px;
  }
}
.p-news-article a .p-news-article__cont .p-news-article__info-flex .cat {
  display: block;
  background-color: var(--white);
  color: var(--main);
  line-height: 1.2;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 30px;
  padding: 7px 12px 8px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .p-news-article a .p-news-article__cont .p-news-article__info-flex .cat {
    min-width: 72px;
    padding: 5px 8px;
    font-size: 12px;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article a .p-news-article__cont .p-news-article__info-flex .cat {
    min-width: 60px;
  }
}
.p-news-article a .p-news-article__cont .p-news-article__info-flex .data {
  line-height: 1.4;
  font-weight: 500;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 834px) {
  .p-news-article a .p-news-article__cont .p-news-article__info-flex .data {
    font-size: 12px;
  }
}
.p-news-article a .p-news-article__cont .p-news-article__ttl {
  display: inline-block;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.4375rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .p-news-article a .p-news-article__cont .p-news-article__ttl {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article a .p-news-article__cont .p-news-article__ttl {
    font-size: 1.125rem;
    margin-top: 5px;
  }
}
.p-news-article a:hover {
  color: var(--hover);
}
.p-news-article a:hover .p-news-article__tmb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-news-article a:hover .p-news-article__cont .p-news-article__info-flex .cat {
  color: var(--hover);
}
.p-news-article a:hover .p-news-article__cont .p-news-article__info-flex .data {
  color: var(--hover);
}
.p-news-article a:hover .p-news-article__ttl {
  color: var(--hover);
}

/* ==========================================================================
お知らせページのデザイン
========================================================================== */
/* ページネーション
----------------------------------------------------------------- */
.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .wp-pagenavi {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .wp-pagenavi {
    margin-top: 3.75rem;
  }
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .current {
  color: var(--white);
  background-color: var(--main);
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--main);
  background-color: var(--white);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  margin: 0 7.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", sans-serif;
  border: 1px solid var(--main);
}
@media screen and (max-width: 460px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    margin: 0 5px;
  }
}

.wp-pagenavi a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi a:hover {
  color: var(--white);
  background-color: var(--main);
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  width: auto;
  font-size: 14px;
  padding: 0.5rem;
}

.p-news2__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7.4074074074%;
}
@media screen and (max-width: 834px) {
  .p-news2__layout {
    gap: 5.376344086%;
  }
}
@media screen and (max-width: 460px) {
  .p-news2__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-news2__layout .p-news2__cont {
  -webkit-flex-basis: 70.3703703704%;
      -ms-flex-preferred-size: 70.3703703704%;
          flex-basis: 70.3703703704%;
}
@media screen and (max-width: 834px) {
  .p-news2__layout .p-news2__cont {
    -webkit-flex-basis: 64.5161290323%;
        -ms-flex-preferred-size: 64.5161290323%;
            flex-basis: 64.5161290323%;
  }
}
.p-news2__layout aside {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-news2__layout aside {
    margin-top: 3.75rem;
  }
}
.p-news2__layout aside .p-news__nav {
  min-width: initial;
}
.p-news2__layout aside .c-ttl-sub {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 460px) {
  .p-news2__layout aside .c-ttl-sub {
    margin-bottom: 3.125rem;
  }
}
.p-news2__layout aside .c-list-dot2 li {
  margin-bottom: 1.25rem;
}
.p-news2__layout aside .c-list-dot2 li:last-of-type {
  margin-bottom: 0;
}
.p-news2__layout aside .c-list-dot2 li a:hover {
  color: var(--main);
}

/*　サイドメニュー
----------------------------------------------------------------- */
.p-news__nav {
  min-width: 240px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-news__nav {
    gap: 1.5rem;
    margin-top: 1.875rem;
  }
}
.p-news__nav a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
  padding: 0 10px 8px 5px;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.4);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.p-news__nav a .btn {
  background-color: var(--main);
  color: var(--white);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.p-news__nav a .btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 8.14px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 8.14px;
  height: 8.14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.p-news__nav a:hover {
  border-bottom: 1px solid var(--hover);
  color: var(--hover);
}
.p-news__nav a:hover .btn {
  background-color: var(--hover);
}
.p-news__nav a:hover .btn::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: btn-arrow 0.5s linear;
          animation: btn-arrow 0.5s linear;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.p-news-aside__archive {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .p-news-aside__archive {
    margin-top: 3.75rem;
  }
}

/* ==========================================================================
シングルページ
========================================================================== */
.p-news-single .p-news-single__ttl-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-news-single .p-news-single__ttl-area .cat {
  display: block;
  background-color: var(--whitesmoke);
  color: var(--main);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 30px;
  padding: 8px 15px 9px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1875rem;
}
@media screen and (max-width: 834px) {
  .p-news-single .p-news-single__ttl-area .cat {
    font-size: 1rem;
    padding: 6px 10px 7px;
  }
}
@media screen and (max-width: 460px) {
  .p-news-single .p-news-single__ttl-area .cat {
    padding: 5px 10px 6px;
  }
}
.p-news-single .p-news-single__ttl-area .data {
  line-height: 1.4;
  font-weight: 500;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
}
.p-news-single .p-news-single__ttl {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-top: 15px;
}
@media screen and (max-width: 834px) {
  .p-news-single .p-news-single__ttl {
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-news-single .p-news-single__ttl {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
お問い合わせ
========================================================================== */
/* 年輪の位置
----------------------------------------------------------------- */
.p-contact-mailform__wrap {
  position: relative;
}
.p-contact-mailform__wrap .l-container {
  position: relative;
  z-index: 2;
}
.p-contact-mailform__wrap .is-annual {
  position: absolute;
  right: -269px;
  top: 145px;
}
@media screen and (max-width: 834px) {
  .p-contact-mailform__wrap .is-annual {
    width: 600px;
    right: -28.0487804878%;
  }
}
@media screen and (max-width: 460px) {
  .p-contact-mailform__wrap .is-annual {
    top: 100px;
    width: 450px;
    right: -100px;
  }
}

.p-contact-thanks__wrap {
  position: relative;
}
.p-contact-thanks__wrap .is-annual {
  position: absolute;
  right: -269px;
  top: 145px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-contact-thanks__wrap .is-annual {
    width: 600px;
    right: -28.0487804878%;
  }
}
@media screen and (max-width: 460px) {
  .p-contact-thanks__wrap .is-annual {
    right: -40.2666666667%;
  }
}

/* ==========================================================================
プライバシーポリシー
=========================================================================*/
/* 年輪の位置
----------------------------------------------------------------- */
.p-privacy__wrap {
  position: relative;
}
.p-privacy__wrap .is-annual {
  position: absolute;
  left: -249px;
  top: 246px;
  opacity: 0.08;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .p-privacy__wrap .is-annual {
    width: 600px;
    left: -24.3902439024%;
  }
}
@media screen and (max-width: 460px) {
  .p-privacy__wrap .is-annual {
    top: 360px;
    width: 450px;
    left: -100px;
  }
}
.p-privacy__wrap .c-ttl-dot {
  font-size: 1.75rem;
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.margin-auto {
  margin: auto;
}

.margin-xxxsm-top {
  margin-top: 5px;
}

.margin-xxsm-top {
  margin-top: 0.625rem;
}

.margin-xsm-top {
  margin-top: 0.9375rem;
}

.margin-sm-top {
  margin-top: 1.25rem;
}

.margin-md-top {
  margin-top: 2.5rem;
}

.margin-lg-top {
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .margin-lg-top {
    margin-top: 1.875rem;
  }
}

.margin-xlg-top {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .margin-xlg-top {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-xlg-top {
    margin-top: 1.875rem;
  }
}

.margin-xxlg-top {
  margin-top: 6.25rem;
}
@media screen and (max-width: 834px) {
  .margin-xxlg-top {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-xxlg-top {
    margin-top: 2.5rem;
  }
}

.margin-xxxlg-top {
  margin-top: 7.5rem;
}
@media screen and (max-width: 834px) {
  .margin-xxxlg-top {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-xxxlg-top {
    margin-top: 3.75rem;
  }
}

.margin-xxxxlg-top {
  margin-top: 10rem;
}
@media screen and (max-width: 834px) {
  .margin-xxxxlg-top {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-xxxxlg-top {
    margin-top: 5rem;
  }
}

.margin-30-top {
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .margin-30-top {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-30-top {
    margin-top: 1.25rem;
  }
}

.margin-xxsm-right {
  margin-right: 0.625rem;
}

/* パディング
----------------------------------------------------------------- */
.padding-xlg-top {
  padding-top: 5rem;
}
@media screen and (max-width: 460px) {
  .padding-xlg-top {
    padding-top: 3.75rem;
  }
}

.padding-xxlg-top {
  padding-top: 6.25rem;
}
@media screen and (max-width: 834px) {
  .padding-xxlg-top {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .padding-xxlg-top {
    padding-top: 3.75rem;
  }
}

/*-==========================================================================
テキスト
==========================================================================*/
.txt-en {
  font-family: "Lato", sans-serif;
}

.txt-ttl {
  font-family: "Shippori Mincho", serif;
}

.txt-br {
  overflow-wrap: anywhere;
  word-break: break-all;
}

.txt-bold {
  font-weight: 700 !important;
}

.txt-bold-md {
  font-weight: 500 !important;
}

.txt-lead {
  font-size: 1rem;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .txt-lead {
    line-height: 2;
  }
}
@media screen and (max-width: 460px) {
  .txt-lead {
    line-height: 1.8;
  }
}

.txt-cap {
  font-size: 1rem;
  line-height: 1.4;
}

.txt-sm {
  font-size: 13px;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .txt-sm {
    font-size: 14px;
  }
}

.txt-lg {
  font-size: 1.1875rem;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .txt-lg {
    font-size: 1.125rem;
  }
}

.txt-xlg {
  font-size: 1.4375rem;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .txt-xlg {
    font-size: 1.125rem;
  }
}

.txt-link,
.txt-link--arrow,
.txt-link--win {
  font-weight: 600;
  line-height: 1.6;
  color: var(--main);
  position: relative;
}
.txt-link::before,
.txt-link--arrow::before,
.txt-link--win::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.txt-link:hover,
.txt-link--arrow:hover,
.txt-link--win:hover {
  color: var(--hover);
}

.txt-link--arrow::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-right: 4px;
  margin-top: 2px;
}
.txt-link--arrow:hover::before {
  background-image: url(/resource/images/ico_arrow_green.svg);
}

.txt-link--win {
  margin-right: 2px;
}
.txt-link--win::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-left: 3px;
}
.txt-link--win:hover:after {
  background-image: url(/resource/images/ico_win_green.svg);
}

.txt-center {
  text-align: center !important;
}

.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-top {
  vertical-align: top !important;
}

.txt-center--sp-left {
  text-align: center !important;
}
@media screen and (max-width: 460px) {
  .txt-center--sp-left {
    text-align: left !important;
  }
}

.txt-center--tb-left {
  text-align: center !important;
}
@media screen and (max-width: 834px) {
  .txt-center--tb-left {
    text-align: left !important;
  }
}

.txt-black {
  color: #3A2F2F !important;
}

.txt-white {
  color: #fff !important;
}

.txt-border {
  color: #E5E5E5 !important;
}

.txt-main {
  color: #2F5D50 !important;
}

.txt-sub {
  color: #DDB26A !important;
}

.txt-hover {
  color: #008E66 !important;
}

.txt-whitesmoke {
  color: #EBECE6 !important;
}

.txt-selection_txt {
  color: #525252 !important;
}

.txt-selection_bg {
  color: #6c846a !important;
}

.txt-lightgray {
  color: #ef423b !important;
}

.txt-silver {
  color: #D4D4D8 !important;
}

.txt-gray {
  color: #67676B !important;
}

.txt-rec {
  color: #4D9C28 !important;
}

/* 電話番号・FAX番号
----------------------------------------------------------------- */
.txt-tel__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 460px) {
  .txt-tel__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.txt-tel img {
  margin-right: 10px;
  width: 30px;
  vertical-align: baseline;
}
@media screen and (max-width: 834px) {
  .txt-tel img {
    width: 20px;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel img {
    width: 20px;
  }
}
.txt-tel a[href^="tel:"] {
  font-family: "Lato", sans-serif;
  font-size: 3.5625rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--black);
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .txt-tel a[href^="tel:"] {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .txt-tel a[href^="tel:"] {
    font-size: 4.3165467626vw;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel a[href^="tel:"] {
    pointer-events: auto;
    font-size: 2.25rem;
  }
  .txt-tel a[href^="tel:"]:hover {
    color: var(--hover);
  }
}

.txt-tel__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875rem;
  gap: 1.25rem;
}
@media screen and (max-width: 834px) {
  .txt-tel__info {
    margin-top: 20px;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-top: 20px;
  }
}
.txt-tel__info p {
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 834px) {
  .txt-tel__info p {
    font-size: 13px;
  }
}

.txt-fax {
  font-size: 1.75rem;
  font-family: "Lato", sans-serif;
  line-height: 1;
  letter-spacing: 0.025em;
  color: var(--black);
  display: inline-block;
  pointer-events: none;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .txt-fax {
    font-size: 1.5rem;
  }
}

/*-==========================================================================
角丸
==========================================================================*/
.radi10 {
  border-radius: 10px;
  overflow: hidden;
}

/*-==========================================================================
boder
==========================================================================*/
/*-==========================================================================
背景
==========================================================================*/
.bg-black {
  background-color: #3A2F2F !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-border {
  background-color: #E5E5E5 !important;
}

.bg-main {
  background-color: #2F5D50 !important;
}

.bg-sub {
  background-color: #DDB26A !important;
}

.bg-hover {
  background-color: #008E66 !important;
}

.bg-whitesmoke {
  background-color: #EBECE6 !important;
}

.bg-selection_txt {
  background-color: #525252 !important;
}

.bg-selection_bg {
  background-color: #6c846a !important;
}

.bg-lightgray {
  background-color: #ef423b !important;
}

.bg-silver {
  background-color: #D4D4D8 !important;
}

.bg-gray {
  background-color: #67676B !important;
}

.bg-rec {
  background-color: #4D9C28 !important;
}

/* ==========================================================================
 スクロール
=========================================================================*/
.scroll-anchor {
  display: block;
}

/* ==========================================================================
 非表示
=========================================================================*/
/*-==========================================================================
特定の画面幅で表示・非表示するクラス
==========================================================================*/
/* xpc以上*/
@media screen and (min-width: 1367px) {
  .visible-more-xpc {
    display: block;
  }
}
@media screen and (max-width: 1366px) {
  .visible-more-xpc {
    display: none !important;
  }
}

/* xpcのみ*/
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  .visible-xpc {
    display: block;
  }
}
@media screen and (max-width: 1280px), (min-width: 1367px) {
  .visible-xpc {
    display: none !important;
  }
}

/* xpc以下*/
@media screen and (max-width: 1366px) {
  .visible-less-xpc {
    display: block;
  }
}
@media screen and (min-width: 1367px) {
  .visible-less-xpc {
    display: none !important;
  }
}

/* pc以上*/
@media screen and (min-width: 1281px) {
  .visible-more-pc {
    display: block;
  }
}
@media screen and (max-width: 1280px) {
  .visible-more-pc {
    display: none !important;
  }
}

/* pcのみ*/
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (max-width: 960px), (min-width: 1281px) {
  .visible-pc {
    display: none !important;
  }
}

/*  pc以下*/
@media screen and (max-width: 1280px) {
  .visible-less-pc {
    display: block;
  }
}
@media screen and (min-width: 1281px) {
  .visible-less-pc {
    display: none !important;
  }
}

/* lp以上*/
@media screen and (min-width: 961px) {
  .visible-more-lp {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .visible-more-lp {
    display: none !important;
  }
}

/* lpのみ*/
@media screen and (min-width: 835px) and (max-width: 960px) {
  .visible-lp {
    display: block;
  }
}
@media screen and (max-width: 834px), (min-width: 961px) {
  .visible-lp {
    display: none !important;
  }
}

/*  lp以下*/
@media screen and (max-width: 960px) {
  .visible-less-lp {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .visible-less-lp {
    display: none !important;
  }
}

/* tb以上*/
@media screen and (min-width: 835px) {
  .visible-more-tb {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .visible-more-tb {
    display: none !important;
  }
}

/* tbのみ*/
@media screen and (min-width: 461px) and (max-width: 834px) {
  .visible-tb {
    display: block;
  }
}
@media screen and (max-width: 460px), (min-width: 835px) {
  .visible-tb {
    display: none !important;
  }
}

/*  tb以下*/
@media screen and (max-width: 834px) {
  .visible-less-tb {
    display: block;
  }
}
@media screen and (min-width: 835px) {
  .visible-less-tb {
    display: none !important;
  }
}

/* sp以上*/
@media screen and (min-width: 461px) {
  .visible-more-sp {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .visible-more-sp {
    display: none !important;
  }
}

/* spのみ*/
@media screen and (max-width: 460px) {
  .visible-sp {
    display: block;
  }
}
@media screen and (min-width: 461px) {
  .visible-sp {
    display: none !important;
  }
}

/*-==========================================================================
その他
==========================================================================*//*# sourceMappingURL=main.css.map */