@charset "UTF-8";
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

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

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --main-color: #101841;
  --sub-color: #144da0;
  --accent-color: #70acce;
  --font-color: #101841;
  --font-jp: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  --font-en: "Oswald", sans-serif;
  --fz12: calc(1rem * .75);
  --fz14: .875rem;
  --fz16: 1rem;
  --fz18: 1.125rem;
  --fz20: 1.25rem;
  --fz21: 1.3125rem;
  --fz22: 1.375rem;
  --fz24: 1.5rem;
  --fz26: 1.625rem;
  --fz28: 1.75rem;
  --fz30: 1.875rem;
  --fz32: 2rem;
  --fz34: 2.125rem;
  --fz40: 2.5rem;
  --fz46: 2.875rem;
  --fz48: calc(1rem * 3);
  --fz60: 3.75rem;
  --fz64: calc(1rem * 4);
  --fz68: 4.25rem;
  --fz78: 4.875rem;
  --fz80: 5rem;
  --fz120: 7.5rem;
  --hover-opacity: .7;
  --hover-transition: .3s;
}

html,
body {
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--font-color);
  font-family: var(--font-jp);
  line-height: 1;
  word-break: break-word;
}
body.is-active {
  overflow: hidden;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (min-width: 811px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

strong {
  font-weight: bold;
}

.char {
  transform: translateY(200%);
  transition: transfrom 0.5s;
  opacity: 0;
}

.fadeIn {
  opacity: 0;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  padding: 0 1rem;
  transition: var(--hover-transition);
}
@media (min-width: 811px) {
  .l-header {
    height: 96px;
    padding: 0 4rem;
  }
}
.l-header--lowpage, .l-header.is-active, .l-header.is-scroll {
  background: var(--main-color);
}
.l-header__logo {
  margin: 0;
}
.l-header__logo-link {
  display: block;
}
@media (min-width: 811px) {
  .l-header__logo-link {
    transition: var(--hover-transition);
  }
  .l-header__logo-link:hover {
    opacity: var(--hover-opacity);
  }
}
.l-header__logo-image {
  vertical-align: bottom;
  max-height: 50px;
}
@media (min-width: 811px) {
  .l-header__logo-image {
    max-height: 60px;
  }
}

.l-gnavi {
  opacity: 0;
  position: absolute;
  top: 60px;
  left: 0;
  transform: translate(-100%);
  width: 100%;
  height: calc(100svh - 60px);
  padding: 16px;
  overflow-y: auto;
  background: var(--main-color);
  color: #ffffff;
  transition: var(--hover-transition);
}
@media (min-width: 811px) {
  .l-gnavi {
    flex-shrink: 0;
    opacity: 1;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    transition: none;
  }
}
.l-gnavi.is-active {
  opacity: 1;
  transform: none;
}
.l-gnavi__menus {
  display: flex;
  flex-direction: column;
}
@media (min-width: 811px) {
  .l-gnavi__menus {
    flex-direction: row;
    gap: 32px;
  }
}
.l-gnavi__menu {
  border-top: 1px solid #ffffff;
}
@media (min-width: 811px) {
  .l-gnavi__menu {
    border: none;
  }
}
.l-gnavi__menu:last-child {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 811px) {
  .l-gnavi__menu:last-child {
    border: none;
  }
}
.l-gnavi__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 16px;
  font-weight: bold;
  line-height: 2;
}
@media (min-width: 811px) {
  .l-gnavi__link {
    padding: 0;
    transition: var(--hover-transition);
  }
}
.l-gnavi__link::after {
  line-height: 0;
  content: url("../img/common/icon_arrow_right.svg");
}
@media (min-width: 811px) {
  .l-gnavi__link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    width: 100%;
    height: 1px;
    background: #ffffff;
    content: "";
    transition: var(--hover-transition);
  }
}
@media (min-width: 811px) {
  .l-gnavi__link:hover::after {
    transform: scale(1, 1);
  }
}

