@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: "Noto Sans JP", sans-serif;
  --color-text: #000;
  --color-link: #009f28;
  --color-hover: #0000a0;
  --color-base: #009f28;
  --color-main: #0000a0;
  --color-sub1: #eff5f0;
  --color-sub2: #adacac;
  --color-sub3: #e0e0e0;
  --color-sub4: #f6f6f6;
  --color-sub5: #00560d;
  --color-sub6: #00979f;
  --color-sub7: #f8f8f8;
  --color-grd1: hsla(130, 23%, 95%, 0);
  --color-grd2: hsla(130, 23%, 95%, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 160rem;
  --inner-width3: 130rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 0 10px 0 rgba(0, 0, 0, .10);
  --box-shadow3: 0 0 10px 0 rgba(0, 0, 0, .15);
  --text-shadow: 0 0 10px rgba(255, 255, 255, 1);
  --text-shadow2: 0 0 10px rgba(0, 0, 0, .35);
  --text-shadow3: 0 0 10px rgba(0, 0, 0, .55);
  --text-shadow4: 0 0 10px rgba(0, 0, 0, .25);
  --text-shadow5: 0 0 10px rgba(0, 0, 0, .10);
}

* {
  scroll-behavior: auto !important;
  box-sizing: border-box;
}

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

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

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

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

.list-unstyled {
  list-style: none;
}

.text-center {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .text-md-center {
    text-align: center;
  }
}
.text-left, .text-start {
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .text-md-left {
    text-align: left;
  }
}
.text-right, .text-end {
  text-align: right;
}
.text-indent {
  text-indent: 1em;
}

.d-none {
  display: none;
}
@media screen and (min-width: 480px), print {
  .d-sm-none {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .d-md-none {
    display: none;
  }
}
.d-block {
  display: block;
}
@media screen and (min-width: 480px), print {
  .d-sm-block {
    display: block;
  }
}
@media screen and (min-width: 768px), print {
  .d-md-block {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .d-lg-block {
    display: block;
  }
}
@media screen and (min-width: 1600px), print {
  .d-xl-block {
    display: block;
  }
}
.d-flex {
  display: flex;
}
@media screen and (min-width: 768px), print {
  .d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .d-lg-flex {
    display: flex;
  }
}

.fs-sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .fs-sm {
    font-size: 1.4rem;
  }
}
.fs-lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .fs-lg {
    font-size: 1.8rem;
  }
}
.fs-xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .fs-xl {
    font-size: 2rem;
  }
}

.fw-light {
  font-weight: 300;
}
.fw-light * {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-normal * {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-medium * {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-semibold * {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-bold * {
  font-weight: 700;
}
.fw-exbold {
  font-weight: 800;
}
.fw-exbold * {
  font-weight: 800;
}
.fw-black {
  font-weight: 900;
}
.fw-black * {
  font-weight: 900;
}

.ft-gothic {
  font-family: "Noto Sans JP", sans-serif;
}
.ft-mincho {
  font-family: "Noto Serif JP", sans-serif;
}
.ft-roboto {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
}

.bg-dark {
  background-color: var(--color-sub6);
}
.bg-light {
  background-color: var(--color-sub4);
}
.bg-base {
  background-color: var(--color-base);
}
.bg-main {
  background-color: var(--color-base);
}
.bg-sub {
  background-color: var(--color-sub1);
}
.bg-gray {
  background-color: var(--color-sub7);
}

.color-dark {
  color: var(--color-sub6);
}
.color-light {
  color: var(--color-sub3);
}
.color-base {
  color: var(--color-base);
}
.color-main {
  color: var(--color-main);
}
.color-text {
  color: var(--color-sub5);
}
.color-white {
  color: #fff;
}
.color-danger {
  color: #b22c00;
}

.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

@media screen and (min-width: 768px), print {
  .float-md-right {
    float: right;
  }
}

.flex-1 {
  flex: 1;
}

.justify-content-center {
  justify-content: center;
}

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

.flex-row-reverse {
  flex-direction: row-reverse;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

.w-100 {
  width: 100%;
}

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

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

.mx-auto {
  margin-inline: auto;
}

.lh-base {
  line-height: 1.5;
}
.lh-lg {
  line-height: 2;
}
.ls-wide {
  letter-spacing: 0.05em;
}
.ls-widest {
  letter-spacing: 0.1em;
}
.ls-normal {
  letter-spacing: normal;
}

.box-shadow {
  box-shadow: var(--box-shadow3);
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し */
.heading {
  position: relative;
  max-width: var(--inner-width);
  margin-right: auto;
  margin-left: auto;
  line-height: 1.2;
  font-feature-settings: "palt" 1;
}
.heading.h2 {
  margin-bottom: 2.5rem;
  font-weight: 600;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", sans-serif;
  border-bottom: 3px solid var(--color-sub1);
}
.heading.h2:not(:first-child) {
  margin-top: 9rem;
}
.heading.h2::after {
  content: "";
  display: block;
  width: 10rem;
  height: 3px;
  margin: 1.5rem 0 -3px;
  background-color: var(--color-base);
}
@media screen and (min-width: 1100px), print {
  .heading.h2 {
    margin-bottom: 4rem;
    font-size: 3.5rem;
    border-bottom-width: 5px;
  }
  .heading.h2:not(:first-child) {
    margin-top: 13rem;
  }
  .heading.h2::after {
    height: 5px;
    margin: 2rem 0 -5px;
  }
}
.heading.h3 {
  margin-bottom: 2rem;
  padding: 0.8rem 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  background-color: var(--color-sub5);
}
.heading.h3:not(:first-child) {
  margin-top: 7rem;
}
@media screen and (min-width: 768px), print {
  .heading.h3 {
    margin-bottom: 4rem;
    font-size: 2.5rem;
  }
  .heading.h3:not(:first-child) {
    margin-top: 10rem;
  }
}
/* 共通リスト */
.list {
  list-style-type: none;
  line-height: 1.5;
}
.list li {
  position: relative;
  padding-left: 1.15em;
}
.list li:not(:last-child) {
  margin-bottom: 1rem;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-base);
}

/* インデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* リンクボタン */
.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0.85rem 5rem 0.85rem 2rem;
  color: #fff;
  line-height: 1.4;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 10em;
  color: var(--color-base);
  border: 2px solid currentColor;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 1100px), print {
  .link-button {
    font-size: 1.8rem;
    padding: 1rem 7rem 1rem 3rem;
  }
}
.link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.link-button-primary {
  color: var(--color-sub5);
  background-color: #fff;
}
.link-button-secondary {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}
.link-button-lg {
  font-size: 1.1em;
}
/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  text-decoration: none;
  color: var(--color-link);
}
@media (hover: hover) and (pointer: fine) {
  a.link-button:hover {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}
a.link-button-primary:hover {
  color: var(--color-sub5);
}
@media (hover: hover) and (pointer: fine) {
  a.link-button-primary:hover {
    color: #fff;
    border-color: var(--color-link);
    background-color: var(--color-link);
  }
}
a.link-button-secondary:hover {
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  a.link-button-secondary:hover {
    color: var(--color-link);
    border-color: #fff;
    background-color: #fff;
  }
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: var(--inner-width);
  margin-right: auto;
  margin-left: auto;
}
.inner::after {
  content: "";
  display: table;
  clear: both;
}
.inner-lg {
  max-width: var(--inner-width3);
}
.inner-xl {
  max-width: var(--inner-width2);
}

/* アンカー位置調整 */
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -161px;
    margin-bottom: 160px;
  }
}

/* 字詰め */
.kerning {
  font-feature-settings: "palt" 1;
}

/* 下線マーカー */
.marker {
  display: inline;
  background: linear-gradient(var(--color-grd1) 65%, var(--color-grd2) 0%);
}

/* 画像を角丸にする */
.img-radius {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .img-radius {
    border-radius: 1.5rem;
  }
}

/* コンテンツを角丸にする */
.box-radius {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .box-radius {
    border-radius: 1.5rem;
  }
}

/* 画像を囲う要素 */
.img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}
/* 画像をトリミング */
.img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Google Maps */
.gmap-area {
  position: relative;
}
.gmap-area::before {
  content: "";
  display: block;
  padding-top: 45rem;
}
.gmap-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.table-style {
  display: block;
}
.table-style tbody {
  display: block;
}
.table-style tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-sub3);
  background-color: #fff;
}
.table-style tr:not(:last-child) {
  margin-bottom: -1px;
}
.table-style tr:nth-child(odd) {
  background-color: var(--color-sub4);
}
.table-style th {
  vertical-align: middle;
  width: 30rem;
  padding: 1.5rem 0;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--color-sub3);
}
.table-style td {
  vertical-align: middle;
  padding: 1.2rem 3rem;
}
.table-style .tel-link {
  color: var(--color-text);
}
.table-style a.tel-link {
  color: var(--color-text);
}
.table-style a.tel-link:hover {
  color: var(--color-link);
}
@media screen and (max-width: 1099.98px) {
  .table-style th {
    width: 22rem;
  }
}
@media screen and (max-width: 767.98px) {
  .table-style tr,
  .table-style th,
  .table-style td {
    display: block;
  }
  .table-style tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-style th {
    width: auto !important;
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    border-right: none;
    border-bottom: 1px solid var(--color-sub3);
    background-color: var(--color-sub4);
  }
  .table-style td {
    padding: 1rem 1.5rem;
  }
}

