@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100,400,500&family=Zen+Old+Mincho:wght@700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

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;
}

:root {
  --color-key: #269600;
  --color-key-rgb: 38,
  150,
  0;
  --color-main: #395232;
  --color-main-rgb: 57,
  82,
  50;
  --color-sub: #000000;
  --color-sub-rgb: 0,
  0,
  0;
  --font-01: "Noto Sans JP", sans-serif;
  --font-02: "Zen Old Mincho", serif;
}

html {
  scrollbar-gutter: stable;
  overflow-y: auto;
}

html,
body {
  font-family: "Noto Sans JP", "helvetica neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
  color: var(--color-sub);
  background-color: #F5F5F5;
}

@media screen and (min-width: 1600px) {
  html,
  body {
    font-size: 0.625vw;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
}

strong,
b {
  font-weight: bold;
}

@property --tx {
  syntax: "<length>|<percentage>";
  inherits: true;
  initial-value: 0;
}
@property --ty {
  syntax: "<length>|<percentage>";
  inherits: true;
  initial-value: 0;
}
@property --scale {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}
@property --rotate {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}
@property --opacity {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}
.a11y-cont-skip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.a11y-cont-skip__btn {
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.8rem;
  background-color: #FFF;
  padding: 1rem 3rem;
  text-decoration: underline;
  position: absolute;
  right: 50%;
  --tx: 50%;
  --scale: 0;
  -webkit-transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
  transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
  cursor: pointer;
  z-index: -1;
}

.a11y-cont-skip__btn:focus {
  --scale: 1;
  z-index: 1;
}

.archive-pagination {
  margin-top: 4rem;
}

@media screen and (max-width: 744px) {
  .archive-pagination {
    margin-top: 4rem;
  }
}
.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 3rem;
}

@media screen and (max-width: 744px) {
  .archive-pagination .nav-links {
    gap: 1.5rem 1.5rem;
  }
}
.archive-pagination .nav-links__prev {
  width: 1.3rem;
  align-self: flex-start;
  transition: 0.3s ease opacity;
}

@media (hover: hover) and (pointer: fine) {
  .archive-pagination .nav-links__prev:hover .icon-arrow-color, .archive-pagination .nav-links__prev:focus .icon-arrow-color {
    stroke: var(--color-key);
  }
}
.archive-pagination .nav-links__next {
  width: 1.3rem;
  transition: 0.3s ease opacity;
}

@media (hover: hover) and (pointer: fine) {
  .archive-pagination .nav-links__next:hover .icon-arrow-color, .archive-pagination .nav-links__next:focus .icon-arrow-color {
    stroke: var(--color-key);
  }
}
.archive-pagination .nav-links__num {
  flex: 1;
  align-self: flex-end;
  display: flex;
  justify-content: center;
  gap: 1rem 2rem;
}

.archive-pagination .page-numbers {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
  text-align: center;
  border: 1px solid var(--color-main);
  border-radius: 0.4rem;
  align-content: center;
  color: var(--color-main);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: 0.3s ease opacity;
}

@media screen and (max-width: 744px) {
  .archive-pagination .page-numbers {
    font-size: 1.5rem;
  }
}
.archive-pagination .page-numbers::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-key);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: 0.1s ease-out transform;
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .archive-pagination .page-numbers:hover, .archive-pagination .page-numbers:focus {
    border-color: var(--color-key);
    color: var(--color-key);
  }
}
.archive-pagination .page-numbers.current {
  color: #fff;
}

.archive-pagination .page-numbers.current::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.archive-pagination .prev, .archive-pagination .next {
  display: block;
  width: 1.2rem;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 744px) {
  .archive-pagination .prev, .archive-pagination .next {
    width: 1rem;
  }
}
.archive-pagination .icon-prev, .archive-pagination .icon-next {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
}

.archive-pagination .icon-prev .icon-arrow-color {
  stroke: var(--color-main);
}

.archive-pagination .icon-next .icon-arrow-color {
  stroke: var(--color-main);
}

