@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

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

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

:root {
  --main-base-color:#fff;
  --text-black:#121821;
  --main-gray-color:#E9EBDF;
  --primary-color:#0BE512;
  --secondary-color:#007A00;
  --color01:#029E01;
  --color02:#DAFF0B;
  --color03:#0F4C05;
  --main-fontJa:"Noto Sans JP",sans-serif;
  --main-fontEn: "Montserrat Alternates", sans-serif;
  --main-fontNum: "Montserrat Alternates", sans-serif;
  --common-r01:8px;
  --common-r02:16px;
  --common-r03:32px;
  --contents-width:1300;
  --contents-width-px:calc(var(--contents-width) * 1px);
  --pc-width:1600;
  --pc-width-px:calc(var(--pc-width) * 1px);
  --sp-width:375;
  --sp-width-px:calc(var(--sp-width) * 1px);
  --loop-width:3200;
  --loop-width-px:calc(var(--loop-width) * 1px);
  --sc01-pd:130px 0 160px;
  --sc02-pd:45px 0 45px;
}
@media (max-width: 960px) {
  :root {
    --loop-width:1600;
    --sc01-pd:65px 0 80px;
    --sc02-pd:45px 0 45px;
  }
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: var(--main-fontJa, "Noto Sans JP", sans-serif);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-black);
  background-color: #fff;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

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

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

.l-main {
  position: relative;
  display: block;
  flex-grow: 1;
}
@media (max-width: 960px) {
  .l-main {
    overflow: hidden;
  }
}
.l-main.--top {
  padding-top: 0;
}

.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: 1300px;
}
@media (max-width: 960px) {
  .l-inner {
    width: 87%;
  }
}
.l-inner.--small {
  max-width: 812px;
}
.l-inner.--medium {
  max-width: 1141px;
}
.l-inner.--large {
  max-width: 1387px;
}
.l-inner.--fluid {
  width: 100%;
  max-width: 1920px;
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
}

/******************************
* utility
*******************************/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.u-en {
  font-family: var(--main-fontEn);
  font-optical-sizing: auto;
  font-style: normal;
}

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

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

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

.u-fwb {
  font-weight: 700;
}

.u-fwsb {
  font-weight: 600;
}

.u-fwm {
  font-weight: 500;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-red {
  color: #FF0000;
}

.u-theme-color {
  color: var(--primary-color);
}

.u-secondary-color {
  color: var(--secondary-color);
}

.u-color01 {
  color: var(--color01);
}

.u-color02 {
  color: var(--color02);
}

.u-color03 {
  color: var(--color03);
}

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

.u-bg-theme-color {
  background-color: var(--primary-color);
}

.u-bg-secondary-color {
  background-color: var(--secondary-color);
}

.u-bg-color01 {
  background-color: var(--color01);
}

.u-bg-gray {
  background-color: var(--main-gray-color);
  background-image: url(../img/common/bg_dot.png), url(../img/common/bg_dot.png);
  background-repeat: repeat-y, repeat-y;
  background-size: 60px, 60px;
  background-position: bottom right, top left, top right;
}
@media (max-width: 1600px) {
  .u-bg-gray {
    background-size: 30px, 30px;
  }
}
@media (max-width: 960px) {
  .u-bg-gray {
    background-size: 20px, 20px;
  }
}

.u-bg-gray02 {
  background-color: #E9EBDF;
  background-image: url(../img/common/bg_dot.png), url(../img/common/bg_dot.png);
  background-repeat: repeat-y, repeat-y;
  background-size: 60px, 60px;
  background-position: bottom right, top left, top right;
}
@media (max-width: 1600px) {
  .u-bg-gray02 {
    background-size: 30px, 30px;
  }
}
@media (max-width: 960px) {
  .u-bg-gray02 {
    background-size: 20px, 20px;
  }
}

.u-bg-gray03 {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 70%, rgb(246, 246, 244) 70%, rgb(246, 246, 244) 100%);
}

