@charset "UTF-8";
/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&subset=japanese");
:root {
  --color-primary: #111111;
  --color-green: #119849;
  --color-accent: #ffcc00;
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
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, 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, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-primary);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: var(--color-primary);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}
.mt-30 {
  margin-top: 30px;
}

.ml-20 {
  margin-left: 20px;
}

.t-center {
  text-align: center;
}

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

.flex {
  display: flex;
}

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

.link-tel {
  color: inherit;
  text-decoration: none;
}

@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}
.hover {
  transition: 0.3s;
}

@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}
.title-vertical {
  display: flex;
  align-items: center;
  width: 105px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-green);
  border: 2px solid var(--color-green);
  padding: 18px 0;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .title-vertical {
    font-size: 20px;
    width: auto;
    padding: 18px 12px;
  }
}
@media screen and (max-width: 750px) {
  .title-vertical.-sp-horizontal {
    writing-mode: horizontal-tb;
    width: 220px;
    padding: 8px 0;
    display: block;
    text-align: center;
  }
}

.btn-primary {
  font-size: 16px;
  font-weight: bold;
  color: inherit;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  text-decoration: none;
  padding: 6px 10px;
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: #f2f2f2;
}
@media screen and (max-width: 750px) {
  .btn-primary {
    font-size: 14px;
  }
}