.archive-pagination .label {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.cont {
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1100px) {
  .cont {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 744px) {
  .cont {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.ftr {
  background-color: #fff;
}

.ftr__wrap {
  padding-top: 5rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1000px) {
  .ftr__wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 744px) {
  .ftr__wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 700px) {
  .ftr__wrap {
    padding-top: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.ftr-hdr {
  width: 100%;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0 3rem;
}

@media screen and (max-width: 700px) {
  .ftr-hdr {
    flex-direction: column;
    gap: 2.5rem 0;
  }
}
.ftr-logo {
  width: 100%;
  max-width: 40rem;
}

.ftr-logo img {
  width: 100%;
  max-width: initial;
}

@media screen and (max-width: 744px) {
  .ftr-addr {
    align-self: flex-start;
  }
}
.ftr-addr__txt {
  font-size: 1.2rem;
  line-height: 1.6;
}

.ftr-nav {
  margin-top: 3.4rem;
  padding-top: 4rem;
  padding-bottom: 5.7rem;
  border-top: 1px solid #BEBEBE;
  width: 100%;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem 5rem;
}

@media screen and (max-width: 700px) {
  .ftr-nav {
    gap: 5rem 0;
  }
}
.ftr-nav-li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3.8rem;
}

@media screen and (max-width: 700px) {
  .ftr-nav-li {
    gap: 2rem 3rem;
  }
}
.ftr-nav-li__itm {
  font-family: var(--font-02);
  color: var(--color-sub);
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .ftr-nav-li__itm {
    font-size: 1.6rem;
  }
}
.ftr-nav-li__lnk {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  transition: 0.3s ease color;
}

@media (hover: hover) and (pointer: fine) {
  .ftr-nav-li__lnk:hover, .ftr-nav-li__lnk:focus {
    color: var(--color-key);
  }
}
.ftr-nav-cta {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ftr-nav-cta__text-lnk {
  color: var(--color-sub);
  font-size: 1.5rem;
  transition: 0.3s ease color;
}

@media screen and (max-width: 700px) {
  .ftr-nav-cta__text-lnk {
    font-size: 1.3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .ftr-nav-cta__text-lnk:hover, .ftr-nav-cta__text-lnk:focus {
    color: var(--color-key);
  }
}
.ftr-nav-cta__lnk {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.1rem;
  border: 1px solid var(--color-sub);
  padding: 1rem 2.5rem;
  border-radius: calc(infinity * 1px);
  color: var(--color-sub);
  transition: 0.3s ease all;
}

.ftr-nav-cta__lnk .icon-mail {
  fill: var(--color-sub);
}

.ftr-nav-cta__lnk--icn {
  width: 2.3rem;
}

.ftr-nav-cta__lnk--icn svg {
  display: block;
  width: 100%;
}

.ftr-nav-cta__lnk--txt {
  font-weight: 500;
  font-size: 1.6rem;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .ftr-nav-cta__lnk:hover, .ftr-nav-cta__lnk:focus {
    background-color: var(--color-sub);
    color: #FFF;
  }
  .ftr-nav-cta__lnk:hover .icon-mail, .ftr-nav-cta__lnk:focus .icon-mail {
    fill: #FFF;
  }
}
.ftr-copy {
  background-color: var(--color-main);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.ftr-copy__txt {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 100;
  text-align: center;
}

.js-gsap-fade {
  opacity: 0;
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  will-change: transform;
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  transition: 0.3s ease background-color;
  z-index: 9999;
}

.hdr-wrap {
  height: 8.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

@media screen and (max-width: 744px) {
  .hdr-wrap {
    height: 7rem;
  }
}
.hdr-logo {
  width: 100%;
  max-width: 36.3rem;
}

.hdr-logo__img {
  width: 100%;
  max-width: initial;
}

@media screen and (max-width: 1199px) {
  .hdr-logo {
    max-width: 34.9rem;
  }
}
@media screen and (max-width: 744px) {
  .hdr-logo {
    max-width: 26.1rem;
  }
}
.hdr-nav {
  align-self: stretch;
  display: flex;
  gap: 0 2rem;
  align-items: stretch;
  margin-right: -2rem;
}

@media screen and (max-width: 1199px) {
  .hdr-nav {
    --opacity: 0;
    display: block;
    opacity: var(--opacity);
    width: calc(100% + 4rem);
    height: 100vh;
    position: fixed;
    top: -150vh;
    left: 0;
    background-color: #395231;
    margin-left: -2rem;
    margin-right: -2rem;
    overflow-y: auto;
    padding-bottom: 12rem;
  }
}
.hdr-nav-li {
  display: flex;
  align-items: center;
  gap: 0 3.3rem;
}

@media screen and (max-width: 1199px) {
  .hdr-nav-li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem 0;
    width: 17rem;
    margin-top: 15.4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 744px) {
  .hdr-nav-li {
    gap: 4rem 0;
    width: 14rem;
    margin-top: 8rem;
  }
}
.hdr-nav-li__itm {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sub);
}

@media screen and (max-width: 1199px) {
  .hdr-nav-li__itm {
    position: relative;
    padding-left: 2.1rem;
  }
  .hdr-nav-li__itm::before {
    display: block;
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    background-color: #FFF;
    border-radius: 100%;
    position: absolute;
    bottom: 50%;
    left: 0;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
  }
}
@media screen and (max-width: 744px) {
  .hdr-nav-li__itm {
    padding-left: 1.9rem;
  }
  .hdr-nav-li__itm::before {
    width: 0.9rem;
    height: 0.9rem;
    left: 0;
  }
}
.hdr-nav-li__itm--sp {
  display: none;
}

@media screen and (max-width: 1199px) {
  .hdr-nav-li__itm--sp {
    display: block;
  }
}
.hdr-nav-li__lnk {
  font-family: var(--font-02);
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  font-weight: bold;
  color: inherit;
  transition: 0.3s ease color;
}

@media screen and (max-width: 1199px) {
  .hdr-nav-li__lnk {
    color: #FFF;
    font-size: 2.4rem;
    line-height: 1;
  }
}
@media screen and (max-width: 744px) {
  .hdr-nav-li__lnk {
    font-size: 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hdr-nav-li__lnk:hover, .hdr-nav-li__lnk:focus {
    color: var(--color-key);
  }
}
.hdr-nav-cta {
  align-self: stretch;
  font-family: var(--font-02);
  color: var(--color-sub);
}

@media screen and (max-width: 1199px) {
  .hdr-nav-cta {
    align-self: center;
    width: 18.4rem;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 744px) {
  .hdr-nav-cta {
    width: 16rem;
    margin-top: 5rem;
  }
}
.hdr-nav-cta__lnk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  height: 100%;
  background-color: #DCE9D8;
  padding-left: 2rem;
  padding-right: 2rem;
  font-family: inherit;
  color: inherit;
  transition: 0.3s ease all;
}

.hdr-nav-cta__lnk .icon-mail {
  fill: var(--color-sub);
}

@media screen and (max-width: 1199px) {
  .hdr-nav-cta__lnk {
    flex-direction: row;
    gap: 0 1rem;
    background-color: #FFF;
    padding: 1.5rem 2rem;
    border-radius: calc(infinity * 1px);
    border: 1px solid var(--color-sub);
  }
}
.hdr-nav-cta__lnk--icn {
  width: 2.6rem;
}

.hdr-nav-cta__lnk--icn svg {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .hdr-nav-cta__lnk--icn {
    width: 2.4rem;
  }
}
@media screen and (max-width: 744px) {
  .hdr-nav-cta__lnk--icn {
    width: 2rem;
  }
}
.hdr-nav-cta__lnk--txt {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  color: inherit;
}

@media screen and (max-width: 1199px) {
  .hdr-nav-cta__lnk--txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 744px) {
  .hdr-nav-cta__lnk--txt {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hdr-nav-cta__lnk:hover, .hdr-nav-cta__lnk:focus {
    background-color: var(--color-sub);
    color: #FFF;
  }
  .hdr-nav-cta__lnk:hover .icon-mail, .hdr-nav-cta__lnk:focus .icon-mail {
    fill: #FFF;
  }
}
.js-gnav {
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.is-hidden {
  -webkit-transform: translateY(-101%);
  transform: translateY(-101%);
}

@media screen and (max-width: 1199px) {
  .is-open {
    position: relative;
  }
  .is-open .hdr-nav {
    --opacity: 1;
    display: block;
    opacity: var(--opacity);
    top: 8.6rem;
    transition: 0.6s ease opacity;
  }
  .is-open .spmenu__bar {
    background-color: transparent;
  }
  .is-open .spmenu__bar::before, .is-open .spmenu__bar::after {
    --tx: 50%;
    --ty: 50%;
    -webkit-transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
    transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
  }
  .is-open .spmenu__bar::before {
    --rotate: 45deg;
  }
  .is-open .spmenu__bar::after {
    --rotate: -45deg;
  }
}
@media screen and (max-width: 744px) {
  .is-open .hdr {
    background-color: #E3E6E2;
  }
  .is-open .hdr-nav {
    top: 7rem;
  }
}
.js-toggle {
  cursor: pointer;
  position: relative;
  padding-right: 4.8rem;
}

.js-toggle::after {
  display: block;
  content: "";
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--color-key);
  position: absolute;
  right: 0;
  bottom: 50%;
  transition: 0.3s ease all;
  opacity: 1;
  -webkit-transform: translateY(50%) rotate(0deg);
  transform: translateY(50%) rotate(0deg);
}

.js-toggle::before {
  display: block;
  content: "";
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--color-key);
  position: absolute;
  right: 0;
  bottom: 50%;
  transition: 0.3s ease all;
  opacity: 1;
  -webkit-transform: translateY(50%) rotate(90deg);
  transform: translateY(50%) rotate(90deg);
}

.js-toggle.is-open::after {
  opacity: 0;
  -webkit-transform: translateY(50%) rotate(90deg);
  transform: translateY(50%) rotate(90deg);
}

.js-toggle.is-open::before {
  -webkit-transform: translateY(50%) rotate(180deg);
  transform: translateY(50%) rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .js-toggle.is-open:hover::after, .js-toggle.is-open:focus::after {
    opacity: 0;
  }
  .js-toggle.is-open:hover::before, .js-toggle.is-open:focus::before {
    opacity: 0.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .js-toggle:hover::after, .js-toggle:focus::after {
    opacity: 0.8;
  }
  .js-toggle:hover::before, .js-toggle:focus::before {
    opacity: 0.8;
  }
}
.main {
  overflow: hidden;
}

.sec-main {
  padding-top: 11rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 744px) {
  .sec-main {
    padding-top: 8rem;
  }
}
.sec-main:has(.sec-hero) {
  padding-top: 0;
}

.sec-main:has(.sec-hero) .page-nav {
  padding-top: 2rem;
}

@media screen and (max-width: 1100px) {
  .sec-main:has(.sec-hero) .page-nav {
    padding-top: 10.7rem;
  }
}
@media screen and (max-width: 744px) {
  .sec-main:has(.sec-hero) .page-nav {
    padding-top: 1rem;
  }
}
.more--center {
  text-align: center;
}

.more-btn {
  padding: 1rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid var(--color-key);
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  transition: 0.3s ease all;
}

.more-btn .icon-arr {
  stroke: var(--color-key);
}

.more-btn--txt {
  color: var(--color-key);
  font-size: 1.8rem;
  font-weight: 500;
  text-box: trim-both cap alphabetic;
}

.more-btn--icon {
  width: 1.4rem;
}

.more-btn--icon svg {
  display: block;
  width: 100%;
}

.more-btn--inline {
  display: inline-flex;
}

@media (hover: hover) and (pointer: fine) {
  .more-btn:hover, .more-btn:focus {
    background-color: var(--color-key);
  }
  .more-btn:hover .icon-arr, .more-btn:focus .icon-arr {
    stroke: #FFF;
  }
  .more-btn:hover .more-btn--txt, .more-btn:focus .more-btn--txt {
    color: #FFF;
  }
}
.page-ftr {
  margin-top: 8rem;
  text-align: center;
}

@media screen and (max-width: 744px) {
  .page-ftr {
    margin-top: 3rem;
  }
}
.page-ftr .more-btn {
  padding: 1.5rem 5rem;
}

.page-nav__wrap {
  width: 100%;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 0 2rem;
}

.page-nav-li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.2rem;
}

.page-nav-li__itm {
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-sub);
  position: relative;
}

.page-nav-li__itm:not(:last-child)::after {
  display: inline-block;
  content: ">";
  width: 2.2rem;
  font-size: 1.2rem;
  text-align: center;
  position: absolute;
  right: -2.2rem;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.page-nav-li__lnk {
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .page-nav-li__lnk:hover, .page-nav-li__lnk:focus {
    color: var(--color-key);
  }
}
.pagetop {
  opacity: 0;
  transition: 0.3s ease opacity;
  position: sticky;
  bottom: 0;
  width: 100%;
}

.pagetop.is-show {
  opacity: 1;
}

.pagetop__wrap {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  position: relative;
}

.pagetop__lnk {
  display: block;
  width: 6rem;
  height: 6rem;
  position: absolute;
  right: 0;
  bottom: 4rem;
}

.pagetop__lnk svg {
  display: block;
  width: 100%;
}

.pagetop__lnk .icon-pagetop {
  stroke: #269600;
  fill: #fff;
  fill-opacity: 0.8;
  transition: 0.3s ease all;
}

.pagetop__lnk .icon-pagetop-cir {
  fill: #269700;
  transition: 0.3s ease all;
}

@media (hover: hover) and (pointer: fine) {
  .pagetop__lnk:hover .icon-pagetop, .pagetop__lnk:focus .icon-pagetop {
    stroke: #269700;
    fill: #269700;
    fill-opacity: 1;
  }
  .pagetop__lnk:hover .icon-pagetop-cir, .pagetop__lnk:focus .icon-pagetop-cir {
    fill: #FFF;
  }
}
.sec-hdr {
  margin-top: 4.5rem;
}

.sec-hdr__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

.sec-hdr__ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.7rem;
  font-family: var(--font-02);
  font-weight: bold;
  text-align: center;
  color: var(--color-key);
}

@media screen and (max-width: 744px) {
  .sec-hdr__ttl {
    gap: 1.5rem;
  }
}
.sec-hdr__ttl--main {
  font-size: 6rem;
}

@media screen and (max-width: 744px) {
  .sec-hdr__ttl--main {
    font-size: 5rem;
  }
}
.sec-hdr__ttl--sub {
  font-size: 2.4rem;
}

@media screen and (max-width: 744px) {
  .sec-hdr__ttl--sub {
    font-size: 2rem;
  }
}
.sec-hero {
  width: 100%;
  position: relative;
}

.sec-hero__wrap {
  width: 100%;
  height: 42.7rem;
}

@media screen and (max-width: 744px) {
  .sec-hero__wrap {
    height: auto;
    aspect-ratio: 375/264;
  }
}
.sec-hero__wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.sec-hero__wrap img.pc {
  display: block;
}

@media screen and (max-width: 744px) {
  .sec-hero__wrap img.pc {
    display: none;
  }
}
.sec-hero__wrap img.sp {
  display: none;
}

@media screen and (max-width: 744px) {
  .sec-hero__wrap img.sp {
    display: block;
  }
}
.spmenu {
  display: none;
}

@media screen and (max-width: 1199px) {
  .spmenu {
    display: block;
    width: 3rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    aspect-ratio: 3/4;
    position: relative;
  }
  .spmenu__bar {
    --tx: 50%;
    --ty: 50%;
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-main);
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
    transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
    transition: 0.3s ease all;
  }
  .spmenu__bar::before, .spmenu__bar::after {
    transition: 0.3s ease all;
    display: block;
    content: "";
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-main);
    position: absolute;
    bottom: 50%;
    right: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
    transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) scale(var(--scale));
  }
  .spmenu__bar::before {
    --ty: -1rem;
  }
  .spmenu__bar::after {
    --ty: 1.2rem;
  }
}
.contact__wrap {
  width: 100%;
  max-width: 100rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 744px) {
  .contact__wrap {
    margin: 4rem auto 0;
  }
}
.contact__hdr {
  border-bottom: 3px solid var(--color-key);
  padding-bottom: 8rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 744px) {
  .contact__hdr {
    padding-bottom: 6rem;
    margin-bottom: 4rem;
  }
}
.contact__lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--color-sub);
}

@media screen and (max-width: 744px) {
  .contact__lead {
    text-align: left;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12rem 0;
  position: relative;
  padding-bottom: 6rem;
}

@media screen and (max-width: 744px) {
  .contact-form {
    gap: 6rem 0;
    padding-bottom: 3rem;
  }
}
.contact-form::after {
  display: block;
  content: "";
  width: 100%;
  height: 0.1rem;
  border-bottom: 1px solid #BEBEBE;
  position: absolute;
  left: 0;
  bottom: 0;
}

.contact-form__itm {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

@media screen and (max-width: 744px) {
  .contact-form__itm {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.contact-form__itm::after {
  display: block;
  content: "";
  width: 100%;
  height: 0.1rem;
  border-bottom: 1px solid #BEBEBE;
  position: absolute;
  left: 0;
  bottom: -6rem;
}

@media screen and (max-width: 744px) {
  .contact-form__itm::after {
    bottom: -3rem;
  }
}
.contact-form__th {
  width: 35.7rem;
}

@media screen and (max-width: 744px) {
  .contact-form__th {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 1rem;
  }
}
.contact-form__td {
  flex: 1;
}

.contact-form__td--subject .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.contact-form__td--subject .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
}

.contact-form__td--subject .wpcf7-checkbox input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  accent-color: var(--color-key);
}

.contact-form__td--subject .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 1.6rem;
}

.contact-form__td-wrap {
  display: flex;
  gap: 2rem;
}

.contact-form__td-itm {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__td-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  .contact-form__td-ttl {
    font-size: 1.6rem;
  }
}
.contact-form__td-txt {
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  .contact-form__td-txt {
    font-size: 1.5rem;
  }
}
.contact-form__required {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 1rem;
}

.contact-form__required-ttl {
  font-size: 1.6rem;
  line-height: 1;
  color: #EA3A00;
  padding: 0.2rem 0.9rem;
  border: 1px solid #EA3A00;
  border-radius: 0.2rem;
}

.contact-form__required-err {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #EA3A00;
}

.contact-form__ttl {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  .contact-form__ttl {
    font-size: 1.6rem;
  }
}
.contact-form__note {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-sub);
}

.contact-form__address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "address1 address2" "address3 address3" "address4 address4";
  gap: 3rem 2.3rem;
}

@media screen and (max-width: 744px) {
  .contact-form__address {
    gap: 2rem 1.7rem;
  }
}
.contact-form__address-01 {
  grid-area: address1;
}

.contact-form__address-02 {
  grid-area: address2;
}

.contact-form__address-02 .wpcf7-select {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  border: 1px solid #606060;
  border-radius: 0.4rem;
}

@media screen and (max-width: 744px) {
  .contact-form__address-02 .wpcf7-select {
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
  }
}
.contact-form__address-03 {
  grid-area: address3;
}

.contact-form__address-04 {
  grid-area: address4;
}

.contact-form__privacy-txt {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  .contact-form__privacy-txt {
    font-size: 1.6rem;
  }
}
.contact-form__privacy-txt a {
  color: var(--color-key);
  text-decoration: underline;
  transition: 0.3s ease all;
}

@media (hover: hover) and (pointer: fine) {
  .contact-form__privacy-txt a:hover, .contact-form__privacy-txt a:focus {
    opacity: 0.8;
  }
}
.contact-form__privacy-txt .wpcf7-list-item {
  margin-left: 0;
}

.contact-form__privacy-txt .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
}

.contact-form__privacy-txt .wpcf7-list-item input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  accent-color: var(--color-key);
}