.u-bg-round-top {
  position: relative;
}
.u-bg-round-top::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1597/45;
  background: #fff;
  -webkit-mask-image: url(../img/common/bg_round_top.svg);
          mask-image: url(../img/common/bg_round_top.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.u-bg-round-top[data-round=primary]::after {
  background: var(--primary-color);
}

.u-bg-round-bottom {
  position: relative;
}
.u-bg-round-bottom::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1597/45;
  background: #fff;
  -webkit-mask-image: url(../img/common/bg_round_bottom.svg);
          mask-image: url(../img/common/bg_round_bottom.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.u-bg-round-bottom[data-round=primary]::after {
  background: var(--primary-color);
}

.u-tt-uc {
  text-transform: uppercase;
}

.u-small {
  font-size: 75%;
}

.u-large {
  font-size: 125%;
}

.u-link {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.u-link:hover, .u-link:active {
  opacity: 0.8;
}

/******************************
* header
*******************************/
.l-header {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  transition: 0.75s height ease-in-out;
  transition-property: opacity, height, background-color;
  padding: 0px;
  -webkit-backface-visibility: hidden;
  background-color: rgba(255, 255, 255, 0);
  padding: 16px 0;
}
@media (max-width: 960px) {
  .l-header {
    height: 60px;
    background-color: white;
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  max-width: 1520px;
  width: 96%;
  gap: 0 20px;
}
@media (max-width: 960px) {
  .l-header .l-inner {
    width: 92%;
  }
}

.p-header__title {
  position: relative;
  margin-right: 30px;
  flex-shrink: 0;
  width: 296px;
}
.p-header__title a {
  position: relative;
  display: block;
  height: 100%;
}
.p-header__title .logo-black {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, visibility;
}
.p-header__title .logo-white {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

/*****
* PC MV表示中ヘッダー　白ロゴ表示対応
* メニュー文字白対応
**********************/
body.is-header-bg-none .l-header {
  padding: 0;
  height: 162px;
}
@media (max-width: 960px) {
  body.is-header-bg-none .l-header {
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
  }
}
body.is-header-bg-none .l-header .l-inner {
  max-width: 1556px;
}
body.is-header-bg-none .p-header__title {
  margin: 0;
  margin-left: 6.5%;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  filter: none;
  max-width: 362px;
  width: 21.4285714286%;
}
@media (max-width: 960px) {
  body.is-header-bg-none .p-header__title {
    margin-left: 0;
    width: 100%;
    max-width: 210px;
  }
}
body.is-header-bg-none .p-header__title .p-logo {
  width: 100%;
}
body.is-header-bg-none .p-header__title .logo-black {
  opacity: 0;
  visibility: hidden;
}
body.is-header-bg-none .p-header__title .logo-white {
  opacity: 1;
  visibility: visible;
}
body.is-header-bg-none .p-header__nav.--pc {
  padding-right: 0;
  padding-left: 0;
  background-color: transparent;
  border-radius: 0;
  filter: none;
}
body.is-header-bg-none .p-header__nav.--pc .p-gnav__link {
  color: #fff;
}
body.is-header-bg-none .p-header__nav.--pc .p-gnav__link span {
  position: relative;
}
body.is-header-bg-none .p-header__nav.--pc .p-gnav__link span::after {
  background-color: #fff;
}
body.is-header-bg-none .p-header__nav.--pc .p-header-contact {
  position: relative;
  right: -5px;
  top: 66px;
  width: 31.31%;
  max-width: 229px;
}
body.is-header-bg-none .p-header__nav.--pc .p-header-contact__link {
  width: 100%;
  height: auto;
  aspect-ratio: 229/266;
  background: url(../img/common/tel_hexagon.svg) no-repeat center/contain;
}
body.is-header-bg-none .p-header__nav.--pc .p-header-contact__link .tel {
  margin-top: 0.25em;
  padding-left: 0;
  font-size: 35px;
  font-size: clamp(28px,2.18vw,35px);
  line-height: 1;
  text-align: center;
}
body.is-header-bg-none .p-header__nav.--pc .p-header-contact__link .tel::before {
  display: none;
}
body.is-header-bg-none .p-hamburger__line {
  background-color: #fff;
}
body.is-header-bg-none.is-drawerActive .p-hamburger__line {
  background-color: transparent;
}

body:not(.home).is-header-bg-none .p-header__nav.--pc .p-gnav {
  padding: 1.5em 3em 1.5em 1.5em;
  border-radius: 50px;
  background-color: #E9EBDF;
}
body:not(.home).is-header-bg-none .p-header__nav.--pc .p-gnav__link {
  padding: 0.3em 1em;
  color: var(--text-black);
}
body:not(.home).is-header-bg-none .p-header__nav.--pc .p-header-contact {
  right: 4%;
}

@media (min-width: 769px) and (max-width: 1279px) {
  body:not(.home).is-header-bg-none .p-header__nav.--pc .p-gnav {
    padding: 1em 3em 1em 1.5em;
  }
}
.p-header__title {
  margin: 0 auto;
  padding: 1em 1em;
  width: 311px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E9EBDF;
  border-radius: 40px;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.1));
}
@media (max-width: 960px) {
  .p-header__title {
    margin-left: 0;
    padding: 0 0;
    width: auto;
    background: none;
    filter: none;
  }
}
.p-header__title .p-logo {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 256px;
}
@media (max-width: 960px) {
  .p-header__title .p-logo {
    justify-content: flex-start;
    width: 210px;
  }
}

.p-header__nav.--pc {
  display: flex;
  align-items: center;
  padding: 0 5%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
  background: #E9EBDF;
  border-radius: 40px;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.1));
}
@media (max-width: 960px) {
  .p-header__nav.--pc {
    display: none;
  }
}
.p-header__nav.--pc .p-gnav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.p-header__nav.--pc .p-gnav__item {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
}
.p-header__nav.--pc .p-gnav__link {
  position: relative;
  display: inline-block;
  padding: 0.3em 1em;
  color: var(--text-black);
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .p-header__nav.--pc .p-gnav__link {
    padding: 0.5em 1em;
    font-size: 1.2rem;
  }
}
.p-header__nav.--pc .p-gnav__link span {
  position: relative;
}
.p-header__nav.--pc .p-gnav__link span::after {
  content: "";
  border-bottom: 1px solid;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-black);
  transition: 0.3s ease-in 0s width;
}
.p-header__nav.--pc .p-gnav__link:hover span::after, .p-header__nav.--pc .p-gnav__link:focus span::after {
  width: 100%;
}
.p-header__nav.--pc .p-header-contact {
  position: static;
}
.p-header__nav.--pc .p-header-contact__link {
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 217px;
  height: auto;
  color: #fff;
  background-color: var(--color02);
  font-size: 16px;
  font-weight: 500;
  line-height: 105%;
  border-radius: 50px;
}
.p-header__nav.--pc .p-header-contact__link .tel {
  position: relative;
  padding-left: 1.25em;
  font-family: var(--main-fontEn);
  color: var(--text-black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.p-header__nav.--pc .p-header-contact__link .tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--text-black);
  -webkit-mask-image: url(../img/common/icon_tel.svg);
          mask-image: url(../img/common/icon_tel.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

@media (max-width: 960px) {
  .p-header__nav.--pc {
    display: none;
  }
}
/* ドロワーメニュー */
.p-header__nav.--sp {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 100px;
}
.p-header__nav.--sp .p-nav-logo {
  position: fixed;
  top: 13px;
  left: 4%;
  width: 210px;
}
.p-header__nav.--sp .p-gnav {
  margin-top: 74px;
  display: block;
  width: 100%;
  padding: 0 2em;
}
.p-header__nav.--sp .p-gnav__item {
  width: 100%;
}
.p-header__nav.--sp .p-gnav__item:not(.-contact) {
  border-bottom: 1px solid #BFBFBF;
}
.p-header__nav.--sp .p-gnav__link {
  position: relative;
  display: block;
  color: #222222;
  text-align: center;
  padding: 25px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
.p-header__nav.--sp .p-gnav__link:hover, .p-header__nav.--sp .p-gnav__link:focus, .p-header__nav.--sp .p-gnav__link:active {
  opacity: 0.6;
}
.p-header__nav.--sp .p-gnav__link.-contact {
  margin: 40px auto 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  background: var(--primary-color);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
}
.p-header__nav.--sp .p-gnav__link:hover.-contact {
  opacity: 1;
  background-position: right center;
}
.p-header__nav.--sp a.p-gnav__link:hover, .p-header__nav.--sp a.p-gnav__link:focus, .p-header__nav.--sp a.p-gnav__link:active {
  opacity: 0.6;
}
.p-header__nav.--sp .p-gnav__child {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 1em;
}
.p-header__nav.--sp .p-gnav__child.col1 .p-gnav__item__child {
  width: 100%;
}
.p-header__nav.--sp .p-gnav__child.col2 .p-gnav__item__child {
  width: 50%;
}
.p-header__nav.--sp .p-gnav__link__child {
  display: block;
  padding: 0.5em 1.25em;
  font-size: 16px;
  text-align: left;
}
.p-header__nav.--sp .p-gnav__item.has-menu.is-active .p-gnav__child {
  margin-top: 14px;
  display: flex;
}
.p-header__nav.--sp .p-gnav__item.has-menu.is-active .p-gnav__link {
  color: #D00028;
}
.p-header__nav.--sp .p-gnav__item.has-menu.is-active .p-gnav__toggle-menu {
  transform: rotate(-180deg);
}
.p-header__nav.--sp .p-gnav__item.has-menu.is-active .p-gnav__toggle-menu::before {
  opacity: 0;
}
.p-header__nav.--sp .p-gnav__item.has-menu .p-gnav__child {
  display: none;
}
.p-header__nav.--sp .p-gnav__item.has-menu .has-menu__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.p-header__nav.--sp .p-gnav__item.has-menu .p-gnav__link {
  width: calc(100% - 2em);
}
.p-header__nav.--sp .p-gnav__toggle-menu {
  position: relative;
  padding: 0;
  border: none;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  cursor: pointer;
  top: 0.25em;
  width: 75px;
  height: 75px;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  background: url(../img/common/arrow04_red.svg) no-repeat center;
  background-size: 1.5em;
  cursor: pointer;
}
.p-header__nav.--sp .gnav-sns-list {
  margin: 2em auto 0;
  display: flex;
  justify-content: center;
  gap: 0 32px;
}
.p-header__nav.--sp .gnav-sns-list li {
  width: 1.75em;
}
.p-header__nav.--sp .gnav-sns-list a {
  display: block;
  transition: opacity;
}
.p-header__nav.--sp .gnav-sns-list a:hover, .p-header__nav.--sp .gnav-sns-list a:focus {
  opacity: 0.8;
}
.p-header__nav.--sp .gnav-sns-list a img {
  width: 100%;
  height: auto;
}
.p-header__nav.--sp .p-header-contact {
  margin: 40px auto 0;
}
.p-header__nav.--sp .p-header-contact__link {
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 217px;
  height: auto;
  color: #fff;
  background-color: var(--color02);
  font-size: 16px;
  font-weight: 500;
  line-height: 105%;
  border-radius: 50px;
}
.p-header__nav.--sp .p-header-contact__link .tel {
  position: relative;
  padding-left: 1.25em;
  font-family: var(--main-fontEn);
  color: var(--text-black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.p-header__nav.--sp .p-header-contact__link .tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--text-black);
  -webkit-mask-image: url(../img/common/icon_tel.svg);
          mask-image: url(../img/common/icon_tel.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* メニュー表示設定*/
.p-header__nav.--sp {
  position: fixed;
  top: 0;
  right: 0;
  color: #222;
  background-color: #e5e5e5;
  text-align: center;
  width: 100%;
  height: 100vh;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  max-width: 400px;
}
.p-header__nav.--sp .p-nav-logo {
  display: none;
}
.p-header__nav.--sp .p-gnav {
  margin-top: 145px;
}
@media (max-width: 960px) {
  .p-header__nav.--sp .p-gnav {
    margin-top: 74px;
  }
}
@media (max-width: 960px) {
  .p-header__nav.--sp {
    max-width: 100%;
  }
  .p-header__nav.--sp .p-nav-logo {
    display: block;
  }
}

.is-drawerActive .p-header__nav.--sp {
  opacity: 1;
  visibility: visible;
}

.p-hamburger {
  display: none;
}

@media (max-width: 960px) {
  .p-hamburger {
    position: fixed;
    content: "";
    top: 0;
    right: 1%;
    bottom: 0;
    left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    outline: 0;
    border: 0;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    background: none;
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .p-hamburger .icon {
    position: relative;
    margin-left: 2px;
    display: block;
    width: 30px;
    height: 17px;
  }
  .p-hamburger .text {
    margin-left: 10px;
    margin-right: 10px;
    display: block;
    color: var(--text-black);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    transition: opacity 0.3s ease-in-out;
    transition-property: opacity, width, margin;
  }
  .p-hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: var(--text-black);
    width: 30px;
    height: 1px;
  }
  .p-hamburger__line:after,
.p-hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .p-hamburger__line:before {
    top: -8px;
  }
  .p-hamburger__line:after {
    top: 8px;
  }
  .is-drawerActive .p-hamburger::after {
    color: var(--text-black);
  }
  .is-drawerActive .p-hamburger__line {
    background-color: transparent;
  }
  .is-drawerActive .p-hamburger__line:after,
.is-drawerActive .p-hamburger__line:before {
    top: 0;
    background-color: var(--text-black);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .p-hamburger__line:before {
    transform: rotate(-45deg);
  }
  .is-drawerActive .p-hamburger__line:after {
    transform: rotate(45deg);
  }
  .is-drawerActive .p-hamburger .text {
    margin: 0;
    width: 0;
    opacity: 0;
  }
}
/*************************
* footer
**************************/
.l-footer {
  background-color: #363D40;
  padding: 80px 0 80px;
  color: #fff;
}
@media (max-width: 1000px) {
  .l-footer {
    padding: 55px 0 50px;
  }
}

.footer-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 45% 55%;
  grid-template-rows: auto auto 1fr;
  gap: 0 30px;
  grid-template-areas: "g01 g03" "g02 g02" "g04 g05";
}
@media (max-width: 1000px) {
  .footer-grid {
    width: 87%;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto auto 1fr;
    gap: 0;
    grid-template-areas: "g01 g01" "g02 g02" "g03 g03" "g04 g05";
  }
}
.footer-grid .g01 {
  grid-area: g01;
}
.footer-grid .g02 {
  grid-area: g02;
}
.footer-grid .g03 {
  grid-area: g03;
}
.footer-grid .g04 {
  grid-area: g04;
}
.footer-grid .g05 {
  grid-area: g05;
}

.footer-nav {
  display: flex;
}
@media (max-width: 1000px) {
  .footer-nav {
    flex-direction: column;
  }
}

.footer-logo {
  width: 368px;
}
@media (max-width: 1000px) {
  .footer-logo {
    width: 210px;
  }
}
.footer-logo a {
  display: block;
}

.footer-address {
  font-size: 15px;
  line-height: 1.8;
  font-feature-settings: "palt";
}
@media (max-width: 1000px) {
  .footer-address {
    line-height: 1.7;
  }
}

* + .footer-address {
  margin-top: 35px;
}

* + .footer-address__item {
  margin-top: 0.5em;
}

.footer-address__text {
  font-size: 15px;
  line-height: 2;
}
.footer-address__text .tel {
  font-size: calc(24/15 * 100%);
  font-weight: 500;
  line-height: 1.25;
}

.footer-address__iframe {
  position: relative;
  aspect-ratio: 1300/314;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer-address__iframe {
    aspect-ratio: 2/1;
  }
}
.footer-address__iframe iframe {
  width: 100%;
  height: 100%;
}

.footer-address__map {
  margin-left: 0.5em;
}
@media (max-width: 1000px) {
  .footer-address__map {
    margin-top: 0.5em;
  }
}
@media (max-width: 768px) {
  .footer-address__map {
    display: block;
    margin-left: 0;
  }
}
.footer-address__map a {
  font-size: 13px;
  text-decoration: underline;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .footer__nav {
    margin-top: 50px;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 49% 49%;
    grid-template-rows: auto auto;
    gap: 1em 2%;
    grid-template-areas: "sg01 sg02" "sg03 sg04";
  }
  .footer__nav .sg01 {
    grid-area: sg01;
  }
  .footer__nav .sg02 {
    grid-area: sg02;
  }
  .footer__nav .sg03 {
    grid-area: sg03;
  }
  .footer__nav .sg04 {
    grid-area: sg04;
  }
}

.footer__nav-list {
  margin-right: 8.5%;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.footer__nav-list:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.footer__nav-list > li:not(:first-child) {
  margin-top: 1.75em;
}
@media (max-width: 1000px) {
  .footer__nav-list > li:not(:first-child) {
    margin-top: 0;
  }
}
@media (max-width: 1000px) {
  .footer__nav-list.sg01, .footer__nav-list.sg02, .footer__nav-list.sg03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75em 4%;
    align-content: start;
  }
  .footer__nav-list.sg01 > li, footer__nav-list.sg02 > li, footer__nav-list.sg03 > li {
    margin-top: 0;
  }
  .footer__nav-list.sg01 > li:nth-child(2), footer__nav-list.sg02 > li:nth-child(2), footer__nav-list.sg03 > li:nth-child(2) {
    margin-top: 0;
  }
  .footer__nav-list.sg03, .footer__nav-list.sg04 {
    margin-top: 1em;
  }
}
.footer-gnav__link {
  display: block;
  font-size: 15px;
  line-height: 150%;
}
.footer-gnav__link:hover, .footer-gnav__link:focus {
  color: var(--secondary-color);
}

.footer__nav-list-child {
  margin-top: 1.5em;
}
@media (max-width: 1000px) {
  .footer__nav-list-child {
    margin-top: 1em;
  }
}

.footer__nav-list-child > li:not(:first-child) {
  margin-top: 0.75em;
}

.footer-gnav__link__child {
  position: relative;
  font-size: 14px;
  line-height: 140%;
  color: #C6C6C6;
}
.footer-gnav__link__child:hover, .footer-gnav__link__child:focus {
  color: var(--secondary-color);
}

.footer-bottom-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
}
@media (max-width: 1000px) {
  .footer-bottom-wrap {
    margin-top: 48px;
    font-size: 10px;
  }
}

.c-copy {
  margin-top: 30px;
  font-size: 11px;
  line-height: 1;
  align-self: flex-end;
}
@media (max-width: 1000px) {
  .c-copy {
    margin-top: 25px;
    font-size: 10px;
    line-height: 1.8;
  }
}

.footer-sns-list {
  margin-top: 1em;
  display: flex;
  gap: 0 32px;
}
.footer-sns-list li {
  width: 1.75em;
}
.footer-sns-list a {
  display: block;
  transition: opacity;
}
.footer-sns-list a:hover, .footer-sns-list a:focus {
  opacity: 0.8;
}
.footer-sns-list a img {
  width: 100%;
  height: auto;
}

/*******************************
* fixed menu
******************************/
.fixed-sns {
  position: fixed;
  top: 40%;
  transform: translateY(-50%);
  right: 2.5%;
  z-index: 999;
}
.fixed-sns li {
  width: 40px;
  aspect-ratio: 1/1;
}
.fixed-sns li img {
  width: 100%;
  height: auto;
}
.fixed-sns li + li {
  margin-top: 1em;
}
.fixed-sns a {
  display: block;
}
.fixed-sns a:hover, .fixed-sns a:focus {
  opacity: 0.8;
}
@media (max-width: 960px) {
  .fixed-sns {
    display: none;
  }
}

/*******************************
* sns section
******************************/
.c-sec-sns {
  padding: 64px 0;
}
@media (max-width: 960px) {
  .c-sec-sns {
    padding: 50px 0;
  }
}

.c-sec-sns.u-bg-round-top {
  padding-top: 130px;
}
@media (max-width: 960px) {
  .c-sec-sns.u-bg-round-top {
    padding-top: 70px;
  }
}

.u-bg-gray + .c-sec-sns:not(.u-bg-round-top) {
  padding-top: 0;
}

.sns-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em 70px;
  padding: 57px min(57px, 5.4807692308%);
  background: #FFFFFF;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 1040px;
}
@media (max-width: 768px) {
  .sns-box {
    gap: 1em 50px;
    flex-direction: column;
    padding: 30px 5.4807692308%;
  }
}

.sns-title {
  font-family: var(--main-fontEn);
  font-style: italic;
  font-weight: 600;
  font-size: 104px;
  font-weight: 600;
  line-height: 0.89;
  font-size: clamp(50px,6.5vw,104px);
  color: var(--primary-color);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .sns-title {
    font-size: 50px;
  }
}

.sns-list {
  display: flex;
  gap: 0 70px;
}
@media (max-width: 768px) {
  .sns-list {
    gap: 50px;
  }
}
.sns-list a {
  display: block;
  width: 70px;
}
@media (max-width: 768px) {
  .sns-list a {
    width: 50px;
  }
}
.sns-list a img {
  width: 100%;
  height: auto;
}
.sns-list a:hover, .sns-list a:focus {
  opacity: 0.8;
}

/*******************************
* common
******************************/
.c-text-lead {
  margin: 40px auto 0;
  max-width: 728px;
}
@media (max-width: 960px) {
  .c-text-lead {
    margin: 20px auto 0;
  }
}

.c-title01 {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-black);
}
.c-title01::after {
  content: attr(data-title);
  color: var(--primary-color);
  font-family: var(--main-fontEn);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 960px) {
  .c-title01::after {
    font-size: 32px;
  }
}
.c-title01.--green::after {
  color: var(--primary-color);
}
.c-title01.--top {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-title01.--top {
    font-size: 15px;
  }
}
.c-title01.--top::after {
  margin-top: 0.2em;
  font-size: 104px;
  font-weight: 600;
  line-height: 0.89;
  font-size: clamp(50px,6.5vw,104px);
}
@media (max-width: 768px) {
  .c-title01.--top::after {
    font-size: 50px;
  }
}
.c-title01.--center {
  align-items: center;
  text-align: center;
}
.c-title01.--left {
  align-items: flex-start;
}
.c-title01.--right {
  align-items: flex-end;
}

.c-title02 {
  position: relative;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 960px) {
  .c-title02 {
    font-size: 28px;
    line-height: 130%;
  }
}
.c-title02.--large {
  font-size: 48px;
}
@media (max-width: 960px) {
  .c-title02.--large {
    font-size: 28px;
    line-height: 130%;
  }
}
.c-title02.--center {
  text-align: center;
}
.c-title02.--left {
  text-align: center;
}
.c-title02.--right {
  text-align: center;
}

.c-subttl01 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #D4D4D4;
  color: var(--secondary-color);
}
@media (max-width: 960px) {
  .c-subttl01 {
    font-size: 18px;
  }
}
.c-subttl01::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  top: inherit;
  z-index: 2;
  content: "";
  width: 5em;
  height: 1px;
  background-color: var(--secondary-color);
}