/* CSS カウンター */
.list-counter {
  counter-reset: mycounter;
}
.list-counter .counter::before {
  counter-increment: mycounter;
  content: counter(mycounter) ".";
  margin-right: 0.5em;
}
.list-counter .counters::before {
  counter-increment: mycounter;
  content: counters(mycounter, "-") ".";
  margin-right: 0.5em;
}

/* アコーディオン */
.accordion {
  margin-bottom: -1rem;
}
.accordion-title {
  position: relative;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #000;
  cursor: pointer;
}
.accordion-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
}
.accordion-title.is-active {
  border-color: #ccc;
}
.accordion-title.is-active::after {
  top: 1rem;
  transform: rotate(-45deg);
}
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s grid-template-rows ease;
}
.accordion-body.is-active {
  grid-template-rows: 1fr;
}
.accordion-panel {
  overflow: hidden;
}

/* ios用高さ100％ */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: visible;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 6rem;
}
@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 8rem;
  }
}
.header-container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .header-container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
}
.header-logo .site-logo img {
  display: block;
  width: 16rem;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    position: relative;
  }
  .header-logo .site-logo {
    position: absolute;
    top: 1.2rem;
    left: 1.6rem;
  }
  .header-logo .site-logo img {
    display: block;
    width: 26.4rem;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .is-fixed .header .header-container {
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1100px) {
  .is-fixed .header .header-container,
  .is-fixed .header .contact-button {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -28rem;
  width: 28rem;
  height: 100%;
  z-index: 1000;
}
.nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-sub1);
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    padding: 0 21.6rem 0 0;
    background-color: #fff;
  }
  .nav-container {
    background-color: transparent;
    overflow: visible;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav {
    transition: left 0.3s;
  }
  .nav-open .nav {
    left: 0;
  }
}

/* 会社情報・店舗情報・診療時間など */
.nav-info {
  padding: 4rem 0;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .nav-info {
    display: none;
  }
}
.nav-info dt {
  margin-bottom: 2rem;
}
.nav-info img {
  width: 18rem;
}
.nav-info .tel-link {
  color: var(--color-text);
}
.nav-info a.tel-link {
  color: var(--color-text);
}
.nav-info a.tel-link:hover {
  color: var(--color-hover);
}