.btn-angle {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  padding-right: 30px;
  position: relative;
}
.btn-angle:after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: 0;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  background: url(../img/angle_btn_black.svg) no-repeat center center/cover;
  transition: transform 0.3s;
}
.btn-angle:hover:after,
a:hover .btn-angle:after {
  transform: translate(6px, -50%);
}
@media screen and (max-width: 750px) {
  .btn-angle {
    font-size: 14px;
    padding-right: 22px;
  }
  .btn-angle:after {
    width: 18px;
    height: 18px;
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 108px 0 45px;
}
@media screen and (max-width: 750px) {
  .header__inner {
    display: block;
    position: relative;
    padding: 12px 20px;
  }
}

.header__description {
  display: none;
}
@media screen and (max-width: 750px) {
  .header__description {
    display: block;
    font-size: 9px;
    color: #888888;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

.logo {
  width: 132px;
  padding-top: 78px;
}
@media screen and (max-width: 750px) {
  .logo {
    padding: 5px 0 0 12px;
  }
}

.header__right {
  padding-top: 30px;
  display: flex;
}

.header__sns {
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .header__sns {
    display: none;
  }
}
.header__sns a {
  background-color: #fff;
  padding: 4px;
  border-radius: 3px;
  display: block;
  transition: background-color 0.3s;
}
.header__sns a:hover {
  background-color: #f2f2f2;
}
.header__sns img {
  width: 18px;
  vertical-align: top;
}

.header__navi {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .header__navi {
    display: none;
  }
}
.header__navi li {
  margin-left: 10px;
}
.header__navi li a {
  border-radius: 3px;
  display: block;
  writing-mode: vertical-rl;
  color: inherit;
  background-color: #fff;
  text-decoration: none;
  padding: 20px 0 10px;
  background: #fff url(../img/angle_navi.svg) no-repeat center 8px/7px auto;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
  min-width: 1.5em;
}
.header__navi li a:hover {
  background-color: #f2f2f2;
}

.menu {
  display: none;
}
@media screen and (max-width: 750px) {
  .menu {
    display: block;
    width: 48px;
    height: 48px;
    position: fixed;
    right: 16px;
    top: 5px;
    padding: 13px 0 0 10px;
    background-color: #fff;
    border-radius: 50%;
  }
}

.menu__inner {
  width: 28px;
  line-height: 1;
}

.spMenu {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  padding-left: 66px;
}
@media screen and (min-width: 751px) {
  .spMenu {
    display: none !important;
  }
}

.spMenu__close {
  position: absolute;
  width: 18px;
  top: 20px;
  right: 30px;
  z-index: 2;
}

.spMenu__inner {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px 40px;
  height: 100%;
  width: 100%;
}

.spNavi a {
  display: inline-block;
  border-bottom: 1px solid var(--color-green);
  font-size: 15px;
  font-weight: bold;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.05em;
}

.spMenu__info + .spMenu__info {
  margin-top: 20px;
}
.spMenu__info dt {
  width: 110px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  border-radius: 2px;
  margin-bottom: 6px;
  background-color: #111111;
}
.spMenu__info dd {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.spMenu__access {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  right: 30px;
  width: 65px;
}

.main {
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .main {
    padding-top: 95px;
    padding-bottom: 80px;
  }
}

.btn-access {
  width: 65px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  display: none;
}

.footer {
  padding-top: 112px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 750px) {
  .footer {
    padding: 40px 30px 100px;
  }
}

.footer__inner {
  margin-left: calc((100vw - 1360px) / 2 + 105px);
  display: flex;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .footer__inner {
    margin-left: calc(100vw - 1225px);
  }
}
@media screen and (max-width: 750px) {
  .footer__inner {
    margin: 0;
    flex-direction: column;
  }
}

.footer__logo {
  position: absolute;
  left: 0px;
  top: -72px;
  width: 350px;
}
@media screen and (max-width: 750px) {
  .footer__logo {
    position: static;
    width: 288px;
  }
}

.footer__left {
  width: 446px;
}
@media screen and (max-width: 750px) {
  .footer__left {
    width: 100%;
  }
}

.footer__name {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .footer__name {
    margin-top: 40px;
  }
}

.footer__time {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .footer__time {
    margin-top: 30px;
  }
}

.footer__map {
  width: 265px;
}
@media screen and (max-width: 750px) {
  .footer__map {
    margin-top: 40px;
  }
}
.footer__map iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.footer__right {
  display: flex;
  gap: 96px;
  margin-left: 144px;
}
@media screen and (max-width: 750px) {
  .footer__right {
    margin: 40px 0 0;
    gap: 0;
    justify-content: space-between;
  }
}

.footer__navi {
  letter-spacing: 0.05em;
  font-weight: bold;
}
.footer__navi a {
  text-decoration: none;
  color: inherit;
}
.footer__navi a:hover {
  text-decoration: underline;
}
.footer__navi > li {
  font-size: 16px;
}
.footer__navi > li + li {
  margin-top: 6px;
}
.footer__navi > li + li.-rosen {
  margin-top: 35px;
}
.footer__navi .sub {
  margin-top: 6px;
}
.footer__navi .sub li {
  font-size: 14px;
}
.footer__navi .sub li:before {
  content: "・";
}

.copyright {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .copyright {
    font-size: 12px;
    margin-top: 40px;
    letter-spacing: 0.012em;
    margin: 40px -1em 0;
  }
}

.homeMv {
  width: calc(100% - 400px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .homeMv {
    width: 100%;
    padding: 0 25px;
  }
}

.homeMv__movie video {
  width: 100%;
  height: 815px;
  border-radius: 0 0 30px 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .homeMv__movie video {
    aspect-ratio: 320/526;
    height: auto;
    border-radius: 20px;
  }
}

.homeMv__title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .homeMv__title {
    font-size: 12px;
    margin-top: 12px;
    letter-spacing: 0.01em;
  }
}

.homeMv__copy {
  writing-mode: vertical-rl;
  color: var(--color-green);
  font-size: 60px;
  font-weight: bold;
  position: absolute;
  left: -132px;
  bottom: 120px;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255);
}
@media screen and (max-width: 750px) {
  .homeMv__copy {
    font-size: 32px;
    left: 48px;
    top: 24px;
    right: auto;
  }
}

.homeNews {
  margin-top: 140px;
}
@media screen and (max-width: 750px) {
  .homeNews {
    margin-top: 40px;
  }
}

.homeNews__inner {
  padding-left: calc((100vw - 1360px) / 2 + 105px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  .homeNews__inner {
    padding-left: calc(100vw - 1225px);
  }
}
@media screen and (max-width: 750px) {
  .homeNews__inner {
    padding-left: 25px;
  }
}

.homeNewsBlock {
  flex: 1;
  margin-left: 75px;
  padding: 88px 0 30px 95px;
  background-color: #f3f1ed;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 750px) {
  .homeNewsBlock {
    margin-left: 30px;
    padding: 24px 25px 25px;
    border-radius: 25px 0 0 25px;
  }
}

.homeNewsBlock__inner {
  width: 100%;
  max-width: 820px;
}

.homeNewsList {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 750px) {
  .homeNewsList {
    flex-direction: column;
    gap: 20px;
  }
}

.homeNewsList__item {
  width: calc((100% - 8px) / 3);
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .homeNewsList__item {
    width: 100%;
    padding-bottom: 0;
  }
}

.homeNewsList__thumb {
  position: relative;
}
.homeNewsList__thumb img {
  aspect-ratio: 270/218;
  -o-object-fit: cover;
     object-fit: cover;
}

.homeNewsList__cat {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--color-green);
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 0 0 0 5px;
}

.homeNewsList__title {
  padding: 18px 10px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.homeNewsList__time {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 0px;
  left: 10px;
}
@media screen and (max-width: 750px) {
  .homeNewsList__time {
    position: static;
    margin: 10px 10px 0;
    font-size: 12px;
  }
}

.homeNews__btn {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.homeAbout {
  position: relative;
  margin-top: 174px;
}
@media screen and (max-width: 750px) {
  .homeAbout {
    margin-top: 90px;
    display: flex;
    flex-direction: column-reverse;
  }
}

.homeAbout__inner {
  max-width: 1144px;
  margin: 0 auto;
  padding-top: 180px;
  padding-left: 608px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .homeAbout__inner {
    padding: 40px 25px 0;
  }
}

.homeAbout__title {
  position: absolute;
  top: 0px;
  right: 0px;
}
@media screen and (max-width: 750px) {
  .homeAbout__title {
    top: -110px;
    right: 10px;
  }
}

.homeAbout__read {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-left: -4.4em;
}
@media screen and (max-width: 750px) {
  .homeAbout__read {
    padding: 0 15px;
    font-size: 32px;
    line-height: 1.5;
    margin: 0;
  }
}

.homeAbout__thumb {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  width: calc(100vw - ((100vw - 1144px) / 2 + 610px));
}
.homeAbout__thumb img {
  border-radius: 0 40px 40px 0;
}
@media screen and (max-width: 750px) {
  .homeAbout__thumb {
    position: static;
    width: calc(100% - 25px);
  }
  .homeAbout__thumb img {
    border-radius: 0 20px 20px 0;
  }
}

.homeAbout__text {
  margin-top: 36px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .homeAbout__text {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 15px;
  }
}

.homeLinks {
  padding-top: 180px;
}
@media screen and (max-width: 750px) {
  .homeLinks {
    padding-top: 120px;
  }
}

.homeLinks__inner {
  max-width: 1226px;
  margin: 0 auto;
}

.homeLinksList {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .homeLinksList {
    flex-direction: column;
    gap: 75px;
  }
}

.homeLinksList__item {
  width: 368px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .homeLinksList__item {
    width: 100%;
    padding: 0 40px;
  }
}

.homeLinksList__title {
  position: absolute;
  z-index: 1;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 227px;
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-green);
  background-color: #fff;
  color: var(--color-green);
}
.homeLinksList__title .large {
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .homeLinksList__title .large {
    font-size: 20px;
  }
}
.homeLinksList__title .small {
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .homeLinksList__title .small {
    font-size: 14px;
  }
}

.homeLinksList__thumb img {
  border-radius: 40px;
}
@media screen and (max-width: 750px) {
  .homeLinksList__thumb {
    margin: 0 -40px;
  }
  .homeLinksList__thumb img {
    border-radius: 0px;
  }
}

.homeLinksList__info {
  padding: 30px 20px 30px;
}
@media screen and (max-width: 750px) {
  .homeLinksList__info {
    padding: 40px 0 0;
  }
}

.homeLinksList__text {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .homeLinksList__text {
    font-size: 14px;
  }
}

.homeLinksList__btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
@media screen and (max-width: 750px) {
  .homeLinksList__btn {
    position: static;
    text-align: right;
    margin-top: 0.5em;
  }
}

.homeDownload {
  padding-top: 96px;
}

@media screen and (max-width: 750px) {
  .homeDownload__title {
    margin: 0 auto;
  }
}

.homeDownload__inner {
  padding-left: calc((100vw - 1360px) / 2 + 105px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  .homeDownload__inner {
    padding-left: calc(100vw - 1225px);
  }
}
@media screen and (max-width: 750px) {
  .homeDownload__inner {
    flex-direction: column;
    padding: 0 15px;
  }
}

.homeDownload__right {
  width: calc(100% - 233px);
  overflow: auto;
  padding-bottom: 66px;
  position: relative;
}
.homeDownload__right:after {
  content: "";
  width: calc(100% - 66px);
  height: 20px;
  background: url(../img/home/arrow_scroll.svg) no-repeat center right/cover;
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: none;
}
@media screen and (max-width: 1620px) {
  .homeDownload__right:after {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .homeDownload__right {
    margin-top: 30px;
    padding-bottom: 0;
    width: 100%;
  }
  .homeDownload__right:after {
    display: none;
  }
}

.homeDownloadList {
  width: 1415px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  .homeDownloadList {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
}

.homeDownloadList__item {
  display: block;
  text-decoration: none;
  color: inherit;
  width: calc((100% - 30px) / 4);
  background-color: #f3f1ed;
  border-radius: 20px;
  padding: 15px 15px 20px;
}
@media screen and (max-width: 750px) {
  .homeDownloadList__item {
    width: calc(50% - 4px);
    border-radius: 12px;
    padding: 8px 8px 15px;
  }
}

.homeDownloadList__info {
  padding-top: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-green);
}
@media screen and (max-width: 750px) {
  .homeDownloadList__info {
    padding: 10px 0 15px;
  }
}

.homeDownloadList__title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .homeDownloadList__title {
    font-size: 14px;
  }
}

.homeDownloadList__text {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .homeDownloadList__text {
    font-size: 10px;
    margin-top: 10px;
  }
}

.homeDownloadList__btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .homeDownloadList__btn {
    margin-top: 10px;
  }
  .homeDownloadList__btn .btn-angle {
    font-size: 10px;
    padding-right: 16px;
  }
  .homeDownloadList__btn .btn-angle:after {
    width: 11px;
    height: 11px;
  }
}

.homeAccess {
  padding-top: 220px;
}
@media screen and (max-width: 750px) {
  .homeAccess {
    padding-top: 90px;
  }
}

@media screen and (max-width: 750px) {
  .homeAccess__title {
    margin: 0 auto;
  }
}

.homeAccess__inner {
  padding-left: calc((100vw - 1360px) / 2 + 105px);
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1360px) {
  .homeAccess__inner {
    padding-left: calc(100vw - 1225px);
  }
}
@media screen and (max-width: 750px) {
  .homeAccess__inner {
    padding: 0 15px;
    display: block;
  }
}

.homeAccess__right {
  width: 1014px;
  margin-left: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .homeAccess__right {
    width: 100%;
    margin-left: 0;
    display: block;
  }
}

.homeAddress {
  width: 514px;
}
@media screen and (max-width: 750px) {
  .homeAddress {
    width: 100%;
    margin-top: 30px;
  }
}

.homeAddress__thumb {
  margin-bottom: 30px;
}

.homeAddress__list {
  display: flex;
  align-items: flex-start;
}
.homeAddress__list + .homeAddress__list {
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  .homeAddress__list + .homeAddress__list {
    margin-top: 12px;
  }
}
.homeAddress__list dt {
  width: 110px;
  border-radius: 5px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 1px 0;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-right: 30px;
}
@media screen and (max-width: 750px) {
  .homeAddress__list dt {
    margin-right: 24px;
  }
}
.homeAddress__list dd {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  padding-top: 4px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .homeAddress__list dd {
    padding-top: 0;
    width: calc(100% - 24px);
  }
}

.homeMap {
  width: 460px;
}
@media screen and (max-width: 750px) {
  .homeMap {
    width: 100%;
    margin-top: 24px;
  }
}

.homeMap__frame {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .homeMap__frame {
    margin-bottom: 24px;
  }
}
.homeMap__frame iframe {
  width: 100%;
  height: 335px;
}
@media screen and (max-width: 750px) {
  .homeMap__frame iframe {
    height: 255px;
  }
}

.homeMap__list {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: bold;
}
.homeMap__list + .homeMap__list {
  margin-top: 12px;
}
.homeMap__list dd {
  margin-left: 1em;
}

.pageHero {
  max-width: calc(100% - 400px);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .pageHero {
    max-width: initial;
    padding: 0 25px;
  }
}

.pageHero__thumb img {
  width: 100%;
  height: 548px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 32px 32px;
}
@media screen and (max-width: 750px) {
  .pageHero__thumb img {
    aspect-ratio: 320/280;
    height: auto;
    border-radius: 20px;
  }
}

.breadcrumb {
  text-align: right;
  margin-top: 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .breadcrumb {
    margin-top: 15px;
  }
}

.companyIntro {
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .companyIntro {
    padding-top: 45px;
  }
}

.companyIntro__inner {
  padding-left: calc((100vw - 1360px) / 2 + 105px);
}
@media screen and (max-width: 1360px) {
  .companyIntro__inner {
    padding-left: calc(100vw - 1225px);
  }
}
@media screen and (max-width: 750px) {
  .companyIntro__inner {
    padding: 0 25px;
  }
}

.companyIntro__title {
  font-size: 60px;
  letter-spacing: 0.17em;
  font-feature-settings: "palt";
  color: var(--color-green);
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .companyIntro__title {
    font-size: 30px;
    line-height: 1.4;
  }
}
.companyIntro__title:before {
  content: "";
  width: 100%;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 1px;
  background-color: var(--color-green);
}
@media screen and (max-width: 750px) {
  .companyIntro__title:before {
    right: calc(100% + 10px);
  }
}

.companyIntro__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .companyIntro__text {
    margin-top: 30px;
    font-size: 14px;
  }
}

.companyInfo {
  padding-top: 120px;
}
@media screen and (max-width: 750px) {
  .companyInfo {
    padding-top: 80px;
  }
}

.companyInfo__inner {
  padding-left: calc((100vw - 1360px) / 2 + 105px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  .companyInfo__inner {
    padding-left: calc(100vw - 1225px);
  }
}
@media screen and (max-width: 750px) {
  .companyInfo__inner {
    padding: 0 25px;
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .companyInfo__title {
    margin: 0 auto;
  }
}

.companyInfo__right {
  width: calc(100% - 240px);
}
@media screen and (max-width: 750px) {
  .companyInfo__right {
    width: 100%;
    margin-top: 40px;
  }
}

.companyInfo__table {
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .companyInfo__table {
    font-size: 14px;
  }
}
.companyInfo__table th {
  padding: 7px 0;
  width: 128px;
}
@media screen and (max-width: 750px) {
  .companyInfo__table th {
    width: 84px;
    padding: 4px 0;
  }
}
.companyInfo__table td {
  padding: 7px 0;
}
@media screen and (max-width: 750px) {
  .companyInfo__table td {
    padding: 4px 0;
  }
}

.companyInfo__bottom {
  margin-top: 50px;
  border-top: 1px solid var(--color-green);
  padding-top: 30px;
}

.companyInfo__text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .companyInfo__text {
    font-size: 14px;
  }
}

.newsIntro {
  padding-top: 60px;
}

.newsIntro__inner {
  max-width: 1136px;
  margin: 0 auto;
  position: relative;
}
.newsIntro__inner:after {
  content: "";
  width: 127px;
  aspect-ratio: 127/121;
  background: url(../img/news/img_intro.svg) no-repeat center center/contain;
  position: absolute;
  top: 0px;
  right: calc(50% - 160px);
}
@media screen and (max-width: 750px) {
  .newsIntro__inner {
    padding: 0 25px 80px;
  }
  .newsIntro__inner:after {
    width: 102px;
    top: auto;
    bottom: 0px;
    right: 25pxpx;
  }
}

.newsIntro__title {
  font-size: 60px;
  letter-spacing: 0.17em;
  font-feature-settings: "palt";
  color: var(--color-green);
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .newsIntro__title {
    font-size: 30px;
    line-height: 1.4;
  }
}
.newsIntro__title:before {
  content: "";
  width: 100%;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 1px;
  background-color: var(--color-green);
}
@media screen and (max-width: 750px) {
  .newsIntro__title:before {
    right: calc(100% + 10px);
  }
}

.newsIntro__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .newsIntro__text {
    font-size: 14px;
    margin-top: 20px;
  }
}

.newsCat {
  position: absolute;
  top: 0px;
  right: 0px;
}

.newsCat__title {
  width: 110px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-align: center;
  font-weight: 500;
  padding: 4px 0;
  background-color: var(--color-primary);
  color: #fff;
}

.newsCat__list li {
  margin-top: 24px;
  font-weight: bold;
}
.newsCat__list li a {
  color: inherit;
  text-decoration: none;
}
.newsCat__list li a:hover {
  text-decoration: underline;
}
.newsLinks {
  margin-top: 30px;
  width: 120%;
}
.newsLinks a {
  display: block;
  text-decoration: none;
  background-color: var(--color-green);
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
}
@media screen and (max-width: 750px){
  .newsLinks {
    width: 100%;
  }
}

.newsArchives {
  margin-top: 160px;
  padding-top: 85px;
  border-top: 1px solid #111;
}
@media screen and (max-width: 750px) {
  .newsArchives {
    margin-top: 36px;
    padding: 0 15px;
    border-style: none;
  }
}

.newsArchives__inner {
  max-width: 1136px;
  margin: 0 auto;
}

.newsArchivesList {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 20px;
}
@media screen and (max-width: 750px) {
  .newsArchivesList {
    gap: 40px 10px;
  }
}

.newsArchivesList__item {
  width: calc((100% - 60px) / 4);
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .newsArchivesList__item {
    width: calc(50% - 5px);
    padding-bottom: 0;
  }
}

.newsArchivesList__thumb {
  position: relative;
}
.newsArchivesList__thumb img {
  width: 100%;
  aspect-ratio: 270/218;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsArchivesList__tag {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--color-green);
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 0 0 0 5px;
}

.newsArchivesList__title {
  padding: 18px 10px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .newsArchivesList__title {
    padding: 12px 10px 0;
    font-size: 12px;
  }
}

.newsArchivesList__time {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 0px;
  left: 10px;
}
@media screen and (max-width: 750px) {
  .newsArchivesList__time {
    position: static;
    margin: 10px 10px 0;
    font-size: 12px;
  }
}

.newsArchivesCategory {
  margin: 70px 30px 0;
}
.newsArchivesCategory .newsCat {
  position: static;
}

.newsSingle {
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .newsSingle {
    padding: 40px 25px 0;
  }
}

.newsSingle__inner {
  max-width: 966px;
  margin: 0 auto;
  position: relative;
}

.newsSingle__header {
  position: relative;
}
.newsSingle__header:before {
  content: "";
  width: 100%;
  right: calc(100% + 20px);
  top: 14px;
  position: absolute;
  height: 1px;
  background-color: var(--color-green);
}
@media screen and (max-width: 750px) {
  .newsSingle__header:before {
    right: calc(100% + 10px);
  }
}

.newsSingle__cat {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 2px;
  padding: 6px;
}

.newsSingle__time {
  font-weight: bold;
  letter-spacing: 0.05em;
}

.newsSingle__title {
  padding-right: 230px;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.17em;
  font-feature-settings: "palt";
  color: var(--color-green);
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .newsSingle__title {
    font-size: 26px;
    padding-right: 0;
  }
}

.newsContent {
  padding-top: 70px;
}
@media screen and (max-width: 750px) {
  .newsContent {
    padding-top: 40px;
  }
}

@media screen and (max-width: 750px) {
  .newsArchives.-single {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--color-primary);
  }
}

.newsArchives__title {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: bold;
  letter-spacing: 0.17em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .newsArchives__title {
    font-size: 22px;
  }
}

.privacyHero {
  max-width: 966px;
  margin: 0 auto;
  padding-top: 210px;
}
@media screen and (max-width: 750px) {
  .privacyHero {
    padding: 0px 25px 0;
  }
}

.privacy {
  padding-top: 60px;
}

.privacy__inner {
  max-width: 1136px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .privacy__inner {
    padding: 0px 25px 0;
  }
}

.privacy__title {
  font-size: 60px;
  letter-spacing: 0.17em;
  font-feature-settings: "palt";
  color: var(--color-green);
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .privacy__title {
    font-size: 30px;
    line-height: 1.4;
    white-space: nowrap;
  }
}
.privacy__title:before {
  content: "";
  width: 100%;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 1px;
  background-color: var(--color-green);
}
@media screen and (max-width: 750px) {
  .privacy__title:before {
    right: calc(100% + 10px);
  }
}

.privacy__h2 {
  margin-top: 2em;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .privacy__h2 {
    font-size: 18px;
  }
}
.privacy__h2 + .privacy__text {
  margin-top: 0;
}

.privacy__text {
  margin-top: 2em;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
  word-break: break-all;
}
@media screen and (max-width: 750px) {
  .privacy__text {
    font-size: 14px;
  }
}

.privacy__list li {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  .privacy__list li {
    font-size: 14px;
  }
}