.c-subttl02 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.66;
}
@media (max-width: 768px) {
  .c-subttl02 {
    font-size: 18px;
  }
}

.c-subttl03 {
  position: relative;
  padding-left: 1em;
}
.c-subttl03::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-arrow01 {
  position: relative;
  display: block;
  width: 2em;
  height: 2em;
  background-color: var(--secondary-color);
  border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}
.c-arrow01::before, .c-arrow01::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 30%;
  height: 30%;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, transform, background-color;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-arrow01::before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.c-arrow01::after {
  transform: translate(-100%, -50%);
  opacity: 0;
}

a:hover .c-arrow01, a:focus .c-arrow01 {
  background-color: var(--color01);
}
a:hover .c-arrow01::before, a:focus .c-arrow01::before {
  opacity: 0;
  transform: translate(100%, -50%);
}
a:hover .c-arrow01::after, a:focus .c-arrow01::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.c-button01 {
  padding: 8px 8px 8px 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 40px;
  color: #fff;
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease-in-out;
}
.c-button01 .arrow {
  position: relative;
  display: block;
  width: 3.5em;
  height: 3.5em;
  background-color: #fff;
  border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}
.c-button01 .arrow::before, .c-button01 .arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 35%;
  height: 35%;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, transform, background-color;
  background-color: var(--text-black);
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button01 .arrow::before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.c-button01 .arrow::after {
  transform: translate(-100%, -50%);
  opacity: 0;
}
.c-button01[data-color=black] {
  background-color: var(--text-black);
}
.c-button01[data-color=black] .arrow::before, .c-button01[data-color=black] .arrow::after {
  background-color: var(--text-black);
}
.c-button01[data-color=black]:hover, .c-button01[data-color=black]:focus {
  background-color: #000;
}
.c-button01:hover, .c-button01:focus {
  background-color: var(--color01);
}
.c-button01:hover span.text, .c-button01:focus span.text {
  opacity: 1;
  transform: translateX(0);
}
.c-button01:hover .arrow::before, .c-button01:focus .arrow::before {
  opacity: 0;
  transform: translate(100%, -50%);
}
.c-button01:hover .arrow::after, .c-button01:focus .arrow::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.c-text01 {
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .c-text01 {
    font-size: 15px;
    line-height: 1.8;
  }
}

.c-text02 {
  font-size: 18px;
  line-height: 220%;
}
@media (max-width: 960px) {
  .c-text02 {
    font-size: 15px;
  }
}

.c-text03 {
  font-size: 16px;
  line-height: 170%;
}
@media (max-width: 960px) {
  .c-text03 {
    font-size: 15px;
  }
}

.c-top-text01 {
  font-size: 21px;
  line-height: 210%;
}
@media (max-width: 960px) {
  .c-top-text01 {
    font-size: 15px;
  }
}

.c-top-text02 {
  font-size: 17px;
  line-height: 180%;
}
@media (max-width: 960px) {
  .c-top-text02 {
    font-size: 15px;
  }
}