/* メインナビ */
.main-nav {
  padding: 6.5rem 1rem 0;
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-link,
.main-nav .nav-label {
  display: flex;
  align-items: center;
  position: relative;
  height: 5.6rem;
  font-size: 1.6rem;
  padding: 0 4.5rem 0 1rem;
  color: var(--color-text);
  transition: color var(--transition);
}
.main-nav .nav-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .main-nav .nav-link:hover {
    color: var(--color-link);
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
  .main-nav .nav-item {
    margin-left: 2.5rem;
  }
  .main-nav .nav-link,
  .main-nav .nav-label {
    flex-direction: column;
    justify-content: center;
    height: 8rem;
    padding: 0;
  }
  .main-nav .nav-contact {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    border-top: 1px solid var(--color-sub3);
  }
  .main-nav .nav-item:first-child {
    border-top: none;
  }
}

/* メインナビ（第2階層）*/
.sub-nav {
  margin: 0 1rem 2rem;
}
.sub-nav li:not(:last-child) {
  margin-bottom: 0.3rem;
}
.sub-nav a {
  display: block;
  padding: 1.5rem 0;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  background-color: var(--color-link);
}
.sub-nav a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sub-nav a:hover {
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: relative;
    left: 50%;
    width: 20rem;
    margin: 0 0 0 -10rem;
    padding: 3px;
    background-color: #fff;
    box-shadow: var(--text-shadow5);
  }
  .sub-nav li:not(:last-child) {
    margin-bottom: 1px;
  }
  .sub-nav a {
    font-size: 1.6rem;
    border-radius: 0;
  }
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5.6rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.2rem;
  right: 2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.6rem;
  border-color: var(--color-link);
  transform: rotate(-45deg);
}
.dropdown-toggle.show + .nav-link, .dropdown-toggle.show + .nav-label {
  color: var(--color-link);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: 1.4rem;
    left: 0;
    margin: auto;
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: 0.85rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .nav-link, .dropdown-toggle:hover + .nav-label {
    color: var(--color-link);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 1099.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 1100px), print {
  .dropdown-menu {
    margin-top: -20px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 10px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: #fff;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: -1.4rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 1.8rem;
  margin: auto;
  border-top: 2px solid var(--color-link);
  border-bottom: 2px solid var(--color-link);
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-link);
}
.nav-button-icon::after {
  display: none;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-link);
  text-align: center;
}
/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button .nav-button-icon {
  border: none;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  border-color: var(--color-link);
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  display: block;
  transform: rotate(-45deg);
}
.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-link);
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .is-fixed .nav {
    position: fixed;
    top: -60px;
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  padding: 0 2rem 10rem;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 0 5rem 12rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  padding: 0 2rem 6rem;
  background-color: var(--color-sub1);
}
.footer-container {
  padding: 6rem 0;
}
.footer-info {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 1.4rem;
}
.footer-info .logo {
  margin-bottom: 0.3rem;
  font-size: 1.9rem;
}
.footer-info .logo img {
  display: block;
  width: 22rem;
  margin: 0 auto 1rem;
}
.footer-info .tel-link {
  color: var(--color-text);
}
.footer-info a.tel-link {
  color: var(--color-text);
}
.footer-info a.tel-link:hover {
  color: var(--color-hover);
}
.footer-nav .nav-list {
  max-width: 30rem;
  margin-right: auto;
  margin-left: auto;
}
.footer-nav .nav-item {
  border-radius: 0.5rem;
  border: 1px solid var(--color-link);
}
.footer-nav .nav-list:not(:last-child),
.footer-nav .nav-item:not(:last-child) {
  margin-bottom: 1rem;
}
.footer-nav .nav-link {
  display: flex;
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  color: currentColor;
}
.footer-nav .nav-link:hover {
  color: var(--color-link);
}
.footer-nav .nav-link::before {
  content: "";
  align-self: center;
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 1rem;
  border-top: 1px solid var(--color-link);
  border-right: 1px solid var(--color-link);
  transform: rotate(45deg);
}
.footer-subnav {
  padding: 0 1rem 1rem 2rem;
  border-top: 1px solid var(--color-link);
}
.footer-subnav li {
  margin-top: 1rem;
}
.footer-subnav a {
  display: inline-flex;
  vertical-align: top;
  margin: -1rem;
  padding: 1rem;
  color: currentColor;
}
.footer-subnav a:hover {
  text-decoration: none;
  color: var(--color-link);
}
.footer-subnav a::before {
  content: "";
  align-self: center;
  display: block;
  width: 1rem;
  height: 0.2rem;
  margin: 0 1rem 0 0.3rem;
  background-color: currentColor;
}
@media screen and (min-width: 768px), print {
  .footer-nav {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--color-sub3);
  }
  .footer-nav .nav-list {
    max-width: none;
    margin: 0;
    padding: 0.5rem 1.5rem;
    border-left: 1px solid var(--color-sub3);
  }
  .footer-nav .nav-list:not(:last-child) {
    margin-bottom: 0;
  }
  .footer-nav .nav-item {
    border-radius: 0;
    border: none;
  }
  .footer-nav .nav-item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .footer-nav .nav-link {
    display: block;
    position: static;
    padding: 0;
  }
  .footer-nav .nav-link::before {
    display: none;
  }
  .footer-subnav {
    padding: 0;
    border-top: none;
  }
  .footer-subnav a {
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 5rem;
  }
  .footer-container {
    display: flex;
    padding: 8rem 0;
  }
  .footer-info {
    align-self: center;
    margin: 0 auto 0 0;
    text-align: left;
  }
  .footer-info .logo img {
    margin: 0 0 1rem;
  }
}
@media screen and (min-width: 1280px), print {
  .footer-info {
    margin-right: auto;
  }
  .footer-info .logo img {
    width: 26.4rem;
  }
  .footer-nav .nav-list {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

/* ページの先頭へ */
.pagetop {
  display: block;
  position: fixed;
  right: 0.5rem;
  bottom: 6.5rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .pagetop {
    right: 1rem;
    bottom: 7rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    right: 1rem;
    bottom: 1rem;
  }
}
.is-fixed .pagetop {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-hover);
  transition: background-color var(--transition);
}
.pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop a:hover {
    background-color: var(--color-link);
  }
}
.pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.copy {
  display: grid;
  place-content: center;
  height: 5.5rem;
  margin: 0 -2rem;
  text-align: center;
  border-top: 1px solid var(--color-sub2);
}
.copy small {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .copy {
    height: 7rem;
  }
  .copy span {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .copy {
    margin: 0 -5rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: grid;
  place-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  font-size: 1.8rem;
  text-align: center;
  background-color: rgba(0, 0, 25, 0.6);
  text-shadow: var(--text-shadow3);
}
.page-title .en {
  display: block;
  margin-bottom: 1rem;
  font-size: 4rem;
}
.page-title-container {
  position: relative;
  height: 18rem;
  margin-bottom: 5rem;
  background-color: #333;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .page-title {
    font-size: 3rem;
  }
  .page-title .en {
    font-size: 7rem;
  }
  .page-title-container {
    height: 30rem;
    margin-bottom: 10rem;
  }
}

/* --------------------------------

  お問い合わせボタン

-------------------------------- */
/* お問い合わせ（電話）*/
.tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}
.tel-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-base);
}
.tel-button a:hover {
  text-decoration: none;
}
.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto;
  background: url(../img/base/tel_wht.svg) center no-repeat;
  background-size: cover;
}
.tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* お問い合わせ（メール）*/
.contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  overflow: hidden;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .contact-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    z-index: 1010;
  }
}
.contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  background-color: var(--color-link);
}
@media screen and (min-width: 1100px), print {
  .contact-button a {
    width: 18rem;
    height: 6rem;
    margin: 1.1rem 1.1rem 0;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    background-color: var(--color-hover);
    transition: background-color var(--transition);
  }
}
.contact-button a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .contact-button a:hover {
    background-color: var(--color-link);
  }
}
.contact-button a::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  background: url(../img/base/mail.svg) center no-repeat;
  background-size: contain;
}
/* 共通お問い合わせ */
@media screen and (min-width: 768px), print {
  .global-contact {
    display: inline-flex;
    align-items: center;
  }
}
.global-contact-tel {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .global-contact-tel {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px), print {
  .global-contact-mail {
    margin-left: 1rem;
  }
}
.global-contact .tel-link,
.global-contact .mail-link {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.1;
  text-align: left;
  color: var(--color-text);
}
.global-contact .tel-link::before,
.global-contact .mail-link::before {
  content: "";
  display: block;
  margin: 0 1rem 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.global-contact .tel-link::before {
  width: 22px;
  height: 22px;
  background-image: url(../img/base/tel_gry.svg);
}
.global-contact .mail-link::before {
  width: 25px;
  height: 25px;
  background-image: url(../img/base/mail_gry.svg);
}
.global-contact a.tel-link,
.global-contact .mail-link {
  color: var(--color-text);
}
.global-contact a.tel-link:hover,
.global-contact .mail-link:hover {
  color: var(--color-hover);
  text-decoration: none;
}
.global-contact .tel-num {
  display: block;
  line-height: 1em;
  font-weight: 700;
  font-size: 2.5rem;
}
.global-contact .mail-text {
  display: block;
  line-height: 1em;
  font-weight: 700;
  font-size: 2.5rem;
}
/* --------------------------------

  トップページ

-------------------------------- */
/* ページ内共通 */
.section-secondary {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    max-width: var(--inner-width);
    margin-right: auto;
    margin-left: auto;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 9rem;
}
@media screen and (min-width: 1100px), print {
  .section-secondary:not(:last-child) {
    margin-bottom: 13rem;
  }
}
.section-dummy:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .section-dummy:not(:last-child) {
    margin-bottom: 12rem;
  }
}
.section-dummy-fluid {
  margin-right: -2rem;
  margin-left: -2rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .section-dummy-fluid {
    margin-right: -5rem;
    margin-left: -5rem;
  }
}
.section-dummy-fluid-inner {
  margin-right: -20%;
  margin-left: -20%;
}
.section-header {
  position: relative;
  margin: 0 -2rem 6rem;
}
@media screen and (min-width: 1100px), print {
  .section-header {
    margin: 0 0 10rem;
  }
}
.section-heading {
  line-height: 1.2;
  font-size: 2.5rem;
  text-align: center;
}
.section-heading .en {
  display: block;
  font-size: 6rem;
}
.section-heading .jp {
  font-weight: 600;
}
@media screen and (min-width: 1100px), print {
  .section-heading {
    font-size: 3.5rem;
  }
  .section-heading .en {
    font-size: 11.5rem;
  }
}
/* メイングラフィック */
.mv-section {
  position: relative;
  margin: -12rem -2rem 0;
  overflow: hidden;
}
.mv-container {
  position: relative;
  min-height: 60rem;
}
.mv-img {
  pointer-events: none;
  aspect-ratio: auto;
  position: static;
}
.mv-img::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 25, 0.6);
}
.mv-img img {
  opacity: 0;
  transform: scale(1.4);
}
.mv-img.is-loaded img {
  animation: fadeZoomIn 0.75s forwards;
}
.mv-catch-container {
  display: grid;
  place-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 11rem 2rem 0;
  z-index: 10;
  opacity: 0;
  transform: translateX(-100px);
}
.mv-catch-container.is-loaded {
  animation: fadeInLeft 0.75s forwards;
}
.mv-catch {
  margin: 0 -2rem 2rem -0.2em;
  line-height: 1.4;
  font-size: calc(1.4rem + 1.5vw);
  text-align: right;
  text-shadow: var(--text-shadow2);
}
.mv-catch .ft-lg {
  font-size: 1.6em;
}
.mv-description {
  text-shadow: var(--text-shadow2);
}
@media screen and (min-width: 768px), print {
  .mv-catch-container {
    display: block;
    width: auto;
    height: auto;
    padding: 0 0 4rem 3rem;
  }
  .mv-catch {
    font-size: 4rem;
  }
  .mv-catch .ft-lg {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .mv-section {
    margin: -8rem -5rem 0;
  }
  .mv-catch-container {
    padding: 0 0 9rem 7.5rem;
  }
  .mv-catch {
    margin: 0 0 5rem;
    font-size: 7rem;
  }
  .mv-catch .ft-lg {
    font-size: 8.8rem;
  }
  .mv-description {
    font-size: 1.8rem;
  }
}

/* お知らせ一覧 */
.geon-news-container {
  padding: 6rem 0;
}
.geon-news-header {
  margin-bottom: 4rem;
  text-align: center;
}
.geon-news-heading {
  line-height: 1.2;
  font-size: 2rem;
}
.geon-news-heading .en {
  display: block;
  font-size: 5rem;
}
.geon-news-more {
  margin-top: 3rem;
}
@media screen and (min-width: 1100px), print {
  .geon-news-container {
    padding: 10rem 0;
  }
  .geon-news-header {
    margin: 0 5rem 0 0;
    text-align: left;
  }
  .geon-news-heading {
    font-size: 3.5rem;
  }
  .geon-news-heading .en {
    font-size: 6rem;
  }
  .geon-news-body .news-list-img {
    grid-template-columns: repeat(3, 1fr);
  }
  .geon-news-more {
    margin-top: 4rem;
  }
}

/* 会社概要 */
.geon-about-section {
  position: relative;
  margin: 0 0 -15rem -2rem;
  background-color: #ddd;
  overflow: hidden;
  z-index: 1;
}
.geon-about-bgimg {
  pointer-events: none;
}
.geon-about-bgimg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 30%);
}
.geon-about-bgimg img {
  -o-object-position: 70% 50%;
     object-position: 70% 50%;
}
.geon-about-container {
  padding: 6rem 2rem 10rem;
}
.geon-about-header {
  margin-bottom: 3rem;
}
.geon-about-heading {
  margin-right: -2rem;
  font-size: 2.5rem;
  text-shadow: var(--text-shadow4);
}
.geon-about-heading .en {
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: 6rem;
  text-shadow: var(--text-shadow3);
}
.geon-about-description {
  text-shadow: var(--text-shadow4);
}
.geon-about-more {
  margin-top: 3rem;
}
@media screen and (min-width: 1100px), print {
  .geon-about-section {
    margin: 0 0 -26rem -5rem;
    padding: 0 0 0 5rem;
  }
  .geon-about-bgimg::after {
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  }
  .geon-about-container {
    padding: 11rem 0;
  }
  .geon-about-heading {
    font-size: 4.3rem;
  }
  .geon-about-heading .en {
    margin-bottom: 2rem;
    font-size: 11.5rem;
  }
}