.contact-form .wpcf7-text {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  border: 1px solid #606060;
  border-radius: 0.4rem;
}

@media screen and (max-width: 744px) {
  .contact-form .wpcf7-text {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
  }
}
.contact-form .wpcf7-textarea {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  border: 1px solid #606060;
  border-radius: 0.4rem;
}

@media screen and (max-width: 744px) {
  .contact-form .wpcf7-textarea {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
  }
}
.contact-form-submit {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-form-submit p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem 0;
}

.contact-form-submit br {
  display: none;
}

.contact-form-submit .wpcf7-submit {
  padding: 1.5rem 4rem;
  border-radius: 0.4rem;
  border: 1px solid var(--color-key);
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  transition: 0.3s ease all;
  cursor: pointer;
}

.contact-form-submit .wpcf7-submit .icon-arr {
  stroke: var(--color-key);
}

.contact-form-submit .wpcf7-submit--txt {
  color: var(--color-key);
  font-size: 1.8rem;
  font-weight: 500;
  text-box: trim-both cap alphabetic;
}

@media screen and (max-width: 744px) {
  .contact-form-submit .wpcf7-submit--txt {
    font-size: 1.6rem;
  }
}
.contact-form-submit .wpcf7-submit--icon {
  width: 1.4rem;
}

@media (hover: hover) and (pointer: fine) {
  .contact-form-submit .wpcf7-submit:hover, .contact-form-submit .wpcf7-submit:focus {
    background-color: var(--color-key);
  }
  .contact-form-submit .wpcf7-submit:hover .icon-arr, .contact-form-submit .wpcf7-submit:focus .icon-arr {
    stroke: #FFF;
  }
  .contact-form-submit .wpcf7-submit:hover .wpcf7-submit--txt, .contact-form-submit .wpcf7-submit:focus .wpcf7-submit--txt {
    color: #FFF;
  }
}
.contact-form-submit .wpcf7-previous {
  padding: 1.8rem 4rem;
  border-radius: 0.4rem;
  border: 1px solid var(--color-key);
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  transition: 0.3s ease all;
  color: var(--color-key);
  font-size: 1.8rem;
  font-weight: 500;
  text-box: trim-both cap alphabetic;
  cursor: pointer;
}