.c-top-text03 {
  font-size: 18px;
  line-height: 210%;
}
@media (max-width: 960px) {
  .c-top-text03 {
    font-size: 15px;
  }
}

.c-text-nodata {
  margin-top: 1.75em;
}

.c-sec01 {
  padding-top: 90px;
  padding-bottom: 164px;
}
@media (max-width: 960px) {
  .c-sec01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.c-page-title {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}
.c-page-title::after {
  content: attr(data-title);
  margin-top: 0.05em;
  text-transform: capitalize;
  color: #fff;
  font-family: var(--main-fontEn);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.57;
  font-style: italic;
}
@media (max-width: 960px) {
  .c-page-title::after {
    font-size: 40px;
  }
}
.c-page-title.--small::after {
  margin-top: 0.05em;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.16;
  font-style: italic;
}
@media (max-width: 960px) {
  .c-page-title.--small::after {
    font-size: 32px;
  }
}

.c-hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 480px;
  background: url(../img/about/bg.webp) no-repeat center/cover;
}
@media (max-width: 960px) {
  .c-hero {
    padding-bottom: 34px;
    background-image: url(../img/about/bg_sp.webp);
  }
}
@media (max-width: 768px) {
  .c-hero {
    height: 230px;
  }
}
.c-hero.--small {
  height: 340px;
}
@media (max-width: 768px) {
  .c-hero.--small {
    height: 230px;
  }
}

.c-lead-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .c-lead-wrap {
    flex-direction: column;
  }
}

.c-lead-title {
  font-size: 48px;
  font-size: clamp(25px,3vw,48px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--secondary-color);
}
@media (max-width: 960px) {
  .c-lead-title {
    font-size: 25px;
  }
}

.c-lead-body {
  width: calc(427 / var(--contents-width) * 100%);
}
@media (max-width: 960px) {
  .c-lead-body {
    margin-top: 40px;
    width: 100%;
  }
}

.c-list01 li {
  position: relative;
  padding-left: 1.5em;
}
.c-list01 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-list02 {
  counter-reset: number 0;
}
.c-list02 li {
  position: relative;
  padding-left: 1em;
}
.c-list02 li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0;
}

.c-table01 th {
  padding: 1.5em 0;
  font-size: 16px;
  line-height: 190%;
  color: var(--color01);
  border-bottom: 1px solid var(--color01);
}
@media (max-width: 960px) {
  .c-table01 th {
    font-size: 14px;
  }
}
.c-table01 td {
  padding: 1.5em 0;
  font-size: 16px;
  border-bottom: 1px solid #D4D4D4;
}
@media (max-width: 960px) {
  .c-table01 td {
    font-size: 14px;
  }
}

.c-table02 {
  border-top: 1px solid #A9A9A9;
}
.c-table02 th {
  text-align: left;
  display: block;
  padding: 1.5em 0 0.5em;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  color: var(--color01);
}
.c-table02 td {
  display: block;
  padding: 0 0 1.5em;
  font-size: 14px;
  border-bottom: 1px solid #A9A9A9;
}

.c-map-link {
  position: relative;
  padding-left: 1.75em;
  display: inline-block;
  color: var(--color01);
}
.c-map-link::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: var(--color01);
  -webkit-mask-image: url(../img/common/icon_map.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/common/icon_map.svg);
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: background ease-in-out 0.3s;
}
.c-map-link.--green {
  color: var(--primary-color);
}
.c-map-link.--green::before {
  background-color: var(--primary-color);
}

.c-page-contents {
  margin-top: 94px;
  padding-bottom: 90px;
  font-size: 16px;
  line-height: 190%;
  color: var(--text-black);
  word-break: break-all;
}
@media (max-width: 960px) {
  .c-page-contents {
    margin-top: 50px;
  }
}
.c-page-contents h2 {
  padding: 1em 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  text-wrap: wrap;
}
@media (max-width: 768px) {
  .c-page-contents h2 {
    padding: 0.75em 0.5em;
    font-size: 20px;
  }
}
.c-page-contents * + h2 {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .c-page-contents * + h2 {
    margin-top: 40px;
  }
}
.c-page-contents h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  text-wrap: wrap;
}
@media (max-width: 768px) {
  .c-page-contents h3 {
    font-size: 18px;
  }
}
.c-page-contents * + h3 {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .c-page-contents * + h3 {
    margin-top: 40px;
  }
}
.c-page-contents h4 {
  position: relative;
  padding-left: 1.5em;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.c-page-contents h4:before {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
}
.c-page-contents h5 {
  font-weight: 700;
}
.c-page-contents b, .c-page-contents strong {
  font-weight: 700;
}
.c-page-contents > * + * {
  margin-top: 1.5em;
}
.c-page-contents p {
  font-size: 16px;
  line-height: 1.81;
}
@media (max-width: 768px) {
  .c-page-contents p {
    font-size: 15px;
  }
}
.c-page-contents ul > li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.81;
}
@media (max-width: 768px) {
  .c-page-contents ul > li {
    font-size: 15px;
  }
}
.c-page-contents ol > li {
  position: relative;
  font-size: 16px;
  line-height: 1.81;
}
@media (max-width: 768px) {
  .c-page-contents ol > li {
    font-size: 15px;
  }
}
.c-page-contents ul > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
  color: inherit;
}
.c-page-contents ol {
  margin-left: 1.25em;
  list-style-type: decimal;
}
.c-page-contents a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  outline: none;
}
.c-page-contents a:hover, .c-page-contents a:active, .c-page-contents a:focus {
  text-decoration: none;
}
.c-page-contents blockquote {
  width: 100%;
  padding: 1em;
  border: 1px solid #000;
}
.c-page-contents cite {
  display: block;
  color: #7B7B7B;
  font-size: 0.8em;
  text-align: right;
}
.c-page-contents .line01 {
  background: linear-gradient(transparent 60%, #ffff80 60%);
  font-weight: bold;
  font-size: 110%;
}
.c-page-contents img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.c-form-select {
  position: relative;
  width: 100%;
}
.c-form-select.--w327 {
  max-width: 327px;
}

.c-form-select:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
  transform: rotate(135deg);
  pointer-events: none;
  z-index: 2;
}

.c-form-select select {
  height: 3.5em;
  width: 100%;
  padding: 0 8px;
  background-color: white;
  border-radius: 2px;
  border: 1px solid var(--secondary-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-size: 14px;
  color: #262626;
}

.c-form-select select::-ms-expand {
  display: none;
}

.c-form-select select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #303D4D inset;
}

/***********************
* anchorlink list
************************/
.c-anchor-menu {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 98%;
}
@media (max-width: 768px) {
  .c-anchor-menu {
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 340px;
    border-radius: 30px;
    justify-content: flex-start;
  }
}
.c-anchor-menu li {
  position: relative;
  width: 176px;
  height: 76px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .c-anchor-menu li {
    width: 50%;
    height: 60px;
    margin-bottom: 0;
  }
  .c-anchor-menu li:nth-child(n+3) {
    border-top: none;
  }
}
.c-anchor-menu li:not(:first-child) {
  position: relative;
  border-left: none;
}
.c-anchor-menu li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: #DDDDDD;
  width: 1px;
  height: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-anchor-menu li:nth-child(odd)::before {
    display: none;
  }
}

.c-anchor-link {
  position: relative;
  padding: 1.75em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 15px;
}
@media (max-width: 960px) {
  .c-anchor-link {
    padding: 0.75em 0.5em;
    min-height: 59px;
    font-size: 14px;
  }
}
.c-anchor-link:hover, .c-anchor-link:focus {
  color: var(--primary-color);
}
.c-anchor-link:hover::after, .c-anchor-link:focus::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 60%;
  height: 3px;
  background-color: var(--primary-color);
}
.c-anchor-link .small {
  display: block;
  font-size: 11px;
}

.c-anchor-menu02 {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 98%;
}
@media (max-width: 768px) {
  .c-anchor-menu02 {
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 340px;
    border-radius: 30px;
    justify-content: flex-start;
  }
}
.c-anchor-menu02 li {
  position: relative;
  width: 176px;
  height: 76px;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .c-anchor-menu02 li {
    width: 50%;
    height: 60px;
    margin-bottom: 0;
  }
  .c-anchor-menu02 li:nth-child(n+3) {
    border-top: none;
  }
}
.c-anchor-menu02 li:not(:first-child) {
  position: relative;
  border-left: none;
}
.c-anchor-menu02 li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: #E6E6E6;
  width: 1px;
  height: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-anchor-menu02 li:nth-child(odd)::before {
    display: none;
  }
}

.c-anchor-link02 {
  position: relative;
  padding: 1.75em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 15px;
}
@media (max-width: 960px) {
  .c-anchor-link02 {
    padding: 0.75em 0.5em 1.25em;
    min-height: 59px;
    font-size: 14px;
  }
}
.c-anchor-link02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1em;
  height: 1em;
  background: var(--color01);
  -webkit-mask-image: url(../img/common/anchor02_arrow.svg);
          mask-image: url(../img/common/anchor02_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.c-anchor-link02:hover, .c-anchor-link02:focus {
  color: var(--primary-color);
}
.c-anchor-link02:hover::before, .c-anchor-link02:focus::before {
  background: var(--primary-color);
}
.c-anchor-link02:hover::after, .c-anchor-link02:focus::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 60%;
  height: 3px;
  background-color: var(--primary-color);
}
.c-anchor-link02 .small {
  display: block;
  font-size: 11px;
}

/***********************
* breadcrumb list
************************/
.c-cursor {
  position: absolute;
  z-index: 5;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--text-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.2s ease-out;
  font-size: 14px;
}