/* 今日の現場  */
.geon-works-section {
  position: relative;
  margin: 0 -2rem;
  padding: 0 2rem 6rem;
  overflow: hidden;
}
.geon-works-bgimg {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 2rem);
  height: 100%;
  background-color: var(--color-base);
}
.geon-works-container {
  padding-top: 15rem;
}
.geon-works-header {
  padding: 6rem 0;
  text-align: right;
}
.geon-works-heading {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: var(--text-shadow5);
}
.geon-works-heading .en {
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: 6rem;
  text-shadow: var(--text-shadow5);
}
.geon-works-description {
  text-shadow: var(--text-shadow5);
}
.geon-works-slider {
  margin: 0 calc(50% - 50vw);
  padding: 0 0 1rem;
}
.geon-works-slider .swiper-slide {
  height: auto;
}
.geon-works-footer {
  margin-top: 5rem;
}
.geon-works-controller {
  margin: -3rem 0 3rem;
}
.geon-works-controller .swiper-button-next,
.geon-works-controller .swiper-button-prev {
  position: relative;
  inset: 0;
  width: 5rem;
  height: 5rem;
  margin: 0 1rem;
  color: #fff;
  border-radius: 100%;
  border: 2px solid currentColor;
}
.geon-works-controller .swiper-button-next::before,
.geon-works-controller .swiper-button-prev::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.geon-works-controller .swiper-button-next::after,
.geon-works-controller .swiper-button-prev::after {
  display: none;
}
.geon-works-controller .swiper-button-next:hover,
.geon-works-controller .swiper-button-prev:hover {
  background-color: #fff;
}
.geon-works-controller .swiper-button-next:hover::before,
.geon-works-controller .swiper-button-prev:hover::before {
  border-color: var(--color-link);
}
.geon-works-controller .swiper-button-next::before {
  margin-right: 0.5rem;
  transform: rotate(45deg);
}
.geon-works-controller .swiper-button-prev::before {
  margin-left: 0.5rem;
  transform: rotate(-135deg);
}
@media screen and (min-width: 1100px), print {
  .geon-works-section {
    margin: 0 -5rem;
    padding: 0 5rem 9rem;
  }
  .geon-works-bgimg {
    width: calc(100% - 15rem);
  }
  .geon-works-container {
    padding-top: 26rem;
  }
  .geon-works-header {
    padding: 9rem 0 11rem;
  }
  .geon-works-heading {
    margin-bottom: 1.5rem;
    font-size: 4.3rem;
  }
  .geon-works-heading .en {
    margin-bottom: 2rem;
    font-size: 11.5rem;
  }
  .geon-works-footer {
    margin-top: 5rem;
  }
  .geon-works-controller {
    position: absolute;
    top: 0.4rem;
    right: 0;
    margin: 0;
  }
  .geon-works-controller .swiper-button-next,
  .geon-works-controller .swiper-button-prev {
    width: 4rem;
    height: 4rem;
    margin: 0 0 0 2rem;
    border-width: 1px;
  }
}