@media screen and (max-width: 744px) {
  .contact-form-submit .wpcf7-previous {
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-form-submit .wpcf7-previous:hover, .contact-form-submit .wpcf7-previous:focus {
    background-color: var(--color-key);
    color: #FFF;
  }
}
.contact-form .wpcf7-form-control-wrap {
  position: static;
}

.contact-form .wpcf7-not-valid-tip {
  position: absolute;
  top: -100%;
  right: -100%;
}

.contact-thanks {
  margin-top: 8rem;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}

@media screen and (max-width: 744px) {
  .contact-thanks {
    margin-top: 5rem;
    font-size: 1.8rem;
    text-align: left;
  }
  .contact-thanks br {
    display: none;
  }
}
body.home .f-hero__wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  min-height: 72rem;
  max-height: 88.6rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-hero__wrap {
    flex-direction: column;
    height: auto;
    gap: 4rem 0;
  }
}
body.home .f-hero-nav {
  opacity: 0;
  transition: 1.3s ease-out;
  width: 43%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10vh;
}

body.home .f-hero-nav.is-inview {
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  body.home .f-hero-nav {
    width: 100%;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-hero-nav {
    padding-top: 5rem;
  }
}
body.home .f-hero-nav__logo {
  width: 39rem;
}

@media screen and (max-width: 700px) {
  body.home .f-hero-nav__logo {
    width: 27.5rem;
  }
}
body.home .f-hero-nav-li {
  display: flex;
  flex-direction: column;
  gap: 6rem 0;
  margin-top: 8.6rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-hero-nav-li {
    display: none;
  }
}
body.home .f-hero-nav-li__itm {
  font-family: var(--font-02);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-sub);
  line-height: 1;
  position: relative;
  padding-left: 2.1rem;
}

body.home .f-hero-nav-li__itm::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--color-key);
  border-radius: 50%;
  -webkit-transform: translateY(60%);
  transform: translateY(60%);
}

body.home .f-hero-nav-li__lnk {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  transition: 0.3s ease color;
}

@media (hover: hover) and (pointer: fine) {
  body.home .f-hero-nav-li__lnk:hover, body.home .f-hero-nav-li__lnk:focus {
    color: var(--color-key);
  }
}
body.home .f-hero-ph {
  opacity: 0;
  transition: 1.3s ease-out;
  width: 57%;
  align-self: stretch;
  position: relative;
}

body.home .f-hero-ph.is-inview {
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  body.home .f-hero-ph {
    width: 100%;
    aspect-ratio: 1000/800;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-hero-ph {
    height: 45.8rem;
    aspect-ratio: initial;
  }
}
body.home .f-hero-ph__catch-ar {
  z-index: 10;
  padding-bottom: 7vh;
  padding-right: 5%;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 700px) {
  body.home .f-hero-ph__catch-ar {
    padding-bottom: 3rem;
  }
}
body.home .f-hero-ph__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem 0;
}

