@charset "UTF-8";
/* ===================================
    リセットCSS
=====================================*/
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* ===================================
    ページ適用CSS
=====================================*/
:root {
  --white: #fff;
  --black: #000;
  --gray: #666;
  --darkblue: #464a66;
}

body {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
}

.l-header {
  padding: 15px;
  position: absolute;
  top: 0;
  width: 100%;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 15px 30px;
  }
}
.l-header__2column {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-header__2column {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-header__2column-left {
  align-self: center;
}
.l-header__2column-right {
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .l-header__2column-right {
    align-self: center;
  }
}
.l-header__title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .l-header__title {
    font-size: 35px;
  }
}
.l-header__nav-item {
  display: block;
  padding: 3px 15px;
  border: 1px solid var(--white);
}

.l-section {
  padding: 30px 0;
}
.l-section--common {
  padding: 50px 0 75px;
}
@media screen and (min-width: 768px) {
  .l-section--common {
    padding: 150px 0 200px;
  }
}
.l-section__container {
  padding: 0 15px;
  margin: 0 auto;
}
.l-section__container--small {
  max-width: 450px;
}
.l-section__container--medium {
  max-width: 750px;
}
.l-section__container--large {
  max-width: 1000px;
}

.l-footer {
  color: var(--white);
  padding: 30px 0 30px;
  background: var(--darkblue);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 30px 0 10px;
  }
}
.l-footer__container {
  padding: 0 15px;
}
.l-footer__2column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__2column {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.l-footer__2column-left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__2column-left {
    text-align: left;
  }
}
.l-footer__name {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .l-footer__name {
    font-size: 22px;
  }
}
.l-footer__list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.c-kv__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .c-kv__img {
    height: 500px;
  }
}
@media screen and (min-width: 768px) {
  .c-kv__img--top {
    height: 700px;
  }
}

.c-title {
  max-width: 450px;
  margin: 0 auto;
  border-bottom: 4px solid var(--darkblue);
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .c-title {
    padding: 0 20px;
    font-size: 21px;
    margin-bottom: 100px;
  }
}

.p-top-news {
  padding-top: 50px;
}
.p-top-news__title {
  font-size: 18px;
  border-bottom: 1px solid var(--gray);
}
.p-top-news__list {
  border-bottom: 1px solid var(--gray);
  padding: 40px 0 50px;
}
.p-top-news__list-item {
  max-width: 850px;
  margin: 0 auto;
  border-bottom: 1px dashed var(--gray);
}
.p-top-news__list-item + .p-top-news__list-item {
  margin-top: 10px;
}
.p-top-news__list-time {
  margin-right: 10px;
}
.p-top-news__list-link {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-news__list-link {
    flex-direction: row;
  }
}

.p-top-jump {
  padding: 50px 0 100px;
}
@media screen and (min-width: 768px) {
  .p-top-jump {
    padding: 75px 0 200px;
  }
}
.p-top-jump__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.p-top-jump__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid var(--gray);
  padding: 5px;
}
.p-top-jump__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gray);
  width: 15px;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.p-ordinance-pdf__container {
  display: flex;
  justify-content: center;
}
.p-ordinance-pdf__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-privacy-policy-info__content + .p-privacy-policy-info__content {
  margin-top: 50px;
}
.p-privacy-policy-info__title {
  color: var(--darkblue);
  font-weight: 700;
  border-bottom: 4px solid var(--darkblue);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy-info__title {
    font-size: 18px;
  }
}
.p-privacy-policy-info__text {
  padding-left: 1em;
}

.p-company-info__container {
  display: flex;
  justify-content: center;
}
.p-company-info table {
  width: 100%;
}
.p-company-info table,
.p-company-info table th,
.p-company-info table td {
  border: 1px solid var(--black);
  border-collapse: collapse;
}
.p-company-info table th,
.p-company-info table td {
  padding: 10px;
}/*# sourceMappingURL=style.css.map */