.l-hamburger {
  margin-left: auto;
  line-height: 1;
  cursor: pointer;
}
.l-hamburger__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  transition: var(--hover-transition);
}
.l-hamburger__item {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: var(--hover-transition);
}
.l-hamburger__item:nth-of-type(1) {
  top: 0;
}
.l-hamburger__item:nth-of-type(2) {
  top: 11px;
}
.l-hamburger__item:nth-of-type(3) {
  bottom: 0;
}
.l-hamburger.is-active .l-hamburger__item:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.l-hamburger.is-active .l-hamburger__item:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger.is-active .l-hamburger__item:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
@media (min-width: 811px) {
  .l-hamburger {
    display: none;
  }
}

.l-main--lowpage {
  margin-top: 96px;
}
@media (min-width: 811px) {
  .l-main--lowpage {
    margin-top: 160px;
  }
}

.l-footer {
  margin-top: 5rem;
  color: #ffffff;
}
@media (min-width: 811px) {
  .l-footer {
    margin-top: 10rem;
  }
}
.l-footer__contents {
  padding: 5rem 0;
  background: var(--main-color);
}
@media (min-width: 811px) {
  .l-footer__contents {
    padding: 10rem 0;
  }
}
.l-footer__logo {
  margin-bottom: 2rem;
}
.l-footer__logo-link {
  display: inline-block;
}
@media (min-width: 811px) {
  .l-footer__logo-link {
    transition: var(--hover-transition);
  }
  .l-footer__logo-link:hover {
    opacity: var(--hover-opacity);
  }
}
.l-footer__logo-image {
  vertical-align: bottom;
  max-height: 50px;
}
@media (min-width: 811px) {
  .l-footer__logo-image {
    max-height: 60px;
  }
}
.l-footer__address {
  line-height: 2;
}
.l-footer__menus {
  display: none;
}
@media (min-width: 811px) {
  .l-footer__menus {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.l-footer__link {
  display: block;
  position: relative;
  font-weight: bold;
  line-height: 2;
}
.l-footer__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  width: 100%;
  height: 1px;
  background: #ffffff;
  content: "";
  transition: var(--hover-transition);
}
@media (min-width: 811px) {
  .l-footer__link:hover::after {
    transform: scale(1, 1);
  }
}
.l-footer__copy {
  padding: 1rem 0;
  background: var(--sub-color);
  font-family: var(--font-en);
  font-size: 0.875rem;
  text-align: center;
}

.c-button01 {
  display: block;
  width: 300px;
  max-width: 100%;
  padding: 1rem;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}
.c-button01--center {
  margin: 0 auto;
}
@media (max-width: 810px) {
  .c-button01 {
    margin: 0 auto;
  }
}
@media (min-width: 811px) {
  .c-button01 {
    padding: 1.5rem 1rem;
    transition: 0.3s;
  }
  .c-button01:hover {
    background: #ffffff;
    color: var(--main-color);
  }
}

.c-button02 {
  display: block;
  width: 300px;
  max-width: 100%;
  padding: 1rem;
  border: 1px solid #fff;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 810px) {
  .c-button02 {
    margin: 0 auto;
  }
}
@media (min-width: 811px) {
  .c-button02 {
    padding: 1.5rem 1rem;
    transition: 0.3s;
  }
  .c-button02:hover {
    background: #ffffff;
    color: var(--main-color);
  }
}

.c-inner01 {
  max-width: calc(1312px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 811px) {
  .c-inner01 {
    max-width: calc(1312px + 8rem);
    padding: 0 4rem;
  }
}

.c-newslist01 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-newslist01:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 811px) {
  .c-newslist01:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.c-newslist01__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--main-color);
}
@media (min-width: 811px) {
  .c-newslist01__item {
    flex-direction: row;
  }
}
.c-newslist01__data {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
}
.c-newslist01__category {
  width: 100px;
  padding: 0.5rem;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}
.c-newslist01__link {
  gap: 2rem;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .c-newslist01__link {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: 0.3s;
  }
  .c-newslist01__link:hover {
    color: var(--accent-color);
  }
}

.c-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 811px) {
  .c-category-list {
    margin-bottom: 4rem;
  }
}
.c-category-list li a {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--sub-color);
  font-size: 0.75rem;
}
.c-category-list li.current-cat {
  background: var(--sub-color);
  color: #ffffff;
  font-weight: bold;
}

.c-text01 {
  line-height: 2;
}
.c-text01:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 811px) {
  .c-text01:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.c-text01--block {
  margin: 2rem 0;
}
@media (min-width: 811px) {
  .c-text01--block {
    margin: 4rem 0;
  }
}
.c-text01 a {
  color: var(--accent-color);
  text-decoration: underline;
}

.c-lead01 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 811px) {
  .c-lead01 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}

.c-grid01__image {
  margin-bottom: 2rem;
}
.c-grid01__img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}
@media (min-width: 811px) {
  .c-grid01 {
    display: grid;
    gap: 0 64px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "c-grid01__title c-grid01__image" "c-grid01__text c-grid01__image";
  }
  .c-grid01--reverse {
    grid-template-areas: "c-grid01__image c-grid01__title" "c-grid01__image c-grid01__text";
  }
  .c-grid01__title {
    grid-area: c-grid01__title;
  }
  .c-grid01__image {
    grid-area: c-grid01__image;
    margin-bottom: 0;
  }
  .c-grid01__img {
    aspect-ratio: 1;
  }
  .c-grid01__text {
    grid-area: c-grid01__text;
  }
}

.c-grid02 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--main-color);
}
@media (min-width: 811px) {
  .c-grid02 {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
}
.c-grid02--last-item {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.c-grid02__image {
  margin-bottom: 2rem;
}
.c-grid02__img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}
@media (min-width: 811px) {
  .c-grid02 {
    display: grid;
    gap: 0 64px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "c-grid01__title c-grid01__image" "c-grid01__text c-grid01__image";
  }
  .c-grid02--reverse {
    grid-template-areas: "c-grid01__image c-grid01__title" "c-grid01__image c-grid01__text";
  }
  .c-grid02__title {
    align-self: end;
    grid-area: c-grid01__title;
  }
  .c-grid02__image {
    grid-area: c-grid01__image;
    margin-bottom: 0;
  }
  .c-grid02__img {
    aspect-ratio: 1;
  }
  .c-grid02__text {
    grid-area: c-grid01__text;
  }
}

.c-grid03 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 811px) {
  .c-grid03 {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 811px) {
  .c-grid03__item {
    width: 50%;
  }
}

.c-contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 5rem;
  padding: 2rem 1rem;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 811px) {
  .c-contact-section {
    margin-top: 10rem;
    padding: 10rem 2rem;
  }
  .c-contact-section:hover .c-contact-section__background {
    transform: scale(1.1);
  }
}
.c-contact-section__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: var(--hover-transition);
  object-fit: cover;
  object-position: center;
}

.c-eyecatch01 {
  width: 100%;
  height: 150px;
}
@media (min-width: 811px) {
  .c-eyecatch01 {
    height: 300px;
  }
}
.c-eyecatch01__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-breadcrumb {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  overflow: auto;
  font-size: 0;
}
.c-breadcrumb > span {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.c-breadcrumb > span:not(:last-child)::after {
  display: block;
  width: 0.5rem;
  height: 1px;
  background: var(--main-color);
  content: "";
}
.c-breadcrumb .current-item {
  font-weight: bold;
}

.c-spacer {
  margin: 5rem 0;
}
@media (min-width: 811px) {
  .c-spacer {
    margin: 10rem 0;
  }
}

.c-map01 {
  margin: 4rem 0;
}
.c-map01 iframe {
  width: 100%;
  height: 400px;
}

.c-input-text {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--main-color);
}
.c-input-text::placeholder {
  color: #999999;
  line-height: 1;
}

.c-input-text-area {
  width: 100%;
  height: 320px;
  padding: 1rem;
  border: 1px solid var(--main-color);
}
.c-input-text-area::placeholder {
  color: #999999;
  line-height: 1;
}

.c-input-submit {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}
@media (min-width: 811px) {
  .c-input-submit {
    width: 300px;
    transition: var(--hover-transition);
  }
  .c-input-submit:hover {
    background: #ffffff;
    color: var(--main-color);
  }
}

.c-section01 {
  margin-bottom: 5rem;
  padding: 5rem 0 0;
}
@media (min-width: 811px) {
  .c-section01 {
    margin-bottom: 10rem;
    padding: 10rem 0 0;
  }
}
.c-section01--color01 {
  margin-bottom: 0;
  padding-bottom: 5rem;
  background: var(--main-color);
  color: #ffffff;
}
@media (min-width: 811px) {
  .c-section01--color01 {
    padding-bottom: 10rem;
  }
}

.c-table01 {
  width: 100%;
  line-height: 2;
}
.c-table01 tr {
  border-bottom: 1px solid var(--main-color);
}
@media (max-width: 810px) {
  .c-table01 tr {
    display: block;
    padding: 1rem;
  }
}
@media (min-width: 811px) {
  .c-table01 tr:nth-child(n+2) th,
  .c-table01 tr:nth-child(n+2) td {
    padding-top: 2rem;
  }
}
@media (max-width: 810px) {
  .c-table01 th,
  .c-table01 td {
    display: block;
  }
}
@media (min-width: 811px) {
  .c-table01 th,
  .c-table01 td {
    padding-bottom: 2rem;
  }
}
.c-table01 th {
  font-weight: bold;
}
@media (max-width: 810px) {
  .c-table01 th {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 811px) {
  .c-table01 th {
    width: 200px;
  }
}
@media (min-width: 811px) {
  .c-table01 td {
    padding-left: 2rem;
  }
}
.c-table01 a {
  text-decoration: underline;
  color: var(--accent-color);
}

.c-title01 {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 811px) {
  .c-title01 {
    margin-bottom: 4rem;
  }
}
.c-title01--block {
  margin-top: 5rem;
}
@media (min-width: 811px) {
  .c-title01--block {
    margin-top: 10rem;
  }
}
.c-title01::before {
  font-family: var(--font-en);
  font-size: 3rem;
  content: attr(data-sub);
}
@media (min-width: 811px) {
  .c-title01::before {
    font-size: 5rem;
  }
}

.c-title02 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-title02 {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
}

.c-title03 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-title03 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}

.c-page-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 811px) {
  .c-page-title {
    margin-bottom: 4rem;
  }
}
.c-page-title::before {
  font-family: var(--font-en);
  font-size: 4rem;
  content: attr(data-slug);
}
@media (min-width: 811px) {
  .c-page-title::before {
    font-size: 8rem;
  }
}

.front-page__kv {
  position: relative;
  width: 100%;
  height: 100svh;
}
.front-page__kv::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}
.front-page__kv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.front-page__kv__catchcopy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1344px;
  padding: 0 16px;
  color: #fff;
  font-weight: bold;
}
.front-page__kv__maincopy {
  padding-bottom: 5px;
  overflow: hidden;
  font-family: var(--font-en);
  font-size: clamp(2rem, 12.8vw, 3rem);
  line-height: 1.25;
}
.front-page__kv__subcopy {
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
}
@media (min-width: 811px) {
  .front-page__kv__catchcopy {
    max-width: 1440px;
    padding: 0 64px;
  }
  .front-page__kv__maincopy {
    font-size: clamp(3rem, 8.8888888889vw, 8rem);
    line-height: 1.25;
  }
}

.p-article {
  margin: 5rem 0;
}
@media (min-width: 811px) {
  .p-article {
    margin: 10rem 0;
  }
}
.p-article__date {
  margin-bottom: 1rem;
}
.p-article__title {
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 811px) {
  .p-article__title {
    margin-bottom: 4rem;
    font-size: 4rem;
  }
}
.p-article p {
  margin: 1em 0;
  line-height: 2;
}

.p-form {
  display: grid;
  gap: 2rem;
}
.p-form__group {
  display: grid;
  gap: 1rem;
}
.p-form__label-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
.p-form__required {
  background: var(--sub-color);
  font-size: var(--fz12);
  color: #fff;
  padding: 4px 8px;
}
.p-form__button-area {
  position: relative;
}
.p-form__button-area .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  font-size: var(--fz12) !important;
  font-weight: bold !important;
}
@media (min-width: 811px) {
  .wpcf7-not-valid-tip {
    font-size: var(--fz14) !important;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem;
  border-color: var(--main-color) !important;
}

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

@media (max-width: 810px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 811px) {
  .sp {
    display: none !important;
  }
}