@media screen and (max-width: 700px) {
  body.home .f-hero-ph__catch {
    gap: 1.5rem 0;
  }
}
body.home .f-hero-ph__catch-itm {
  font-family: var(--font-02);
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  position: relative;
  background-color: #FFF;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

@media screen and (max-width: 700px) {
  body.home .f-hero-ph__catch-itm {
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
  }
}
body.home .f-hero-ph__catch-itm.is-active {
  -webkit-animation: title 1s ease-out forwards;
  animation: title 1s ease-out forwards;
}

@-webkit-keyframes title {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes title {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
body.home .f-hero-ph-li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

body.home .f-hero-ph-li__itm {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: crossFade 19.5s infinite;
  animation: crossFade 19.5s infinite;
}

body.home .f-hero-ph-li__itm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media screen and (max-width: 1100px) {
  body.home .f-hero-ph-li__itm img {
    -o-object-position: center;
    object-position: center;
  }
}
body.home .f-hero-ph-li__itm .pc {
  display: block;
}

@media screen and (max-width: 744px) {
  body.home .f-hero-ph-li__itm .pc {
    display: none;
  }
}
body.home .f-hero-ph-li__itm .sp {
  display: none;
}

@media screen and (max-width: 744px) {
  body.home .f-hero-ph-li__itm .sp {
    display: block;
  }
}
body.home .f-hero-ph-li__itm:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

body.home .f-hero-ph-li__itm:nth-child(2) {
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

body.home .f-hero-ph-li__itm:nth-child(3) {
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
}

@-webkit-keyframes crossFade {
  0% {
    opacity: 0;
  }
  7.69% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.03% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes crossFade {
  0% {
    opacity: 0;
  }
  7.69% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.03% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
body.home .f-ttl {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: var(--color-key);
  font-family: var(--font-02);
}

@media screen and (max-width: 744px) {
  body.home .f-ttl {
    gap: 1.5rem;
  }
}
body.home .f-ttl--main {
  font-size: 6rem;
  text-box: trim-both cap alphabetic;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 744px) {
  body.home .f-ttl--main {
    font-size: 4rem;
  }
}
body.home .f-ttl--sub {
  font-size: 2.4rem;
  text-box: trim-both cap alphabetic;
}

@media screen and (max-width: 744px) {
  body.home .f-ttl--sub {
    font-size: 1.8rem;
  }
}
body.home .f-concept {
  padding-top: 20rem;
  padding-bottom: 5rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-concept {
    padding-top: 10.7rem;
    padding-bottom: 5rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-concept {
    padding-top: 4.8rem;
    padding-bottom: 2.4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
body.home .f-concept__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

body.home .f-concept-content {
  display: grid;
  grid-template-columns: 44.8rem minmax(0, 62rem);
  gap: 11.7rem 15rem;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 1400px) {
  body.home .f-concept-content {
    gap: 26.7rem clamp(2.4rem, 5vw, 15rem);
  }
}
@media screen and (max-width: 1000px) {
  body.home .f-concept-content {
    display: flex;
    flex-direction: column;
    gap: 0 0;
  }
}
body.home .f-concept-ph-ar {
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
  gap: 13rem 0;
  margin-top: 2.6rem;
}

@media screen and (max-width: 1000px) {
  body.home .f-concept-ph-ar {
    width: 100%;
    max-width: 42.7rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-concept-ph-ar {
    max-width: 28.3rem;
    gap: 4.8rem 0;
  }
}
body.home .f-concept-txt-ar {
  grid-column: 2/3;
  padding-top: 8rem;
}

@media screen and (max-width: 1000px) {
  body.home .f-concept-txt-ar {
    width: 100%;
    max-width: 49.9rem;
    margin: 7.3rem auto 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-concept-txt-ar {
    width: 100%;
    max-width: 36.5rem;
    margin: 7rem auto 0;
  }
}
body.home .f-concept-ph-01 {
  position: relative;
}

body.home .f-concept-ph-01__ph {
  width: 100%;
  max-width: 31.7rem;
  aspect-ratio: 317/330;
  position: relative;
  margin-left: auto;
  margin-right: 0;
}

body.home .f-concept-ph-01__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-01__ph {
    max-width: 19rem;
    aspect-ratio: 190/197;
  }
}
body.home .f-concept-ph-01__ill {
  position: absolute;
  width: 4.6rem;
  bottom: 2.3rem;
  right: min(-3.1rem, -1.9375vw);
}

body.home .f-concept-ph-01__ill img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-01__ill {
    width: 2.8rem;
    bottom: 1.6rem;
    right: -1.9rem;
  }
}
body.home .f-concept-ph-02__ph {
  width: 100%;
  max-width: 38.3rem;
  aspect-ratio: 383/222;
}

body.home .f-concept-ph-02__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-02__ph {
    max-width: 23rem;
    aspect-ratio: 230/133;
  }
}
body.home .f-concept-ph-03 {
  position: relative;
  padding-top: 23rem;
}

@media screen and (max-width: 744px) {
  body.home .f-concept-ph-03 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-concept-ph-03 {
    padding-top: 13.4rem;
    padding-bottom: 13.9rem;
  }
}
body.home .f-concept-ph-03__ph {
  width: 100%;
  max-width: 50.5rem;
  aspect-ratio: 505/322;
  margin-left: auto;
  margin-right: 0;
}

body.home .f-concept-ph-03__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-03__ph {
    max-width: 30.3rem;
    aspect-ratio: 303/193;
  }
}
body.home .f-concept-ph-03__ill--01 {
  position: absolute;
  width: 10rem;
  top: 5.9rem;
  right: 26rem;
}

body.home .f-concept-ph-03__ill--01 img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-03__ill--01 {
    top: 5.1rem;
    right: 15.5rem;
  }
  body.home .f-concept-ph-03__ill--01 img {
    width: 6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-concept-ph-03__ill--01 {
    top: 5.1rem;
    right: 11.5rem;
  }
}
body.home .f-concept-ph-03__ill--02 {
  position: absolute;
  width: 31rem;
  top: 0;
  right: min(-10rem, -6.25vw);
}

body.home .f-concept-ph-03__ill--02 img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-03__ill--02 {
    top: 0;
    right: -8.1rem;
  }
  body.home .f-concept-ph-03__ill--02 img {
    width: 18.6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-concept-ph-03__ill--02 {
    top: 0;
    right: -22rem;
  }
}
body.home .f-concept-ph-03__ill--03 {
  position: absolute;
  width: 20.5rem;
  top: 36.1rem;
  right: 50.5rem;
}

body.home .f-concept-ph-03__ill--03 img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  body.home .f-concept-ph-03__ill--03 {
    top: auto;
    bottom: 0;
    right: 25.2rem;
  }
  body.home .f-concept-ph-03__ill--03 img {
    width: 12.3rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-concept-ph-03__ill--03 {
    top: auto;
    bottom: 2rem;
    right: 16rem;
  }
}
body.home .f-concept__ttl {
  font-family: var(--font-02);
  font-size: 3rem;
  font-weight: bold;
  line-height: 2;
  color: var(--color-sub);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem 0;
  margin-bottom: 4rem;
}

body.home .f-concept__ttl span {
  background: linear-gradient(rgba(0, 0, 0, 0) calc(100% - 1px), black 100%);
}

@media screen and (max-width: 700px) {
  body.home .f-concept__ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
body.home .f-concept__txt {
  font-size: 2rem;
  line-height: 2.5;
}

body.home .f-concept__txt + .f-concept__txt {
  margin-top: 1em;
}

@media screen and (max-width: 1000px) {
  body.home .f-concept__txt br {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-concept__txt {
    font-size: 1.5rem;
  }
}
body.home .f-concept-sub-ttl {
  position: absolute;
  width: 1.5rem;
  top: 0;
  left: min(-6.5rem, -4.0625vw);
  padding-top: 13rem;
}

body.home .f-concept-sub-ttl img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  body.home .f-concept-sub-ttl {
    left: -2.3rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 700px) {
  body.home .f-concept-sub-ttl {
    left: 0;
  }
  body.home .f-concept-sub-ttl img {
    width: 1rem;
  }
}
body.home .f-news {
  margin-top: 20.6rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-news {
    margin-top: 16rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-news {
    margin-top: 6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
body.home .f-news__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 0 13.2rem;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1100px) {
  body.home .f-news__wrap {
    gap: 0 3.2rem;
  }
}
@media screen and (max-width: 1000px) {
  body.home .f-news__wrap {
    flex-direction: column;
    gap: 3.5rem 0;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-news__wrap {
    gap: 4rem 0;
  }
}
body.home .f-news-ttl-ar {
  width: 100%;
  max-width: 18.8rem;
  display: flex;
  flex-direction: column;
  gap: 6.8rem 0;
  z-index: 2;
}

@media screen and (max-width: 1000px) {
  body.home .f-news-ttl-ar {
    display: contents;
  }
}
body.home .f-news-li-ar {
  flex: 1;
}

@media screen and (max-width: 1000px) {
  body.home .f-news .f-ttl {
    order: 1;
  }
  body.home .f-news .more {
    order: 3;
    width: 18.8rem;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0rem;
  }
  body.home .f-news .f-news-li-ar {
    order: 2;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-news .f-news-li-ar {
    margin-top: 0;
    -webkit-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }
}
body.home .f-news-ill-01 {
  position: absolute;
  width: 30rem;
  bottom: 50%;
  left: min(-10rem, -6.25vw);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 1;
}

body.home .f-news-ill-01 img {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  body.home .f-news-ill-01 {
    bottom: 0;
    -webkit-transform: initial;
    transform: initial;
  }
}
@media screen and (max-width: 1000px) {
  body.home .f-news-ill-01 {
    bottom: -5rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-news-ill-01 {
    left: -2.5rem;
  }
  body.home .f-news-ill-01 img {
    width: 23.4rem;
  }
}
body.home .f-mess {
  margin-top: 14rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-mess {
    margin-top: 8rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 1000px) {
  body.home .f-mess {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-mess {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
body.home .f-mess__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  border: 2px solid var(--color-key);
  padding: 6rem 9rem;
  display: flex;
  flex-direction: column;
  gap: 6rem 0;
}

@media screen and (max-width: 1100px) {
  body.home .f-mess__wrap {
    padding: 5rem;
    gap: 3rem 0;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-mess__wrap {
    padding: 3rem;
    gap: 4rem 0;
  }
}
body.home .f-mess-ar {
  display: flex;
  gap: 0 5.4rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-mess-ar {
    flex-direction: column;
    gap: 3rem 0;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-mess-ar {
    gap: 2rem 0;
  }
}
body.home .f-mess-ph-ar {
  width: 33.6rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-mess-ph-ar {
    width: 100%;
  }
}
body.home .f-mess-txt-ar {
  flex: 1;
}

body.home .f-mess-ph {
  width: 100%;
  aspect-ratio: 336/395;
  position: relative;
}

@media screen and (max-width: 1100px) {
  body.home .f-mess-ph {
    max-width: 56.3rem;
    aspect-ratio: 563/395;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  body.home .f-mess-ph {
    max-width: 56.3rem;
    aspect-ratio: 563/395;
    margin: 0 auto;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-mess-ph {
    max-width: 21rem;
    aspect-ratio: 336/395;
    margin: 0 auto;
  }
}
body.home .f-mess-ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

body.home .f-mess__txt {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 744px) {
  body.home .f-mess__txt {
    font-size: 1.5rem;
  }
}
body.home .f-mess__txt + .f-mess__txt {
  margin-top: 1.3333em;
}

@media screen and (max-width: 1100px) {
  body.home .f-mess__txt br {
    display: none;
  }
}
body.home .f-mess-signature {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 2.6rem;
}

@media screen and (max-width: 744px) {
  body.home .f-mess-signature {
    gap: 0 2rem;
  }
}
body.home .f-mess-signature__name {
  width: 20.8rem;
  aspect-ratio: 208/49;
}

@media screen and (max-width: 744px) {
  body.home .f-mess-signature__name {
    width: 14rem;
    aspect-ratio: 140/33;
  }
}
body.home .f-mess-signature__img {
  width: 9.6rem;
  aspect-ratio: 96/117;
}

@media screen and (max-width: 744px) {
  body.home .f-mess-signature__img {
    width: 8.8rem;
    aspect-ratio: 88/107;
  }
}
body.home .f-mess-history__ttl {
  font-family: var(--font-02);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-key);
}

body.home .f-mess-history-li {
  margin-top: 2rem;
  border-top: 1px solid var(--color-key);
}

body.home .f-mess-history-li__itm {
  display: flex;
  gap: 0 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-key);
}

body.home .f-mess-history-li__year {
  width: 9.2rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  body.home .f-mess-history-li__year {
    width: 8.7rem;
    font-size: 1.4rem;
  }
}
body.home .f-mess-history-li__txt {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  body.home .f-mess-history-li__txt {
    font-size: 1.4rem;
  }
}
body.home .f-service {
  margin-top: 14rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-service {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service {
    margin-top: 19.8rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
body.home .f-service__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

body.home .f-service-li {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 7.6rem 10rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li {
    margin-top: 4rem;
    flex-direction: column;
    gap: 6rem 0;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-li {
    margin-top: 4rem;
    gap: 5rem 0;
  }
}
body.home .f-service-li__itm {
  width: calc((100% - 10rem) / 2);
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li__itm {
    width: 100%;
    display: flex;
    gap: 0 4rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-li__itm {
    flex-direction: column;
    gap: 2rem 0;
  }
}
body.home .f-service-li__tmb {
  width: 100%;
  aspect-ratio: 550/327;
  position: relative;
}

body.home .f-service-li__tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li__tmb {
    width: 44%;
    height: auto;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-li__tmb {
    width: 100%;
  }
}
body.home .f-service-li__body {
  flex: 1;
  margin-top: 2rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li__body {
    margin-top: 0;
  }
}
body.home .f-service-li__ttl {
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li__ttl {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-li__ttl {
    display: block;
  }
}
body.home .f-service-li__ttl::before {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--color-key);
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li__ttl::before {
    top: 0.5rem;
    bottom: auto;
    -webkit-transform: initial;
    transform: initial;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-li__ttl::before {
    top: auto;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
}
body.home .f-service-li__ttl--main {
  font-size: 2rem;
}

@media screen and (max-width: 744px) {
  body.home .f-service-li__ttl--main {
    font-size: 1.8rem;
  }
}
body.home .f-service-li__ttl--sub {
  font-size: 1.6rem;
}

@media screen and (max-width: 744px) {
  body.home .f-service-li__ttl--sub {
    font-size: 1.4rem;
  }
}
body.home .f-service-li__txt {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 1100px) {
  body.home .f-service-li__txt {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-li__txt {
    font-size: 1.5rem;
  }
}
body.home .f-service-note {
  margin-top: 4.4rem;
  border: 2px solid #269600;
  padding: 3rem 5.4rem;
  max-width: 92.4rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 744px) {
  body.home .f-service-note {
    margin-top: 5rem;
    padding: 2rem 2rem;
  }
}
body.home .f-service-note__ttl {
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  font-size: 2rem;
}

@media screen and (max-width: 744px) {
  body.home .f-service-note__ttl {
    font-size: 1.8rem;
  }
}
body.home .f-service-note__ttl::before {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--color-key);
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

body.home .f-service-note__txt {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  body.home .f-service-note__txt {
    font-size: 1.4rem;
  }
}
body.home .f-service-ill-01 {
  position: absolute;
  width: 28.2rem;
  top: min(-9rem, -5.625vw);
  right: min(-10rem, -6.25vw);
}

body.home .f-service-ill-01 img {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  body.home .f-service-ill-01 {
    top: -5rem;
    right: -6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-service-ill-01 {
    top: -16.8rem;
    right: -2.5rem;
  }
  body.home .f-service-ill-01 img {
    width: 22rem;
  }
}
body.home .f-faq {
  margin-top: 14rem;
  margin-bottom: 14rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-faq {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-faq {
    margin-top: 12.8rem;
    margin-bottom: 10rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
body.home .f-faq__wrap {
  width: 100%;
  max-width: 119rem;
  margin: 0 auto;
}

body.home .f-faq-li {
  margin-top: 6rem;
  border-top: 1px solid #BEBEBE;
  counter-reset: num;
}

@media screen and (max-width: 1100px) {
  body.home .f-faq-li {
    margin-top: 4rem;
  }
}
body.home .f-faq-li__itm {
  border-bottom: 1px solid #BEBEBE;
  counter-increment: num;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

body.home .f-faq-li__q-wrap {
  position: relative;
  padding-left: 9.5rem;
}

@media screen and (max-width: 744px) {
  body.home .f-faq-li__q-wrap {
    padding-left: 7.2rem;
  }
}
body.home .f-faq-li__q-wrap::before {
  content: "Q." counter(num);
  font-family: var(--font-02);
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-key);
  position: absolute;
  bottom: 50%;
  left: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media screen and (max-width: 744px) {
  body.home .f-faq-li__q-wrap::before {
    font-size: 2.4rem;
  }
}
body.home .f-faq-li__q-ttl {
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  body.home .f-faq-li__q-ttl {
    font-size: 1.5rem;
  }
}
body.home .f-faq-li__a {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

body.home .f-faq-li__a-wrap {
  position: relative;
  padding-left: 9.5rem;
  margin-top: 3rem;
}

@media screen and (max-width: 744px) {
  body.home .f-faq-li__a-wrap {
    padding-left: 7.2rem;
    padding-right: 4.8rem;
  }
}
body.home .f-faq-li__a-wrap::before {
  content: "A." counter(num);
  font-family: var(--font-02);
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-key);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 744px) {
  body.home .f-faq-li__a-wrap::before {
    font-size: 2.4rem;
  }
}
body.home .f-faq-li__a-txt {
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  body.home .f-faq-li__a-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  body.home .f-faq-li__a-txt br {
    display: none;
  }
}
body.home .f-access {
  background-color: var(--color-main);
  padding-top: 10rem;
  padding-left: 10rem;
  padding-right: 10rem;
  padding-bottom: 17rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-access {
    padding-top: 8rem;
    padding-left: 6rem;
    padding-right: 6rem;
    padding-bottom: 42.8rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-access {
    padding-top: 4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 22.4rem;
  }
}
body.home .f-access__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0 6.7rem;
  position: relative;
}

@media screen and (max-width: 1100px) {
  body.home .f-access__wrap {
    flex-direction: column;
    align-items: center;
    gap: 5rem 0;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-access__wrap {
    gap: 3rem 0;
  }
}
body.home .f-access__wrap .f-ttl {
  color: #FFF;
}

body.home .f-access-txt-ar {
  width: 100%;
  max-width: 40rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-access-txt-ar {
    max-width: initial;
  }
}
body.home .f-access-info {
  margin-top: 5.2rem;
}

body.home .f-access-info__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 744px) {
  body.home .f-access-info__ttl {
    font-size: 2rem;
  }
}
body.home .f-access-info__addr {
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #FFF;
}

@media screen and (max-width: 744px) {
  body.home .f-access-info__addr {
    font-size: 1.6rem;
  }
}
body.home .f-access-info__addr small {
  font-size: 1.5rem;
}

@media screen and (max-width: 744px) {
  body.home .f-access-info__addr small {
    font-size: 1.4rem;
  }
}
body.home .f-access-info-contact-li {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}

body.home .f-access-info-contact-li__itm {
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 0 0.7rem;
}

body.home .f-access-info-contact-li__ttl {
  width: 5rem;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #FFF;
  border-radius: 0.2rem;
}

@media screen and (max-width: 744px) {
  body.home .f-access-info-contact-li__ttl {
    font-size: 1.4rem;
    padding: 0.4rem;
  }
}
body.home .f-access-info-contact-li__txt {
  color: inherit;
  font-size: 1.8rem;
}

@media screen and (max-width: 744px) {
  body.home .f-access-info-contact-li__txt {
    font-size: 1.5rem;
  }
}
body.home .f-access-info-contact-li__txt a {
  color: inherit;
  text-decoration: none;
}

body.home .f-access-info__note {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #FFF;
}

@media screen and (max-width: 744px) {
  body.home .f-access-info__note {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
body.home .f-access-map {
  width: 64rem;
  padding-top: 8rem;
}

@media screen and (max-width: 1100px) {
  body.home .f-access-map {
    width: 100%;
    padding-top: 0;
  }
}
body.home .f-access-map__wrap {
  width: 100%;
  aspect-ratio: 640/350;
  position: relative;
}

body.home .f-access-map__wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

body.home .f-access-traffic {
  margin-top: 4rem;
}

@media screen and (max-width: 744px) {
  body.home .f-access-traffic {
    margin-top: 2rem;
  }
}
body.home .f-access-traffic__ttl {
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFF;
  position: relative;
  padding-left: 2.3rem;
}

@media screen and (max-width: 744px) {
  body.home .f-access-traffic__ttl {
    font-size: 1.6rem;
    padding-left: 2.3rem;
  }
}
body.home .f-access-traffic__ttl::before {
  display: block;
  content: "";
  width: 1.6rem;
  height: 2rem;
  background: url("/wp/wp-content/themes/ototax/assets/img/icon-traffic.svg") no-repeat center;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

body.home .f-access-traffic-li {
  margin-top: 0.8rem;
}

body.home .f-access-traffic-li__itm {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #FFF;
  margin-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 744px) {
  body.home .f-access-traffic-li__itm {
    font-size: 1.5rem;
  }
}
body.home .f-access-traffic-li__itm::before {
  content: "・";
  color: #FFF;
}

body.home .f-access-bg {
  width: 100%;
  max-width: 47.7rem;
  aspect-ratio: 477/293;
  position: absolute;
  bottom: 0;
  left: min(-10rem, -6.25vw);
  bottom: min(-13rem, -8.125vw);
}

@media screen and (max-width: 1100px) {
  body.home .f-access-bg {
    left: -6rem;
    bottom: -34rem;
  }
}
@media screen and (max-width: 744px) {
  body.home .f-access-bg {
    max-width: 23.9rem;
    left: 0;
    bottom: -17rem;
  }
}
.news {
  margin-top: 8rem;
}

@media screen and (max-width: 744px) {
  .news {
    margin-top: 6rem;
  }
}
.news__wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 0 16.8rem;
}

@media screen and (max-width: 1100px) {
  .news__wrap {
    flex-direction: column-reverse;
    gap: 7rem 0;
  }
}
.news-side {
  width: 27rem;
  border-top: 1px solid #BEBEBE;
}

@media screen and (max-width: 1100px) {
  .news-side {
    width: 100%;
  }
}
.news-side-li__itm {
  color: var(--color-sub);
  font-size: 1.8rem;
  line-height: 1.6;
  border-bottom: 1px solid #BEBEBE;
  padding: 2rem 0;
  position: relative;
  transition: 0.3s ease all;
}

.news-side-li__itm::after {
  display: block;
  content: "";
  width: 0.9rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--color-key);
  position: absolute;
  bottom: 50%;
  left: 0;
  transition: 0.3s ease all;
  -webkit-transform: translate(0, 60%) scale(0);
  transform: translate(0, 60%) scale(0);
}

@media (hover: hover) and (pointer: fine) {
  .news-side-li__itm:hover, .news-side-li__itm:focus {
    color: var(--color-key);
    padding-left: 2.9rem;
  }
  .news-side-li__itm:hover::after, .news-side-li__itm:focus::after {
    -webkit-transform: translate(0, 60%) scale(1);
    transform: translate(0, 60%) scale(1);
  }
}
.news-side-li__itm.is-active {
  color: var(--color-key);
  padding-left: 2.9rem;
}

.news-side-li__itm.is-active::after {
  -webkit-transform: translate(0, 60%) scale(1);
  transform: translate(0, 60%) scale(1);
}

.news-side-li__lnk {
  display: block;
  color: inherit;
}

.news-side-li__lnk::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  background-color: transparent;
}

.news-archive {
  flex: 1;
}

.news-li {
  border-top: 1px solid #BEBEBE;
}

.news-li__itm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #BEBEBE;
  display: flex;
  gap: 0 5rem;
  position: relative;
  color: var(--color-sub);
  z-index: 0;
}

@media screen and (max-width: 744px) {
  .news-li__itm {
    flex-direction: column;
    gap: 2rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-li__itm:hover .news-li__ttl, .news-li__itm:focus .news-li__ttl {
    color: var(--color-key);
  }
  .news-li__itm:hover .news-li__tmb, .news-li__itm:focus .news-li__tmb {
    opacity: 0.8;
  }
}
.news-li__txt-ar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.8rem 0;
}

.news-li__tmb {
  width: 27.2rem;
  aspect-ratio: 272/153;
  overflow: hidden;
  transition: 0.3s ease opacity;
}

@media screen and (max-width: 744px) {
  .news-li__tmb {
    align-self: center;
    width: 100%;
    max-width: 43.3rem;
  }
  .news-li__tmb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.news-li__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.news-li__date {
  font-size: 1.8rem;
  color: var(--color-sub);
}

.news-li-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.news-li-tags__itm {
  font-size: 1.4rem;
  padding: 0.5rem 1.3rem;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-sub);
  background-color: #FFF;
  color: var(--color-sub);
}

.news-li__ttl {
  flex: 1;
  font-size: 2rem;
  line-height: 1.8;
  color: var(--color-sub);
  transition: 0.3s ease color;
}

@media screen and (max-width: 744px) {
  .news-li__ttl {
    font-size: 1.8rem;
  }
}
.news-li__lnk {
  color: inherit;
}

.news-li__lnk::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  background-color: transparent;
  z-index: 1;
}

.news-single__wrap {
  width: 100%;
  max-width: 100rem;
  margin: 9rem auto 0;
}

.news-single__hdr {
  padding-bottom: 2.2rem;
  border-bottom: 3px solid var(--color-key);
  margin-bottom: 6rem;
}

@media screen and (max-width: 744px) {
  .news-single__hdr {
    margin-bottom: 4rem;
  }
}
.news-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.news-single__date {
  font-size: 1.8rem;
}

.news-single-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.news-single-tags__itm {
  font-size: 1.4rem;
  padding: 0.2rem 1rem;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-sub);
  background-color: #FFF;
  color: var(--color-sub);
}

.news-single__ttl {
  margin-top: 3rem;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 744px) {
  .news-single__ttl {
    font-size: 2rem;
  }
}
.news-single__tumb {
  width: 100%;
}

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

.news-single__body {
  margin-top: 4rem;
}

.news-single__ftr {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #BEBEBE;
}

.news-single__ftr .more-btn {
  padding: 1.5rem 2rem;
}

.privacy__wrap {
  width: 100%;
  max-width: 100rem;
  margin: 7rem auto 0;
  padding-top: 8rem;
  padding-bottom: 6rem;
  border-top: 3px solid var(--color-key);
  border-bottom: 1px solid #BEBEBE;
}

@media screen and (max-width: 744px) {
  .privacy__wrap {
    margin: 5rem auto 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.privacy__text {
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  .privacy__text .pc {
    display: none;
  }
}
.privacy-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}

@media screen and (max-width: 744px) {
  .privacy-list {
    margin-top: 3rem;
    gap: 2rem 0;
  }
}
.privacy-list__item {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

.privacy-list__item::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-key);
}

.privacy-address {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 744px) {
  .privacy-address {
    margin-top: 3rem;
  }
}
.privacy-address a {
  color: #000;
}

@media (hover: hover) and (pointer: fine) {
  .privacy-address a:hover, .privacy-address a:focus {
    text-decoration: underline;
  }
}
/* Gutenberg本文スコープ */
.is-wp-blocks {
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 1100px) {
  .is-wp-blocks {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 744px) {
  .is-wp-blocks {
    font-size: 1.5rem;
  }
}
/* 余白 */
.is-wp-blocks > * + * {
  margin-top: 2em;
}

/* 見出し */
.is-wp-blocks h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 2em;
}

@media screen and (max-width: 1100px) {
  .is-wp-blocks h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 744px) {
  .is-wp-blocks h2 {
    font-size: 2rem;
  }
}
.is-wp-blocks h3 {
  margin-top: 1.6em;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 1100px) {
  .is-wp-blocks h3 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 744px) {
  .is-wp-blocks h3 {
    font-size: 1.6rem;
  }
}
/* 段落 */
.is-wp-blocks p {
  line-height: 2;
}

.is-wp-blocks * + p {
  margin-top: 1.6em;
}

/* リスト */
.is-wp-blocks ul,
.is-wp-blocks ol {
  margin: 0;
  padding-left: 1.5em;
}

.is-wp-blocks li {
  margin: 0.4em 0;
}

/* 引用 */
.is-wp-blocks blockquote {
  margin: 0;
  padding: 2rem;
  background-color: rgba(var(--color-key-rgb), 0.1);
  border-radius: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.is-wp-blocks .is-column {
  margin: 0;
  padding: 2rem;
  background-color: rgba(var(--color-key-rgb), 0.1);
  border-radius: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* 画像 */
.is-wp-blocks img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テーブル（必要なら） */
.is-wp-blocks table {
  width: 100%;
  border-collapse: collapse;
}

.is-wp-blocks th,
.is-wp-blocks td {
  padding: 0.6em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.wp-block-image {
  max-height: 60rem;
}
/*# sourceMappingURL=style.min.css.map */