/* 業務紹介 */
.geon-service-section {
  position: relative;
  margin: 0 -2rem;
  padding: 0 2rem 6rem;
  overflow: hidden;
}
.geon-service-bgimg {
  pointer-events: none;
}
.geon-service-bgimg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 45, 7, 0.75);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 55%);
}
.geon-service-bgimg img {
  -o-object-position: 66% 50%;
     object-position: 66% 50%;
}
.geon-service-bgtext {
  position: absolute;
  bottom: -1%;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.geon-service-container {
  padding-top: 6rem;
  z-index: 1;
}
.geon-service-list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  max-width: 40rem;
  margin: 0 auto 6rem;
}
.geon-service-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 10rem;
  color: currentColor;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.geon-service-list a:hover {
  text-decoration: none;
  color: var(--color-hover);
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}
.geon-service-list a:hover .icon {
  transform: scale(1.1);
}
.geon-service-list a::before {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 2rem;
  height: 2rem;
  margin: auto;
  background-color: var(--color-hover);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  aspect-ratio: 1;
  transition: right var(--transition), bottom var(--transition), background-color var(--transition);
}
.geon-service-list a:hover::before {
  right: 0.3rem;
  bottom: 0.3rem;
  background-color: var(--color-link);
}
.geon-service-list .icon {
  display: block;
  width: 4rem;
  margin: 0 2rem 0 2rem;
  transition: transform var(--transition);
}
.geon-service-list .label {
  display: block;
  width: 16ch;
  font-size: 2rem;
}
.geon-service-title {
  margin: 0 -2rem 2rem 0;
  font-size: 3rem;
  text-shadow: var(--text-shadow);
}
.geon-service-description {
  text-shadow: var(--text-shadow);
}
@media screen and (min-width: 768px), print {
  .geon-service-list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 0px;
    max-width: none;
  }
  .geon-service-list a {
    display: grid;
    place-content: center;
    height: 18rem;
  }
  .geon-service-list .icon {
    width: auto;
    height: 6rem;
    margin: 1rem auto;
  }
  .geon-service-list .label {
    width: auto;
  }
  .geon-service-title {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .geon-service-section {
    margin: 0 -5rem;
    padding: 0 5rem calc(18.3125% - 1rem);
  }
  .geon-service-list {
    grid-column-gap: 2.5rem;
    margin-bottom: 8rem;
  }
  .geon-service-list a {
    height: 35rem;
  }
  .geon-service-list a::before {
    right: 1.1rem;
    bottom: 1.1rem;
    width: 3rem;
    height: 3rem;
  }
  .geon-service-list a:hover::before {
    right: 0.7rem;
    bottom: 0.7rem;
  }
  .geon-service-list .icon {
    height: 12rem;
    margin: 0 auto 2rem;
  }
  .geon-service-list .label {
    font-size: 3rem;
  }
  .geon-service-title {
    margin: 0 0 2rem;
    font-size: 4.3rem;
  }
}

/* 採用情報 */
.geon-recruit-section {
  position: relative;
  margin: 0 -2rem;
  overflow: hidden;
}
.geon-recruit-bgtext {
  position: absolute;
  bottom: -1%;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.geon-recruit-container {
  position: relative;
  padding-top: 6rem;
  z-index: 1;
}
.geon-recruit-img {
  aspect-ratio: 799/401;
}
.geon-recruit-main {
  padding: 6rem 2rem;
}
.geon-recruit-title {
  margin-bottom: 2rem;
  font-size: 3.5rem;
}
.geon-recruit-more {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .geon-recruit-title {
    font-size: 4.3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .geon-recruit-section {
    margin: 0 -5rem;
    padding-bottom: 8.6875%;
  }
  .geon-recruit-container {
    padding-top: 10rem;
  }
  .geon-recruit-img {
    margin-left: calc(50% - 50vw);
  }
  .geon-recruit-main {
    align-self: center;
    width: 50%;
    padding: 0 5rem 2rem;
  }
  .geon-recruit-title {
    margin-right: -5rem;
  }
}

/* CONTACT */
.geon-contact-section {
  position: relative;
  margin: 0 -2rem -10rem;
  padding: 0 2rem;
  overflow: hidden;
}
.geon-contact-bgimg {
  pointer-events: none;
}
.geon-contact-bgimg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 45, 7, 0.75);
}
.geon-contact-bgimg img {
  -o-object-position: 55% 50%;
     object-position: 55% 50%;
}
.geon-contact-container {
  padding: 6rem 0;
}
.geon-contact-header {
  margin: 0 -2rem 6rem;
  text-align: center;
}
.geon-contact-heading {
  font-size: 1.6rem;
}
.geon-contact-heading .en {
  display: block;
  font-size: 4.5rem;
}
.geon-contact-list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  max-width: 36rem;
  margin: auto;
}
.geon-contact-list .tel-link,
.geon-contact-list .mail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  color: #fff;
  border: 1px solid currentColor;
  transition: background-color var(--transition);
}
.geon-contact-list .tel-link {
  font-size: 2.5rem;
}
.geon-contact-list .mail-link {
  font-size: 2rem;
}
.geon-contact-list .tel-link[href]:hover,
.geon-contact-list .mail-link:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.geon-contact-list .tel-link::before,
.geon-contact-list .mail-link::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.geon-contact-list .tel-link::before {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  background-image: url(../img/base/tel_wht.svg);
}
.geon-contact-list .mail-link::before {
  width: 3rem;
  height: 2.3rem;
  margin-right: 1.5rem;
  background-image: url(../img/base/mail_wht.svg);
}
@media screen and (min-width: 768px), print {
  .geon-contact-heading {
    font-size: 1.8rem;
  }
  .geon-contact-heading .en {
    font-size: 6rem;
  }
  .geon-contact-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 0px;
    max-width: 60rem;
  }
}
@media screen and (min-width: 1100px), print {
  .geon-contact-section {
    margin: 0 -5rem -12rem;
    padding: 0 5rem;
  }
  .geon-contact-container {
    padding: 8rem 0;
  }
  .geon-contact-header {
    margin: 0 6rem 0 0;
    text-align: left;
  }
  .geon-contact-list {
    grid-column-gap: 4rem;
    max-width: none;
    margin: 0;
  }
}

/* ローディング */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader-logo {
  display: block;
  width: 26.4rem;
  opacity: 0;
  transform: translateY(100px);
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.5s forwards;
}

/* アニメーション */
.anim-item {
  pointer-events: none;
}
.anim-item.is-active {
  pointer-events: auto;
}
.anim-item.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.anim-item.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.anim-item.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.anim-item.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.anim-item.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.anim-item.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.anim-item.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.anim-item.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  お知らせ