/***********************
* breadcrumb list
************************/
.breadcrumb {
  padding: 1.5em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 0.05em;
}
@media (max-width: 960px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb.l-inner {
  margin-left: 0;
}
.breadcrumb li {
  display: flex;
  margin-right: 0;
}
.breadcrumb li a {
  margin-right: 1em;
  position: relative;
  display: block;
  color: #fff;
}
.breadcrumb li a:hover, .breadcrumb li a:focus {
  text-decoration: underline;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  margin-right: 0.5em;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #fff;
  -webkit-mask-image: url(../img/common/bread_arrow.svg);
          mask-image: url(../img/common/bread_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.breadcrumb li:last-child {
  color: var(--primary-color);
}

/***********************
* totop
************************/
.c-totop {
  position: fixed;
  bottom: 20px;
  right: 4%;
  width: 78px;
  height: 78px;
  border-radius: 100%;
  background: var(--primary-color);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 80;
  cursor: pointer;
}
@media (max-width: 960px) {
  .c-totop {
    width: 48px;
    height: 48px;
  }
}
.c-totop:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: calc(50% + 5px);
  margin-top: -4px;
  transform: rotate(-45deg) translate(-50%, -50%);
}
@media (max-width: 960px) {
  .c-totop:before {
    left: calc(50% + 2px);
    width: 9px;
    height: 9px;
  }
}

/*************************
* dropdown + title
**************************/
.c-archive-head {
  position: relative;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 30% 40% 30%;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas: ". g01 g02";
}
.c-archive-head .g01 {
  grid-area: g01;
}
.c-archive-head .g02 {
  grid-area: g02;
}
@media (max-width: 960px) {
  .c-archive-head {
    display: flex;
    flex-direction: column;
    gap: 50px 0;
  }
}
.c-archive-head .c-form-select {
  max-width: 280px;
}
@media (max-width: 960px) {
  .c-archive-head .c-form-select {
    margin: 0 auto;
  }
}

/**************************
* news list
*************************/
.news-cate-area {
  padding: 2.5em 3em;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 60px;
}
@media (max-width: 768px) {
  .news-cate-area {
    padding: 1.5em 2em;
    flex-direction: column;
  }
}

.news-cate-area-title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 2.11;
}
@media (max-width: 768px) {
  .news-cate-area-title {
    font-size: 16px;
  }
}

.news-category {
  margin-left: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .news-category {
    margin-left: 0;
  }
}
.news-category li {
  min-width: 120px;
  display: inline-block;
}
.news-category a {
  margin: 0 8px 8px 0;
  display: block;
  padding: 0.25em 0.5em;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid var(--primary-color);
  transition: color ease-in-out 0.3s;
  transition-property: color, background-color;
}
@media (max-width: 768px) {
  .news-category a {
    font-size: 14px;
  }
}
.news-category a.is-active, .news-category a:hover, .news-category a:active, .news-category a:focus {
  color: #fff;
  background-color: var(--primary-color);
}

.newslist {
  margin-top: 88px;
  margin-left: auto;
  margin-right: auto;
  max-width: 802px;
  width: 100%;
}
@media (max-width: 768px) {
  .newslist {
    margin-top: 44px;
  }
}
.newslist .archive-item {
  border-bottom: 1px solid #C9B8B8;
}
.newslist .archive-item:first-child {
  border-top: 1px solid #C9B8B8;
}
.newslist a {
  position: relative;
  padding: 1em 1.5em 1em 0;
  display: flex;
  font-size: 16px;
}
@media (max-width: 768px) {
  .newslist a {
    flex-wrap: wrap;
    font-size: 15px;
  }
}
.newslist a:hover .category span, .newslist a:active .category span, .newslist a:focus .category span {
  color: var(--primary-color);
  background-color: #fff;
}
.newslist a:hover .title, .newslist a:active .title, .newslist a:focus .title {
  color: var(--primary-color);
}
.newslist .date {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 190%;
}
.newslist .category {
  padding-top: 0.25em;
  flex-shrink: 0;
  margin-left: 25px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .newslist .category {
    margin-left: 1em;
  }
}
.newslist .category span {
  flex-shrink: 0;
  padding: 0 0.5em;
  display: inline-block;
  min-width: 60px;
  text-align: center;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  font-size: 12px;
  line-height: 1.3;
  transition: color ease-in-out 0.3s;
  transition-property: color, background-color;
}
.newslist .title {
  margin-left: 25px;
  padding-right: 1em;
  font-size: 16px;
  font-weight: 500;
  line-height: 190%;
  transition: color ease-in-out 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (max-width: 768px) {
  .newslist .title {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    font-size: 15px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
  }
}

/**************************
* news detail
*************************/
.news-detail {
  padding-top: 28px;
}
.news-detail .l-inner > * {
  margin-right: auto;
  margin-left: auto;
  width: 95%;
}
@media (max-width: 768px) {
  .news-detail .l-inner > * {
    width: 100%;
  }
}
.news-detail .p-post-contents {
  padding-bottom: 90px;
  font-size: 16px;
  line-height: 190%;
  color: var(--text-black);
  word-break: break-all;
}
.news-detail .p-post-contents h2 {
  padding: 1em 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  text-wrap: wrap;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents h2 {
    padding: 0.75em 0.5em;
    font-size: 20px;
  }
}
.news-detail .p-post-contents * + h2 {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents * + h2 {
    margin-top: 40px;
  }
}
.news-detail .p-post-contents h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  text-wrap: wrap;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents h3 {
    font-size: 18px;
  }
}
.news-detail .p-post-contents * + h3 {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents * + h3 {
    margin-top: 40px;
  }
}
.news-detail .p-post-contents h4 {
  position: relative;
  padding-left: 1.5em;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.news-detail .p-post-contents h4:before {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
}
.news-detail .p-post-contents h5 {
  font-weight: 700;
}
.news-detail .p-post-contents b, .news-detail .p-post-contents strong {
  font-weight: 700;
}
.news-detail .p-post-contents > * + * {
  margin-top: 1.5em;
}
.news-detail .p-post-contents p {
  font-size: 16px;
  line-height: 1.81;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents p {
    font-size: 15px;
  }
}
.news-detail .p-post-contents ul > li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.81;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents ul > li {
    font-size: 15px;
  }
}
.news-detail .p-post-contents ol > li {
  position: relative;
  font-size: 16px;
  line-height: 1.81;
}
@media (max-width: 768px) {
  .news-detail .p-post-contents ol > li {
    font-size: 15px;
  }
}
.news-detail .p-post-contents ul > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
  color: inherit;
}
.news-detail .p-post-contents ol {
  margin-left: 1.25em;
  list-style-type: decimal;
}
.news-detail .p-post-contents a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  outline: none;
}
.news-detail .p-post-contents a:hover, .news-detail .p-post-contents a:active, .news-detail .p-post-contents a:focus {
  text-decoration: none;
}
.news-detail .p-post-contents blockquote {
  width: 100%;
  padding: 1em;
  border: 1px solid #000;
}
.news-detail .p-post-contents cite {
  display: block;
  color: #7B7B7B;
  font-size: 0.8em;
  text-align: right;
}
.news-detail .p-post-contents .line01 {
  background: linear-gradient(transparent 60%, #ffff80 60%);
  font-weight: bold;
  font-size: 110%;
}
.news-detail .p-post-contents img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.news-detail .p-post-header {
  margin-top: 3em;
  padding-bottom: 2em;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #D4D4D4;
}
.news-detail .p-post-date {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--primary-color);
  vertical-align: middle;
}
.news-detail .p-post-cate {
  display: flex;
  flex-wrap: wrap;
}
.news-detail .p-post-cate span {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8em;
  white-space: nowrap;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 0 15px;
  height: 20px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-detail .p-post-cate span {
    font-size: 10px;
  }
}
.news-detail .p-post-title {
  margin-top: 0.5em;
  font-size: 20px;
  font-weight: 700;
  line-height: 190%;
}
@media (max-width: 768px) {
  .news-detail .p-post-title {
    font-size: 20px;
  }
}
.news-detail .p-post-thumb {
  position: relative;
  margin: 64px auto 0;
  width: 81%;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-detail .p-post-thumb {
    margin-top: 36px;
    width: 92%;
    border-radius: 0;
  }
}
.news-detail .p-post-thumb::before {
  content: "";
  display: block;
  height: 0;
  padding-top: 66%;
}
.news-detail .p-post-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail * + .p-post-contents {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .news-detail * + .p-post-contents {
    margin-top: 40px;
  }
}
.news-detail .post-links {
  display: flex;
  justify-content: space-between;
}
.news-detail .post-links .post-links__item {
  position: relative;
}
.news-detail .post-links .post-links__item:nth-child(n+2) {
  margin-left: 20px;
}
.news-detail .post-links .post-links__item.back {
  width: 168px;
}
.news-detail .post-links .post-links__item.back a {
  color: var(--text-black);
  background-color: var(--text-black);
  border: 1px solid var(--text-black);
  background-color: transparent;
  border-radius: 0;
}
.news-detail .post-links .post-links__item.next,
.news-detail .post-links .post-links__item.prev {
  width: 160px;
}
.news-detail .post-links .post-links__item.next a,
.news-detail .post-links .post-links__item.prev a {
  color: var(--text-black);
  border: 1px solid var(--text-black);
  border-radius: 0;
}
.news-detail .post-links .post-links__item.next a {
  padding-right: 1.25em;
}
.news-detail .post-links .post-links__item.prev a {
  padding-left: 1.25em;
}
.news-detail .post-links .post-links__item.next a::before,
.news-detail .post-links .post-links__item.prev a::before {
  content: "";
  display: block;
  height: 0.5em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 0.5em;
  z-index: 1;
}
.news-detail .post-links .post-links__item.prev a:before {
  border-bottom: 1px solid var(--text-black);
  border-left: 1px solid var(--text-black);
  left: 1em;
  transform: rotate(45deg) translateY(-50%);
}
.news-detail .post-links .post-links__item.prev a:hover:before {
  border-bottom: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
.news-detail .post-links .post-links__item.next a:before {
  border-bottom: 1px solid var(--text-black);
  border-right: 1px solid var(--text-black);
  right: 1em;
  transform: rotate(-45deg) translateY(-50%);
}
.news-detail .post-links .post-links__item.next a:hover:before {
  border-bottom: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
}
.news-detail .post-links a {
  position: relative;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  min-height: 4em;
  padding: 1em;
  width: 100%;
  font-size: 15px;
}
@media (max-width: 768px) {
  .news-detail .post-links a {
    font-size: 12px;
  }
}
.news-detail .post-links a:hover, .news-detail .post-links a:active, .news-detail .post-links a:focus {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.c-workslist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 2.5%;
}
@media (max-width: 768px) {
  .c-workslist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-workslist .archive-item {
  padding: 0 0 2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 1.5em 0;
  background-color: #fff;
  border-radius: var(--common-r02);
}
.c-workslist .archive-item__thumb {
  position: relative;
  border-radius: var(--common-r02) var(--common-r02) 0 0;
  overflow: hidden;
  aspect-ratio: 417/267;
  order: 1;
}
.c-workslist .archive-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.c-workslist .archive-item__title {
  padding: 0 calc(48 / 417 * 100%);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--secondary-color);
  transition: color ease-in-out 0.3s;
  order: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-workslist .archive-item__category {
  padding: 0 calc(48 / 417 * 100%);
  order: 2;
}
.c-workslist .archive-item__category li {
  min-width: 80px;
  display: inline-block;
}
.c-workslist .archive-item__category li {
  margin: 0 8px 8px 0;
  display: inline-block;
  padding: 0 1em;
  text-align: center;
  font-size: 12px;
  line-height: 150%;
  background-color: var(--color02);
  border: 1px solid var(--color02);
  transition: color ease-in-out 0.3s;
  transition-property: color, background-color;
}
.c-workslist .archive-item__text {
  padding: 0 calc(48 / 417 * 100%);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 15px;
  line-height: 180%;
  order: 4;
}
.c-workslist .archive-item__link {
  padding: 0 calc(48 / 417 * 100%);
  text-align: right;
  font-size: 14px;
  order: 5;
}
.c-workslist .archive-item__link span {
  padding: 0.5em 2.5em 0.5em 0;
  display: inline-block;
  position: relative;
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}
.c-workslist .archive-item__link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/work_list_arrow.svg) no-repeat center/contain;
}
.c-workslist .archive-item:hover .archive-item__thumb img, .c-workslist .archive-item:focus .archive-item__thumb img {
  transform: scale(1.2);
}

/*************************
* pagination
**************************/
.archivelist + .c-pagination {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .archivelist + .c-pagination {
    margin-top: 50px;
  }
}

.c-pagination .navigation.pagination .screen-reader-text {
  display: none;
}
.c-pagination .navigation.pagination .nav-links {
  text-align: center;
}
.c-pagination .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: var(--secondary-color);
  background-color: rgba(var(--secondary-color), 0);
  border: none;
  transition: background-color 0.3s ease-in-out;
  transition-property: background-color, color, border;
  text-align: center;
  font-weight: 400;
}
.c-pagination .navigation.pagination .nav-links .page-numbers:focus, .c-pagination .navigation.pagination .nav-links .page-numbers:active, .c-pagination .navigation.pagination .nav-links .page-numbers:hover {
  color: #fff;
  background-color: var(--primary-color);
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: var(--secondary-color);
  border: none;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.current:active, .c-pagination .navigation.pagination .nav-links .page-numbers.current:hover {
  background-color: var(--primary-color);
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev {
  padding: 0.65em 0em;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: none;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover {
  background-color: transparent;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .c-pagination .navigation.pagination .nav-links .page-numbers {
    display: inline-block;
    margin: 0 2px;
  }
}
/*************************
* animation
**************************/
.js-animation[data-type=fadeIn] {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, visibility;
}

.js-animation[data-type=fadeIn].is-show {
  visibility: visible;
  opacity: 1;
}

.js-animation[data-type=fadeInLeft] {
  transform: translate(-30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInLeft].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInRight] {
  transform: translate(30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInRight].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInUp] {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInUp].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=chgScale] {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=chgScale].is-show {
  opacity: 1;
  transform: scale(1);
}

/*******************
* modal
*******************/
.is-modal-open {
  overflow: hidden;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.micromodal-slide.data-modal .modal__container {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
}
.micromodal-slide.data-modal .modal__content {
  padding: 0px 10px;
  background: #FFFFFF;
  box-shadow: 0px 0px 250px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border-radius: 8px;
}
.micromodal-slide.data-modal .modal__close {
  margin: 15px auto 0;
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  outline: #fff;
  background-color: #fff;
  border-radius: 40px;
  color: #262626;
}
.micromodal-slide.data-modal .modal__close:before {
  margin-right: 0.5em;
  content: "✕";
}
.micromodal-slide.data-modal .modal__content {
  padding: 30px 40px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: auto;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*************************
* 会社概要
**************************/
.about-anchor-menu {
  padding-top: 42px;
  padding-bottom: 0;
}
.sec-greeting {
  padding: 118px 0 140px;
}

.greeting-wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px calc(93 / 1141 * 100%);
}
@media (max-width: 960px) {
  .greeting-wrap {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}

.greeting-item {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.greeting-thumb {
  border-radius: var(--common-r03);
  overflow: hidden;
}
.greeting-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 190%;
}
@media (max-width: 960px) {
  .greeting-title {
    font-size: 18px;
  }
}
.greeting-title + .c-text01 {
  margin-top: 50px;
}
@media (max-width: 960px) {
  .greeting-title + .c-text01 {
    margin-top: 40px;
  }
}

/*会社理念*/
.sec-corporate-identity {
  padding: 64px 0 40px;
}

.corporate-identity-lead {
  margin-top: 50px;
  font-weight: 500;
  font-size: 40px;
  line-height: 160%;
  text-align: center;
}
@media (max-width: 960px) {
  .corporate-identity-lead {
    font-size: 20px;
  }
}

.corporate-identity-text {
  margin-top: 65px;
  text-align: center;
}
@media (max-width: 960px) {
  .corporate-identity-text {
    margin-top: 40px;
    text-align: left;
  }
}

.sec-company {
  padding: var(--sc01-pd);
}

.table-company {
  margin-top: 75px;
}
@media (max-width: 960px) {
  .table-company {
    font-size: 14px;
  }
}
.table-company th {
  text-align: left;
  width: 225px;
}
@media (max-width: 960px) {
  .table-company th {
    width: 60px;
  }
}
.table-company td {
  width: calc(100% - 225px);
}
@media (max-width: 960px) {
  .table-company td {
    padding-left: 2em;
    width: calc(100% - 60px);
  }
}

/*沿革*/
.sec-history {
  padding: var(--sc02-pd);
}

.table-history {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .table-history {
    margin-top: 40px;
  }
}
.table-history dt {
  position: relative;
  padding-bottom: 2em;
  width: 175px;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .table-history dt {
    width: 110px;
  }
}
.table-history dt span {
  position: relative;
  display: inline-block;
  padding-left: 2.5em;
}
@media (max-width: 960px) {
  .table-history dt span {
    padding-left: 1.5em;
  }
}
.table-history dt span::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
}
.table-history dt::before {
  position: absolute;
  top: 1.25em;
  left: 0.35em;
  content: "";
  display: block;
  height: 100%;
  width: 6px;
  background-color: #F2F2F2;
}
.table-history dt.last::before {
  content: "";
  display: none;
}
.table-history dd {
  padding-bottom: 3em;
  width: calc(100% - 175px);
}
@media (max-width: 960px) {
  .table-history dd {
    padding-left: 1em;
    width: calc(100% - 110px);
  }
}

/*ロゴに込めた想い*/
.sec-concept {
  padding: var(--sc01-pd);
}

.concept-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .concept-wrap {
    flex-direction: column;
  }
}

.concept-thumb {
  width: calc(196 / 863 * 100%);
}
@media (max-width: 768px) {
  .concept-thumb {
    margin: 0 auto;
    max-width: 100px;
  }
}

.concept-body {
  width: calc(539 / 863 * 100%);
}
@media (max-width: 768px) {
  .concept-body {
    margin-top: 30px;
    width: 100%;
  }
}

/*サステナビリティ*/
.sec-csr {
  padding: 80px 0 40px;
}
@media (max-width: 768px) {
  .sec-csr {
    padding: 45px 0 45px;
  }
}

.csr-subtitle {
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 960px) {
  .csr-subtitle {
    font-size: 28px;
  }
}
.csr-subtitle span {
  background: linear-gradient(transparent 60%, #DAFF0B 60%);
}

* + .csr-subtitle {
  margin-top: 72px;
}
@media (max-width: 960px) {
  * + .csr-subtitle {
    margin-top: 40px;
  }
}

.realize-wrap + .csr-subtitle {
  margin-top: 220px;
}
@media (max-width: 960px) {
  .realize-wrap + .csr-subtitle {
    margin-top: 40px;
  }
}

.csr-text {
  margin: 1.5em auto 0;
  max-width: 947px;
}

.realize-wrap {
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 960px) {
  .realize-wrap {
    margin-top: 80px;
    grid-template-columns: repeat(1, 1fr);
    gap: 70px 0;
  }
}

.realize-item {
  position: relative;
  padding: 80px 9% 50px;
  background-color: #F7F7F2;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .realize-item {
    padding: 50px 9% 40px;
  }
}

.realize-body {
  margin-top: 2em;
}

.realize-num {
  position: absolute;
  top: -73px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #F7F7F2;
  font-family: var(--main-fontEn);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 100%;
}
@media (max-width: 960px) {
  .realize-num {
    top: -50px;
    width: 100px;
    font-size: 11px;
  }
}
.realize-num .num {
  font-size: 64px;
  font-weight: 600;
}
@media (max-width: 960px) {
  .realize-num .num {
    font-size: 40px;
  }
}
.realize-num .unit {
  font-size: calc(24 /64 * 100%);
}

.realize-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 960px) {
  .realize-title {
    font-size: 20px;
  }
}

.realize-text {
  margin-top: 1em;
}

.realize-thumb {
  overflow: hidden;
  border-radius: var(--common-r02);
}

.sdgs-figure {
  margin: 85px auto 0;
  width: calc(781/ 1387 * 100%);
  max-width: 781px;
}
@media (max-width: 960px) {
  .sdgs-figure {
    width: 100%;
  }
}
.sdgs-figure + .sdgs-subtitle {
  margin-top: 100px;
}
@media (max-width: 960px) {
  .sdgs-figure + .sdgs-subtitle {
    margin-top: 50px;
  }
}

.sdgs-subtitle {
  padding: 0.75em 1em;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background-color: #009DDF;
  border-radius: 40px;
}
@media (max-width: 960px) {
  .sdgs-subtitle {
    font-size: 18px;
  }
}

.sdgs-list {
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: 1fr 58%;
  gap: 60px calc(100 / 1308 * 100%);
  max-width: 1308px;
}
@media (max-width: 960px) {
  .sdgs-list {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.sdgs-item {
  display: flex;
}
@media (max-width: 768px) {
  .sdgs-item {
    flex-direction: column;
  }
}

.sdgs-item-icon {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .sdgs-item-icon {
    justify-content: center;
    width: 100%;
  }
}

.sdgs-item-icon img {
  width: 100%;
  max-width: 140px;
}
.sdgs-item-icon img + img {
  margin-left: 10px;
}

.sdgs-item-detail {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .sdgs-item-detail {
    margin-top: 28px;
    margin-left: 0;
  }
}

.sdgs-item-title {
  margin-top: 0.5em;
  font-size: 24px;
  line-height: 140%;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sdgs-item-title {
    font-size: 18px;
  }
}

.sdgs-item-text {
  margin-top: 0.5em;
}

.sdgs-color03 {
  color: #229939;
}

.sdgs-color08 {
  color: #9a0034;
}

.sdgs-color09 {
  color: #f57207;
}

.sdgs-color11 {
  color: #fca500;
}

.sdgs-color12 {
  color: #d69500;
}

/* アクセスマップ*/
.sec-access {
  padding: 150px 0 92px;
}
@media (max-width: 768px) {
  .sec-access {
    padding: 75px 0 45px;
  }
}

.access-map {
  margin-top: 60px;
  position: relative;
  width: 100%;
  aspect-ratio: 1300/392;
  overflow: hidden;
}
@media (max-width: 960px) {
  .access-map {
    margin-top: 40px;
    aspect-ratio: 2/1;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-item {
  margin: 100px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 790px;
}
@media (max-width: 960px) {
  .access-item {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .access-item {
    margin-top: 40px;
    flex-direction: column;
  }
}

.access-item__img {
  width: calc(400 / 790 * 100%);
  border-radius: var(--common-r02);
  overflow: hidden;
}
@media (max-width: 768px) {
  .access-item__img {
    width: 100%;
  }
}

.access-item__detail {
  width: calc(310 / 790 * 100%);
}
@media (max-width: 768px) {
  .access-item__detail {
    margin-top: 30px;
    width: 100%;
  }
}

.access-item__group + .access-item__group {
  margin-top: 1em;
}

.access-item__link {
  font-size: 12px;
}

/**********************
* 真越機工の強み
*************************/
.hero-strong {
  background-image: url(../img/strong/bg.webp);
}
@media (max-width: 960px) {
  .hero-strong {
    background-image: url(../img/strong/bg_sp.webp);
  }
}

.sec-strong01 {
  padding: var(--sc01-pd);
}

.sec-strong02 {
  padding: var(--sc02-pd);
}

.strong02-head {
  display: flex;
}
@media (max-width: 960px) {
  .strong02-head {
    flex-direction: column;
  }
}

.strong02-anchor {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 24px;
  color: var(--color01);
}
@media (max-width: 960px) {
  .strong02-anchor {
    margin: 40px auto 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 14px;
    width: 100%;
  }
}
.strong02-anchor a {
  padding: 18px 0 28px;
  display: block;
  border-radius: 8px;
  border-left: 1px solid #E6E6E6;
}
@media (max-width: 960px) {
  .strong02-anchor a {
    padding: 9px 5px 20px;
    border-radius: 4px;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 20%;
    grid-template-rows: 1fr auto;
    gap: 0;
    border: 1px solid #E6E6E6;
  }
}
.strong02-anchor li:last-child a {
  border-right: 1px solid #E6E6E6;
}
.strong02-anchor li {
  position: relative;
}
.strong02-anchor li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0em;
  transform: translateX(-50%);
  margin: 0 auto 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: var(--color01);
  -webkit-mask-image: url(../img/strong/arrow_down.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../img/strong/arrow_down.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.strong02-anchor__no {
  margin-right: 0.5em;
  font-size: 19px;
  font-size: clamp(16px,1.18vw,19px);
  font-style: italic;
  font-weight: 600;
  font-family: var(--main-fontEn);
  line-height: 150%;
}
@media (max-width: 960px) {
  .strong02-anchor__no {
    font-size: 16px;
  }
}

.strong02-anchor__img {
  margin: 20px auto 0;
  width: 100%;
  max-width: 128px;
  height: auto;
}
@media (max-width: 960px) {
  .strong02-anchor__img {
    margin: 0 auto 0;
    width: 100%;
  }
}

.strong02-anchor__title {
  position: relative;
  font-size: 24px;
  font-size: clamp(19px,1.5vw,24px);
  font-weight: 700;
  line-height: 160%;
  text-align: center;
}
@media (max-width: 960px) {
  .strong02-anchor__title {
    align-self: center;
    font-size: 19px;
  }
}

.three-item-list {
  margin-top: 100px;
  counter-reset: number 0;
}
@media (max-width: 960px) {
  .three-item-list {
    margin-top: 70px;
  }
}

.three-item {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.three-item-box {
  margin-top: calc(322 / var(--contents-width) * 100%);
  position: relative;
  z-index: 0;
  padding: 50px 67px;
  border-radius: var(--common-r03);
  background: #F5F5F5;
  max-width: 602px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 87px 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 11%;
  grid-template-areas: "g04 g01" "g04 g02" "g03 g03";
}
.three-item-box .g04 {
  grid-area: g04;
}
.three-item-box .g02 {
  grid-area: g02;
}
.three-item-box .g03 {
  grid-area: g03;
}
.three-item-box .g01 {
  grid-area: g01;
}
@media (max-width: 960px) {
  .three-item-box {
    margin-top: 50%;
    grid-template-columns: 60px 1fr;
    width: 94%;
    padding: 30px 1.5em 30px;
  }
}

.three-item-box__icon svg {
  width: 100%;
  height: auto;
}

.three-item-box__title {
  margin-top: 0.25em;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: var(--color03);
}
@media (max-width: 960px) {
  .three-item-box__title {
    font-size: 24px;
  }
}

.three-item-box__num {
  position: relative;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  font-family: var(--main-fontEn);
  line-height: 1;
  color: var(--color03);
  align-self: flex-start;
}
@media (max-width: 960px) {
  .three-item-box__num {
    font-size: 18px;
  }
}

.three-item-box__text {
  margin-top: 1.25em;
}

.three-item__thumb {
  position: absolute;
  width: calc(866 / var(--contents-width) * 100%);
  overflow: hidden;
  border-radius: var(--common-r02);
}
@media (max-width: 960px) {
  .three-item__thumb {
    width: 100%;
  }
}

.three-item:nth-child(odd) .three-item__thumb {
  left: 0;
  top: 0;
}
.three-item:nth-child(odd) .three-item-box {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 960px) {
  .three-item:nth-child(odd) .three-item-box {
    margin-right: auto;
  }
}
.three-item:nth-child(even) {
  flex-direction: row-reverse;
}
.three-item:nth-child(even) .three-item__thumb {
  right: 0;
  top: 0;
}
.three-item:nth-child(even) .three-item-box {
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 960px) {
  .three-item:nth-child(even) .three-item-box {
    margin-left: auto;
  }
}
.three-item + .three-item {
  margin-top: 5.6%;
}
@media (max-width: 960px) {
  .three-item + .three-item {
    margin-top: 60px;
  }
}

/* 建設業許可*/
.sec-strong04 {
  padding-top: 104px;
}
@media (max-width: 960px) {
  .sec-strong04 {
    padding: 70px 0;
  }
}

.strong04-box {
  margin: 0 auto;
  padding: 40px 4%;
  background: #F7F7F7;
}
@media (max-width: 960px) {
  .strong04-box {
    display: block;
  }
}

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

.strong04-table {
  margin: 2em auto 0;
  display: flex;
  width: calc(980 / 1300 * 100%);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .strong04-table {
    flex-direction: column;
    font-size: 15px;
    width: 100%;
  }
}
.strong04-table > li {
  padding: 1em 2em;
  display: flex;
  align-items: center;
}
.strong04-table > li:first-child {
  width: 8em;
  text-align: center;
}
@media (max-width: 768px) {
  .strong04-table > li:first-child {
    width: 100%;
  }
}
.strong04-table > li:not(:last-child) {
  border-right: 1px solid #000;
}
@media (max-width: 768px) {
  .strong04-table > li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #000;
  }
}
.strong04-table + .strong04-table {
  margin-top: 36px;
}

/* 対応可能工事*/
.sec-strong03 {
  padding-top: 125px;
  padding-bottom: 100px;
}
@media (max-width: 960px) {
  .sec-strong03 {
    padding: 70px 0 80px;
  }
}

.strong03-grid {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 960px) {
  .strong03-grid {
    flex-direction: column;
  }
}

.strong03-box {
  width: calc(466 / 1300 * 100%);
}
@media (max-width: 960px) {
  .strong03-box {
    width: 100%;
  }
}
.strong03-box p {
  margin-top: 64px;
}
@media (max-width: 960px) {
  .strong03-box p {
    margin-top: 40px;
  }
}

.construction-list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 77px 6%;
}
@media (max-width: 960px) {
  .construction-list {
    margin: 40px auto 0;
    grid-template-columns: repeat(1, 1fr);
    width: 92%;
    gap: 40px 0;
  }
}

.construction-item:nth-child(even) {
  transform: translateY(60px);
}
@media (max-width: 960px) {
  .construction-item:nth-child(even) {
    transform: translateY(0);
  }
}

.construction__img {
  border-radius: var(--common-r02);
  overflow: hidden;
}

.construction__text {
  padding: 0.5em 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  text-align: center;
}
@media (max-width: 960px) {
  .construction__text {
    font-size: 16px;
  }
}

.cta {
  margin-top: 112px;
  padding: 5em 1em 5em 7em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--color02);
  border-radius: 120px;
}
@media (max-width: 960px) {
  .cta {
    margin-top: 50px;
    padding: 2em 1em 2em 1em;
    flex-direction: column;
  }
}

.cta-title {
  padding-right: 11.5%;
  font-size: 20px;
  font-size: clamp(15px,1.25vw,20px);
}
@media (max-width: 960px) {
  .cta-title {
    padding-right: 0;
  }
}

.cta-detail {
  position: relative;
  padding-left: 8%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 960px) {
  .cta-detail {
    margin-top: 10px;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .cta-detail {
    flex-direction: column;
  }
}
.cta-detail::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background: var(--text-black);
}
@media (max-width: 960px) {
  .cta-detail::before {
    display: none;
  }
}

.cta-company {
  font-size: 28px;
  font-weight: 500;
  font-size: clamp(22px,1.75vw,28px);
}
@media (max-width: 960px) {
  .cta-company {
    font-size: clamp(18px,5.86vw,22px);
  }
}
.cta-company .small {
  font-size: calc(20/28 * 100%);
}
.cta-company .name {
  letter-spacing: 0.05em;
}

.cta-tel {
  margin-left: 1em;
  position: relative;
  padding-left: 1.25em;
  font-family: var(--main-fontEn);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  font-size: clamp(32px,2.75vw,44px);
  letter-spacing: 0.04em;
}
@media (max-width: 960px) {
  .cta-tel {
    font-size: clamp(18px,7.46vw,28px);
  }
}
@media (max-width: 768px) {
  .cta-tel {
    margin-left: 0;
  }
}
.cta-tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--text-black);
  -webkit-mask-image: url(../img/common/icon_tel.svg);
          mask-image: url(../img/common/icon_tel.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/**********************
* できること
*************************/
.hero-service {
  background-image: url(../img/service/bg.webp);
}
@media (max-width: 960px) {
  .hero-service {
    background-image: url(../img/service/bg_sp.webp);
  }
}

.sec-service01 {
  padding: var(--sc01-pd);
}

.sec-service02 {
  padding: 0 0 160px;
}
@media (max-width: 960px) {
  .sec-service02 {
    padding: 0 0 80px;
  }
}

.service-anchor-menu {
  margin-top: 110px;
}
@media (max-width: 960px) {
  .service-anchor-menu {
    margin-top: 60px;
  }
}
@media (max-width: 960px) {
  .service-anchor-menu + .service-anchor-menu {
    margin-top: 0;
  }
}

.service-card-list {
  margin: 128px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 8%;
  max-width: 1300px;
  width: 92%;
}
@media (max-width: 960px) {
  .service-card-list {
    margin-top: 60px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-card:nth-child(even) {
  transform: translateY(305px);
}
@media (max-width: 960px) {
  .service-card:nth-child(even) {
    transform: translateY(0);
  }
}
@media (max-width: 960px) {
  .service-card {
    width: 100%;
  }
}
.service-card:hover .service-card__img img, .service-card:focus .service-card__img img {
  transform: scale(1.25);
}

.service-card__title {
  position: relative;
  margin-top: calc(36 / 26 * 1em);
  padding-right: 1.5em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .service-card__title {
    margin-top: 10px;
    font-size: 20px;
  }
}

.service-card__img {
  border-radius: var(--common-r02);
  overflow: hidden;
}

.service-card__img img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.service-card__text {
  margin-top: 1.5em;
  padding-right: 4em;
}
@media (max-width: 768px) {
  .service-card__text {
    padding-right: 0;
  }
}

.service-card__arrow {
  align-self: end;
  width: 48px;
  height: 48px;
}
@media (max-width: 768px) {
  .service-card__arrow {
    width: 30px;
    height: 30px;
  }
}

.service-card__body {
  position: relative;
  margin-top: -50px;
  padding: 1em 4% 1em 0;
  width: calc(508 / 600 * 100%);
  background-color: #fff;
  border-radius: 0 var(--common-r02) 0 0;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto 48px;
  grid-template-rows: auto auto;
  gap: 0px 4%;
  grid-template-areas: "service-card__title service-card__title" "service-card__text service-card__arrow";
}
@media (max-width: 768px) {
  .service-card__body {
    grid-template-columns: auto 30px;
  }
}

.service-card__title {
  grid-area: service-card__title;
}

.service-card__text {
  grid-area: service-card__text;
}

.service-card__arrow {
  grid-area: service-card__arrow;
}

.service-button {
  margin: 60px auto 0;
  max-width: 310px;
}

/*************************z
* 実績ページのcss works-list
*************************/
.works-archive-hero {
  background-image: url(../img/works/bg_works.webp);
}
@media (max-width: 960px) {
  .works-archive-hero {
    background-image: url(../img/works/bg_works.webp);
  }
}

.sec-workslist01 {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media (max-width: 960px) {
  .sec-workslist01 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.workslist-select {
  margin-left: auto;
  max-width: 280px;
}
@media (max-width: 768px) {
  .workslist-select {
    margin-right: auto;
  }
}

.works-archive-list {
  margin-top: 72px;
}

.works-archive-list + .works-archive-pagination {
  margin-top: 112px;
}
@media (max-width: 960px) {
  .works-archive-list + .works-archive-pagination {
    margin-top: 60px;
  }
}

/*************************
* works
*************************/
.works-detail-hero {
  background-image: url(../img/works/bg_works_detail.webp);
}
@media (max-width: 960px) {
  .works-detail-hero {
    background-image: url(../img/works/bg_works_detail.webp);
  }
}

.sec-works-main {
  padding-top: 50px;
  padding-bottom: 120px;
}

.works-detail-title02 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.works-detail-title02::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #D4D4D4;
}

.works-info {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr calc(319 / var(--contents-width) * 100%);
  grid-template-rows: auto auto auto 1fr;
  gap: 0 5%;
  grid-template-areas: "g02 g02" "g01 g01" "g05 g03" "g05 g04";
}
.works-info .g01 {
  grid-area: g01;
}
.works-info .g02 {
  grid-area: g02;
}
.works-info .g03 {
  grid-area: g03;
}
.works-info .g04 {
  grid-area: g04;
}
.works-info .g05 {
  grid-area: g05;
}
@media (max-width: 960px) {
  .works-info {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 29px 5%;
    grid-template-areas: "g01" "g02" "g05" "g03" "g04";
  }
}

.works-info-title {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 960px) {
  .works-info-title {
    margin-top: 0;
    font-size: 24px;
  }
}

.works-info-category {
  display: flex;
  flex-wrap: wrap;
}
.works-info-category li {
  min-width: 80px;
  display: inline-block;
}
.works-info-category a {
  margin: 0 8px 8px 0;
  display: block;
  padding: 0.25em 1em;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  background-color: var(--color02);
  border: 1px solid var(--color02);
  transition: color ease-in-out 0.3s;
  transition-property: color, background-color, border;
}
.works-info-category a.is-active, .works-info-category a:hover {
  color: #fff;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.works-info-thumb, .works-info-text {
  margin-top: 65px;
}
@media (max-width: 960px) {
  .works-info-thumb, .works-info-text {
    margin-top: 0;
  }
}

.works-info-text {
  font-size: 16px;
  line-height: 2.12;
}
@media (max-width: 960px) {
  .works-info-text {
    margin-top: 0;
  }
}

.works-info-list {
  margin-top: auto;
}

.works-swiper-outer {
  position: relative;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .works-swiper-outer {
    margin-top: 30px;
  }
}
/* スライダー非活性時 */
.works-swiper-outer .works-swiper:not(.swiper-initialized) {
  padding: 0;
}
.works-swiper-outer .works-swiper:not(.swiper-initialized) .slide-button-prev,
.works-swiper-outer .works-swiper:not(.swiper-initialized) .slide-button-next {
  display: none;
}
.works-swiper-outer .works-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.works-swiper-outer .works-swiper:not(.swiper-initialized) .swiper-wrapper .works-slide-item {
  width: calc(100% / 4.4);
}
@media (max-width: 960px) {
  .works-swiper-outer .works-swiper:not(.swiper-initialized) .swiper-wrapper .works-slide-item {
    width: calc(100% / 1.25);
  }
}

.works-slide-item {
  position: relative;
  aspect-ratio: 362/293;
  overflow: hidden;
}
.works-slide-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.works-slide-item:focus img, .works-slide-item:hover img {
  transform: scale(1.2);
}

.works-swiper-outer .slide-button-next,
.works-swiper-outer .slide-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  bottom: 0;
  width: 60px;
  height: 60px;
  z-index: 2;
  cursor: pointer;
  opacity: 1;
}
@media (max-width: 960px) {
  .works-swiper-outer .slide-button-next,
.works-swiper-outer .slide-button-prev {
    width: 55px;
    height: 55px;
  }
}
.works-swiper-outer .slide-button-next:hover,
.works-swiper-outer .slide-button-prev:hover {
  opacity: 0.5;
}
.works-swiper-outer .slide-button-next.swiper-button-disabled,
.works-swiper-outer .slide-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.works-swiper-outer .slide-button-prev {
  right: 10%;
  left: auto;
}
@media (max-width: 960px) {
  .works-swiper-outer .slide-button-prev {
    right: 6%;
  }
}
.works-swiper-outer .slide-button-next {
  left: 10%;
}
@media (max-width: 960px) {
  .works-swiper-outer .slide-button-next {
    left: 6%;
  }
}

.sec-works-other {
  padding-top: 50px;
}

/*****
* 404
*******/
.btn-404 {
  margin: 30px auto 0;
  max-width: 250px;
}