-------------------------------- */
.news-heading.heading {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom-color: var(--color-base);
}
@media screen and (min-width: 1100px), print {
  .news-heading.heading {
    padding-bottom: 2rem;
    font-size: 3.5rem;
    border-bottom-width: 5px;
  }
}
.news-heading.heading::after {
  display: none;
}
.news-body {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 3rem;
  text-align: center;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-link {
  display: block;
  position: relative;
  padding: 1rem;
  line-height: 1.4;
  border-bottom: 1px dotted var(--color-link);
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-date {
  color: var(--color-hover);
}
.news-link:hover .news-title {
  text-decoration: none;
}
.news-link:hover .news-category {
  background-color: var(--color-hover);
}
.news-link:hover .news-img {
  border-color: var(--color-hover);
}
.news-date {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-category {
  display: inline-block;
  vertical-align: top;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  line-height: 1em;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--color-link);
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
    padding: 1.5rem 2rem;
  }
  .news-date {
    width: 7em;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-back {
    margin-top: 7rem;
  }
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 0;
  border: none;
}
.news-list-img .news-date {
  display: block;
  width: auto;
  margin: 0.75rem 0 0.5rem;
}
.news-list-img .news-img {
  aspect-ratio: 560/374;
  border: 1px solid var(--color-sub3);
}
@media screen and (min-width: 768px), print {
  .news-list-img {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img {
    grid-template-columns: repeat(4, 1fr);
  }
  .news-list-img .news-link {
    font-size: 1.8rem;
  }
}

/* お知らせ一覧スライダー：サムネイル（大）*/
.news-list-slider .news-topics {
  width: 20rem;
}
.news-list-slider .news-card {
  position: relative;
  height: 100%;
  padding: 0 1.2rem 0.8rem;
  background-color: #fff;
  box-shadow: var(--box-shadow2);
  font-size: 0.7em;
}
.news-list-slider .news-link {
  display: none;
}
.news-list-slider .news-date {
  display: block;
  width: auto;
  margin: 2rem 0 0.7rem;
}
.news-list-slider .news-img {
  aspect-ratio: 560/560;
  margin: 0 -1.2rem;
}
@media screen and (min-width: 1100px), print {
  .news-list-slider .news-topics {
    width: 28rem;
  }
}

/* 施工事例一覧 */
.news-list-works {
  grid-column-gap: 0.5rem;
  grid-row-gap: 1rem;
}
.news-list-works .news-topics {
  position: static;
  padding: 0 1.2rem 2rem;
  background-color: #fff;
  box-shadow: var(--box-shadow2);
}
.news-list-works .news-link {
  display: none;
}
.news-list-works .news-date {
  margin: 2rem 0 0.7rem;
}
.news-list-works .news-img {
  aspect-ratio: 560/374;
  margin: 0 -1.2rem;
  border: none;
}
@media screen and (min-width: 1100px), print {
  .news-list-works .news-link {
    font-size: 1.6rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  background-color: #f1f1f1;
  list-style-type: none;
  list-style-image: none;
}
@media screen and (max-width: 767.98px) {
  #topics_paging li {
    font-size: 1.4rem;
  }
}
#topics_paging a {
  display: block;
  margin: -1rem -1.5rem;
  padding: 1rem 1.5rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: #fdb10e;
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* モーダル */
.topics-modal-summary {
  list-style: none;
  cursor: pointer;
}
.topics-modal-summary::marker {
  display: none;
}
.topics-modal-thumbnail {
  cursor: pointer;
}
.topics-modal-content {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  z-index: 9999;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  scale: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
}
.topics-modal-details[open] .topics-modal-content {
  pointer-events: all;
  opacity: 1;
  scale: 1;
  transition: opacity 0.5s;
}
.topics-modal-content::before {
  content: "×";
  color: black;
  position: absolute;
  top: 1rem;
  right: 1rem;
  line-height: 1;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
  cursor: pointer;
}
.topics-modal-content img {
  display: block;
  max-height: 100%;
  margin: auto;
}
@media screen and (min-width: 768px), print {
  .topics-modal-content {
    padding: 2rem;
  }
  .topics-modal-content::before {
    font-size: 4rem;
  }
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* 会社情報 */
.company-message {
  margin: 0 -2rem;
  padding: 3rem 2rem;
}
.company-message-heading {
  margin-bottom: 3rem;
  line-height: 1.2;
  font-size: 2.5rem;
}
.company-message-heading .en {
  margin-bottom: 0.5rem;
  font-size: 4rem;
}
.company-message-name {
  margin-top: 2rem;
  font-size: 1.6rem;
}
.company-message-name .name {
  margin-left: 1.5rem;
  font-size: 2.5rem;
}
.company-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 9rem -1rem -1rem 0;
}
.company-img {
  width: 50%;
  padding: 0 1rem 1rem 0;
}
@media screen and (min-width: 768px), print {
  .company-message {
    margin: 0;
    padding: 5rem;
  }
  .company-message-heading {
    margin-bottom: 4rem;
  }
  .company-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin: 9rem 0 0;
  }
  .company-img {
    width: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .company-message {
    padding: 7rem 7.5rem;
  }
  .company-message-heading {
    margin-bottom: 5rem;
    font-size: 3.5rem;
  }
  .company-message-heading .en {
    margin-bottom: 1rem;
    font-size: 5rem;
  }
  .company-message-name {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .company-message-name .name {
    margin-left: 2.5rem;
    font-size: 3rem;
  }
  .company-gallery {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    margin-top: 13rem;
  }
}

/* 会社概要 */
.outline-map {
  margin: 3.5rem 0;
  background-color: #eee;
}
@media screen and (min-width: 768px), print {
  .outline-info .tel::after {
    content: "／";
    margin: 0 0.5em;
  }
}
/* 業務紹介（共通）*/
.service-title {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  line-height: 1.4;
  font-size: 2.2rem;
  border-left: 3px solid var(--color-base);
}
.service-title .en {
  display: block;
  padding-left: 0.25em;
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .service-title {
    padding-left: 2rem;
    font-size: 3rem;
    border-left-width: 5px;
  }
  .service-title .en {
    font-size: 2.3rem;
  }
}

/* わたしたちの仕事 */
.works-list {
  margin-top: 5rem;
}
.works-item:not(:last-child) {
  margin-bottom: 10rem;
}
.works-item:last-of-type {
  margin-bottom: 5rem;
}
.works-img {
  max-width: 40rem;
  margin: 3rem auto 0;
}
.works-img .img {
  display: block;
  width: 100%;
}
.works-img .img-sm {
  width: calc(50% + 3rem);
  margin: -3rem 0 0 auto;
}
.works-img .img-lg {
  width: calc(100% - 3rem);
  margin-right: 3rem;
}
.works-description {
  padding: 1.25rem 1.5rem;
}
.works-point {
  margin: 2rem 0 1.75rem;
}
.works-comment {
  margin-top: 1rem;
  font-size: 1.8rem;
}
.works-message {
  padding: 2rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .works-img {
    width: 40%;
    max-width: none;
    margin: 0;
  }
  .works-img-start {
    margin-right: 3rem;
  }
  .works-img-end {
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .works-list {
    margin-top: 7rem;
  }
  .works-item:not(:last-child) {
    margin-bottom: 13rem;
  }
  .works-item:last-of-type {
    margin-bottom: 7rem;
  }
  .works-img {
    width: 50rem;
  }
  .works-img-start {
    margin-right: 5.5rem;
  }
  .works-img-end {
    margin-left: 5.5rem;
  }
  .works-img .img-sm {
    width: 30rem;
    margin: -3rem 0 0 auto;
  }
  .works-img .img-lg {
    width: 42.6rem;
    margin-right: 0;
  }
  .works-img .img-xl {
    width: 50rem;
  }
  .works-comment {
    margin-right: -2ch;
  }
  .works-message {
    padding: 3rem;
    font-size: 2rem;
  }
}

/* 職員の一日 */
.days-heading.heading:first-of-type {
  margin-top: 4rem;
}
.days-flow {
  position: relative;
  padding-left: 10rem;
}
.days-item {
  position: relative;
}
.days-item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -8.75rem;
  width: 0.5rem;
  height: 100%;
  background-color: var(--color-base);
}
.days-item + .days-item {
  padding-top: 2rem;
}
.days-first::before {
  height: 50%;
}
.days-end::before {
  top: 0;
  height: 50%;
}
.days-detail {
  padding: 1.5rem 2rem;
}
.days-detail dt {
  font-size: 1.6rem;
}
.days-detail .time {
  display: block;
  position: absolute;
  left: -10rem;
  width: 9rem;
  margin: 0;
  font-size: 1em;
  text-align: right;
}
.days-detail .not-img {
  margin-top: 0.3rem;
}
.days-detail .has-img {
  margin-top: 1.5rem;
}
.days-detail .first-time::before,
.days-detail .end-time::before,
.days-detail .has-time::before {
  content: "";
  display: block;
  position: absolute;
  left: -10rem;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  border: 5px solid var(--color-base);
  background-color: #fff;
}
.days-detail .first-time::before {
  top: 0;
  bottom: 0;
  margin: auto;
}
.days-detail .end-time::before {
  top: 0;
  bottom: -2rem;
  margin: auto;
}
.days-detail + .days-detail {
  margin-top: 2rem;
}
.days-img {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1.3rem;
  grid-row-gap: 1.3rem;
  max-width: 19.6rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .days-flow {
    padding-left: 12.8rem;
  }
  .days-item::before {
    left: -11.4rem;
    width: 1.2rem;
  }
  .days-detail dt {
    font-size: 1.8rem;
  }
  .days-detail .time {
    left: -10.6rem;
  }
  .days-detail .first-time::before,
  .days-detail .end-time::before,
  .days-detail .has-time::before {
    left: -12.8rem;
    width: 4rem;
    height: 4rem;
    border-width: 10px;
  }
  .days-detail .has-time::before {
    margin-top: -0.2rem;
  }
  .days-img {
    margin: 0 2.5rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .days-img-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 40.5rem;
  }
}

/* 今注目の技術 */
.tech-heading.heading:first-of-type {
  margin-top: 5rem;
}
.tech-caption {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 2rem;
}
.tech-intro {
  max-width: 38rem;
  margin-inline: auto;
}
.tech-intro-img {
  margin-bottom: 3rem;
}
.tech-point {
  counter-reset: tech_point;
}
.tech-point-item:not(:last-child) {
  margin-bottom: 0.3rem;
}
.tech-point-detail {
  position: relative;
  padding: 1.5rem 2rem 1.5rem 6rem;
}
.tech-point-detail dt {
  font-size: 1.8rem;
}
.tech-point-detail dd {
  margin-top: 0.5rem;
}
.tech-point-detail .counter {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 100%;
}
.tech-point-detail .counter::before {
  counter-increment: tech_point;
  content: counter(tech_point, decimal-leading-zero);
  font-size: 2rem;
}
.tech-img {
  width: 24rem;
  margin: 0 auto 2rem;
}
.tech-img .caption {
  margin-top: 0.5rem;
}
.tech-video {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  margin-top: 3rem;
}
.tech-video .caption {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.tech-case-chart {
  max-width: 40rem;
  margin-inline: auto;
  overflow: hidden;
}
.tech-case-mv {
  position: relative;
  margin-bottom: 3rem;
  z-index: 1;
}
.tech-case-flow {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 3rem;
  padding-left: 4rem;
}
.tech-case-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
}
.tech-case-inner {
  flex-direction: column;
  height: 100%;
}
.tech-case-img .img {
  display: block;
  position: relative;
}
.tech-case-img .img::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  right: auto;
  left: -1.5rem;
  width: 1.2rem;
  height: 3.5rem;
  margin: auto;
  background-color: var(--color-base);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.tech-case-img .img1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(50% - 0.75rem);
  left: -4rem;
  width: 3rem;
  height: 300%;
  margin: auto;
  border-bottom: 1.5rem solid var(--color-base);
  border-left: 1.5rem solid var(--color-base);
}
.tech-case-caption {
  margin-top: 0.5rem;
  line-height: 1.5;
  font-size: 1.2rem;
}
.tech-case-caption:empty {
  margin-top: 0;
}
@media screen and (min-width: 480px), print {
  .tech-video {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px), print {
  .tech-intro {
    max-width: none;
    margin-inline: 0;
  }
  .tech-intro-img {
    width: 30rem;
    margin: 0 3rem 0 0;
  }
  .tech-img {
    margin: 0 0 0 2rem;
  }
  .tech-case-chart {
    max-width: none;
    margin-inline: 0;
  }
  .tech-case-mv {
    max-width: 40rem;
    margin: 0 auto 2rem;
  }
  .tech-case-flow {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 0px;
    position: relative;
    padding: 7.8rem 0 0;
  }
  .tech-case-flow::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 1.5rem;
    height: 8rem;
    margin-inline: auto;
    background-color: var(--color-base);
  }
  .tech-case-item {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: subgrid;
    grid-row: span 2;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    position: relative;
  }
  .tech-case-item::before {
    content: "";
    display: block;
    position: absolute;
  }
  .tech-case-case1::before {
    top: -4.5rem;
    left: calc(50% - 0.75rem);
    width: calc(50% + 0.75rem);
    height: 4.6rem;
    border-top: 1.5rem solid var(--color-base);
    border-left: 1.5rem solid var(--color-base);
  }
  .tech-case-case2::before {
    top: -4.5rem;
    left: -2rem;
    width: calc(100% + 2rem + 2rem);
    height: 1.5rem;
    background-color: var(--color-base);
  }
  .tech-case-case3::before {
    top: -4.5rem;
    right: calc(50% - 0.75rem);
    width: calc(50% + 0.75rem);
    height: 4.6rem;
    border-top: 1.5rem solid var(--color-base);
    border-right: 1.5rem solid var(--color-base);
  }
  .tech-case-img {
    position: relative;
    padding-top: 3.6rem;
  }
  .tech-case-img + .tech-case-img {
    margin-top: 1rem;
  }
  .tech-case-img::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    bottom: auto;
    width: 7rem;
    height: 2.6rem;
    margin: auto;
    background-color: var(--color-base);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .tech-case-img .img {
    display: inline;
    position: static;
  }
  .tech-case-img .img::before {
    display: none;
  }
  .tech-case-img .img1::after {
    display: none;
  }
  .tech-case-caption {
    display: grid;
    place-content: center;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .tech-caption {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
  .tech-intro-img {
    width: 40rem;
    margin-right: 5.5rem;
  }
  .tech-point-detail {
    height: 8.6rem;
    padding: 0 2rem 0 8rem;
  }
  .tech-point-detail dd {
    margin: 0 0 0 3rem;
  }
  .tech-point-detail .counter {
    width: 6rem;
  }
  .tech-point-detail .counter::before {
    font-size: 3rem;
  }
  .tech-img {
    width: 30rem;
    margin-left: 6rem;
  }
  .tech-video {
    grid-column-gap: 4.5rem;
    margin-top: 6rem;
    padding: 0 2.5rem;
  }
  .tech-video .caption {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .tech-case-flow {
    grid-column-gap: 2.4rem;
  }
  .tech-case-case2::before {
    left: -2.4rem;
    width: calc(100% + 2.4rem + 2.4rem);
  }
  .tech-case-caption {
    font-size: 1.6rem;
  }
}

/* 採用情報 */
.recruit-catch {
  margin-right: -1em;
  margin-bottom: 3rem;
  line-height: 1.2;
  font-size: 3.5rem;
}
.recruit-topics {
  margin-bottom: 5rem;
  padding: 1.5rem;
  border-top: 0.5rem solid var(--color-sub1);
  border-bottom: 0.5rem solid var(--color-sub1);
}
.recruit-topics-inner {
  max-width: 89.5rem;
  margin-inline: auto;
}
.recruit-menu {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  max-width: 89.5rem;
  margin: 0 auto 5rem;
}
.recruit-menu dl {
  padding: 3rem 2rem;
}
.recruit-menu dt {
  margin-bottom: 3rem;
  line-height: 1.2;
  font-size: 2.5rem;
}
.recruit-menu dd:not(:last-child) {
  margin-bottom: 2rem;
}
.recruit-menu .link-button {
  display: block;
  max-width: 28rem;
  margin-inline: auto;
}
.recruit-interview {
  margin-top: 9rem;
}
.recruit-interview-inner {
  padding: 2rem;
  border: 1px solid var(--color-sub3);
}
.recruit-interview-img {
  margin-bottom: 1.5rem;
}
.recruit-interview-img img {
  width: 12rem;
}
.recruit-interview-title {
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 2.2rem;
  text-align: center;
}
.recruit-interview-title .age {
  display: block;
}
.recruit-body {
  margin-top: 9rem;
}
.recruit-body > br {
  display: none;
}
.recruit-table {
  position: relative;
  z-index: 1;
}
.recruit-entry {
  margin-top: 7rem;
}
.recruit-entry-text {
  margin-bottom: 3.5rem;
  font-size: 1.8rem;
}
.recruit-entry-detail {
  margin: 0 -2rem -10rem;
  padding: 5rem 0 6rem;
}
.recruit-entry-detail dt {
  margin-bottom: 2rem;
  line-height: 1.4;
  font-size: 3rem;
}
.recruit-entry-detail .office {
  font-size: 1.6rem;
}
.recruit-entry-detail .name {
  font-size: 1.25em;
}
.recruit-entry-detail .entry {
  margin-top: 3rem;
}
.recruit-entry-detail .tel-link,
.recruit-entry-detail .mail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 6rem;
  margin: 0 auto;
  color: var(--color-sub6);
  border-radius: 10em;
  background-color: #fff;
  transition: color var(--transition), background-color var(--transition);
}
.recruit-entry-detail .tel-link {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
.recruit-entry-detail .mail-link {
  font-size: 2rem;
}
.recruit-entry-detail .tel-link[href]:hover,
.recruit-entry-detail .mail-link:hover {
  text-decoration: none;
}
.recruit-entry-detail .tel-link::before,
.recruit-entry-detail .mail-link::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.recruit-entry-detail .tel-link::before {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  background-image: url(../img/base/tel_grn.svg);
}
.recruit-entry-detail .mail-link::before {
  width: 3rem;
  height: 2.3rem;
  margin-right: 1.5rem;
  background-image: url(../img/base/mail_grn.svg);
}
@media screen and (min-width: 768px), print {
  .recruit-catch {
    margin-right: 0;
  }
  .recruit-topics {
    border-width: 1rem;
  }
  .recruit-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    margin-bottom: 7rem;
  }
  .recruit-menu dl {
    padding: 3rem 0 2rem;
  }
  .recruit-menu dt {
    margin-bottom: 2rem;
  }
  .recruit-menu dd {
    display: inline-block;
    vertical-align: top;
    margin: 0 0.5rem;
  }
  .recruit-menu dd:not(:last-child) {
    margin-bottom: 0;
  }
  .recruit-menu .link-button {
    display: inline-block;
    max-width: none;
    margin-inline: 0;
  }
  .recruit-interview-inner {
    padding: 3rem;
  }
  .recruit-interview-img {
    margin: 0 3rem 0 0;
  }
  .recruit-interview-title {
    text-align: left;
  }
  .recruit-interview-title .age {
    display: inline-block;
    margin-left: 0.5em;
  }
  .recruit-entry-text {
    font-size: 2rem;
  }
  .recruit-entry-detail {
    margin: 0;
    padding: 3rem 0 4rem;
    border-radius: 1.5rem;
  }
  .recruit-entry-detail .tel-link,
  .recruit-entry-detail .mail-link {
    width: 30rem;
    margin: 0 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .recruit-catch {
    margin-bottom: 5rem;
    font-size: 4.3rem;
  }
  .recruit-topics {
    margin-bottom: 6rem;
    padding: 3rem;
  }
  .recruit-interview {
    margin-top: 13rem;
  }
  .recruit-interview-inner {
    padding: 4rem;
  }
  .recruit-interview-img {
    margin: 0 3rem 0 -1rem;
  }
  .recruit-interview-img img {
    width: 16rem;
  }
  .recruit-interview-title {
    font-size: 2.5rem;
  }
  .recruit-body {
    margin-top: 13rem;
  }
  .recruit-entry {
    margin-top: 13rem;
  }
  .recruit-entry-text {
    margin-bottom: 7rem;
    font-size: 2.5rem;
  }
  .recruit-entry-detail {
    padding: 5rem 0 6rem;
    border-radius: 2.5rem;
  }
  .recruit-entry-detail dt {
    font-size: 4rem;
  }
  .recruit-entry-detail .office {
    font-size: 2rem;
  }
  .recruit-entry-detail .tel-link,
  .recruit-entry-detail .mail-link {
    margin: 0 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .recruit-entry-detail .tel-link[href]:hover,
  .recruit-entry-detail .mail-link:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .recruit-entry-detail .tel-link[href]:hover::before {
    background-image: url(../img/base/tel_wht.svg);
  }
  .recruit-entry-detail .mail-link:hover::before {
    background-image: url(../img/base/mail_wht.svg);
  }
}

/* お問い合わせ（電話番号）*/
.contact-us {
  padding: 3rem 0 4rem;
  border-top: 0.5rem solid var(--color-sub1);
  border-bottom: 0.5rem solid var(--color-sub1);
}
.contact-us-text {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.contact-us-tel .tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 6rem;
  margin-inline: auto;
  line-height: 1em;
  font-size: 2.5rem;
  color: #fff;
  background-color: var(--color-base);
  transition: color var(--transition), background-color var(--transition);
}
.contact-us-tel .tel-link[href]:hover {
  text-decoration: none;
}
.contact-us-tel .tel-link::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  background-image: url(../img/base/tel_wht.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 1100px), print {
  .contact-us {
    padding: 5rem 0 6rem;
    border-width: 1rem;
  }
  .contact-us-text {
    margin-bottom: 2.5rem;
    line-height: 2;
    font-size: 2.5rem;
  }
  .contact-us-tel .tel-link {
    width: 38rem;
    height: 7.5rem;
    font-size: 3.2rem;
  }
  .contact-us-tel .tel-link::before {
    width: 3.1rem;
    height: 3.1rem;
    margin-right: 1.5rem;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */